@mhmo91/schmancy 0.9.16 → 0.9.18
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 +111 -51
- package/dist/agent/schmancy.agent.js +288 -38
- package/dist/agent/schmancy.agent.js.map +1 -1
- package/dist/agent/schmancy.manifest.json +332 -25
- package/dist/breadcrumb.cjs.map +1 -1
- package/dist/breadcrumb.js.map +1 -1
- package/dist/card-BslSqOsf.cjs.map +1 -1
- package/dist/card-CEdgK9nb.js.map +1 -1
- package/dist/details-B8p62xmR.cjs.map +1 -1
- package/dist/details-CCW52lzz.js.map +1 -1
- package/dist/dialog.cjs.map +1 -1
- package/dist/dialog.js.map +1 -1
- package/dist/divider-CbEWg3G_.js.map +1 -1
- package/dist/divider-JyyFw_3J.cjs.map +1 -1
- package/dist/dropdown.cjs.map +1 -1
- package/dist/dropdown.js.map +1 -1
- package/dist/expand-BmwIPNjq.cjs.map +1 -1
- package/dist/expand-bFa_qVDT.js.map +1 -1
- package/dist/handover/agent-runtime-followups.md +1 -1
- package/dist/handover/agent-runtime-v1.md +3 -3
- 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/navigation-rail.cjs.map +1 -1
- package/dist/navigation-rail.js.map +1 -1
- package/dist/page.cjs.map +1 -1
- package/dist/page.js.map +1 -1
- package/dist/scroll-CdmXRXh2.js.map +1 -1
- package/dist/scroll-V1rAZ9fK.cjs.map +1 -1
- package/dist/sheet-DdlZhnDG.cjs.map +1 -1
- package/dist/sheet-LFVo5iN4.js.map +1 -1
- package/dist/src-C7niWYur.js.map +1 -1
- package/dist/src-I4M33WK2.cjs.map +1 -1
- package/dist/surface-0XM4DBaT.js.map +1 -1
- package/dist/surface-B6DA01kL.cjs.map +1 -1
- package/dist/theme-Cq_c9IO3.js.map +1 -1
- package/dist/theme-DU5yXaV-.cjs.map +1 -1
- package/dist/tree.cjs.map +1 -1
- package/dist/tree.js.map +1 -1
- package/package.json +1 -1
- package/src/breadcrumb/breadcrumb.ts +14 -4
- package/src/card/actions.ts +9 -0
- package/src/card/card.ts +18 -0
- package/src/card/content.ts +9 -0
- package/src/card/media.ts +6 -0
- package/src/details/details.ts +12 -0
- package/src/dialog/dialog.component.ts +9 -9
- package/src/divider/divider.ts +11 -0
- package/src/dropdown/dropdown-component.ts +13 -1
- package/src/dropdown/dropdown-content.ts +11 -3
- package/src/expand/expand-root.component.ts +12 -0
- package/src/expand/expand.component.ts +14 -0
- package/src/layout/scroll/scroll.ts +5 -1
- 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/page/page.ts +8 -11
- package/src/sheet/sheet.ts +17 -0
- package/src/surface/surface.ts +4 -10
- package/src/theme/theme.component.ts +10 -15
- package/src/tree/tree.ts +12 -0
- package/types/src/breadcrumb/breadcrumb.d.ts +14 -4
- package/types/src/card/actions.d.ts +9 -0
- package/types/src/card/card.d.ts +18 -0
- package/types/src/card/content.d.ts +9 -0
- package/types/src/card/media.d.ts +6 -0
- package/types/src/details/details.d.ts +12 -0
- package/types/src/dialog/dialog.component.d.ts +9 -9
- package/types/src/divider/divider.d.ts +11 -0
- package/types/src/dropdown/dropdown-component.d.ts +13 -1
- package/types/src/dropdown/dropdown-content.d.ts +11 -3
- package/types/src/expand/expand-root.component.d.ts +12 -0
- package/types/src/expand/expand.component.d.ts +14 -0
- package/types/src/layout/scroll/scroll.d.ts +5 -1
- 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/page/page.d.ts +8 -11
- package/types/src/sheet/sheet.d.ts +17 -0
- package/types/src/surface/surface.d.ts +4 -10
- package/types/src/theme/theme.component.d.ts +10 -15
- package/types/src/tree/tree.d.ts +12 -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",
|
|
@@ -1151,6 +1151,7 @@
|
|
|
1151
1151
|
{
|
|
1152
1152
|
"name": "schmancy-card-action",
|
|
1153
1153
|
"path": "./src/card/actions.ts",
|
|
1154
|
+
"description": "Action row of a schmancy-card — holds the card's buttons / links (typically aligned bottom-right).",
|
|
1154
1155
|
"slots": [
|
|
1155
1156
|
{
|
|
1156
1157
|
"name": "",
|
|
@@ -1161,6 +1162,7 @@
|
|
|
1161
1162
|
{
|
|
1162
1163
|
"name": "schmancy-card",
|
|
1163
1164
|
"path": "./src/card/card.ts",
|
|
1165
|
+
"description": "Material Design card — a surface-level container for grouping related content with media / content / actions slots.",
|
|
1164
1166
|
"attributes": [
|
|
1165
1167
|
{
|
|
1166
1168
|
"name": "type",
|
|
@@ -1278,11 +1280,13 @@
|
|
|
1278
1280
|
},
|
|
1279
1281
|
{
|
|
1280
1282
|
"name": "schmancy-card-content",
|
|
1281
|
-
"path": "./src/card/content.ts"
|
|
1283
|
+
"path": "./src/card/content.ts",
|
|
1284
|
+
"description": "Content region of a schmancy-card — holds the card's headline, supporting text, and inline controls."
|
|
1282
1285
|
},
|
|
1283
1286
|
{
|
|
1284
1287
|
"name": "schmancy-card-media",
|
|
1285
1288
|
"path": "./src/card/media.ts",
|
|
1289
|
+
"description": "Media region of a schmancy-card — the image / thumbnail at the top of the card.",
|
|
1286
1290
|
"attributes": [
|
|
1287
1291
|
{
|
|
1288
1292
|
"name": "src",
|
|
@@ -3151,6 +3155,7 @@
|
|
|
3151
3155
|
{
|
|
3152
3156
|
"name": "schmancy-details",
|
|
3153
3157
|
"path": "./src/details/details.ts",
|
|
3158
|
+
"description": "Expandable disclosure panel — a styled `<details>` / `<summary>` pair with animated expand + overlay options.",
|
|
3154
3159
|
"attributes": [
|
|
3155
3160
|
{
|
|
3156
3161
|
"name": "summary",
|
|
@@ -3261,12 +3266,18 @@
|
|
|
3261
3266
|
"type": "string",
|
|
3262
3267
|
"default": "\"all\""
|
|
3263
3268
|
}
|
|
3269
|
+
],
|
|
3270
|
+
"events": [
|
|
3271
|
+
{
|
|
3272
|
+
"name": "toggle",
|
|
3273
|
+
"description": "When the open state changes (bubbles from the native `<details>`)."
|
|
3274
|
+
}
|
|
3264
3275
|
]
|
|
3265
3276
|
},
|
|
3266
3277
|
{
|
|
3267
3278
|
"name": "schmancy-dialog",
|
|
3268
3279
|
"path": "./src/dialog/dialog.component.ts",
|
|
3269
|
-
"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.",
|
|
3270
3281
|
"attributes": [
|
|
3271
3282
|
{
|
|
3272
3283
|
"name": "uid",
|
|
@@ -3390,10 +3401,15 @@
|
|
|
3390
3401
|
],
|
|
3391
3402
|
"events": [
|
|
3392
3403
|
{
|
|
3393
|
-
"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."
|
|
3394
3410
|
},
|
|
3395
3411
|
{
|
|
3396
|
-
"name": "
|
|
3412
|
+
"name": "yes-dialog-here"
|
|
3397
3413
|
}
|
|
3398
3414
|
],
|
|
3399
3415
|
"slots": [
|
|
@@ -3410,6 +3426,7 @@
|
|
|
3410
3426
|
{
|
|
3411
3427
|
"name": "schmancy-divider",
|
|
3412
3428
|
"path": "./src/divider/divider.ts",
|
|
3429
|
+
"description": "Thin horizontal (or vertical) separator rule between sections of content.",
|
|
3413
3430
|
"attributes": [
|
|
3414
3431
|
{
|
|
3415
3432
|
"name": "outline",
|
|
@@ -3462,14 +3479,8 @@
|
|
|
3462
3479
|
{
|
|
3463
3480
|
"name": "schmancy-dropdown",
|
|
3464
3481
|
"path": "./src/dropdown/dropdown-component.ts",
|
|
3465
|
-
"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.",
|
|
3466
3483
|
"attributes": [
|
|
3467
|
-
{
|
|
3468
|
-
"name": "open",
|
|
3469
|
-
"description": "Whether the dropdown is currently open",
|
|
3470
|
-
"type": "boolean",
|
|
3471
|
-
"default": "false"
|
|
3472
|
-
},
|
|
3473
3484
|
{
|
|
3474
3485
|
"name": "placement",
|
|
3475
3486
|
"description": "Placement of the dropdown relative to the trigger",
|
|
@@ -3481,16 +3492,15 @@
|
|
|
3481
3492
|
"description": "Offset distance in pixels",
|
|
3482
3493
|
"type": "number",
|
|
3483
3494
|
"default": "8"
|
|
3484
|
-
}
|
|
3485
|
-
],
|
|
3486
|
-
"properties": [
|
|
3495
|
+
},
|
|
3487
3496
|
{
|
|
3488
3497
|
"name": "open",
|
|
3489
|
-
"attribute": "open",
|
|
3490
3498
|
"description": "Whether the dropdown is currently open",
|
|
3491
3499
|
"type": "boolean",
|
|
3492
3500
|
"default": "false"
|
|
3493
|
-
}
|
|
3501
|
+
}
|
|
3502
|
+
],
|
|
3503
|
+
"properties": [
|
|
3494
3504
|
{
|
|
3495
3505
|
"name": "placement",
|
|
3496
3506
|
"attribute": "placement",
|
|
@@ -3520,6 +3530,23 @@
|
|
|
3520
3530
|
{
|
|
3521
3531
|
"name": "triggerElements",
|
|
3522
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."
|
|
3523
3550
|
}
|
|
3524
3551
|
],
|
|
3525
3552
|
"slots": [
|
|
@@ -3536,7 +3563,7 @@
|
|
|
3536
3563
|
{
|
|
3537
3564
|
"name": "schmancy-dropdown-content",
|
|
3538
3565
|
"path": "./src/dropdown/dropdown-content.ts",
|
|
3539
|
-
"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.",
|
|
3540
3567
|
"attributes": [
|
|
3541
3568
|
{
|
|
3542
3569
|
"name": "width",
|
|
@@ -3602,13 +3629,14 @@
|
|
|
3602
3629
|
"cssParts": [
|
|
3603
3630
|
{
|
|
3604
3631
|
"name": "content",
|
|
3605
|
-
"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."
|
|
3606
3633
|
}
|
|
3607
3634
|
]
|
|
3608
3635
|
},
|
|
3609
3636
|
{
|
|
3610
3637
|
"name": "schmancy-expand-root",
|
|
3611
3638
|
"path": "./src/expand/expand-root.component.ts",
|
|
3639
|
+
"description": "Container for schmancy-expand children — coordinates mutual-exclusion so only one child is open at a time. Also renders the portal panel that the active child expands into.",
|
|
3612
3640
|
"attributes": [
|
|
3613
3641
|
{
|
|
3614
3642
|
"name": "type",
|
|
@@ -3633,6 +3661,7 @@
|
|
|
3633
3661
|
{
|
|
3634
3662
|
"name": "schmancy-expand",
|
|
3635
3663
|
"path": "./src/expand/expand.component.ts",
|
|
3664
|
+
"description": "Accordion-style section — expands on click, coordinates with siblings via schmancy-expand-root to close any sibling when a new one opens. Only one schmancy-expand can be open at a time within the same root.",
|
|
3636
3665
|
"attributes": [
|
|
3637
3666
|
{
|
|
3638
3667
|
"name": "summary",
|
|
@@ -3724,6 +3753,12 @@
|
|
|
3724
3753
|
"type": "boolean",
|
|
3725
3754
|
"default": "false"
|
|
3726
3755
|
}
|
|
3756
|
+
],
|
|
3757
|
+
"events": [
|
|
3758
|
+
{
|
|
3759
|
+
"name": "toggle",
|
|
3760
|
+
"description": "When the open state changes."
|
|
3761
|
+
}
|
|
3727
3762
|
]
|
|
3728
3763
|
},
|
|
3729
3764
|
{
|
|
@@ -5973,7 +6008,7 @@
|
|
|
5973
6008
|
{
|
|
5974
6009
|
"name": "schmancy-scroll",
|
|
5975
6010
|
"path": "./src/layout/scroll/scroll.ts",
|
|
5976
|
-
"description": "
|
|
6011
|
+
"description": "Scrollable container with debounced scroll events, horizontal/vertical direction, optional hidden scrollbar, and programmatic scrollTo via command events or refs.",
|
|
5977
6012
|
"attributes": [
|
|
5978
6013
|
{
|
|
5979
6014
|
"name": "hide",
|
|
@@ -6612,6 +6647,7 @@
|
|
|
6612
6647
|
{
|
|
6613
6648
|
"name": "schmancy-list-item",
|
|
6614
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.",
|
|
6615
6651
|
"attributes": [
|
|
6616
6652
|
{
|
|
6617
6653
|
"name": "variant",
|
|
@@ -6672,7 +6708,7 @@
|
|
|
6672
6708
|
{
|
|
6673
6709
|
"name": "schmancy-list",
|
|
6674
6710
|
"path": "./src/list/list.ts",
|
|
6675
|
-
"description": "
|
|
6711
|
+
"description": "Wrapped list container — holds schmancy-list-item children on a themed surface. Optionally scrollable.",
|
|
6676
6712
|
"attributes": [
|
|
6677
6713
|
{
|
|
6678
6714
|
"name": "surface",
|
|
@@ -7382,12 +7418,19 @@
|
|
|
7382
7418
|
},
|
|
7383
7419
|
{
|
|
7384
7420
|
"name": "schmancy-menu-item",
|
|
7385
|
-
"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
|
+
]
|
|
7386
7429
|
},
|
|
7387
7430
|
{
|
|
7388
7431
|
"name": "schmancy-menu",
|
|
7389
7432
|
"path": "./src/menu/menu.ts",
|
|
7390
|
-
"description": "
|
|
7433
|
+
"description": "Floating menu — a trigger button + a list of schmancy-menu-item children that open as a positioned dialog on click.",
|
|
7391
7434
|
"slots": [
|
|
7392
7435
|
{
|
|
7393
7436
|
"name": "trigger",
|
|
@@ -7406,6 +7449,7 @@
|
|
|
7406
7449
|
{
|
|
7407
7450
|
"name": "schmancy-nav-drawer-appbar",
|
|
7408
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.",
|
|
7409
7453
|
"slots": [
|
|
7410
7454
|
{
|
|
7411
7455
|
"name": "",
|
|
@@ -7416,6 +7460,7 @@
|
|
|
7416
7460
|
{
|
|
7417
7461
|
"name": "schmancy-nav-drawer-content",
|
|
7418
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.",
|
|
7419
7464
|
"events": [
|
|
7420
7465
|
{
|
|
7421
7466
|
"name": "scroll"
|
|
@@ -7425,6 +7470,7 @@
|
|
|
7425
7470
|
{
|
|
7426
7471
|
"name": "schmancy-nav-drawer",
|
|
7427
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).",
|
|
7428
7474
|
"attributes": [
|
|
7429
7475
|
{
|
|
7430
7476
|
"name": "fullscreen",
|
|
@@ -7466,6 +7512,12 @@
|
|
|
7466
7512
|
"type": "TSchmancyDrawerNavbarState"
|
|
7467
7513
|
}
|
|
7468
7514
|
],
|
|
7515
|
+
"events": [
|
|
7516
|
+
{
|
|
7517
|
+
"name": "schmancy-drawer-state",
|
|
7518
|
+
"description": "When the drawer open/close state changes on mobile."
|
|
7519
|
+
}
|
|
7520
|
+
],
|
|
7469
7521
|
"slots": [
|
|
7470
7522
|
{
|
|
7471
7523
|
"name": "",
|
|
@@ -7476,6 +7528,7 @@
|
|
|
7476
7528
|
{
|
|
7477
7529
|
"name": "schmancy-nav-drawer-navbar",
|
|
7478
7530
|
"path": "./src/nav-drawer/navbar.ts",
|
|
7531
|
+
"description": "Sidebar region inside schmancy-nav-drawer — the persistent-on-desktop / modal-on-mobile nav rail.",
|
|
7479
7532
|
"attributes": [
|
|
7480
7533
|
{
|
|
7481
7534
|
"name": "width",
|
|
@@ -7516,7 +7569,7 @@
|
|
|
7516
7569
|
{
|
|
7517
7570
|
"name": "schmancy-navigation-bar-item",
|
|
7518
7571
|
"path": "./src/navigation-bar/navigation-bar-item.ts",
|
|
7519
|
-
"description": "
|
|
7572
|
+
"description": "Single destination inside schmancy-navigation-bar — an icon + optional label representing one primary app destination.",
|
|
7520
7573
|
"attributes": [
|
|
7521
7574
|
{
|
|
7522
7575
|
"name": "icon",
|
|
@@ -7627,7 +7680,7 @@
|
|
|
7627
7680
|
{
|
|
7628
7681
|
"name": "schmancy-navigation-bar",
|
|
7629
7682
|
"path": "./src/navigation-bar/navigation-bar.ts",
|
|
7630
|
-
"description": "
|
|
7683
|
+
"description": "Bottom navigation bar — Material Design 3 horizontal nav for mobile primary destinations (3–7 items). Auto-hides in fullscreen mode.",
|
|
7631
7684
|
"attributes": [
|
|
7632
7685
|
{
|
|
7633
7686
|
"name": "activeIndex",
|
|
@@ -7703,7 +7756,7 @@
|
|
|
7703
7756
|
{
|
|
7704
7757
|
"name": "schmancy-navigation-rail-item",
|
|
7705
7758
|
"path": "./src/navigation-rail/navigation-rail-item.ts",
|
|
7706
|
-
"description": "
|
|
7759
|
+
"description": "Single destination inside schmancy-navigation-rail — vertically-stacked icon + optional label.",
|
|
7707
7760
|
"attributes": [
|
|
7708
7761
|
{
|
|
7709
7762
|
"name": "icon",
|
|
@@ -7897,7 +7950,7 @@
|
|
|
7897
7950
|
{
|
|
7898
7951
|
"name": "schmancy-navigation-rail",
|
|
7899
7952
|
"path": "./src/navigation-rail/navigation-rail.ts",
|
|
7900
|
-
"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.",
|
|
7901
7954
|
"attributes": [
|
|
7902
7955
|
{
|
|
7903
7956
|
"name": "activeIndex",
|
|
@@ -8455,7 +8508,7 @@
|
|
|
8455
8508
|
{
|
|
8456
8509
|
"name": "schmancy-page",
|
|
8457
8510
|
"path": "./src/page/page.ts",
|
|
8458
|
-
"description": "
|
|
8511
|
+
"description": "Mobile-first page container — fills remaining viewport height, suppresses double-tap zoom / pull-to-refresh / rubber-banding. Lays children in a CSS grid whose row template is `rows`.",
|
|
8459
8512
|
"attributes": [
|
|
8460
8513
|
{
|
|
8461
8514
|
"name": "rows",
|
|
@@ -9145,17 +9198,8 @@
|
|
|
9145
9198
|
{
|
|
9146
9199
|
"name": "schmancy-sheet",
|
|
9147
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.",
|
|
9148
9202
|
"attributes": [
|
|
9149
|
-
{
|
|
9150
|
-
"name": "open",
|
|
9151
|
-
"type": "boolean",
|
|
9152
|
-
"default": "false"
|
|
9153
|
-
},
|
|
9154
|
-
{
|
|
9155
|
-
"name": "position",
|
|
9156
|
-
"type": "SchmancySheetPosition",
|
|
9157
|
-
"default": "\"side\""
|
|
9158
|
-
},
|
|
9159
9203
|
{
|
|
9160
9204
|
"name": "persist",
|
|
9161
9205
|
"type": "boolean",
|
|
@@ -9170,21 +9214,21 @@
|
|
|
9170
9214
|
"name": "handleHistory",
|
|
9171
9215
|
"type": "boolean",
|
|
9172
9216
|
"default": "true"
|
|
9173
|
-
}
|
|
9174
|
-
],
|
|
9175
|
-
"properties": [
|
|
9176
|
-
{
|
|
9177
|
-
"name": "open",
|
|
9178
|
-
"attribute": "open",
|
|
9179
|
-
"type": "boolean",
|
|
9180
|
-
"default": "false"
|
|
9181
9217
|
},
|
|
9182
9218
|
{
|
|
9183
9219
|
"name": "position",
|
|
9184
|
-
"
|
|
9220
|
+
"description": "`'side' | 'bottom'`. Which edge the sheet docks to.",
|
|
9185
9221
|
"type": "SchmancySheetPosition",
|
|
9186
9222
|
"default": "\"side\""
|
|
9187
9223
|
},
|
|
9224
|
+
{
|
|
9225
|
+
"name": "open",
|
|
9226
|
+
"description": "Boolean; sheet is visible when true.",
|
|
9227
|
+
"type": "boolean",
|
|
9228
|
+
"default": "false"
|
|
9229
|
+
}
|
|
9230
|
+
],
|
|
9231
|
+
"properties": [
|
|
9188
9232
|
{
|
|
9189
9233
|
"name": "persist",
|
|
9190
9234
|
"attribute": "persist",
|
|
@@ -9202,11 +9246,26 @@
|
|
|
9202
9246
|
"attribute": "handleHistory",
|
|
9203
9247
|
"type": "boolean",
|
|
9204
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"
|
|
9205
9263
|
}
|
|
9206
9264
|
],
|
|
9207
9265
|
"events": [
|
|
9208
9266
|
{
|
|
9209
|
-
"name": "close"
|
|
9267
|
+
"name": "close",
|
|
9268
|
+
"description": "When the sheet is dismissed (backdrop click, close button, ESC)."
|
|
9210
9269
|
}
|
|
9211
9270
|
]
|
|
9212
9271
|
},
|
|
@@ -9592,7 +9651,7 @@
|
|
|
9592
9651
|
{
|
|
9593
9652
|
"name": "schmancy-surface",
|
|
9594
9653
|
"path": "./src/surface/surface.ts",
|
|
9595
|
-
"description": "
|
|
9654
|
+
"description": "Themed container — the root surface primitive. Sets background, text color, rounding, elevation, and (optionally) internal scroll. Provides a `SchmancySurfaceTypeContext` so descendants can adapt to the enclosing surface variant.",
|
|
9596
9655
|
"attributes": [
|
|
9597
9656
|
{
|
|
9598
9657
|
"name": "type",
|
|
@@ -10416,7 +10475,7 @@
|
|
|
10416
10475
|
{
|
|
10417
10476
|
"name": "schmancy-theme",
|
|
10418
10477
|
"path": "./src/theme/theme.component.ts",
|
|
10419
|
-
"description": "
|
|
10478
|
+
"description": "Theme provider — generates a Material 3 palette from a seed color, resolves light/dark scheme, and publishes the token set to descendants as CSS custom properties (var(--schmancy-sys-color-…)).",
|
|
10420
10479
|
"attributes": [
|
|
10421
10480
|
{
|
|
10422
10481
|
"name": "color",
|
|
@@ -10542,6 +10601,7 @@
|
|
|
10542
10601
|
{
|
|
10543
10602
|
"name": "schmancy-tree",
|
|
10544
10603
|
"path": "./src/tree/tree.ts",
|
|
10604
|
+
"description": "Expandable tree node — a recursive disclosure widget. One root slot, one default slot for child nodes. Each node can itself contain schmancy-tree children.",
|
|
10545
10605
|
"attributes": [
|
|
10546
10606
|
{
|
|
10547
10607
|
"name": "open",
|