mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 07:57:39 +03:00 
			
		
		
		
	| * Use rollup for d3tooltip * Use rollup for map2tree * Set moduleResolution * Use rollup for d3-state-visualizer * Use rollup for react-base16-styling * Use rollup for react-dock * Use rollup for react-json-tree * Use rollup for redux-devtools * Use rollup for redux-devtools-intrument * Use rollup for redux-devtools-chart-monitor * Update export * Use rollup for redux-devtools-dock-monitor * Use rollup for redux-devtools-inspector-monitor * Fix inspector demo * Fix invalid eslint config * Use rollup for inspector-monitor-test-tab * Use rollup for inspector-monitor-trace-tab * Use rollup for redux-devtools-log-monitor * Use rollup for redux-devtools-remote * Use rollup in redux-devtools-rtk-query-monitor * Use rollup for redux-devtools-serialize * Fix redux-devtools examples * Use rollup for redux-devtools-slider-monitor * Fix slider examples * Use rollup for redux-devtools-ui * Use rollup for redux-devtools-utils * Use rollup for redux-devtools-extension * Use rollup for redux-devtools-app * Fix Webpack app build * Fix extension build * Turn on minimization * Update CLI | ||
|---|---|---|
| .. | ||
| demo | ||
| src | ||
| test | ||
| .babelrc | ||
| .eslintignore | ||
| .eslintrc.js | ||
| CHANGELOG.md | ||
| jest.config.js | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| rollup.config.js | ||
| tsconfig.json | ||
react-dock
Resizable dockable react component.
Demo
http://alexkuz.github.io/react-dock/demo/
Install
$ npm i -S react-dock
Example
render() {
  return (
    <Dock position='right' isVisible={this.state.isVisible}>
      {/* you can pass a function as a child here */}
      <div onClick={() => this.setState({ isVisible: !this.state.isVisible })}>X</div>
    </Dock>
  );
}
Dock Props
| Prop Name | Description | 
|---|---|
| position | Side to dock ( left,right,toporbottom). Default isleft. | 
| fluid | If true, resize dock proportionally on window resize. | 
| size | Size of dock panel (width or height, depending on position). If this prop is set,Dockis considered as a controlled component, so you need to useonSizeChangeto track dock resizing. Value is a fraction of window width/height, iffluidis true, or pixels otherwise | 
| defaultSize | Default size of dock panel (used for uncontrolled Dockcomponent) | 
| isVisible | If true, dock is visible | 
| dimMode | If none- content is not dimmed, iftransparent- pointer events are disabled (so you can click through it), ifopaque- click on dim area closes the dock. Default isopaque | 
| duration | Animation duration. Should be synced with transition animation in style properties | 
| dimStyle | Style for dim area | 
| dockStyle | Style for dock | 
| zIndex | Z-index for wrapper | 
| onVisibleChange | Fires when Dockwants to changeisVisible(when opaque dim is clicked, in particular) | 
| onSizeChange | Fires when Dockwants to changesize | 
| children | Dock content - react elements or function that returns an element. Function receives an object with these state values: { position, isResizing, size, isVisible } |