mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 20:09:35 +00:00
Fixing missing changes in docs and the layout
This commit is contained in:
parent
eeb27fc312
commit
48b63b9246
5 changed files with 9 additions and 9 deletions
|
@ -4893,7 +4893,7 @@
|
|||
"filePath": "src/UIShell/HeaderAction.svelte",
|
||||
"props": [
|
||||
{
|
||||
"name": "isOpen",
|
||||
"name": "open",
|
||||
"kind": "let",
|
||||
"description": "Set to `true` to open the panel",
|
||||
"type": "boolean",
|
||||
|
@ -10723,7 +10723,7 @@
|
|||
"reactive": false
|
||||
},
|
||||
{
|
||||
"name": "isOpen",
|
||||
"name": "open",
|
||||
"kind": "let",
|
||||
"description": "Set to `true` to toggle the expanded state",
|
||||
"type": "boolean",
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
let active = false;
|
||||
$: results = miniSearch.search(value).slice(0, 10);
|
||||
|
||||
let isOpen = false;
|
||||
let open = false;
|
||||
let isSideNavOpen = true;
|
||||
let innerWidth = 2048;
|
||||
|
||||
|
@ -118,7 +118,7 @@
|
|||
href="https://github.com/carbon-design-system/carbon-components-svelte"
|
||||
target="_blank"
|
||||
/>
|
||||
<HeaderAction transition="{false}" bind:isOpen>
|
||||
<HeaderAction transition="{false}" bind:open>
|
||||
<HeaderPanelLinks>
|
||||
<HeaderPanelDivider>Carbon Svelte portfolio</HeaderPanelDivider>
|
||||
<HeaderPanelLink
|
||||
|
@ -153,7 +153,7 @@
|
|||
</HeaderUtilities>
|
||||
</Header>
|
||||
|
||||
<SideNav bind:isOpen="{isSideNavOpen}">
|
||||
<SideNav bind:open="{isSideNavOpen}">
|
||||
<SideNavItems>
|
||||
{#each components.children.filter((child) => !deprecated.includes(child.title)) as child (child.path)}
|
||||
<SideNavMenuItem
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue