You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -78,13 +78,13 @@ This is mount point for `Layers`.
78
78
79
79
`use: array` - array with context variables. Useful if you want to re-render the Layer if parent variables (closure) are changed
80
80
81
-
`children: callback({ isActive, showMe: callback(args), showOnlyMe, hideMe, hideAll }, ...args): ReactElement` - will be rendered into
81
+
`children: callback({ isActive, show: callback(args), showOnlyMe, hide, hideAll }, ...args): ReactElement` - will be rendered into
82
82
83
83
#### `<LayerContext />`
84
84
85
85
`id: string` - a Layer identificator which LayerContext corresponds to
86
86
87
-
`children: callback({ isActive, showMe: callback(args), showOnlyMe, hideMe, hideAll }): ReactElement` - will be mounted (rendered) directly to its parent
87
+
`children: callback({ isActive, show: callback(args), showOnlyMe, hide, hideAll }): ReactElement` - will be mounted (rendered) directly to its parent
88
88
89
89
### Store layers in your redux store
90
90
@@ -123,22 +123,22 @@ return (
123
123
<Cell {...props}>
124
124
// the layer definition. The content will show up in the LayerStackMountPoint when `show(modalId)` be fired in LayerContext
0 commit comments