diff --git a/docs/components/slideout.md b/docs/components/slideout.md index 6f8f5b95d3..a0c9d7e892 100644 --- a/docs/components/slideout.md +++ b/docs/components/slideout.md @@ -60,10 +60,18 @@ Below we demonstrate wrapping `KSlideout` in the [`KToggle`](/components/renderl ### isVisible +* **Type**: `boolean` +* **Required**: no +* **Default**: `false` + Tells the component whether or not to render the open panel. ### closeButtonAlignment +* **Type**: `'start' | 'end'` +* **Required**: no +* **Default**: `'start'` + Controls the close button alignment, can be `start` (default) or `end`. ### offsetTop @@ -76,6 +84,10 @@ Allows a host app to define the offset from the top of the page. If the value is ### hasOverlay +* **Type**: `boolean` +* **Required**: no +* **Default**: `true` + Tells the component whether or not to enable / disable overlay when the slideout content is visible, defaults to `true`. @@ -124,6 +136,10 @@ Tells the component whether or not to enable / disable overlay when the slideout ### preventCloseOnBlur +* **Type**: `boolean` +* **Required**: no +* **Default**: `false` + Persists the slideout, ignoring clicks outside of the panel. Defaults to `false`. @@ -156,6 +172,10 @@ Persists the slideout, ignoring clicks outside of the panel. Defaults to `false` ### title +* **Type**: `string` +* **Required**: no +* **Default**: `''` + This prop takes a string that will be displayed as the title of the slide-out.