0.8.0 • Published 2 months ago
react-dock v0.8.0
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 , top or bottom ). Default is left . |
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, Dock is considered as a controlled component, so you need to use onSizeChange to track dock resizing. Value is a fraction of window width/height, if fluid is true, or pixels otherwise |
defaultSize | Default size of dock panel (used for uncontrolled Dock component) |
isVisible | If true , dock is visible |
dimMode | If none - content is not dimmed, if transparent - pointer events are disabled (so you can click through it), if opaque - click on dim area closes the dock. Default is opaque |
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 Dock wants to change isVisible (when opaque dim is clicked, in particular) |
onSizeChange | Fires when Dock wants to change size |
children | Dock content - react elements or function that returns an element. Function receives an object with these state values: { position, isResizing, size, isVisible } |
0.8.0
2 months ago
0.7.0
1 year ago
0.6.0
3 years ago
0.5.0
3 years ago
0.5.1
3 years ago
0.4.2
3 years ago
0.4.1
3 years ago
0.4.0
4 years ago
0.3.0
5 years ago
0.2.4
8 years ago
0.2.3
10 years ago
0.2.2
10 years ago
0.2.1
10 years ago
0.2.0
10 years ago
0.1.2
10 years ago
0.1.1
10 years ago
0.1.0
10 years ago
0.0.3
10 years ago
0.0.2
10 years ago
0.0.1
10 years ago