@mhmo91/schmancy 0.9.17 → 0.9.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +85 -46
- package/dist/agent/index.es-Dymj8REP.js +489 -0
- package/dist/agent/index.es-Dymj8REP.js.map +1 -0
- package/dist/agent/schmancy.agent.js +239 -580
- package/dist/agent/schmancy.agent.js.map +1 -1
- package/dist/agent/schmancy.manifest.json +198 -18
- package/dist/badge.cjs +1 -1
- package/dist/badge.js +1 -1
- package/dist/breadcrumb.cjs.map +1 -1
- package/dist/breadcrumb.js.map +1 -1
- package/dist/content-drawer.cjs +1 -1
- package/dist/content-drawer.js +1 -1
- package/dist/dialog.cjs.map +1 -1
- package/dist/dialog.js.map +1 -1
- package/dist/dropdown.cjs.map +1 -1
- package/dist/dropdown.js.map +1 -1
- package/dist/{flow-BGkHnOnd.js.map → flow-BPDtbhLe.js.map} +1 -1
- package/dist/{flow-ClAJ6Qby.cjs.map → flow-Dn9AZktE.cjs.map} +1 -1
- package/dist/handover/agent-runtime-followups.md +1 -1
- package/dist/handover/agent-runtime-v1.md +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.es-BgmFX1JM.cjs +1 -0
- package/dist/index.es-BgmFX1JM.cjs.map +1 -0
- package/dist/index.es-CLyb_o3Y.js +489 -0
- package/dist/index.es-CLyb_o3Y.js.map +1 -0
- package/dist/index.js +4 -4
- package/dist/list-BpjKUOzM.js.map +1 -1
- package/dist/list-CMWHu6cV.cjs.map +1 -1
- package/dist/menu-BIBUgS1T.js.map +1 -1
- package/dist/menu-DS8Iz4fJ.cjs.map +1 -1
- package/dist/nav-drawer.cjs +1 -1
- package/dist/nav-drawer.js +1 -1
- package/dist/navigation-bar.cjs +1 -1
- package/dist/navigation-bar.js +1 -1
- package/dist/navigation-rail.cjs.map +1 -1
- package/dist/navigation-rail.js.map +1 -1
- package/dist/sheet-DdlZhnDG.cjs.map +1 -1
- package/dist/sheet-LFVo5iN4.js.map +1 -1
- package/dist/{splash-screen-COg3Z6n8.js.map → splash-screen-BHgb3c3Q.js.map} +1 -1
- package/dist/{splash-screen-C9HqX2nR.cjs.map → splash-screen-DteUfSV3.cjs.map} +1 -1
- package/dist/splash-screen.cjs +1 -1
- package/dist/splash-screen.js +1 -1
- package/dist/{src-C7niWYur.js → src-BGj6ufWS.js} +4 -4
- package/dist/src-BGj6ufWS.js.map +1 -0
- package/dist/{src-I4M33WK2.cjs → src-BPKGdQdp.cjs} +1 -1
- package/dist/src-BPKGdQdp.cjs.map +1 -0
- package/dist/{table-B-DsOqzT.cjs → table-DFlJhG5E.cjs} +1 -1
- package/dist/{table-B-DsOqzT.cjs.map → table-DFlJhG5E.cjs.map} +1 -1
- package/dist/{table-hBEZRxM_.js → table-Dwt66SR6.js} +1 -1
- package/dist/{table-hBEZRxM_.js.map → table-Dwt66SR6.js.map} +1 -1
- package/dist/table.cjs +1 -1
- package/dist/table.js +1 -1
- package/dist/teleport.cjs +1 -1
- package/dist/teleport.js +1 -1
- package/dist/typewriter.cjs +123 -1
- package/dist/typewriter.cjs.map +1 -0
- package/dist/typewriter.js +214 -2
- package/dist/typewriter.js.map +1 -0
- package/dist/{utils-xBXLvebz.js.map → utils-Bp2jhyZc.js.map} +1 -1
- package/dist/{utils-2qrmPb78.cjs.map → utils-CBPQvxNW.cjs.map} +1 -1
- package/dist/utils.cjs +1 -1
- package/dist/utils.js +1 -1
- package/package.json +1 -1
- package/src/breadcrumb/breadcrumb.ts +14 -4
- package/src/dialog/dialog.component.ts +9 -9
- package/src/dropdown/dropdown-component.ts +13 -1
- package/src/dropdown/dropdown-content.ts +11 -3
- package/src/list/list-item.ts +10 -0
- package/src/list/list.ts +7 -8
- package/src/menu/menu-item.ts +13 -0
- package/src/menu/menu.ts +10 -22
- package/src/nav-drawer/appbar.ts +11 -0
- package/src/nav-drawer/content.ts +11 -0
- package/src/nav-drawer/drawer.ts +15 -0
- package/src/nav-drawer/navbar.ts +14 -0
- package/src/navigation-bar/navigation-bar-item.ts +3 -4
- package/src/navigation-bar/navigation-bar.ts +3 -9
- package/src/navigation-rail/navigation-rail-item.ts +3 -7
- package/src/navigation-rail/navigation-rail.ts +12 -8
- package/src/sheet/sheet.ts +17 -0
- package/src/typewriter/typewriter.ts +26 -4
- package/types/src/breadcrumb/breadcrumb.d.ts +14 -4
- package/types/src/dialog/dialog.component.d.ts +9 -9
- package/types/src/dropdown/dropdown-component.d.ts +13 -1
- package/types/src/dropdown/dropdown-content.d.ts +11 -3
- package/types/src/list/list-item.d.ts +10 -0
- package/types/src/list/list.d.ts +7 -8
- package/types/src/menu/menu-item.d.ts +13 -0
- package/types/src/menu/menu.d.ts +10 -22
- package/types/src/nav-drawer/appbar.d.ts +11 -0
- package/types/src/nav-drawer/content.d.ts +11 -0
- package/types/src/nav-drawer/drawer.d.ts +15 -0
- package/types/src/nav-drawer/navbar.d.ts +14 -0
- package/types/src/navigation-bar/navigation-bar-item.d.ts +3 -4
- package/types/src/navigation-bar/navigation-bar.d.ts +3 -9
- package/types/src/navigation-rail/navigation-rail-item.d.ts +3 -7
- package/types/src/navigation-rail/navigation-rail.d.ts +12 -8
- package/types/src/sheet/sheet.d.ts +17 -0
- package/types/src/typewriter/typewriter.d.ts +4 -1
- package/dist/src-C7niWYur.js.map +0 -1
- package/dist/src-I4M33WK2.cjs.map +0 -1
- package/dist/typewriter-DyN7xa0n.js +0 -701
- package/dist/typewriter-DyN7xa0n.js.map +0 -1
- package/dist/typewriter-LK0S4NEr.cjs +0 -123
- package/dist/typewriter-LK0S4NEr.cjs.map +0 -1
- /package/dist/{flow-BGkHnOnd.js → flow-BPDtbhLe.js} +0 -0
- /package/dist/{flow-ClAJ6Qby.cjs → flow-Dn9AZktE.cjs} +0 -0
- /package/dist/{splash-screen-COg3Z6n8.js → splash-screen-BHgb3c3Q.js} +0 -0
- /package/dist/{splash-screen-C9HqX2nR.cjs → splash-screen-DteUfSV3.cjs} +0 -0
- /package/dist/{utils-xBXLvebz.js → utils-Bp2jhyZc.js} +0 -0
- /package/dist/{utils-2qrmPb78.cjs → utils-CBPQvxNW.cjs} +0 -0
package/custom-elements.json
CHANGED
|
@@ -754,7 +754,7 @@
|
|
|
754
754
|
{
|
|
755
755
|
"name": "schmancy-breadcrumb",
|
|
756
756
|
"path": "./src/breadcrumb/breadcrumb.ts",
|
|
757
|
-
"description": "Breadcrumb navigation
|
|
757
|
+
"description": "Breadcrumb trail — navigation history from root to current page. Renders schmancy-breadcrumb-item children with separators between.",
|
|
758
758
|
"attributes": [
|
|
759
759
|
{
|
|
760
760
|
"name": "separator",
|
|
@@ -788,7 +788,7 @@
|
|
|
788
788
|
{
|
|
789
789
|
"name": "schmancy-breadcrumb-item",
|
|
790
790
|
"path": "./src/breadcrumb/breadcrumb.ts",
|
|
791
|
-
"description": "
|
|
791
|
+
"description": "Single segment in a schmancy-breadcrumb trail — a link when `href` is set, or a plain span (the current page) when omitted.",
|
|
792
792
|
"attributes": [
|
|
793
793
|
{
|
|
794
794
|
"name": "href",
|
|
@@ -3277,7 +3277,7 @@
|
|
|
3277
3277
|
{
|
|
3278
3278
|
"name": "schmancy-dialog",
|
|
3279
3279
|
"path": "./src/dialog/dialog.component.ts",
|
|
3280
|
-
"description": "
|
|
3280
|
+
"description": "Modal dialog — content-only (just a styled panel) or confirm mode (title + message + confirm/cancel buttons). Prefer the imperative `$dialog` service for most use cases; use the element directly only when you want a declaratively-positioned dialog.",
|
|
3281
3281
|
"attributes": [
|
|
3282
3282
|
{
|
|
3283
3283
|
"name": "uid",
|
|
@@ -3401,10 +3401,15 @@
|
|
|
3401
3401
|
],
|
|
3402
3402
|
"events": [
|
|
3403
3403
|
{
|
|
3404
|
-
"name": "
|
|
3404
|
+
"name": "confirm",
|
|
3405
|
+
"description": "In confirm mode, when the confirm button is clicked."
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"name": "cancel",
|
|
3409
|
+
"description": "In confirm mode, when the cancel button or ESC is activated."
|
|
3405
3410
|
},
|
|
3406
3411
|
{
|
|
3407
|
-
"name": "
|
|
3412
|
+
"name": "yes-dialog-here"
|
|
3408
3413
|
}
|
|
3409
3414
|
],
|
|
3410
3415
|
"slots": [
|
|
@@ -3474,14 +3479,8 @@
|
|
|
3474
3479
|
{
|
|
3475
3480
|
"name": "schmancy-dropdown",
|
|
3476
3481
|
"path": "./src/dropdown/dropdown-component.ts",
|
|
3477
|
-
"description": "
|
|
3482
|
+
"description": "Anchored floating dropdown — a generic \"show this content relative to that trigger\" primitive. Unlike schmancy-menu (which uses the dialog service and is list-shaped), dropdown is a low-level popover anchored with Floating UI. Use when you want a custom-shaped overlay tied to a specific trigger element without the menu semantics.",
|
|
3478
3483
|
"attributes": [
|
|
3479
|
-
{
|
|
3480
|
-
"name": "open",
|
|
3481
|
-
"description": "Whether the dropdown is currently open",
|
|
3482
|
-
"type": "boolean",
|
|
3483
|
-
"default": "false"
|
|
3484
|
-
},
|
|
3485
3484
|
{
|
|
3486
3485
|
"name": "placement",
|
|
3487
3486
|
"description": "Placement of the dropdown relative to the trigger",
|
|
@@ -3493,16 +3492,15 @@
|
|
|
3493
3492
|
"description": "Offset distance in pixels",
|
|
3494
3493
|
"type": "number",
|
|
3495
3494
|
"default": "8"
|
|
3496
|
-
}
|
|
3497
|
-
],
|
|
3498
|
-
"properties": [
|
|
3495
|
+
},
|
|
3499
3496
|
{
|
|
3500
3497
|
"name": "open",
|
|
3501
|
-
"attribute": "open",
|
|
3502
3498
|
"description": "Whether the dropdown is currently open",
|
|
3503
3499
|
"type": "boolean",
|
|
3504
3500
|
"default": "false"
|
|
3505
|
-
}
|
|
3501
|
+
}
|
|
3502
|
+
],
|
|
3503
|
+
"properties": [
|
|
3506
3504
|
{
|
|
3507
3505
|
"name": "placement",
|
|
3508
3506
|
"attribute": "placement",
|
|
@@ -3532,6 +3530,23 @@
|
|
|
3532
3530
|
{
|
|
3533
3531
|
"name": "triggerElements",
|
|
3534
3532
|
"type": "HTMLElement[]"
|
|
3533
|
+
},
|
|
3534
|
+
{
|
|
3535
|
+
"name": "open",
|
|
3536
|
+
"attribute": "open",
|
|
3537
|
+
"description": "Whether the dropdown is currently open",
|
|
3538
|
+
"type": "boolean",
|
|
3539
|
+
"default": "false"
|
|
3540
|
+
}
|
|
3541
|
+
],
|
|
3542
|
+
"events": [
|
|
3543
|
+
{
|
|
3544
|
+
"name": "open",
|
|
3545
|
+
"description": "When the dropdown opens."
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
"name": "close",
|
|
3549
|
+
"description": "When the dropdown closes."
|
|
3535
3550
|
}
|
|
3536
3551
|
],
|
|
3537
3552
|
"slots": [
|
|
@@ -3548,7 +3563,7 @@
|
|
|
3548
3563
|
{
|
|
3549
3564
|
"name": "schmancy-dropdown-content",
|
|
3550
3565
|
"path": "./src/dropdown/dropdown-content.ts",
|
|
3551
|
-
"description": "Content
|
|
3566
|
+
"description": "Content panel for a schmancy-dropdown — a styled positioned surface. Always nested inside schmancy-dropdown and placed alongside the trigger slot.",
|
|
3552
3567
|
"attributes": [
|
|
3553
3568
|
{
|
|
3554
3569
|
"name": "width",
|
|
@@ -3614,7 +3629,7 @@
|
|
|
3614
3629
|
"cssParts": [
|
|
3615
3630
|
{
|
|
3616
3631
|
"name": "content",
|
|
3617
|
-
"description": "The inner wrapper element; style to override panel
|
|
3632
|
+
"description": "The inner wrapper element; style to override panel backgrounds, shadows, padding, or borders without shadow-root piercing."
|
|
3618
3633
|
}
|
|
3619
3634
|
]
|
|
3620
3635
|
},
|
|
@@ -6632,6 +6647,7 @@
|
|
|
6632
6647
|
{
|
|
6633
6648
|
"name": "schmancy-list-item",
|
|
6634
6649
|
"path": "./src/list/list-item.ts",
|
|
6650
|
+
"description": "Single row in a schmancy-list — supports leading icon/avatar, main content, trailing actions. Clickable via click event, or used as a schmancy-menu-item's visual base.",
|
|
6635
6651
|
"attributes": [
|
|
6636
6652
|
{
|
|
6637
6653
|
"name": "variant",
|
|
@@ -6692,7 +6708,7 @@
|
|
|
6692
6708
|
{
|
|
6693
6709
|
"name": "schmancy-list",
|
|
6694
6710
|
"path": "./src/list/list.ts",
|
|
6695
|
-
"description": "
|
|
6711
|
+
"description": "Wrapped list container — holds schmancy-list-item children on a themed surface. Optionally scrollable.",
|
|
6696
6712
|
"attributes": [
|
|
6697
6713
|
{
|
|
6698
6714
|
"name": "surface",
|
|
@@ -7402,12 +7418,19 @@
|
|
|
7402
7418
|
},
|
|
7403
7419
|
{
|
|
7404
7420
|
"name": "schmancy-menu-item",
|
|
7405
|
-
"path": "./src/menu/menu-item.ts"
|
|
7421
|
+
"path": "./src/menu/menu-item.ts",
|
|
7422
|
+
"description": "Single item inside a schmancy-menu. Auto-dismisses the menu dialog on click — attach your action handler to `@click` and it just works.",
|
|
7423
|
+
"slots": [
|
|
7424
|
+
{
|
|
7425
|
+
"name": "",
|
|
7426
|
+
"description": "The item label and optional icons."
|
|
7427
|
+
}
|
|
7428
|
+
]
|
|
7406
7429
|
},
|
|
7407
7430
|
{
|
|
7408
7431
|
"name": "schmancy-menu",
|
|
7409
7432
|
"path": "./src/menu/menu.ts",
|
|
7410
|
-
"description": "
|
|
7433
|
+
"description": "Floating menu — a trigger button + a list of schmancy-menu-item children that open as a positioned dialog on click.",
|
|
7411
7434
|
"slots": [
|
|
7412
7435
|
{
|
|
7413
7436
|
"name": "trigger",
|
|
@@ -7426,6 +7449,7 @@
|
|
|
7426
7449
|
{
|
|
7427
7450
|
"name": "schmancy-nav-drawer-appbar",
|
|
7428
7451
|
"path": "./src/nav-drawer/appbar.ts",
|
|
7452
|
+
"description": "Top app bar region inside schmancy-nav-drawer — the horizontal strip above the content area that typically holds the page title, hamburger trigger, and contextual actions.",
|
|
7429
7453
|
"slots": [
|
|
7430
7454
|
{
|
|
7431
7455
|
"name": "",
|
|
@@ -7436,6 +7460,7 @@
|
|
|
7436
7460
|
{
|
|
7437
7461
|
"name": "schmancy-nav-drawer-content",
|
|
7438
7462
|
"path": "./src/nav-drawer/content.ts",
|
|
7463
|
+
"description": "Main content region inside schmancy-nav-drawer — typically hosts the router outlet or the page's body content.",
|
|
7439
7464
|
"events": [
|
|
7440
7465
|
{
|
|
7441
7466
|
"name": "scroll"
|
|
@@ -7445,6 +7470,7 @@
|
|
|
7445
7470
|
{
|
|
7446
7471
|
"name": "schmancy-nav-drawer",
|
|
7447
7472
|
"path": "./src/nav-drawer/drawer.ts",
|
|
7473
|
+
"description": "Responsive navigation drawer — a left sidebar that becomes a hamburger-triggered modal overlay on narrow viewports. Composes schmancy-nav-drawer-navbar (the nav rail), schmancy-nav-drawer-appbar (the top bar), and schmancy-nav-drawer-content (the main region).",
|
|
7448
7474
|
"attributes": [
|
|
7449
7475
|
{
|
|
7450
7476
|
"name": "fullscreen",
|
|
@@ -7486,6 +7512,12 @@
|
|
|
7486
7512
|
"type": "TSchmancyDrawerNavbarState"
|
|
7487
7513
|
}
|
|
7488
7514
|
],
|
|
7515
|
+
"events": [
|
|
7516
|
+
{
|
|
7517
|
+
"name": "schmancy-drawer-state",
|
|
7518
|
+
"description": "When the drawer open/close state changes on mobile."
|
|
7519
|
+
}
|
|
7520
|
+
],
|
|
7489
7521
|
"slots": [
|
|
7490
7522
|
{
|
|
7491
7523
|
"name": "",
|
|
@@ -7496,6 +7528,7 @@
|
|
|
7496
7528
|
{
|
|
7497
7529
|
"name": "schmancy-nav-drawer-navbar",
|
|
7498
7530
|
"path": "./src/nav-drawer/navbar.ts",
|
|
7531
|
+
"description": "Sidebar region inside schmancy-nav-drawer — the persistent-on-desktop / modal-on-mobile nav rail.",
|
|
7499
7532
|
"attributes": [
|
|
7500
7533
|
{
|
|
7501
7534
|
"name": "width",
|
|
@@ -7536,7 +7569,7 @@
|
|
|
7536
7569
|
{
|
|
7537
7570
|
"name": "schmancy-navigation-bar-item",
|
|
7538
7571
|
"path": "./src/navigation-bar/navigation-bar-item.ts",
|
|
7539
|
-
"description": "
|
|
7572
|
+
"description": "Single destination inside schmancy-navigation-bar — an icon + optional label representing one primary app destination.",
|
|
7540
7573
|
"attributes": [
|
|
7541
7574
|
{
|
|
7542
7575
|
"name": "icon",
|
|
@@ -7647,7 +7680,7 @@
|
|
|
7647
7680
|
{
|
|
7648
7681
|
"name": "schmancy-navigation-bar",
|
|
7649
7682
|
"path": "./src/navigation-bar/navigation-bar.ts",
|
|
7650
|
-
"description": "
|
|
7683
|
+
"description": "Bottom navigation bar — Material Design 3 horizontal nav for mobile primary destinations (3–7 items). Auto-hides in fullscreen mode.",
|
|
7651
7684
|
"attributes": [
|
|
7652
7685
|
{
|
|
7653
7686
|
"name": "activeIndex",
|
|
@@ -7723,7 +7756,7 @@
|
|
|
7723
7756
|
{
|
|
7724
7757
|
"name": "schmancy-navigation-rail-item",
|
|
7725
7758
|
"path": "./src/navigation-rail/navigation-rail-item.ts",
|
|
7726
|
-
"description": "
|
|
7759
|
+
"description": "Single destination inside schmancy-navigation-rail — vertically-stacked icon + optional label.",
|
|
7727
7760
|
"attributes": [
|
|
7728
7761
|
{
|
|
7729
7762
|
"name": "icon",
|
|
@@ -7917,7 +7950,7 @@
|
|
|
7917
7950
|
{
|
|
7918
7951
|
"name": "schmancy-navigation-rail",
|
|
7919
7952
|
"path": "./src/navigation-rail/navigation-rail.ts",
|
|
7920
|
-
"description": "Material Design 3
|
|
7953
|
+
"description": "Vertical navigation rail — Material Design 3 compact left-side nav for desktop / tablet layouts with 3–7 primary destinations. Auto-hides in fullscreen mode.",
|
|
7921
7954
|
"attributes": [
|
|
7922
7955
|
{
|
|
7923
7956
|
"name": "activeIndex",
|
|
@@ -9165,17 +9198,8 @@
|
|
|
9165
9198
|
{
|
|
9166
9199
|
"name": "schmancy-sheet",
|
|
9167
9200
|
"path": "./src/sheet/sheet.ts",
|
|
9201
|
+
"description": "Side-docked or bottom-docked panel — a dialog variant that slides in from an edge. Driven imperatively by the `sheet` service; rarely instantiated directly.",
|
|
9168
9202
|
"attributes": [
|
|
9169
|
-
{
|
|
9170
|
-
"name": "open",
|
|
9171
|
-
"type": "boolean",
|
|
9172
|
-
"default": "false"
|
|
9173
|
-
},
|
|
9174
|
-
{
|
|
9175
|
-
"name": "position",
|
|
9176
|
-
"type": "SchmancySheetPosition",
|
|
9177
|
-
"default": "\"side\""
|
|
9178
|
-
},
|
|
9179
9203
|
{
|
|
9180
9204
|
"name": "persist",
|
|
9181
9205
|
"type": "boolean",
|
|
@@ -9190,21 +9214,21 @@
|
|
|
9190
9214
|
"name": "handleHistory",
|
|
9191
9215
|
"type": "boolean",
|
|
9192
9216
|
"default": "true"
|
|
9193
|
-
}
|
|
9194
|
-
],
|
|
9195
|
-
"properties": [
|
|
9196
|
-
{
|
|
9197
|
-
"name": "open",
|
|
9198
|
-
"attribute": "open",
|
|
9199
|
-
"type": "boolean",
|
|
9200
|
-
"default": "false"
|
|
9201
9217
|
},
|
|
9202
9218
|
{
|
|
9203
9219
|
"name": "position",
|
|
9204
|
-
"
|
|
9220
|
+
"description": "`'side' | 'bottom'`. Which edge the sheet docks to.",
|
|
9205
9221
|
"type": "SchmancySheetPosition",
|
|
9206
9222
|
"default": "\"side\""
|
|
9207
9223
|
},
|
|
9224
|
+
{
|
|
9225
|
+
"name": "open",
|
|
9226
|
+
"description": "Boolean; sheet is visible when true.",
|
|
9227
|
+
"type": "boolean",
|
|
9228
|
+
"default": "false"
|
|
9229
|
+
}
|
|
9230
|
+
],
|
|
9231
|
+
"properties": [
|
|
9208
9232
|
{
|
|
9209
9233
|
"name": "persist",
|
|
9210
9234
|
"attribute": "persist",
|
|
@@ -9222,11 +9246,26 @@
|
|
|
9222
9246
|
"attribute": "handleHistory",
|
|
9223
9247
|
"type": "boolean",
|
|
9224
9248
|
"default": "true"
|
|
9249
|
+
},
|
|
9250
|
+
{
|
|
9251
|
+
"name": "position",
|
|
9252
|
+
"attribute": "position",
|
|
9253
|
+
"description": "`'side' | 'bottom'`. Which edge the sheet docks to.",
|
|
9254
|
+
"type": "SchmancySheetPosition",
|
|
9255
|
+
"default": "\"side\""
|
|
9256
|
+
},
|
|
9257
|
+
{
|
|
9258
|
+
"name": "open",
|
|
9259
|
+
"attribute": "open",
|
|
9260
|
+
"description": "Boolean; sheet is visible when true.",
|
|
9261
|
+
"type": "boolean",
|
|
9262
|
+
"default": "false"
|
|
9225
9263
|
}
|
|
9226
9264
|
],
|
|
9227
9265
|
"events": [
|
|
9228
9266
|
{
|
|
9229
|
-
"name": "close"
|
|
9267
|
+
"name": "close",
|
|
9268
|
+
"description": "When the sheet is dismissed (backdrop click, close button, ESC)."
|
|
9230
9269
|
}
|
|
9231
9270
|
]
|
|
9232
9271
|
},
|