@universal-material/web 3.0.63 → 3.0.64

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.
@@ -551,6 +551,255 @@
551
551
  }
552
552
  ]
553
553
  },
554
+ {
555
+ "kind": "javascript-module",
556
+ "path": "src/card/card-content.styles.ts",
557
+ "declarations": [
558
+ {
559
+ "kind": "variable",
560
+ "name": "styles",
561
+ "default": "css `\n :host {\n display: block;\n }\n\n :host(:has(slot > *)) {\n display: none;\n }\n\n :host([has-content]) {\n padding: var(--u-card-padding, 16px);\n }\n\n slot {\n border-radius: inherit;\n }\n`"
562
+ }
563
+ ],
564
+ "exports": [
565
+ {
566
+ "kind": "js",
567
+ "name": "styles",
568
+ "declaration": {
569
+ "name": "styles",
570
+ "module": "src/card/card-content.styles.ts"
571
+ }
572
+ }
573
+ ]
574
+ },
575
+ {
576
+ "kind": "javascript-module",
577
+ "path": "src/card/card-content.ts",
578
+ "declarations": [
579
+ {
580
+ "kind": "class",
581
+ "description": "",
582
+ "name": "UmCardContent",
583
+ "members": [
584
+ {
585
+ "kind": "field",
586
+ "name": "hasContent",
587
+ "type": {
588
+ "text": "boolean"
589
+ },
590
+ "default": "false",
591
+ "attribute": "has-content",
592
+ "reflects": true
593
+ },
594
+ {
595
+ "kind": "method",
596
+ "name": "handleSlotChange",
597
+ "privacy": "private",
598
+ "parameters": [
599
+ {
600
+ "name": "e",
601
+ "type": {
602
+ "text": "Event"
603
+ }
604
+ }
605
+ ]
606
+ }
607
+ ],
608
+ "attributes": [
609
+ {
610
+ "name": "has-content",
611
+ "type": {
612
+ "text": "boolean"
613
+ },
614
+ "default": "false",
615
+ "fieldName": "hasContent"
616
+ }
617
+ ],
618
+ "superclass": {
619
+ "name": "LitElement",
620
+ "package": "lit"
621
+ },
622
+ "tagName": "u-card-content",
623
+ "customElement": true
624
+ }
625
+ ],
626
+ "exports": [
627
+ {
628
+ "kind": "js",
629
+ "name": "UmCardContent",
630
+ "declaration": {
631
+ "name": "UmCardContent",
632
+ "module": "src/card/card-content.ts"
633
+ }
634
+ },
635
+ {
636
+ "kind": "custom-element-definition",
637
+ "name": "u-card-content",
638
+ "declaration": {
639
+ "name": "UmCardContent",
640
+ "module": "src/card/card-content.ts"
641
+ }
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "kind": "javascript-module",
647
+ "path": "src/card/card-media.styles.ts",
648
+ "declarations": [
649
+ {
650
+ "kind": "variable",
651
+ "name": "styles",
652
+ "default": "css `\n :host {\n display: block;\n aspect-ratio: 1;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([wide]) {\n aspect-ratio: 16/9;\n }\n`"
653
+ }
654
+ ],
655
+ "exports": [
656
+ {
657
+ "kind": "js",
658
+ "name": "styles",
659
+ "declaration": {
660
+ "name": "styles",
661
+ "module": "src/card/card-media.styles.ts"
662
+ }
663
+ }
664
+ ]
665
+ },
666
+ {
667
+ "kind": "javascript-module",
668
+ "path": "src/card/card-media.ts",
669
+ "declarations": [
670
+ {
671
+ "kind": "class",
672
+ "description": "",
673
+ "name": "UmCardMedia",
674
+ "members": [
675
+ {
676
+ "kind": "field",
677
+ "name": "wide",
678
+ "type": {
679
+ "text": "boolean"
680
+ },
681
+ "default": "false",
682
+ "attribute": "wide",
683
+ "reflects": true
684
+ }
685
+ ],
686
+ "attributes": [
687
+ {
688
+ "name": "wide",
689
+ "type": {
690
+ "text": "boolean"
691
+ },
692
+ "default": "false",
693
+ "fieldName": "wide"
694
+ }
695
+ ],
696
+ "superclass": {
697
+ "name": "LitElement",
698
+ "package": "lit"
699
+ },
700
+ "tagName": "u-card-media",
701
+ "customElement": true
702
+ }
703
+ ],
704
+ "exports": [
705
+ {
706
+ "kind": "js",
707
+ "name": "UmCardMedia",
708
+ "declaration": {
709
+ "name": "UmCardMedia",
710
+ "module": "src/card/card-media.ts"
711
+ }
712
+ },
713
+ {
714
+ "kind": "custom-element-definition",
715
+ "name": "u-card-media",
716
+ "declaration": {
717
+ "name": "UmCardMedia",
718
+ "module": "src/card/card-media.ts"
719
+ }
720
+ }
721
+ ]
722
+ },
723
+ {
724
+ "kind": "javascript-module",
725
+ "path": "src/card/card.styles.ts",
726
+ "declarations": [
727
+ {
728
+ "kind": "variable",
729
+ "name": "styles",
730
+ "default": "css `\n :host {\n display: block;\n position: relative;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([variant=elevated]) {\n background-color: var(--u-color-surface-container-low, rgb(247, 242, 250));\n }\n :host([variant=elevated]) u-elevation {\n --u-elevation-level: var(--u-elevated-card-elevation-level, 1);\n }\n\n :host([variant=filled]) {\n background-color: var(--u-color-surface-container-highest, rgb(230, 224, 233));\n }\n\n :host([variant=outlined]) {\n border: var(--u-outlined-card-outline-width, 1px) solid var(--u-outlined-card-outline-color, var(--u-color-outline-variant, rgb(202, 196, 208)));\n }\n\n u-card-content,\n slot {\n border-radius: inherit;\n }\n`"
731
+ }
732
+ ],
733
+ "exports": [
734
+ {
735
+ "kind": "js",
736
+ "name": "styles",
737
+ "declaration": {
738
+ "name": "styles",
739
+ "module": "src/card/card.styles.ts"
740
+ }
741
+ }
742
+ ]
743
+ },
744
+ {
745
+ "kind": "javascript-module",
746
+ "path": "src/card/card.ts",
747
+ "declarations": [
748
+ {
749
+ "kind": "class",
750
+ "description": "",
751
+ "name": "UmCard",
752
+ "members": [
753
+ {
754
+ "kind": "field",
755
+ "name": "variant",
756
+ "type": {
757
+ "text": "UmCardVariant"
758
+ },
759
+ "default": "'filled'",
760
+ "description": "The Card variant to render.",
761
+ "attribute": "variant",
762
+ "reflects": true
763
+ }
764
+ ],
765
+ "attributes": [
766
+ {
767
+ "name": "variant",
768
+ "type": {
769
+ "text": "UmCardVariant"
770
+ },
771
+ "default": "'filled'",
772
+ "description": "The Card variant to render.",
773
+ "fieldName": "variant"
774
+ }
775
+ ],
776
+ "superclass": {
777
+ "name": "LitElement",
778
+ "package": "lit"
779
+ },
780
+ "tagName": "u-card",
781
+ "customElement": true
782
+ }
783
+ ],
784
+ "exports": [
785
+ {
786
+ "kind": "js",
787
+ "name": "UmCard",
788
+ "declaration": {
789
+ "name": "UmCard",
790
+ "module": "src/card/card.ts"
791
+ }
792
+ },
793
+ {
794
+ "kind": "custom-element-definition",
795
+ "name": "u-card",
796
+ "declaration": {
797
+ "name": "UmCard",
798
+ "module": "src/card/card.ts"
799
+ }
800
+ }
801
+ ]
802
+ },
554
803
  {
555
804
  "kind": "javascript-module",
556
805
  "path": "src/button/button-base.ts",
@@ -3365,12 +3614,12 @@
3365
3614
  },
3366
3615
  {
3367
3616
  "kind": "javascript-module",
3368
- "path": "src/card/card-content.styles.ts",
3617
+ "path": "src/chip/chip-set.styles.ts",
3369
3618
  "declarations": [
3370
3619
  {
3371
3620
  "kind": "variable",
3372
3621
  "name": "styles",
3373
- "default": "css `\n :host {\n display: block;\n }\n\n :host(:has(slot > *)) {\n display: none;\n }\n\n :host([has-content]) {\n padding: var(--u-card-padding, 16px);\n }\n\n slot {\n border-radius: inherit;\n }\n`"
3622
+ "default": "css `\n :host {\n display: flex;\n gap: 8px;\n align-items: center;\n flex-wrap: nowrap;\n }\n\n :host([alignment=start]) {\n justify-content: flex-start;\n }\n\n :host([alignment=center]) {\n justify-content: center;\n }\n\n :host([alignment=end]) {\n justify-content: flex-end;\n }\n\n :host {\n flex-wrap: wrap;\n }\n`"
3374
3623
  }
3375
3624
  ],
3376
3625
  "exports": [
@@ -3379,256 +3628,7 @@
3379
3628
  "name": "styles",
3380
3629
  "declaration": {
3381
3630
  "name": "styles",
3382
- "module": "src/card/card-content.styles.ts"
3383
- }
3384
- }
3385
- ]
3386
- },
3387
- {
3388
- "kind": "javascript-module",
3389
- "path": "src/card/card-content.ts",
3390
- "declarations": [
3391
- {
3392
- "kind": "class",
3393
- "description": "",
3394
- "name": "UmCardContent",
3395
- "members": [
3396
- {
3397
- "kind": "field",
3398
- "name": "hasContent",
3399
- "type": {
3400
- "text": "boolean"
3401
- },
3402
- "default": "false",
3403
- "attribute": "has-content",
3404
- "reflects": true
3405
- },
3406
- {
3407
- "kind": "method",
3408
- "name": "handleSlotChange",
3409
- "privacy": "private",
3410
- "parameters": [
3411
- {
3412
- "name": "e",
3413
- "type": {
3414
- "text": "Event"
3415
- }
3416
- }
3417
- ]
3418
- }
3419
- ],
3420
- "attributes": [
3421
- {
3422
- "name": "has-content",
3423
- "type": {
3424
- "text": "boolean"
3425
- },
3426
- "default": "false",
3427
- "fieldName": "hasContent"
3428
- }
3429
- ],
3430
- "superclass": {
3431
- "name": "LitElement",
3432
- "package": "lit"
3433
- },
3434
- "tagName": "u-card-content",
3435
- "customElement": true
3436
- }
3437
- ],
3438
- "exports": [
3439
- {
3440
- "kind": "js",
3441
- "name": "UmCardContent",
3442
- "declaration": {
3443
- "name": "UmCardContent",
3444
- "module": "src/card/card-content.ts"
3445
- }
3446
- },
3447
- {
3448
- "kind": "custom-element-definition",
3449
- "name": "u-card-content",
3450
- "declaration": {
3451
- "name": "UmCardContent",
3452
- "module": "src/card/card-content.ts"
3453
- }
3454
- }
3455
- ]
3456
- },
3457
- {
3458
- "kind": "javascript-module",
3459
- "path": "src/card/card-media.styles.ts",
3460
- "declarations": [
3461
- {
3462
- "kind": "variable",
3463
- "name": "styles",
3464
- "default": "css `\n :host {\n display: block;\n aspect-ratio: 1;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([wide]) {\n aspect-ratio: 16/9;\n }\n`"
3465
- }
3466
- ],
3467
- "exports": [
3468
- {
3469
- "kind": "js",
3470
- "name": "styles",
3471
- "declaration": {
3472
- "name": "styles",
3473
- "module": "src/card/card-media.styles.ts"
3474
- }
3475
- }
3476
- ]
3477
- },
3478
- {
3479
- "kind": "javascript-module",
3480
- "path": "src/card/card-media.ts",
3481
- "declarations": [
3482
- {
3483
- "kind": "class",
3484
- "description": "",
3485
- "name": "UmCardMedia",
3486
- "members": [
3487
- {
3488
- "kind": "field",
3489
- "name": "wide",
3490
- "type": {
3491
- "text": "boolean"
3492
- },
3493
- "default": "false",
3494
- "attribute": "wide",
3495
- "reflects": true
3496
- }
3497
- ],
3498
- "attributes": [
3499
- {
3500
- "name": "wide",
3501
- "type": {
3502
- "text": "boolean"
3503
- },
3504
- "default": "false",
3505
- "fieldName": "wide"
3506
- }
3507
- ],
3508
- "superclass": {
3509
- "name": "LitElement",
3510
- "package": "lit"
3511
- },
3512
- "tagName": "u-card-media",
3513
- "customElement": true
3514
- }
3515
- ],
3516
- "exports": [
3517
- {
3518
- "kind": "js",
3519
- "name": "UmCardMedia",
3520
- "declaration": {
3521
- "name": "UmCardMedia",
3522
- "module": "src/card/card-media.ts"
3523
- }
3524
- },
3525
- {
3526
- "kind": "custom-element-definition",
3527
- "name": "u-card-media",
3528
- "declaration": {
3529
- "name": "UmCardMedia",
3530
- "module": "src/card/card-media.ts"
3531
- }
3532
- }
3533
- ]
3534
- },
3535
- {
3536
- "kind": "javascript-module",
3537
- "path": "src/card/card.styles.ts",
3538
- "declarations": [
3539
- {
3540
- "kind": "variable",
3541
- "name": "styles",
3542
- "default": "css `\n :host {\n display: block;\n position: relative;\n border-radius: var(--u-card-shape-corner, var(--u-shape-corner-medium, 12px));\n }\n\n :host([variant=elevated]) {\n background-color: var(--u-color-surface-container-low, rgb(247, 242, 250));\n }\n :host([variant=elevated]) u-elevation {\n --u-elevation-level: var(--u-elevated-card-elevation-level, 1);\n }\n\n :host([variant=filled]) {\n background-color: var(--u-color-surface-container-highest, rgb(230, 224, 233));\n }\n\n :host([variant=outlined]) {\n border: var(--u-outlined-card-outline-width, 1px) solid var(--u-outlined-card-outline-color, var(--u-color-outline-variant, rgb(202, 196, 208)));\n }\n\n u-card-content,\n slot {\n border-radius: inherit;\n }\n`"
3543
- }
3544
- ],
3545
- "exports": [
3546
- {
3547
- "kind": "js",
3548
- "name": "styles",
3549
- "declaration": {
3550
- "name": "styles",
3551
- "module": "src/card/card.styles.ts"
3552
- }
3553
- }
3554
- ]
3555
- },
3556
- {
3557
- "kind": "javascript-module",
3558
- "path": "src/card/card.ts",
3559
- "declarations": [
3560
- {
3561
- "kind": "class",
3562
- "description": "",
3563
- "name": "UmCard",
3564
- "members": [
3565
- {
3566
- "kind": "field",
3567
- "name": "variant",
3568
- "type": {
3569
- "text": "UmCardVariant"
3570
- },
3571
- "default": "'filled'",
3572
- "description": "The Card variant to render.",
3573
- "attribute": "variant",
3574
- "reflects": true
3575
- }
3576
- ],
3577
- "attributes": [
3578
- {
3579
- "name": "variant",
3580
- "type": {
3581
- "text": "UmCardVariant"
3582
- },
3583
- "default": "'filled'",
3584
- "description": "The Card variant to render.",
3585
- "fieldName": "variant"
3586
- }
3587
- ],
3588
- "superclass": {
3589
- "name": "LitElement",
3590
- "package": "lit"
3591
- },
3592
- "tagName": "u-card",
3593
- "customElement": true
3594
- }
3595
- ],
3596
- "exports": [
3597
- {
3598
- "kind": "js",
3599
- "name": "UmCard",
3600
- "declaration": {
3601
- "name": "UmCard",
3602
- "module": "src/card/card.ts"
3603
- }
3604
- },
3605
- {
3606
- "kind": "custom-element-definition",
3607
- "name": "u-card",
3608
- "declaration": {
3609
- "name": "UmCard",
3610
- "module": "src/card/card.ts"
3611
- }
3612
- }
3613
- ]
3614
- },
3615
- {
3616
- "kind": "javascript-module",
3617
- "path": "src/chip/chip-set.styles.ts",
3618
- "declarations": [
3619
- {
3620
- "kind": "variable",
3621
- "name": "styles",
3622
- "default": "css `\n :host {\n display: flex;\n gap: 8px;\n align-items: center;\n flex-wrap: nowrap;\n }\n\n :host([alignment=start]) {\n justify-content: flex-start;\n }\n\n :host([alignment=center]) {\n justify-content: center;\n }\n\n :host([alignment=end]) {\n justify-content: flex-end;\n }\n\n :host {\n flex-wrap: wrap;\n }\n`"
3623
- }
3624
- ],
3625
- "exports": [
3626
- {
3627
- "kind": "js",
3628
- "name": "styles",
3629
- "declaration": {
3630
- "name": "styles",
3631
- "module": "src/chip/chip-set.styles.ts"
3631
+ "module": "src/chip/chip-set.styles.ts"
3632
3632
  }
3633
3633
  }
3634
3634
  ]
@@ -8135,81 +8135,97 @@
8135
8135
  },
8136
8136
  {
8137
8137
  "kind": "javascript-module",
8138
- "path": "src/radio/radio-list-item.ts",
8138
+ "path": "src/navigation/drawer-item.styles.ts",
8139
8139
  "declarations": [
8140
8140
  {
8141
- "kind": "class",
8142
- "description": "",
8143
- "name": "UmRadioListItem",
8144
- "mixins": [
8145
- {
8146
- "name": "mixinSelectionControlListItem",
8147
- "module": "/src/shared/selection-control/selection-control-list-item.js"
8148
- }
8149
- ],
8150
- "superclass": {
8151
- "name": "UmRadio",
8152
- "module": "/src/radio/radio.js"
8153
- },
8154
- "tagName": "u-radio-list-item",
8155
- "customElement": true,
8141
+ "kind": "variable",
8142
+ "name": "styles",
8143
+ "default": "css `\n :host,\n * {\n --_focus-ring-outline-offset: var(--u-focus-ring-outline-offset, 2px);\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n box-sizing: border-box;\n outline: 0;\n }\n\n :host(.force-focus-ring) .focus-ring,\n .focus-ring:focus-visible {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n animation: u-focus-pulse 500ms ease;\n animation-fill-mode: forwards;\n outline-offset: var(--_focus-ring-outline-offset);\n }\n\n @keyframes u-focus-pulse {\n 0% {\n outline: 0 solid var(--_color-primary);\n }\n 50% {\n outline: 6px solid var(--_color-primary);\n }\n 100% {\n outline: 4px solid var(--_color-primary);\n }\n }\n :host {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n -webkit-tap-highlight-color: transparent;\n --u-elevation-level: 0;\n position: relative;\n display: inline-block;\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n appearance: none !important;\n }\n\n :host([disabled]) {\n --u-elevation-level: 0 !important;\n background-color: var(--u-button-disabled-background-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-button-disabled-background-opacity, 0.12))) !important;\n color: var(--u-button-disabled-text-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-button-disabled-color, 0.38))) !important;\n }\n\n :host([disabled]) .button {\n cursor: default;\n }\n\n * {\n color: inherit;\n }\n\n u-elevation {\n z-index: -1;\n }\n\n .button {\n cursor: pointer;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100%;\n height: 100%;\n font-family: inherit;\n border-radius: inherit;\n color: inherit;\n border: none;\n margin: 0;\n padding: 0;\n text-align: center;\n white-space: nowrap;\n background: transparent;\n user-select: none;\n text-decoration: none;\n outline: 0;\n z-index: 0;\n }\n\n .content {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n white-space: nowrap;\n border-radius: inherit;\n width: 100%;\n height: 100%;\n }\n\n :host {\n display: block;\n --_drawer-item-icon-size: var(--u-drawer-item-icon-size, 1.125rem);\n --_drawer-item-padding: var(--u-drawer-item-padding, 16px);\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-drawer-item-line-height, var(--u-label-l-line-height, 1.25rem));\n font-size: var(--u-drawer-item-font-size, var(--u-label-l-font-size, 0.875rem));\n letter-spacing: var(--u-drawer-item-letter-spacing, var(--u-label-l-letter-spacing, 0.0071428571rem));\n font-weight: var(--u-drawer-item-font-weight, var(--u-label-l-font-weight, var(--u-font-weight-medium, 500)));\n height: var(--u-drawer-item-height, 56px);\n padding-inline: var(--_drawer-item-padding);\n margin-inline: calc(var(--_drawer-item-padding) * -1);\n border-radius: var(--u-drawer-item-shape-corner, var(--u-shape-corner-full, 9999px));\n color: var(--u-drawer-item-label-inactive-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n }\n\n :host([active]) {\n color: var(--u-drawer-item-label-active-color, var(--_color-primary));\n }\n\n :host(:not([has-icon])) .icon,\n :host(:not([has-badge])) .badge {\n display: none;\n }\n\n .icon {\n font-size: var(--_drawer-item-icon-size);\n line-height: var(--_drawer-item-icon-size);\n margin-inline-end: var(--u-drawer-item-icon-margin, 16px);\n }\n\n .badge {\n display: flex;\n justify-content: center;\n align-items: center;\n margin-inline-start: auto;\n padding-inline: var(--u-drawer-item-badge-padding, 12px 8px);\n }\n\n .content {\n justify-content: flex-start;\n }\n`"
8144
+ }
8145
+ ],
8146
+ "exports": [
8147
+ {
8148
+ "kind": "js",
8149
+ "name": "styles",
8150
+ "declaration": {
8151
+ "name": "styles",
8152
+ "module": "src/navigation/drawer-item.styles.ts"
8153
+ }
8154
+ }
8155
+ ]
8156
+ },
8157
+ {
8158
+ "kind": "javascript-module",
8159
+ "path": "src/navigation/drawer-item.ts",
8160
+ "declarations": [
8161
+ {
8162
+ "kind": "class",
8163
+ "description": "",
8164
+ "name": "UmDrawerItem",
8156
8165
  "members": [
8157
8166
  {
8158
8167
  "kind": "field",
8159
- "name": "styles",
8168
+ "name": "hasIcon",
8160
8169
  "type": {
8161
- "text": "array"
8170
+ "text": "boolean"
8162
8171
  },
8163
- "static": true,
8164
- "default": "[\n (base as unknown as typeof LitElement).styles ?? [],\n css`:host {\n --u-list-item-block-padding: 0;\n display: block;\n }`\n ]",
8165
- "inheritedFrom": {
8166
- "name": "mixinSelectionControlListItem",
8167
- "module": "src/shared/selection-control/selection-control-list-item.ts"
8168
- }
8172
+ "default": "false",
8173
+ "description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
8174
+ "attribute": "has-icon",
8175
+ "reflects": true
8169
8176
  },
8170
8177
  {
8171
- "kind": "method",
8172
- "name": "render",
8173
- "return": {
8174
- "type": {
8175
- "text": "HTMLTemplateResult"
8176
- }
8178
+ "kind": "field",
8179
+ "name": "hasBadge",
8180
+ "type": {
8181
+ "text": "boolean"
8177
8182
  },
8178
- "inheritedFrom": {
8179
- "name": "mixinSelectionControlListItem",
8180
- "module": "src/shared/selection-control/selection-control-list-item.ts"
8181
- }
8183
+ "default": "false",
8184
+ "description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
8185
+ "attribute": "has-badge",
8186
+ "reflects": true
8182
8187
  },
8183
8188
  {
8184
8189
  "kind": "field",
8185
- "name": "hideStateLayer",
8190
+ "name": "active",
8186
8191
  "type": {
8187
8192
  "text": "boolean"
8188
8193
  },
8189
8194
  "default": "false",
8190
- "attribute": "hide-state-layer",
8191
- "reflects": true,
8192
- "inheritedFrom": {
8193
- "name": "UmRadio",
8194
- "module": "src/radio/radio.ts"
8195
- }
8195
+ "description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
8196
+ "attribute": "active",
8197
+ "reflects": true
8196
8198
  },
8197
8199
  {
8198
8200
  "kind": "field",
8199
- "name": "inputType",
8201
+ "name": "keepDrawerOpen",
8200
8202
  "type": {
8201
- "text": "'checkbox' | 'radio'"
8203
+ "text": "boolean"
8202
8204
  },
8203
- "privacy": "protected",
8204
- "default": "'radio'",
8205
- "inheritedFrom": {
8206
- "name": "UmSelectionControl",
8207
- "module": "src/shared/selection-control/selection-control.ts"
8208
- }
8205
+ "default": "false",
8206
+ "description": "If true, it will not attempt to close de navigation drawer on click",
8207
+ "attribute": "keep-drawer-open",
8208
+ "reflects": true
8209
+ },
8210
+ {
8211
+ "kind": "field",
8212
+ "name": "assignedIcons",
8213
+ "type": {
8214
+ "text": "HTMLElement[]"
8215
+ },
8216
+ "privacy": "private"
8217
+ },
8218
+ {
8219
+ "kind": "field",
8220
+ "name": "assignedBadges",
8221
+ "type": {
8222
+ "text": "HTMLElement[]"
8223
+ },
8224
+ "privacy": "private"
8209
8225
  },
8210
8226
  {
8211
8227
  "kind": "method",
8212
- "name": "renderIndicator",
8228
+ "name": "renderContent",
8213
8229
  "privacy": "protected",
8214
8230
  "return": {
8215
8231
  "type": {
@@ -8217,220 +8233,274 @@
8217
8233
  }
8218
8234
  },
8219
8235
  "inheritedFrom": {
8220
- "name": "UmSelectionControl",
8221
- "module": "src/shared/selection-control/selection-control.ts"
8236
+ "name": "UmButtonWrapper",
8237
+ "module": "src/shared/button-wrapper.ts"
8222
8238
  }
8223
8239
  },
8224
8240
  {
8225
- "kind": "field",
8226
- "name": "checked",
8227
- "attribute": "checked",
8228
- "inheritedFrom": {
8229
- "name": "UmSelectionControl",
8230
- "module": "src/shared/selection-control/selection-control.ts"
8231
- }
8241
+ "kind": "method",
8242
+ "name": "handleIconSlotChange",
8243
+ "privacy": "private"
8232
8244
  },
8233
8245
  {
8234
- "kind": "field",
8235
- "name": "#siblings",
8236
- "privacy": "private",
8237
- "type": {
8238
- "text": "UmRadio[]"
8239
- },
8240
- "inheritedFrom": {
8241
- "name": "UmRadio",
8242
- "module": "src/radio/radio.ts"
8243
- }
8246
+ "kind": "method",
8247
+ "name": "handleBadgeSlotChange",
8248
+ "privacy": "private"
8244
8249
  },
8245
8250
  {
8246
8251
  "kind": "method",
8247
- "name": "#handleKeyDown",
8252
+ "name": "handleClick",
8253
+ "privacy": "protected",
8254
+ "return": {
8255
+ "type": {
8256
+ "text": "void"
8257
+ }
8258
+ },
8248
8259
  "parameters": [
8249
8260
  {
8250
- "name": "event",
8261
+ "name": "_",
8251
8262
  "type": {
8252
- "text": "KeyboardEvent"
8263
+ "text": "UIEvent"
8253
8264
  }
8254
8265
  }
8255
8266
  ],
8256
8267
  "inheritedFrom": {
8257
- "name": "UmRadio",
8258
- "module": "src/radio/radio.ts"
8259
- }
8260
- },
8261
- {
8262
- "kind": "method",
8263
- "name": "ensureOnlyOneChecked",
8264
- "privacy": "private",
8265
- "inheritedFrom": {
8266
- "name": "UmRadio",
8267
- "module": "src/radio/radio.ts"
8268
- }
8269
- },
8270
- {
8271
- "kind": "method",
8272
- "name": "uncheckSiblings",
8273
- "privacy": "private",
8274
- "inheritedFrom": {
8275
- "name": "UmRadio",
8276
- "module": "src/radio/radio.ts"
8268
+ "name": "UmButtonWrapper",
8269
+ "module": "src/shared/button-wrapper.ts"
8277
8270
  }
8278
8271
  },
8279
8272
  {
8280
8273
  "kind": "field",
8281
- "name": "formAssociated",
8274
+ "name": "disabled",
8282
8275
  "type": {
8283
8276
  "text": "boolean"
8284
8277
  },
8285
- "static": true,
8286
- "default": "true",
8278
+ "default": "false",
8279
+ "description": "Whether the button is disabled or not.",
8280
+ "attribute": "disabled",
8281
+ "reflects": true,
8287
8282
  "inheritedFrom": {
8288
- "name": "UmSelectionControl",
8289
- "module": "src/shared/selection-control/selection-control.ts"
8283
+ "name": "UmButtonWrapper",
8284
+ "module": "src/shared/button-wrapper.ts"
8290
8285
  }
8291
8286
  },
8292
8287
  {
8293
8288
  "kind": "field",
8294
- "name": "elementInternals",
8289
+ "name": "renderRipple",
8295
8290
  "type": {
8296
- "text": "ElementInternals"
8291
+ "text": "boolean"
8297
8292
  },
8298
- "privacy": "protected",
8293
+ "default": "true",
8299
8294
  "inheritedFrom": {
8300
- "name": "UmSelectionControl",
8301
- "module": "src/shared/selection-control/selection-control.ts"
8295
+ "name": "UmButtonWrapper",
8296
+ "module": "src/shared/button-wrapper.ts"
8302
8297
  }
8303
8298
  },
8304
8299
  {
8305
8300
  "kind": "field",
8306
- "name": "name",
8301
+ "name": "href",
8307
8302
  "type": {
8308
8303
  "text": "string | undefined"
8309
8304
  },
8310
- "default": "''",
8311
- "attribute": "name",
8305
+ "description": "The URL that the link button points to.",
8306
+ "attribute": "href",
8312
8307
  "inheritedFrom": {
8313
- "name": "UmSelectionControl",
8314
- "module": "src/shared/selection-control/selection-control.ts"
8308
+ "name": "UmButtonWrapper",
8309
+ "module": "src/shared/button-wrapper.ts"
8315
8310
  }
8316
8311
  },
8317
8312
  {
8318
8313
  "kind": "field",
8319
- "name": "disabled",
8314
+ "name": "target",
8320
8315
  "type": {
8321
- "text": "boolean"
8316
+ "text": "string | undefined"
8322
8317
  },
8323
- "default": "false",
8324
- "attribute": "disabled",
8325
- "reflects": true,
8318
+ "description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
8319
+ "attribute": "target",
8326
8320
  "inheritedFrom": {
8327
- "name": "UmSelectionControl",
8328
- "module": "src/shared/selection-control/selection-control.ts"
8321
+ "name": "UmButtonWrapper",
8322
+ "module": "src/shared/button-wrapper.ts"
8329
8323
  }
8330
8324
  },
8331
8325
  {
8332
8326
  "kind": "field",
8333
- "name": "input",
8327
+ "name": "name",
8334
8328
  "type": {
8335
- "text": "HTMLInputElement"
8329
+ "text": "string | undefined"
8336
8330
  },
8331
+ "attribute": "name",
8337
8332
  "inheritedFrom": {
8338
- "name": "UmSelectionControl",
8339
- "module": "src/shared/selection-control/selection-control.ts"
8333
+ "name": "UmButtonWrapper",
8334
+ "module": "src/shared/button-wrapper.ts"
8340
8335
  }
8341
8336
  },
8342
8337
  {
8343
8338
  "kind": "field",
8344
- "name": "form",
8339
+ "name": "buttonElement",
8345
8340
  "type": {
8346
- "text": "HTMLFormElement | null"
8341
+ "text": "HTMLElement"
8347
8342
  },
8348
8343
  "inheritedFrom": {
8349
- "name": "UmSelectionControl",
8350
- "module": "src/shared/selection-control/selection-control.ts"
8344
+ "name": "UmButtonWrapper",
8345
+ "module": "src/shared/button-wrapper.ts"
8351
8346
  }
8352
8347
  },
8353
8348
  {
8354
8349
  "kind": "field",
8355
- "name": "#checked",
8356
- "privacy": "private",
8350
+ "name": "ripple",
8357
8351
  "type": {
8358
- "text": "boolean"
8352
+ "text": "UmRipple"
8359
8353
  },
8360
- "default": "false",
8354
+ "privacy": "private",
8361
8355
  "inheritedFrom": {
8362
- "name": "UmSelectionControl",
8363
- "module": "src/shared/selection-control/selection-control.ts"
8356
+ "name": "UmButtonWrapper",
8357
+ "module": "src/shared/button-wrapper.ts"
8364
8358
  }
8365
8359
  },
8366
8360
  {
8367
8361
  "kind": "field",
8368
- "name": "renderRipple",
8362
+ "name": "innerRole",
8369
8363
  "type": {
8370
- "text": "boolean"
8364
+ "text": "string | null"
8371
8365
  },
8372
8366
  "privacy": "protected",
8373
- "default": "true",
8367
+ "default": "null",
8374
8368
  "inheritedFrom": {
8375
- "name": "UmSelectionControl",
8376
- "module": "src/shared/selection-control/selection-control.ts"
8369
+ "name": "UmButtonWrapper",
8370
+ "module": "src/shared/button-wrapper.ts"
8377
8371
  }
8378
8372
  },
8379
8373
  {
8380
8374
  "kind": "field",
8381
- "name": "value",
8375
+ "name": "pathname",
8382
8376
  "type": {
8383
8377
  "text": "string"
8384
8378
  },
8385
- "default": "'on'",
8386
- "description": "The element value to use in form submission when checked.",
8387
- "attribute": "value",
8388
8379
  "inheritedFrom": {
8389
- "name": "UmSelectionControl",
8390
- "module": "src/shared/selection-control/selection-control.ts"
8380
+ "name": "UmButtonWrapper",
8381
+ "module": "src/shared/button-wrapper.ts"
8391
8382
  }
8392
8383
  },
8393
8384
  {
8394
8385
  "kind": "method",
8395
- "name": "#handleClick",
8386
+ "name": "renderButton",
8387
+ "privacy": "private",
8388
+ "inheritedFrom": {
8389
+ "name": "UmButtonWrapper",
8390
+ "module": "src/shared/button-wrapper.ts"
8391
+ }
8392
+ },
8393
+ {
8394
+ "kind": "method",
8395
+ "name": "renderLink",
8396
+ "privacy": "private",
8397
+ "inheritedFrom": {
8398
+ "name": "UmButtonWrapper",
8399
+ "module": "src/shared/button-wrapper.ts"
8400
+ }
8401
+ },
8402
+ {
8403
+ "kind": "method",
8404
+ "name": "focus",
8405
+ "inheritedFrom": {
8406
+ "name": "UmButtonWrapper",
8407
+ "module": "src/shared/button-wrapper.ts"
8408
+ }
8409
+ },
8410
+ {
8411
+ "kind": "method",
8412
+ "name": "blur",
8413
+ "inheritedFrom": {
8414
+ "name": "UmButtonWrapper",
8415
+ "module": "src/shared/button-wrapper.ts"
8416
+ }
8417
+ },
8418
+ {
8419
+ "kind": "method",
8420
+ "name": "getAriaLabel",
8421
+ "privacy": "protected",
8422
+ "return": {
8423
+ "type": {
8424
+ "text": "string | null"
8425
+ }
8426
+ },
8427
+ "inheritedFrom": {
8428
+ "name": "UmButtonWrapper",
8429
+ "module": "src/shared/button-wrapper.ts"
8430
+ }
8431
+ },
8432
+ {
8433
+ "kind": "method",
8434
+ "name": "innerFocusHandler",
8435
+ "privacy": "private",
8436
+ "return": {
8437
+ "type": {
8438
+ "text": "void"
8439
+ }
8440
+ },
8441
+ "inheritedFrom": {
8442
+ "name": "UmButtonWrapper",
8443
+ "module": "src/shared/button-wrapper.ts"
8444
+ }
8445
+ },
8446
+ {
8447
+ "kind": "method",
8448
+ "name": "#innerClickHandler",
8449
+ "return": {
8450
+ "type": {
8451
+ "text": "void"
8452
+ }
8453
+ },
8396
8454
  "parameters": [
8397
8455
  {
8398
- "name": "e",
8456
+ "name": "event",
8399
8457
  "type": {
8400
- "text": "Event"
8458
+ "text": "MouseEvent"
8401
8459
  }
8402
8460
  }
8403
8461
  ],
8404
8462
  "inheritedFrom": {
8405
- "name": "UmSelectionControl",
8406
- "module": "src/shared/selection-control/selection-control.ts"
8463
+ "name": "UmButtonWrapper",
8464
+ "module": "src/shared/button-wrapper.ts"
8407
8465
  }
8408
8466
  }
8409
8467
  ],
8410
8468
  "attributes": [
8411
8469
  {
8412
- "name": "hide-state-layer",
8470
+ "name": "has-icon",
8413
8471
  "type": {
8414
8472
  "text": "boolean"
8415
8473
  },
8416
8474
  "default": "false",
8417
- "fieldName": "hideStateLayer",
8418
- "inheritedFrom": {
8419
- "name": "UmRadio",
8420
- "module": "src/radio/radio.ts"
8421
- }
8475
+ "description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
8476
+ "fieldName": "hasIcon"
8422
8477
  },
8423
8478
  {
8424
- "name": "name",
8479
+ "name": "has-badge",
8425
8480
  "type": {
8426
- "text": "string | undefined"
8481
+ "text": "boolean"
8427
8482
  },
8428
- "default": "''",
8429
- "fieldName": "name",
8430
- "inheritedFrom": {
8431
- "name": "UmSelectionControl",
8432
- "module": "src/shared/selection-control/selection-control.ts"
8433
- }
8483
+ "default": "false",
8484
+ "description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
8485
+ "fieldName": "hasBadge"
8486
+ },
8487
+ {
8488
+ "name": "active",
8489
+ "type": {
8490
+ "text": "boolean"
8491
+ },
8492
+ "default": "false",
8493
+ "description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
8494
+ "fieldName": "active"
8495
+ },
8496
+ {
8497
+ "name": "keep-drawer-open",
8498
+ "type": {
8499
+ "text": "boolean"
8500
+ },
8501
+ "default": "false",
8502
+ "description": "If true, it will not attempt to close de navigation drawer on click",
8503
+ "fieldName": "keepDrawerOpen"
8434
8504
  },
8435
8505
  {
8436
8506
  "name": "disabled",
@@ -8438,85 +8508,84 @@
8438
8508
  "text": "boolean"
8439
8509
  },
8440
8510
  "default": "false",
8511
+ "description": "Whether the button is disabled or not.",
8441
8512
  "fieldName": "disabled",
8442
8513
  "inheritedFrom": {
8443
- "name": "UmSelectionControl",
8444
- "module": "src/shared/selection-control/selection-control.ts"
8514
+ "name": "UmButtonWrapper",
8515
+ "module": "src/shared/button-wrapper.ts"
8445
8516
  }
8446
8517
  },
8447
8518
  {
8448
- "name": "value",
8519
+ "name": "href",
8449
8520
  "type": {
8450
- "text": "string"
8521
+ "text": "string | undefined"
8451
8522
  },
8452
- "default": "'on'",
8453
- "description": "The element value to use in form submission when checked.",
8454
- "fieldName": "value",
8523
+ "description": "The URL that the link button points to.",
8524
+ "fieldName": "href",
8455
8525
  "inheritedFrom": {
8456
- "name": "UmSelectionControl",
8457
- "module": "src/shared/selection-control/selection-control.ts"
8526
+ "name": "UmButtonWrapper",
8527
+ "module": "src/shared/button-wrapper.ts"
8458
8528
  }
8459
8529
  },
8460
8530
  {
8461
- "name": "checked",
8462
- "fieldName": "checked",
8463
- "inheritedFrom": {
8464
- "name": "UmSelectionControl",
8465
- "module": "src/shared/selection-control/selection-control.ts"
8466
- }
8467
- }
8468
- ],
8469
- "events": [
8470
- {
8471
- "name": "input",
8531
+ "name": "target",
8472
8532
  "type": {
8473
- "text": "InputEvent"
8533
+ "text": "string | undefined"
8474
8534
  },
8535
+ "description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
8536
+ "fieldName": "target",
8475
8537
  "inheritedFrom": {
8476
- "name": "UmSelectionControl",
8477
- "module": "src/shared/selection-control/selection-control.ts"
8538
+ "name": "UmButtonWrapper",
8539
+ "module": "src/shared/button-wrapper.ts"
8478
8540
  }
8479
8541
  },
8480
8542
  {
8481
- "name": "change",
8543
+ "name": "name",
8482
8544
  "type": {
8483
- "text": "Event"
8545
+ "text": "string | undefined"
8484
8546
  },
8547
+ "fieldName": "name",
8485
8548
  "inheritedFrom": {
8486
- "name": "UmSelectionControl",
8487
- "module": "src/shared/selection-control/selection-control.ts"
8549
+ "name": "UmButtonWrapper",
8550
+ "module": "src/shared/button-wrapper.ts"
8488
8551
  }
8489
8552
  }
8490
- ]
8553
+ ],
8554
+ "superclass": {
8555
+ "name": "UmButtonWrapper",
8556
+ "module": "/src/shared/button-wrapper.js"
8557
+ },
8558
+ "tagName": "u-drawer-item",
8559
+ "customElement": true
8491
8560
  }
8492
8561
  ],
8493
8562
  "exports": [
8494
8563
  {
8495
8564
  "kind": "js",
8496
- "name": "UmRadioListItem",
8565
+ "name": "UmDrawerItem",
8497
8566
  "declaration": {
8498
- "name": "UmRadioListItem",
8499
- "module": "src/radio/radio-list-item.ts"
8567
+ "name": "UmDrawerItem",
8568
+ "module": "src/navigation/drawer-item.ts"
8500
8569
  }
8501
8570
  },
8502
8571
  {
8503
8572
  "kind": "custom-element-definition",
8504
- "name": "u-radio-list-item",
8573
+ "name": "u-drawer-item",
8505
8574
  "declaration": {
8506
- "name": "UmRadioListItem",
8507
- "module": "src/radio/radio-list-item.ts"
8575
+ "name": "UmDrawerItem",
8576
+ "module": "src/navigation/drawer-item.ts"
8508
8577
  }
8509
8578
  }
8510
8579
  ]
8511
8580
  },
8512
8581
  {
8513
8582
  "kind": "javascript-module",
8514
- "path": "src/radio/radio.styles.ts",
8583
+ "path": "src/navigation/drawer.styles.ts",
8515
8584
  "declarations": [
8516
8585
  {
8517
8586
  "kind": "variable",
8518
8587
  "name": "styles",
8519
- "default": "css `\n :host {\n --_state-layer-padding: var(--u-radio-state-layer-padding, 4px);\n --_input-size: calc(var(--_width) - var(--_state-layer-padding) * 2);\n --_indicator-color: var(--u-radio-indicator-unselected-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n display: inline-block;\n vertical-align: middle;\n }\n\n .container {\n cursor: pointer;\n position: relative;\n width: var(--_width);\n height: var(--_height);\n padding: var(--_state-layer-padding);\n border-radius: var(--u-shape-corner-full, 9999px);\n }\n\n :host([hide-state-layer]) .container {\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n padding: 0;\n }\n :host([hide-state-layer]) u-ripple {\n display: none;\n }\n\n input {\n cursor: pointer;\n width: 100%;\n height: 100%;\n padding: 0;\n margin: 0;\n border-radius: inherit;\n appearance: none;\n }\n\n u-ripple {\n padding: var(--_state-layer-padding);\n }\n\n .indicator-container {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n inset: 0;\n pointer-events: none;\n }\n\n input:checked ~ .indicator-container {\n --_indicator-color: var(--u-radio-indicator-unselected-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n :host([disabled]) {\n opacity: var(--u-radio-disabled-state-opacity, 0.38);\n }\n :host([disabled]) input,\n :host([disabled]) .container {\n cursor: default;\n }\n :host([disabled]) .indicator-container {\n --_indicator-color: var(--u-radio-indicator-disabled-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n }\n\n :host {\n --_indicator-size: var(--u-radio-indicator-size, 1.25rem);\n --_width: var(--u-radio-size, 3rem);\n --_height: var(--_width);\n }\n\n .indicator {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n border: var(--u-radio-indicator-border-width, 0.125rem) solid var(--_indicator-color);\n border-radius: 50%;\n }\n .indicator::before {\n content: \"\";\n width: calc(var(--_indicator-size) / 2);\n height: calc(var(--_indicator-size) / 2);\n background: var(--_indicator-color);\n border-radius: 50%;\n transition: transform 250ms;\n transform: scale3d(0, 0, 1);\n }\n\n input:checked ~ .indicator-container .indicator::before {\n transform: scale3d(1, 1, 1);\n }\n`"
8588
+ "default": "css `\n :host {\n display: block;\n background-color: var(--u-modal-drawer-background-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));\n color: var(--u-drawer-text-color, var(--u-color-on-secondary-container, rgb(29, 25, 43)));\n height: 100%;\n padding-inline: var(--u-drawer-padding, 28px);\n }\n\n @media (min-width: 1200px) {\n :host {\n background-color: var(--u-standard-drawer-background-color, var(--u-color-body, var(--u-color-surface, rgb(254, 247, 255))));\n }\n }\n`"
8520
8589
  }
8521
8590
  ],
8522
8591
  "exports": [
@@ -8525,77 +8594,577 @@
8525
8594
  "name": "styles",
8526
8595
  "declaration": {
8527
8596
  "name": "styles",
8528
- "module": "src/radio/radio.styles.ts"
8597
+ "module": "src/navigation/drawer.styles.ts"
8529
8598
  }
8530
8599
  }
8531
8600
  ]
8532
8601
  },
8533
8602
  {
8534
8603
  "kind": "javascript-module",
8535
- "path": "src/radio/radio.ts",
8604
+ "path": "src/navigation/drawer.ts",
8536
8605
  "declarations": [
8537
8606
  {
8538
8607
  "kind": "class",
8539
8608
  "description": "",
8540
- "name": "UmRadio",
8541
- "members": [
8542
- {
8543
- "kind": "field",
8544
- "name": "hideStateLayer",
8545
- "type": {
8546
- "text": "boolean"
8547
- },
8548
- "default": "false",
8549
- "attribute": "hide-state-layer",
8550
- "reflects": true
8551
- },
8552
- {
8553
- "kind": "field",
8554
- "name": "inputType",
8555
- "type": {
8556
- "text": "'checkbox' | 'radio'"
8557
- },
8558
- "privacy": "protected",
8559
- "default": "'radio'",
8560
- "inheritedFrom": {
8561
- "name": "UmSelectionControl",
8562
- "module": "src/shared/selection-control/selection-control.ts"
8563
- }
8564
- },
8565
- {
8566
- "kind": "method",
8567
- "name": "renderIndicator",
8568
- "privacy": "protected",
8569
- "return": {
8570
- "type": {
8571
- "text": "HTMLTemplateResult"
8572
- }
8573
- },
8574
- "inheritedFrom": {
8575
- "name": "UmSelectionControl",
8576
- "module": "src/shared/selection-control/selection-control.ts"
8577
- }
8578
- },
8579
- {
8580
- "kind": "field",
8581
- "name": "checked",
8582
- "attribute": "checked",
8583
- "inheritedFrom": {
8584
- "name": "UmSelectionControl",
8585
- "module": "src/shared/selection-control/selection-control.ts"
8586
- }
8587
- },
8588
- {
8589
- "kind": "field",
8590
- "name": "#siblings",
8591
- "privacy": "private",
8592
- "type": {
8593
- "text": "UmRadio[]"
8594
- }
8595
- },
8596
- {
8597
- "kind": "method",
8598
- "name": "#handleKeyDown",
8609
+ "name": "UmDrawer",
8610
+ "members": [],
8611
+ "superclass": {
8612
+ "name": "LitElement",
8613
+ "package": "lit"
8614
+ },
8615
+ "tagName": "u-drawer",
8616
+ "customElement": true
8617
+ }
8618
+ ],
8619
+ "exports": [
8620
+ {
8621
+ "kind": "js",
8622
+ "name": "UmDrawer",
8623
+ "declaration": {
8624
+ "name": "UmDrawer",
8625
+ "module": "src/navigation/drawer.ts"
8626
+ }
8627
+ },
8628
+ {
8629
+ "kind": "custom-element-definition",
8630
+ "name": "u-drawer",
8631
+ "declaration": {
8632
+ "name": "UmDrawer",
8633
+ "module": "src/navigation/drawer.ts"
8634
+ }
8635
+ }
8636
+ ]
8637
+ },
8638
+ {
8639
+ "kind": "javascript-module",
8640
+ "path": "src/navigation/side-navigation-swiper.styles.ts",
8641
+ "declarations": [
8642
+ {
8643
+ "kind": "variable",
8644
+ "name": "styles",
8645
+ "default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .content {\n position: fixed;\n inset: 0;\n z-index: 1;\n overflow: auto;\n }\n\n .drawer {\n position: relative;\n width: var(--_navigation-drawer-width);\n z-index: var(--u-side-navigation-z-index, 1030);\n pointer-events: auto;\n }\n\n .scrim {\n z-index: 1;\n }\n\n swiper-container {\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n swiper-container::part(wrapper) {\n pointer-events: none;\n z-index: 2;\n }\n\n @media (min-width: 1200px) {\n :host {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .content {\n position: static;\n }\n swiper-container::part(container) {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .dummy-slide {\n display: none;\n }\n }\n`"
8646
+ }
8647
+ ],
8648
+ "exports": [
8649
+ {
8650
+ "kind": "js",
8651
+ "name": "styles",
8652
+ "declaration": {
8653
+ "name": "styles",
8654
+ "module": "src/navigation/side-navigation-swiper.styles.ts"
8655
+ }
8656
+ }
8657
+ ]
8658
+ },
8659
+ {
8660
+ "kind": "javascript-module",
8661
+ "path": "src/navigation/side-navigation.styles.ts",
8662
+ "declarations": [
8663
+ {
8664
+ "kind": "variable",
8665
+ "name": "styles",
8666
+ "default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .navigation {\n position: fixed;\n inset-inline-start: 0;\n inset-block-start: 0;\n height: 100%;\n z-index: var(--u-side-navigation-z-index, 1030);\n }\n\n .drawer {\n position: absolute;\n inset-inline-start: var(--_navigation-drawer-width-negative);\n inset-block-start: 0;\n width: var(--_navigation-drawer-width);\n height: 100%;\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n overflow: hidden;\n }\n .drawer.toggle {\n inset-inline-start: 0;\n }\n\n .grid {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n @media (min-width: 1200px) {\n .drawer {\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n }\n`"
8667
+ }
8668
+ ],
8669
+ "exports": [
8670
+ {
8671
+ "kind": "js",
8672
+ "name": "styles",
8673
+ "declaration": {
8674
+ "name": "styles",
8675
+ "module": "src/navigation/side-navigation.styles.ts"
8676
+ }
8677
+ }
8678
+ ]
8679
+ },
8680
+ {
8681
+ "kind": "javascript-module",
8682
+ "path": "src/navigation/side-navigation.ts",
8683
+ "declarations": [
8684
+ {
8685
+ "kind": "class",
8686
+ "description": "",
8687
+ "name": "UmSideNavigation",
8688
+ "members": [
8689
+ {
8690
+ "kind": "field",
8691
+ "name": "#toggleDrawer",
8692
+ "privacy": "private",
8693
+ "type": {
8694
+ "text": "boolean"
8695
+ },
8696
+ "default": "false"
8697
+ },
8698
+ {
8699
+ "kind": "field",
8700
+ "name": "disableSlideAnimation",
8701
+ "type": {
8702
+ "text": "boolean"
8703
+ },
8704
+ "privacy": "private",
8705
+ "default": "false"
8706
+ },
8707
+ {
8708
+ "kind": "field",
8709
+ "name": "toggleDrawer",
8710
+ "description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
8711
+ "attribute": "toggle-drawer"
8712
+ },
8713
+ {
8714
+ "kind": "field",
8715
+ "name": "swiperContainer",
8716
+ "type": {
8717
+ "text": "any"
8718
+ }
8719
+ },
8720
+ {
8721
+ "kind": "field",
8722
+ "name": "scrim",
8723
+ "type": {
8724
+ "text": "HTMLElement"
8725
+ }
8726
+ },
8727
+ {
8728
+ "kind": "field",
8729
+ "name": "scrollContainer",
8730
+ "type": {
8731
+ "text": "HTMLElement | undefined"
8732
+ }
8733
+ },
8734
+ {
8735
+ "kind": "method",
8736
+ "name": "renderDefault",
8737
+ "privacy": "private"
8738
+ },
8739
+ {
8740
+ "kind": "method",
8741
+ "name": "renderWithSwipe",
8742
+ "privacy": "private"
8743
+ },
8744
+ {
8745
+ "kind": "method",
8746
+ "name": "swiperActiveIndexChange",
8747
+ "privacy": "private"
8748
+ },
8749
+ {
8750
+ "kind": "method",
8751
+ "name": "swiperTransitionStart",
8752
+ "privacy": "private"
8753
+ },
8754
+ {
8755
+ "kind": "method",
8756
+ "name": "slidesGridLengthChange",
8757
+ "privacy": "private"
8758
+ },
8759
+ {
8760
+ "kind": "method",
8761
+ "name": "swiperTransitionEnd",
8762
+ "privacy": "private"
8763
+ },
8764
+ {
8765
+ "kind": "method",
8766
+ "name": "swiperSliderMove",
8767
+ "privacy": "private",
8768
+ "parameters": [
8769
+ {
8770
+ "name": "e",
8771
+ "type": {
8772
+ "text": "Event"
8773
+ }
8774
+ }
8775
+ ]
8776
+ },
8777
+ {
8778
+ "kind": "method",
8779
+ "name": "scrimClick",
8780
+ "privacy": "private"
8781
+ }
8782
+ ],
8783
+ "attributes": [
8784
+ {
8785
+ "name": "toggle-drawer",
8786
+ "description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
8787
+ "fieldName": "toggleDrawer"
8788
+ }
8789
+ ],
8790
+ "superclass": {
8791
+ "name": "LitElement",
8792
+ "package": "lit"
8793
+ },
8794
+ "tagName": "u-side-navigation",
8795
+ "customElement": true
8796
+ }
8797
+ ],
8798
+ "exports": [
8799
+ {
8800
+ "kind": "js",
8801
+ "name": "UmSideNavigation",
8802
+ "declaration": {
8803
+ "name": "UmSideNavigation",
8804
+ "module": "src/navigation/side-navigation.ts"
8805
+ }
8806
+ },
8807
+ {
8808
+ "kind": "custom-element-definition",
8809
+ "name": "u-side-navigation",
8810
+ "declaration": {
8811
+ "name": "UmSideNavigation",
8812
+ "module": "src/navigation/side-navigation.ts"
8813
+ }
8814
+ }
8815
+ ]
8816
+ },
8817
+ {
8818
+ "kind": "javascript-module",
8819
+ "path": "src/ripple/ripple.styles.ts",
8820
+ "declarations": [
8821
+ {
8822
+ "kind": "variable",
8823
+ "name": "styles",
8824
+ "default": "css `\n :host,\n .ripple-container::before {\n --_ripple-hover-color: var(--u-ripple-hover-color, var(--u-ripple-color, var(--u-state-layer-color, currentColor)));\n --_ripple-pressed-color: var(--u-ripple-pressed-color, var(--u-ripple-color, var(--u-state-layer-color, currentColor)));\n --_ripple-hover-opacity: var(--u-ripple-pressed-opacity, var(--u-state-hover-opacity, 0.08));\n --_ripple-pressed-opacity: var(--u-ripple-pressed-opacity, .2);\n display: block;\n inset: 0;\n isolation: isolate;\n }\n\n .ripple-container {\n position: relative;\n width: 100%;\n height: 100%;\n overflow: hidden;\n border-radius: inherit;\n }\n\n .ripple-container::before {\n content: \"\";\n background: var(--_ripple-hover-color);\n opacity: 0;\n transition: opacity 200ms;\n }\n\n @media (hover: hover) {\n :host(:not([disabled]):hover) .ripple-container::before {\n content: \"\";\n background: var(--_ripple-hover-color);\n opacity: var(--_ripple-hover-opacity);\n }\n }\n :host,\n .ripple-container::before,\n .ripple {\n position: absolute;\n border-radius: inherit;\n }\n\n .ripple {\n top: 50%;\n left: 50%;\n background: var(--_ripple-pressed-color);\n border-radius: 50%;\n box-shadow: 0 0 64px 64px var(--_ripple-pressed-color);\n opacity: var(--_ripple-pressed-opacity);\n transform: scale3d(0, 0, 1);\n pointer-events: none;\n will-change: transform;\n }\n .ripple.show {\n transition: transform calc(var(--_ripple-transition-duration) / var(--u-ripple-speed, 1)) cubic-bezier(0.19, 1, 0.22, 1), opacity calc(750ms / var(--u-ripple-speed, 1));\n transform: scale3d(1, 1, 1);\n }\n .ripple.show-forced {\n transition: transform calc(var(--_ripple-transition-duration) / var(--u-ripple-speed, 1)) cubic-bezier(0.19, 1, 0.22, 1), opacity calc(200ms / var(--u-ripple-speed, 1)) 300ms;\n transform: scale3d(2, 2, 1);\n opacity: 0;\n }\n .ripple.dismiss {\n opacity: 0;\n transform: scale3d(2, 2, 1);\n }\n\n ::slotted(*) {\n position: absolute !important;\n inset: 0;\n border-radius: inherit;\n }\n`"
8825
+ }
8826
+ ],
8827
+ "exports": [
8828
+ {
8829
+ "kind": "js",
8830
+ "name": "styles",
8831
+ "declaration": {
8832
+ "name": "styles",
8833
+ "module": "src/ripple/ripple.styles.ts"
8834
+ }
8835
+ }
8836
+ ]
8837
+ },
8838
+ {
8839
+ "kind": "javascript-module",
8840
+ "path": "src/ripple/ripple.ts",
8841
+ "declarations": [
8842
+ {
8843
+ "kind": "class",
8844
+ "description": "",
8845
+ "name": "UmRipple",
8846
+ "members": [
8847
+ {
8848
+ "kind": "field",
8849
+ "name": "isTouching",
8850
+ "type": {
8851
+ "text": "boolean"
8852
+ },
8853
+ "privacy": "private",
8854
+ "default": "false"
8855
+ },
8856
+ {
8857
+ "kind": "field",
8858
+ "name": "disabled",
8859
+ "type": {
8860
+ "text": "boolean"
8861
+ },
8862
+ "default": "false",
8863
+ "description": "Disables the ripple.",
8864
+ "attribute": "disabled",
8865
+ "reflects": true
8866
+ },
8867
+ {
8868
+ "kind": "field",
8869
+ "name": "rippleContainer",
8870
+ "type": {
8871
+ "text": "HTMLElement"
8872
+ },
8873
+ "privacy": "private"
8874
+ },
8875
+ {
8876
+ "kind": "method",
8877
+ "name": "attachEvents",
8878
+ "privacy": "private",
8879
+ "return": {
8880
+ "type": {
8881
+ "text": "void"
8882
+ }
8883
+ }
8884
+ },
8885
+ {
8886
+ "kind": "method",
8887
+ "name": "dettachEvents",
8888
+ "privacy": "private",
8889
+ "return": {
8890
+ "type": {
8891
+ "text": "void"
8892
+ }
8893
+ }
8894
+ },
8895
+ {
8896
+ "kind": "method",
8897
+ "name": "handleMouseDown",
8898
+ "privacy": "private",
8899
+ "return": {
8900
+ "type": {
8901
+ "text": "void"
8902
+ }
8903
+ },
8904
+ "parameters": [
8905
+ {
8906
+ "name": "e",
8907
+ "type": {
8908
+ "text": "MouseEvent"
8909
+ }
8910
+ }
8911
+ ]
8912
+ },
8913
+ {
8914
+ "kind": "method",
8915
+ "name": "handleTouchStart",
8916
+ "privacy": "private",
8917
+ "return": {
8918
+ "type": {
8919
+ "text": "void"
8920
+ }
8921
+ },
8922
+ "parameters": [
8923
+ {
8924
+ "name": "e",
8925
+ "type": {
8926
+ "text": "TouchEvent"
8927
+ }
8928
+ }
8929
+ ]
8930
+ },
8931
+ {
8932
+ "kind": "method",
8933
+ "name": "canCreateRipple",
8934
+ "privacy": "private",
8935
+ "return": {
8936
+ "type": {
8937
+ "text": "boolean"
8938
+ }
8939
+ }
8940
+ },
8941
+ {
8942
+ "kind": "method",
8943
+ "name": "createRipple",
8944
+ "return": {
8945
+ "type": {
8946
+ "text": "(() => void) | null"
8947
+ }
8948
+ },
8949
+ "parameters": [
8950
+ {
8951
+ "name": "targetX",
8952
+ "default": "null",
8953
+ "type": {
8954
+ "text": "number | null"
8955
+ }
8956
+ },
8957
+ {
8958
+ "name": "targetY",
8959
+ "default": "null",
8960
+ "type": {
8961
+ "text": "number | null"
8962
+ }
8963
+ },
8964
+ {
8965
+ "name": "releaseEventName",
8966
+ "default": "null",
8967
+ "type": {
8968
+ "text": "string | null"
8969
+ }
8970
+ }
8971
+ ]
8972
+ },
8973
+ {
8974
+ "kind": "method",
8975
+ "name": "createDismissEvent",
8976
+ "privacy": "private",
8977
+ "return": {
8978
+ "type": {
8979
+ "text": "() => void"
8980
+ }
8981
+ },
8982
+ "parameters": [
8983
+ {
8984
+ "name": "ripple",
8985
+ "type": {
8986
+ "text": "HTMLElement"
8987
+ }
8988
+ },
8989
+ {
8990
+ "name": "releaseEventName",
8991
+ "type": {
8992
+ "text": "string"
8993
+ }
8994
+ }
8995
+ ]
8996
+ },
8997
+ {
8998
+ "kind": "method",
8999
+ "name": "_setElementSquareSizeAndCenter",
9000
+ "privacy": "private",
9001
+ "static": true,
9002
+ "parameters": [
9003
+ {
9004
+ "name": "element",
9005
+ "type": {
9006
+ "text": "HTMLElement"
9007
+ }
9008
+ },
9009
+ {
9010
+ "name": "size",
9011
+ "type": {
9012
+ "text": "number"
9013
+ }
9014
+ }
9015
+ ]
9016
+ }
9017
+ ],
9018
+ "attributes": [
9019
+ {
9020
+ "name": "disabled",
9021
+ "type": {
9022
+ "text": "boolean"
9023
+ },
9024
+ "default": "false",
9025
+ "description": "Disables the ripple.",
9026
+ "fieldName": "disabled"
9027
+ }
9028
+ ],
9029
+ "superclass": {
9030
+ "name": "LitElement",
9031
+ "package": "lit"
9032
+ },
9033
+ "tagName": "u-ripple",
9034
+ "customElement": true
9035
+ }
9036
+ ],
9037
+ "exports": [
9038
+ {
9039
+ "kind": "js",
9040
+ "name": "UmRipple",
9041
+ "declaration": {
9042
+ "name": "UmRipple",
9043
+ "module": "src/ripple/ripple.ts"
9044
+ }
9045
+ },
9046
+ {
9047
+ "kind": "custom-element-definition",
9048
+ "name": "u-ripple",
9049
+ "declaration": {
9050
+ "name": "UmRipple",
9051
+ "module": "src/ripple/ripple.ts"
9052
+ }
9053
+ }
9054
+ ]
9055
+ },
9056
+ {
9057
+ "kind": "javascript-module",
9058
+ "path": "src/radio/radio-list-item.ts",
9059
+ "declarations": [
9060
+ {
9061
+ "kind": "class",
9062
+ "description": "",
9063
+ "name": "UmRadioListItem",
9064
+ "mixins": [
9065
+ {
9066
+ "name": "mixinSelectionControlListItem",
9067
+ "module": "/src/shared/selection-control/selection-control-list-item.js"
9068
+ }
9069
+ ],
9070
+ "superclass": {
9071
+ "name": "UmRadio",
9072
+ "module": "/src/radio/radio.js"
9073
+ },
9074
+ "tagName": "u-radio-list-item",
9075
+ "customElement": true,
9076
+ "members": [
9077
+ {
9078
+ "kind": "field",
9079
+ "name": "styles",
9080
+ "type": {
9081
+ "text": "array"
9082
+ },
9083
+ "static": true,
9084
+ "default": "[\n (base as unknown as typeof LitElement).styles ?? [],\n css`:host {\n --u-list-item-block-padding: 0;\n display: block;\n }`\n ]",
9085
+ "inheritedFrom": {
9086
+ "name": "mixinSelectionControlListItem",
9087
+ "module": "src/shared/selection-control/selection-control-list-item.ts"
9088
+ }
9089
+ },
9090
+ {
9091
+ "kind": "method",
9092
+ "name": "render",
9093
+ "return": {
9094
+ "type": {
9095
+ "text": "HTMLTemplateResult"
9096
+ }
9097
+ },
9098
+ "inheritedFrom": {
9099
+ "name": "mixinSelectionControlListItem",
9100
+ "module": "src/shared/selection-control/selection-control-list-item.ts"
9101
+ }
9102
+ },
9103
+ {
9104
+ "kind": "field",
9105
+ "name": "hideStateLayer",
9106
+ "type": {
9107
+ "text": "boolean"
9108
+ },
9109
+ "default": "false",
9110
+ "attribute": "hide-state-layer",
9111
+ "reflects": true,
9112
+ "inheritedFrom": {
9113
+ "name": "UmRadio",
9114
+ "module": "src/radio/radio.ts"
9115
+ }
9116
+ },
9117
+ {
9118
+ "kind": "field",
9119
+ "name": "inputType",
9120
+ "type": {
9121
+ "text": "'checkbox' | 'radio'"
9122
+ },
9123
+ "privacy": "protected",
9124
+ "default": "'radio'",
9125
+ "inheritedFrom": {
9126
+ "name": "UmSelectionControl",
9127
+ "module": "src/shared/selection-control/selection-control.ts"
9128
+ }
9129
+ },
9130
+ {
9131
+ "kind": "method",
9132
+ "name": "renderIndicator",
9133
+ "privacy": "protected",
9134
+ "return": {
9135
+ "type": {
9136
+ "text": "HTMLTemplateResult"
9137
+ }
9138
+ },
9139
+ "inheritedFrom": {
9140
+ "name": "UmSelectionControl",
9141
+ "module": "src/shared/selection-control/selection-control.ts"
9142
+ }
9143
+ },
9144
+ {
9145
+ "kind": "field",
9146
+ "name": "checked",
9147
+ "attribute": "checked",
9148
+ "inheritedFrom": {
9149
+ "name": "UmSelectionControl",
9150
+ "module": "src/shared/selection-control/selection-control.ts"
9151
+ }
9152
+ },
9153
+ {
9154
+ "kind": "field",
9155
+ "name": "#siblings",
9156
+ "privacy": "private",
9157
+ "type": {
9158
+ "text": "UmRadio[]"
9159
+ },
9160
+ "inheritedFrom": {
9161
+ "name": "UmRadio",
9162
+ "module": "src/radio/radio.ts"
9163
+ }
9164
+ },
9165
+ {
9166
+ "kind": "method",
9167
+ "name": "#handleKeyDown",
8599
9168
  "parameters": [
8600
9169
  {
8601
9170
  "name": "event",
@@ -8603,17 +9172,29 @@
8603
9172
  "text": "KeyboardEvent"
8604
9173
  }
8605
9174
  }
8606
- ]
9175
+ ],
9176
+ "inheritedFrom": {
9177
+ "name": "UmRadio",
9178
+ "module": "src/radio/radio.ts"
9179
+ }
8607
9180
  },
8608
9181
  {
8609
9182
  "kind": "method",
8610
9183
  "name": "ensureOnlyOneChecked",
8611
- "privacy": "private"
9184
+ "privacy": "private",
9185
+ "inheritedFrom": {
9186
+ "name": "UmRadio",
9187
+ "module": "src/radio/radio.ts"
9188
+ }
8612
9189
  },
8613
9190
  {
8614
9191
  "kind": "method",
8615
9192
  "name": "uncheckSiblings",
8616
- "privacy": "private"
9193
+ "privacy": "private",
9194
+ "inheritedFrom": {
9195
+ "name": "UmRadio",
9196
+ "module": "src/radio/radio.ts"
9197
+ }
8617
9198
  },
8618
9199
  {
8619
9200
  "kind": "field",
@@ -8753,7 +9334,11 @@
8753
9334
  "text": "boolean"
8754
9335
  },
8755
9336
  "default": "false",
8756
- "fieldName": "hideStateLayer"
9337
+ "fieldName": "hideStateLayer",
9338
+ "inheritedFrom": {
9339
+ "name": "UmRadio",
9340
+ "module": "src/radio/radio.ts"
9341
+ }
8757
9342
  },
8758
9343
  {
8759
9344
  "name": "name",
@@ -8801,12 +9386,6 @@
8801
9386
  }
8802
9387
  }
8803
9388
  ],
8804
- "superclass": {
8805
- "name": "UmSelectionControl",
8806
- "module": "/src/shared/selection-control/selection-control.js"
8807
- },
8808
- "tagName": "u-radio",
8809
- "customElement": true,
8810
9389
  "events": [
8811
9390
  {
8812
9391
  "name": "input",
@@ -8834,30 +9413,30 @@
8834
9413
  "exports": [
8835
9414
  {
8836
9415
  "kind": "js",
8837
- "name": "UmRadio",
9416
+ "name": "UmRadioListItem",
8838
9417
  "declaration": {
8839
- "name": "UmRadio",
8840
- "module": "src/radio/radio.ts"
9418
+ "name": "UmRadioListItem",
9419
+ "module": "src/radio/radio-list-item.ts"
8841
9420
  }
8842
9421
  },
8843
9422
  {
8844
9423
  "kind": "custom-element-definition",
8845
- "name": "u-radio",
9424
+ "name": "u-radio-list-item",
8846
9425
  "declaration": {
8847
- "name": "UmRadio",
8848
- "module": "src/radio/radio.ts"
9426
+ "name": "UmRadioListItem",
9427
+ "module": "src/radio/radio-list-item.ts"
8849
9428
  }
8850
9429
  }
8851
9430
  ]
8852
9431
  },
8853
9432
  {
8854
9433
  "kind": "javascript-module",
8855
- "path": "src/ripple/ripple.styles.ts",
9434
+ "path": "src/radio/radio.styles.ts",
8856
9435
  "declarations": [
8857
9436
  {
8858
9437
  "kind": "variable",
8859
9438
  "name": "styles",
8860
- "default": "css `\n :host,\n .ripple-container::before {\n --_ripple-hover-color: var(--u-ripple-hover-color, var(--u-ripple-color, var(--u-state-layer-color, currentColor)));\n --_ripple-pressed-color: var(--u-ripple-pressed-color, var(--u-ripple-color, var(--u-state-layer-color, currentColor)));\n --_ripple-hover-opacity: var(--u-ripple-pressed-opacity, var(--u-state-hover-opacity, 0.08));\n --_ripple-pressed-opacity: var(--u-ripple-pressed-opacity, .2);\n display: block;\n inset: 0;\n isolation: isolate;\n }\n\n .ripple-container {\n position: relative;\n width: 100%;\n height: 100%;\n overflow: hidden;\n border-radius: inherit;\n }\n\n .ripple-container::before {\n content: \"\";\n background: var(--_ripple-hover-color);\n opacity: 0;\n transition: opacity 200ms;\n }\n\n @media (hover: hover) {\n :host(:not([disabled]):hover) .ripple-container::before {\n content: \"\";\n background: var(--_ripple-hover-color);\n opacity: var(--_ripple-hover-opacity);\n }\n }\n :host,\n .ripple-container::before,\n .ripple {\n position: absolute;\n border-radius: inherit;\n }\n\n .ripple {\n top: 50%;\n left: 50%;\n background: var(--_ripple-pressed-color);\n border-radius: 50%;\n box-shadow: 0 0 64px 64px var(--_ripple-pressed-color);\n opacity: var(--_ripple-pressed-opacity);\n transform: scale3d(0, 0, 1);\n pointer-events: none;\n will-change: transform;\n }\n .ripple.show {\n transition: transform calc(var(--_ripple-transition-duration) / var(--u-ripple-speed, 1)) cubic-bezier(0.19, 1, 0.22, 1), opacity calc(750ms / var(--u-ripple-speed, 1));\n transform: scale3d(1, 1, 1);\n }\n .ripple.show-forced {\n transition: transform calc(var(--_ripple-transition-duration) / var(--u-ripple-speed, 1)) cubic-bezier(0.19, 1, 0.22, 1), opacity calc(200ms / var(--u-ripple-speed, 1)) 300ms;\n transform: scale3d(2, 2, 1);\n opacity: 0;\n }\n .ripple.dismiss {\n opacity: 0;\n transform: scale3d(2, 2, 1);\n }\n\n ::slotted(*) {\n position: absolute !important;\n inset: 0;\n border-radius: inherit;\n }\n`"
9439
+ "default": "css `\n :host {\n --_state-layer-padding: var(--u-radio-state-layer-padding, 4px);\n --_input-size: calc(var(--_width) - var(--_state-layer-padding) * 2);\n --_indicator-color: var(--u-radio-indicator-unselected-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n display: inline-block;\n vertical-align: middle;\n }\n\n .container {\n cursor: pointer;\n position: relative;\n width: var(--_width);\n height: var(--_height);\n padding: var(--_state-layer-padding);\n border-radius: var(--u-shape-corner-full, 9999px);\n }\n\n :host([hide-state-layer]) .container {\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n padding: 0;\n }\n :host([hide-state-layer]) u-ripple {\n display: none;\n }\n\n input {\n cursor: pointer;\n width: 100%;\n height: 100%;\n padding: 0;\n margin: 0;\n border-radius: inherit;\n appearance: none;\n }\n\n u-ripple {\n padding: var(--_state-layer-padding);\n }\n\n .indicator-container {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n inset: 0;\n pointer-events: none;\n }\n\n input:checked ~ .indicator-container {\n --_indicator-color: var(--u-radio-indicator-unselected-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n :host([disabled]) {\n opacity: var(--u-radio-disabled-state-opacity, 0.38);\n }\n :host([disabled]) input,\n :host([disabled]) .container {\n cursor: default;\n }\n :host([disabled]) .indicator-container {\n --_indicator-color: var(--u-radio-indicator-disabled-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n }\n\n :host {\n --_indicator-size: var(--u-radio-indicator-size, 1.25rem);\n --_width: var(--u-radio-size, 3rem);\n --_height: var(--_width);\n }\n\n .indicator {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n border: var(--u-radio-indicator-border-width, 0.125rem) solid var(--_indicator-color);\n border-radius: 50%;\n }\n .indicator::before {\n content: \"\";\n width: calc(var(--_indicator-size) / 2);\n height: calc(var(--_indicator-size) / 2);\n background: var(--_indicator-color);\n border-radius: 50%;\n transition: transform 250ms;\n transform: scale3d(0, 0, 1);\n }\n\n input:checked ~ .indicator-container .indicator::before {\n transform: scale3d(1, 1, 1);\n }\n`"
8861
9440
  }
8862
9441
  ],
8863
9442
  "exports": [
@@ -8866,365 +9445,361 @@
8866
9445
  "name": "styles",
8867
9446
  "declaration": {
8868
9447
  "name": "styles",
8869
- "module": "src/ripple/ripple.styles.ts"
9448
+ "module": "src/radio/radio.styles.ts"
8870
9449
  }
8871
9450
  }
8872
9451
  ]
8873
9452
  },
8874
9453
  {
8875
9454
  "kind": "javascript-module",
8876
- "path": "src/ripple/ripple.ts",
9455
+ "path": "src/radio/radio.ts",
8877
9456
  "declarations": [
8878
9457
  {
8879
9458
  "kind": "class",
8880
9459
  "description": "",
8881
- "name": "UmRipple",
9460
+ "name": "UmRadio",
8882
9461
  "members": [
8883
9462
  {
8884
9463
  "kind": "field",
8885
- "name": "isTouching",
8886
- "type": {
8887
- "text": "boolean"
8888
- },
8889
- "privacy": "private",
8890
- "default": "false"
8891
- },
8892
- {
8893
- "kind": "field",
8894
- "name": "disabled",
9464
+ "name": "hideStateLayer",
8895
9465
  "type": {
8896
9466
  "text": "boolean"
8897
9467
  },
8898
9468
  "default": "false",
8899
- "description": "Disables the ripple.",
8900
- "attribute": "disabled",
9469
+ "attribute": "hide-state-layer",
8901
9470
  "reflects": true
8902
9471
  },
8903
9472
  {
8904
9473
  "kind": "field",
8905
- "name": "rippleContainer",
9474
+ "name": "inputType",
8906
9475
  "type": {
8907
- "text": "HTMLElement"
9476
+ "text": "'checkbox' | 'radio'"
8908
9477
  },
8909
- "privacy": "private"
8910
- },
8911
- {
8912
- "kind": "method",
8913
- "name": "attachEvents",
8914
- "privacy": "private",
8915
- "return": {
8916
- "type": {
8917
- "text": "void"
8918
- }
8919
- }
8920
- },
8921
- {
8922
- "kind": "method",
8923
- "name": "dettachEvents",
8924
- "privacy": "private",
8925
- "return": {
8926
- "type": {
8927
- "text": "void"
8928
- }
9478
+ "privacy": "protected",
9479
+ "default": "'radio'",
9480
+ "inheritedFrom": {
9481
+ "name": "UmSelectionControl",
9482
+ "module": "src/shared/selection-control/selection-control.ts"
8929
9483
  }
8930
9484
  },
8931
9485
  {
8932
9486
  "kind": "method",
8933
- "name": "handleMouseDown",
8934
- "privacy": "private",
9487
+ "name": "renderIndicator",
9488
+ "privacy": "protected",
8935
9489
  "return": {
8936
9490
  "type": {
8937
- "text": "void"
9491
+ "text": "HTMLTemplateResult"
8938
9492
  }
8939
9493
  },
8940
- "parameters": [
8941
- {
8942
- "name": "e",
8943
- "type": {
8944
- "text": "MouseEvent"
8945
- }
8946
- }
8947
- ]
9494
+ "inheritedFrom": {
9495
+ "name": "UmSelectionControl",
9496
+ "module": "src/shared/selection-control/selection-control.ts"
9497
+ }
8948
9498
  },
8949
9499
  {
8950
- "kind": "method",
8951
- "name": "handleTouchStart",
8952
- "privacy": "private",
8953
- "return": {
8954
- "type": {
8955
- "text": "void"
8956
- }
8957
- },
8958
- "parameters": [
8959
- {
8960
- "name": "e",
8961
- "type": {
8962
- "text": "TouchEvent"
8963
- }
8964
- }
8965
- ]
9500
+ "kind": "field",
9501
+ "name": "checked",
9502
+ "attribute": "checked",
9503
+ "inheritedFrom": {
9504
+ "name": "UmSelectionControl",
9505
+ "module": "src/shared/selection-control/selection-control.ts"
9506
+ }
8966
9507
  },
8967
9508
  {
8968
- "kind": "method",
8969
- "name": "canCreateRipple",
9509
+ "kind": "field",
9510
+ "name": "#siblings",
8970
9511
  "privacy": "private",
8971
- "return": {
8972
- "type": {
8973
- "text": "boolean"
8974
- }
9512
+ "type": {
9513
+ "text": "UmRadio[]"
8975
9514
  }
8976
9515
  },
8977
9516
  {
8978
9517
  "kind": "method",
8979
- "name": "createRipple",
8980
- "return": {
8981
- "type": {
8982
- "text": "(() => void) | null"
8983
- }
8984
- },
9518
+ "name": "#handleKeyDown",
8985
9519
  "parameters": [
8986
9520
  {
8987
- "name": "targetX",
8988
- "default": "null",
8989
- "type": {
8990
- "text": "number | null"
8991
- }
8992
- },
8993
- {
8994
- "name": "targetY",
8995
- "default": "null",
8996
- "type": {
8997
- "text": "number | null"
8998
- }
8999
- },
9000
- {
9001
- "name": "releaseEventName",
9002
- "default": "null",
9521
+ "name": "event",
9003
9522
  "type": {
9004
- "text": "string | null"
9523
+ "text": "KeyboardEvent"
9005
9524
  }
9006
9525
  }
9007
9526
  ]
9008
9527
  },
9009
9528
  {
9010
9529
  "kind": "method",
9011
- "name": "createDismissEvent",
9012
- "privacy": "private",
9013
- "return": {
9014
- "type": {
9015
- "text": "() => void"
9016
- }
9017
- },
9018
- "parameters": [
9019
- {
9020
- "name": "ripple",
9021
- "type": {
9022
- "text": "HTMLElement"
9023
- }
9024
- },
9025
- {
9026
- "name": "releaseEventName",
9027
- "type": {
9028
- "text": "string"
9029
- }
9030
- }
9031
- ]
9530
+ "name": "ensureOnlyOneChecked",
9531
+ "privacy": "private"
9032
9532
  },
9033
9533
  {
9034
9534
  "kind": "method",
9035
- "name": "_setElementSquareSizeAndCenter",
9036
- "privacy": "private",
9037
- "static": true,
9038
- "parameters": [
9039
- {
9040
- "name": "element",
9041
- "type": {
9042
- "text": "HTMLElement"
9043
- }
9044
- },
9045
- {
9046
- "name": "size",
9047
- "type": {
9048
- "text": "number"
9049
- }
9050
- }
9051
- ]
9052
- }
9053
- ],
9054
- "attributes": [
9535
+ "name": "uncheckSiblings",
9536
+ "privacy": "private"
9537
+ },
9055
9538
  {
9056
- "name": "disabled",
9539
+ "kind": "field",
9540
+ "name": "formAssociated",
9057
9541
  "type": {
9058
9542
  "text": "boolean"
9059
9543
  },
9060
- "default": "false",
9061
- "description": "Disables the ripple.",
9062
- "fieldName": "disabled"
9063
- }
9064
- ],
9065
- "superclass": {
9066
- "name": "LitElement",
9067
- "package": "lit"
9068
- },
9069
- "tagName": "u-ripple",
9070
- "customElement": true
9071
- }
9072
- ],
9073
- "exports": [
9074
- {
9075
- "kind": "js",
9076
- "name": "UmRipple",
9077
- "declaration": {
9078
- "name": "UmRipple",
9079
- "module": "src/ripple/ripple.ts"
9080
- }
9081
- },
9082
- {
9083
- "kind": "custom-element-definition",
9084
- "name": "u-ripple",
9085
- "declaration": {
9086
- "name": "UmRipple",
9087
- "module": "src/ripple/ripple.ts"
9088
- }
9089
- }
9090
- ]
9091
- },
9092
- {
9093
- "kind": "javascript-module",
9094
- "path": "src/navigation/drawer-item.styles.ts",
9095
- "declarations": [
9096
- {
9097
- "kind": "variable",
9098
- "name": "styles",
9099
- "default": "css `\n :host,\n * {\n --_focus-ring-outline-offset: var(--u-focus-ring-outline-offset, 2px);\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n box-sizing: border-box;\n outline: 0;\n }\n\n :host(.force-focus-ring) .focus-ring,\n .focus-ring:focus-visible {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n animation: u-focus-pulse 500ms ease;\n animation-fill-mode: forwards;\n outline-offset: var(--_focus-ring-outline-offset);\n }\n\n @keyframes u-focus-pulse {\n 0% {\n outline: 0 solid var(--_color-primary);\n }\n 50% {\n outline: 6px solid var(--_color-primary);\n }\n 100% {\n outline: 4px solid var(--_color-primary);\n }\n }\n :host {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n -webkit-tap-highlight-color: transparent;\n --u-elevation-level: 0;\n position: relative;\n display: inline-block;\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n appearance: none !important;\n }\n\n :host([disabled]) {\n --u-elevation-level: 0 !important;\n background-color: var(--u-button-disabled-background-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-button-disabled-background-opacity, 0.12))) !important;\n color: var(--u-button-disabled-text-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-button-disabled-color, 0.38))) !important;\n }\n\n :host([disabled]) .button {\n cursor: default;\n }\n\n * {\n color: inherit;\n }\n\n u-elevation {\n z-index: -1;\n }\n\n .button {\n cursor: pointer;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100%;\n height: 100%;\n font-family: inherit;\n border-radius: inherit;\n color: inherit;\n border: none;\n margin: 0;\n padding: 0;\n text-align: center;\n white-space: nowrap;\n background: transparent;\n user-select: none;\n text-decoration: none;\n outline: 0;\n z-index: 0;\n }\n\n .content {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n white-space: nowrap;\n border-radius: inherit;\n width: 100%;\n height: 100%;\n }\n\n :host {\n display: block;\n --_drawer-item-icon-size: var(--u-drawer-item-icon-size, 1.125rem);\n --_drawer-item-padding: var(--u-drawer-item-padding, 16px);\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-drawer-item-line-height, var(--u-label-l-line-height, 1.25rem));\n font-size: var(--u-drawer-item-font-size, var(--u-label-l-font-size, 0.875rem));\n letter-spacing: var(--u-drawer-item-letter-spacing, var(--u-label-l-letter-spacing, 0.0071428571rem));\n font-weight: var(--u-drawer-item-font-weight, var(--u-label-l-font-weight, var(--u-font-weight-medium, 500)));\n height: var(--u-drawer-item-height, 56px);\n padding-inline: var(--_drawer-item-padding);\n margin-inline: calc(var(--_drawer-item-padding) * -1);\n border-radius: var(--u-drawer-item-shape-corner, var(--u-shape-corner-full, 9999px));\n color: var(--u-drawer-item-label-inactive-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n }\n\n :host([active]) {\n color: var(--u-drawer-item-label-active-color, var(--_color-primary));\n }\n\n :host(:not([has-icon])) .icon,\n :host(:not([has-badge])) .badge {\n display: none;\n }\n\n .icon {\n font-size: var(--_drawer-item-icon-size);\n line-height: var(--_drawer-item-icon-size);\n margin-inline-end: var(--u-drawer-item-icon-margin, 16px);\n }\n\n .badge {\n display: flex;\n justify-content: center;\n align-items: center;\n margin-inline-start: auto;\n padding-inline: var(--u-drawer-item-badge-padding, 12px 8px);\n }\n\n .content {\n justify-content: flex-start;\n }\n`"
9100
- }
9101
- ],
9102
- "exports": [
9103
- {
9104
- "kind": "js",
9105
- "name": "styles",
9106
- "declaration": {
9107
- "name": "styles",
9108
- "module": "src/navigation/drawer-item.styles.ts"
9109
- }
9110
- }
9111
- ]
9112
- },
9113
- {
9114
- "kind": "javascript-module",
9115
- "path": "src/navigation/drawer-item.ts",
9116
- "declarations": [
9117
- {
9118
- "kind": "class",
9119
- "description": "",
9120
- "name": "UmDrawerItem",
9121
- "members": [
9544
+ "static": true,
9545
+ "default": "true",
9546
+ "inheritedFrom": {
9547
+ "name": "UmSelectionControl",
9548
+ "module": "src/shared/selection-control/selection-control.ts"
9549
+ }
9550
+ },
9122
9551
  {
9123
9552
  "kind": "field",
9124
- "name": "hasIcon",
9553
+ "name": "elementInternals",
9125
9554
  "type": {
9126
- "text": "boolean"
9555
+ "text": "ElementInternals"
9127
9556
  },
9128
- "default": "false",
9129
- "description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
9130
- "attribute": "has-icon",
9131
- "reflects": true
9557
+ "privacy": "protected",
9558
+ "inheritedFrom": {
9559
+ "name": "UmSelectionControl",
9560
+ "module": "src/shared/selection-control/selection-control.ts"
9561
+ }
9132
9562
  },
9133
9563
  {
9134
9564
  "kind": "field",
9135
- "name": "hasBadge",
9565
+ "name": "name",
9136
9566
  "type": {
9137
- "text": "boolean"
9567
+ "text": "string | undefined"
9138
9568
  },
9139
- "default": "false",
9140
- "description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
9141
- "attribute": "has-badge",
9142
- "reflects": true
9569
+ "default": "''",
9570
+ "attribute": "name",
9571
+ "inheritedFrom": {
9572
+ "name": "UmSelectionControl",
9573
+ "module": "src/shared/selection-control/selection-control.ts"
9574
+ }
9143
9575
  },
9144
9576
  {
9145
9577
  "kind": "field",
9146
- "name": "active",
9578
+ "name": "disabled",
9147
9579
  "type": {
9148
9580
  "text": "boolean"
9149
9581
  },
9150
9582
  "default": "false",
9151
- "description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
9152
- "attribute": "active",
9153
- "reflects": true
9583
+ "attribute": "disabled",
9584
+ "reflects": true,
9585
+ "inheritedFrom": {
9586
+ "name": "UmSelectionControl",
9587
+ "module": "src/shared/selection-control/selection-control.ts"
9588
+ }
9154
9589
  },
9155
9590
  {
9156
9591
  "kind": "field",
9157
- "name": "keepDrawerOpen",
9592
+ "name": "input",
9593
+ "type": {
9594
+ "text": "HTMLInputElement"
9595
+ },
9596
+ "inheritedFrom": {
9597
+ "name": "UmSelectionControl",
9598
+ "module": "src/shared/selection-control/selection-control.ts"
9599
+ }
9600
+ },
9601
+ {
9602
+ "kind": "field",
9603
+ "name": "form",
9604
+ "type": {
9605
+ "text": "HTMLFormElement | null"
9606
+ },
9607
+ "inheritedFrom": {
9608
+ "name": "UmSelectionControl",
9609
+ "module": "src/shared/selection-control/selection-control.ts"
9610
+ }
9611
+ },
9612
+ {
9613
+ "kind": "field",
9614
+ "name": "#checked",
9615
+ "privacy": "private",
9158
9616
  "type": {
9159
9617
  "text": "boolean"
9160
9618
  },
9161
9619
  "default": "false",
9162
- "description": "If true, it will not attempt to close de navigation drawer on click",
9163
- "attribute": "keep-drawer-open",
9164
- "reflects": true
9620
+ "inheritedFrom": {
9621
+ "name": "UmSelectionControl",
9622
+ "module": "src/shared/selection-control/selection-control.ts"
9623
+ }
9165
9624
  },
9166
9625
  {
9167
9626
  "kind": "field",
9168
- "name": "assignedIcons",
9627
+ "name": "renderRipple",
9169
9628
  "type": {
9170
- "text": "HTMLElement[]"
9629
+ "text": "boolean"
9171
9630
  },
9172
- "privacy": "private"
9631
+ "privacy": "protected",
9632
+ "default": "true",
9633
+ "inheritedFrom": {
9634
+ "name": "UmSelectionControl",
9635
+ "module": "src/shared/selection-control/selection-control.ts"
9636
+ }
9173
9637
  },
9174
9638
  {
9175
9639
  "kind": "field",
9176
- "name": "assignedBadges",
9640
+ "name": "value",
9177
9641
  "type": {
9178
- "text": "HTMLElement[]"
9642
+ "text": "string"
9179
9643
  },
9180
- "privacy": "private"
9644
+ "default": "'on'",
9645
+ "description": "The element value to use in form submission when checked.",
9646
+ "attribute": "value",
9647
+ "inheritedFrom": {
9648
+ "name": "UmSelectionControl",
9649
+ "module": "src/shared/selection-control/selection-control.ts"
9650
+ }
9181
9651
  },
9182
9652
  {
9183
9653
  "kind": "method",
9184
- "name": "renderContent",
9185
- "privacy": "protected",
9186
- "return": {
9187
- "type": {
9188
- "text": "HTMLTemplateResult"
9654
+ "name": "#handleClick",
9655
+ "parameters": [
9656
+ {
9657
+ "name": "e",
9658
+ "type": {
9659
+ "text": "Event"
9660
+ }
9189
9661
  }
9662
+ ],
9663
+ "inheritedFrom": {
9664
+ "name": "UmSelectionControl",
9665
+ "module": "src/shared/selection-control/selection-control.ts"
9666
+ }
9667
+ }
9668
+ ],
9669
+ "attributes": [
9670
+ {
9671
+ "name": "hide-state-layer",
9672
+ "type": {
9673
+ "text": "boolean"
9190
9674
  },
9675
+ "default": "false",
9676
+ "fieldName": "hideStateLayer"
9677
+ },
9678
+ {
9679
+ "name": "name",
9680
+ "type": {
9681
+ "text": "string | undefined"
9682
+ },
9683
+ "default": "''",
9684
+ "fieldName": "name",
9191
9685
  "inheritedFrom": {
9192
- "name": "UmButtonWrapper",
9193
- "module": "src/shared/button-wrapper.ts"
9686
+ "name": "UmSelectionControl",
9687
+ "module": "src/shared/selection-control/selection-control.ts"
9194
9688
  }
9195
9689
  },
9196
9690
  {
9197
- "kind": "method",
9198
- "name": "handleIconSlotChange",
9199
- "privacy": "private"
9691
+ "name": "disabled",
9692
+ "type": {
9693
+ "text": "boolean"
9694
+ },
9695
+ "default": "false",
9696
+ "fieldName": "disabled",
9697
+ "inheritedFrom": {
9698
+ "name": "UmSelectionControl",
9699
+ "module": "src/shared/selection-control/selection-control.ts"
9700
+ }
9200
9701
  },
9201
9702
  {
9202
- "kind": "method",
9203
- "name": "handleBadgeSlotChange",
9204
- "privacy": "private"
9703
+ "name": "value",
9704
+ "type": {
9705
+ "text": "string"
9706
+ },
9707
+ "default": "'on'",
9708
+ "description": "The element value to use in form submission when checked.",
9709
+ "fieldName": "value",
9710
+ "inheritedFrom": {
9711
+ "name": "UmSelectionControl",
9712
+ "module": "src/shared/selection-control/selection-control.ts"
9713
+ }
9714
+ },
9715
+ {
9716
+ "name": "checked",
9717
+ "fieldName": "checked",
9718
+ "inheritedFrom": {
9719
+ "name": "UmSelectionControl",
9720
+ "module": "src/shared/selection-control/selection-control.ts"
9721
+ }
9722
+ }
9723
+ ],
9724
+ "superclass": {
9725
+ "name": "UmSelectionControl",
9726
+ "module": "/src/shared/selection-control/selection-control.js"
9727
+ },
9728
+ "tagName": "u-radio",
9729
+ "customElement": true,
9730
+ "events": [
9731
+ {
9732
+ "name": "input",
9733
+ "type": {
9734
+ "text": "InputEvent"
9735
+ },
9736
+ "inheritedFrom": {
9737
+ "name": "UmSelectionControl",
9738
+ "module": "src/shared/selection-control/selection-control.ts"
9739
+ }
9205
9740
  },
9206
9741
  {
9207
- "kind": "method",
9208
- "name": "handleClick",
9209
- "privacy": "protected",
9210
- "return": {
9211
- "type": {
9212
- "text": "void"
9213
- }
9742
+ "name": "change",
9743
+ "type": {
9744
+ "text": "Event"
9214
9745
  },
9215
- "parameters": [
9216
- {
9217
- "name": "_",
9218
- "type": {
9219
- "text": "UIEvent"
9220
- }
9221
- }
9222
- ],
9223
9746
  "inheritedFrom": {
9224
- "name": "UmButtonWrapper",
9225
- "module": "src/shared/button-wrapper.ts"
9747
+ "name": "UmSelectionControl",
9748
+ "module": "src/shared/selection-control/selection-control.ts"
9226
9749
  }
9227
- },
9750
+ }
9751
+ ]
9752
+ }
9753
+ ],
9754
+ "exports": [
9755
+ {
9756
+ "kind": "js",
9757
+ "name": "UmRadio",
9758
+ "declaration": {
9759
+ "name": "UmRadio",
9760
+ "module": "src/radio/radio.ts"
9761
+ }
9762
+ },
9763
+ {
9764
+ "kind": "custom-element-definition",
9765
+ "name": "u-radio",
9766
+ "declaration": {
9767
+ "name": "UmRadio",
9768
+ "module": "src/radio/radio.ts"
9769
+ }
9770
+ }
9771
+ ]
9772
+ },
9773
+ {
9774
+ "kind": "javascript-module",
9775
+ "path": "src/shared/base.styles.ts",
9776
+ "declarations": [
9777
+ {
9778
+ "kind": "variable",
9779
+ "name": "styles",
9780
+ "default": "css `\n :host,\n * {\n --_focus-ring-outline-offset: var(--u-focus-ring-outline-offset, 2px);\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n box-sizing: border-box;\n outline: 0;\n }\n\n :host(.force-focus-ring) .focus-ring,\n .focus-ring:focus-visible {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n animation: u-focus-pulse 500ms ease;\n animation-fill-mode: forwards;\n outline-offset: var(--_focus-ring-outline-offset);\n }\n\n @keyframes u-focus-pulse {\n 0% {\n outline: 0 solid var(--_color-primary);\n }\n 50% {\n outline: 6px solid var(--_color-primary);\n }\n 100% {\n outline: 4px solid var(--_color-primary);\n }\n }\n`"
9781
+ }
9782
+ ],
9783
+ "exports": [
9784
+ {
9785
+ "kind": "js",
9786
+ "name": "styles",
9787
+ "declaration": {
9788
+ "name": "styles",
9789
+ "module": "src/shared/base.styles.ts"
9790
+ }
9791
+ }
9792
+ ]
9793
+ },
9794
+ {
9795
+ "kind": "javascript-module",
9796
+ "path": "src/shared/button-wrapper.ts",
9797
+ "declarations": [
9798
+ {
9799
+ "kind": "class",
9800
+ "description": "",
9801
+ "name": "UmButtonWrapper",
9802
+ "members": [
9228
9803
  {
9229
9804
  "kind": "field",
9230
9805
  "name": "disabled",
@@ -9234,11 +9809,7 @@
9234
9809
  "default": "false",
9235
9810
  "description": "Whether the button is disabled or not.",
9236
9811
  "attribute": "disabled",
9237
- "reflects": true,
9238
- "inheritedFrom": {
9239
- "name": "UmButtonWrapper",
9240
- "module": "src/shared/button-wrapper.ts"
9241
- }
9812
+ "reflects": true
9242
9813
  },
9243
9814
  {
9244
9815
  "kind": "field",
@@ -9246,11 +9817,7 @@
9246
9817
  "type": {
9247
9818
  "text": "boolean"
9248
9819
  },
9249
- "default": "true",
9250
- "inheritedFrom": {
9251
- "name": "UmButtonWrapper",
9252
- "module": "src/shared/button-wrapper.ts"
9253
- }
9820
+ "default": "true"
9254
9821
  },
9255
9822
  {
9256
9823
  "kind": "field",
@@ -9259,11 +9826,7 @@
9259
9826
  "text": "string | undefined"
9260
9827
  },
9261
9828
  "description": "The URL that the link button points to.",
9262
- "attribute": "href",
9263
- "inheritedFrom": {
9264
- "name": "UmButtonWrapper",
9265
- "module": "src/shared/button-wrapper.ts"
9266
- }
9829
+ "attribute": "href"
9267
9830
  },
9268
9831
  {
9269
9832
  "kind": "field",
@@ -9272,11 +9835,7 @@
9272
9835
  "text": "string | undefined"
9273
9836
  },
9274
9837
  "description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
9275
- "attribute": "target",
9276
- "inheritedFrom": {
9277
- "name": "UmButtonWrapper",
9278
- "module": "src/shared/button-wrapper.ts"
9279
- }
9838
+ "attribute": "target"
9280
9839
  },
9281
9840
  {
9282
9841
  "kind": "field",
@@ -9284,21 +9843,13 @@
9284
9843
  "type": {
9285
9844
  "text": "string | undefined"
9286
9845
  },
9287
- "attribute": "name",
9288
- "inheritedFrom": {
9289
- "name": "UmButtonWrapper",
9290
- "module": "src/shared/button-wrapper.ts"
9291
- }
9846
+ "attribute": "name"
9292
9847
  },
9293
9848
  {
9294
9849
  "kind": "field",
9295
9850
  "name": "buttonElement",
9296
9851
  "type": {
9297
9852
  "text": "HTMLElement"
9298
- },
9299
- "inheritedFrom": {
9300
- "name": "UmButtonWrapper",
9301
- "module": "src/shared/button-wrapper.ts"
9302
9853
  }
9303
9854
  },
9304
9855
  {
@@ -9307,11 +9858,7 @@
9307
9858
  "type": {
9308
9859
  "text": "UmRipple"
9309
9860
  },
9310
- "privacy": "private",
9311
- "inheritedFrom": {
9312
- "name": "UmButtonWrapper",
9313
- "module": "src/shared/button-wrapper.ts"
9314
- }
9861
+ "privacy": "private"
9315
9862
  },
9316
9863
  {
9317
9864
  "kind": "field",
@@ -9320,56 +9867,42 @@
9320
9867
  "text": "string | null"
9321
9868
  },
9322
9869
  "privacy": "protected",
9323
- "default": "null",
9324
- "inheritedFrom": {
9325
- "name": "UmButtonWrapper",
9326
- "module": "src/shared/button-wrapper.ts"
9327
- }
9870
+ "default": "null"
9328
9871
  },
9329
9872
  {
9330
9873
  "kind": "field",
9331
9874
  "name": "pathname",
9332
9875
  "type": {
9333
9876
  "text": "string"
9334
- },
9335
- "inheritedFrom": {
9336
- "name": "UmButtonWrapper",
9337
- "module": "src/shared/button-wrapper.ts"
9338
9877
  }
9339
9878
  },
9340
9879
  {
9341
9880
  "kind": "method",
9342
9881
  "name": "renderButton",
9343
- "privacy": "private",
9344
- "inheritedFrom": {
9345
- "name": "UmButtonWrapper",
9346
- "module": "src/shared/button-wrapper.ts"
9347
- }
9882
+ "privacy": "private"
9348
9883
  },
9349
9884
  {
9350
9885
  "kind": "method",
9351
9886
  "name": "renderLink",
9352
- "privacy": "private",
9353
- "inheritedFrom": {
9354
- "name": "UmButtonWrapper",
9355
- "module": "src/shared/button-wrapper.ts"
9356
- }
9887
+ "privacy": "private"
9357
9888
  },
9358
9889
  {
9359
9890
  "kind": "method",
9360
- "name": "focus",
9361
- "inheritedFrom": {
9362
- "name": "UmButtonWrapper",
9363
- "module": "src/shared/button-wrapper.ts"
9891
+ "name": "renderContent",
9892
+ "privacy": "protected",
9893
+ "return": {
9894
+ "type": {
9895
+ "text": "HTMLTemplateResult"
9896
+ }
9364
9897
  }
9365
9898
  },
9366
9899
  {
9367
9900
  "kind": "method",
9368
- "name": "blur",
9369
- "inheritedFrom": {
9370
- "name": "UmButtonWrapper",
9371
- "module": "src/shared/button-wrapper.ts"
9372
- }
9901
+ "name": "focus"
9902
+ },
9903
+ {
9904
+ "kind": "method",
9905
+ "name": "blur"
9373
9906
  },
9374
9907
  {
9375
9908
  "kind": "method",
@@ -9379,10 +9912,6 @@
9379
9912
  "type": {
9380
9913
  "text": "string | null"
9381
9914
  }
9382
- },
9383
- "inheritedFrom": {
9384
- "name": "UmButtonWrapper",
9385
- "module": "src/shared/button-wrapper.ts"
9386
9915
  }
9387
9916
  },
9388
9917
  {
@@ -9393,10 +9922,6 @@
9393
9922
  "type": {
9394
9923
  "text": "void"
9395
9924
  }
9396
- },
9397
- "inheritedFrom": {
9398
- "name": "UmButtonWrapper",
9399
- "module": "src/shared/button-wrapper.ts"
9400
9925
  }
9401
9926
  },
9402
9927
  {
@@ -9414,50 +9939,28 @@
9414
9939
  "text": "MouseEvent"
9415
9940
  }
9416
9941
  }
9417
- ],
9418
- "inheritedFrom": {
9419
- "name": "UmButtonWrapper",
9420
- "module": "src/shared/button-wrapper.ts"
9421
- }
9422
- }
9423
- ],
9424
- "attributes": [
9425
- {
9426
- "name": "has-icon",
9427
- "type": {
9428
- "text": "boolean"
9429
- },
9430
- "default": "false",
9431
- "description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
9432
- "fieldName": "hasIcon"
9433
- },
9434
- {
9435
- "name": "has-badge",
9436
- "type": {
9437
- "text": "boolean"
9438
- },
9439
- "default": "false",
9440
- "description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
9441
- "fieldName": "hasBadge"
9442
- },
9443
- {
9444
- "name": "active",
9445
- "type": {
9446
- "text": "boolean"
9447
- },
9448
- "default": "false",
9449
- "description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
9450
- "fieldName": "active"
9942
+ ]
9451
9943
  },
9452
9944
  {
9453
- "name": "keep-drawer-open",
9454
- "type": {
9455
- "text": "boolean"
9945
+ "kind": "method",
9946
+ "name": "handleClick",
9947
+ "privacy": "protected",
9948
+ "return": {
9949
+ "type": {
9950
+ "text": "void"
9951
+ }
9456
9952
  },
9457
- "default": "false",
9458
- "description": "If true, it will not attempt to close de navigation drawer on click",
9459
- "fieldName": "keepDrawerOpen"
9460
- },
9953
+ "parameters": [
9954
+ {
9955
+ "name": "_",
9956
+ "type": {
9957
+ "text": "UIEvent"
9958
+ }
9959
+ }
9960
+ ]
9961
+ }
9962
+ ],
9963
+ "attributes": [
9461
9964
  {
9462
9965
  "name": "disabled",
9463
9966
  "type": {
@@ -9465,11 +9968,7 @@
9465
9968
  },
9466
9969
  "default": "false",
9467
9970
  "description": "Whether the button is disabled or not.",
9468
- "fieldName": "disabled",
9469
- "inheritedFrom": {
9470
- "name": "UmButtonWrapper",
9471
- "module": "src/shared/button-wrapper.ts"
9472
- }
9971
+ "fieldName": "disabled"
9473
9972
  },
9474
9973
  {
9475
9974
  "name": "href",
@@ -9477,11 +9976,7 @@
9477
9976
  "text": "string | undefined"
9478
9977
  },
9479
9978
  "description": "The URL that the link button points to.",
9480
- "fieldName": "href",
9481
- "inheritedFrom": {
9482
- "name": "UmButtonWrapper",
9483
- "module": "src/shared/button-wrapper.ts"
9484
- }
9979
+ "fieldName": "href"
9485
9980
  },
9486
9981
  {
9487
9982
  "name": "target",
@@ -9489,283 +9984,166 @@
9489
9984
  "text": "string | undefined"
9490
9985
  },
9491
9986
  "description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
9492
- "fieldName": "target",
9493
- "inheritedFrom": {
9494
- "name": "UmButtonWrapper",
9495
- "module": "src/shared/button-wrapper.ts"
9496
- }
9987
+ "fieldName": "target"
9497
9988
  },
9498
9989
  {
9499
- "name": "name",
9500
- "type": {
9501
- "text": "string | undefined"
9502
- },
9503
- "fieldName": "name",
9504
- "inheritedFrom": {
9505
- "name": "UmButtonWrapper",
9506
- "module": "src/shared/button-wrapper.ts"
9507
- }
9990
+ "name": "name",
9991
+ "type": {
9992
+ "text": "string | undefined"
9993
+ },
9994
+ "fieldName": "name"
9508
9995
  }
9509
9996
  ],
9510
9997
  "superclass": {
9511
- "name": "UmButtonWrapper",
9512
- "module": "/src/shared/button-wrapper.js"
9998
+ "name": "LitElement",
9999
+ "package": "lit"
9513
10000
  },
9514
- "tagName": "u-drawer-item",
9515
10001
  "customElement": true
9516
10002
  }
9517
10003
  ],
9518
10004
  "exports": [
9519
10005
  {
9520
10006
  "kind": "js",
9521
- "name": "UmDrawerItem",
9522
- "declaration": {
9523
- "name": "UmDrawerItem",
9524
- "module": "src/navigation/drawer-item.ts"
9525
- }
9526
- },
9527
- {
9528
- "kind": "custom-element-definition",
9529
- "name": "u-drawer-item",
10007
+ "name": "UmButtonWrapper",
9530
10008
  "declaration": {
9531
- "name": "UmDrawerItem",
9532
- "module": "src/navigation/drawer-item.ts"
10009
+ "name": "UmButtonWrapper",
10010
+ "module": "src/shared/button-wrapper.ts"
9533
10011
  }
9534
10012
  }
9535
10013
  ]
9536
10014
  },
9537
10015
  {
9538
10016
  "kind": "javascript-module",
9539
- "path": "src/navigation/drawer.styles.ts",
10017
+ "path": "src/shared/extract-template-html.ts",
9540
10018
  "declarations": [
9541
10019
  {
9542
- "kind": "variable",
9543
- "name": "styles",
9544
- "default": "css `\n :host {\n display: block;\n background-color: var(--u-modal-drawer-background-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));\n color: var(--u-drawer-text-color, var(--u-color-on-secondary-container, rgb(29, 25, 43)));\n height: 100%;\n padding-inline: var(--u-drawer-padding, 28px);\n }\n\n @media (min-width: 1200px) {\n :host {\n background-color: var(--u-standard-drawer-background-color, var(--u-color-body, var(--u-color-surface, rgb(254, 247, 255))));\n }\n }\n`"
10020
+ "kind": "function",
10021
+ "name": "extractTemplateHtml",
10022
+ "parameters": [
10023
+ {
10024
+ "name": "template",
10025
+ "type": {
10026
+ "text": "HTMLTemplateElement"
10027
+ }
10028
+ }
10029
+ ]
9545
10030
  }
9546
10031
  ],
9547
10032
  "exports": [
9548
10033
  {
9549
10034
  "kind": "js",
9550
- "name": "styles",
10035
+ "name": "extractTemplateHtml",
9551
10036
  "declaration": {
9552
- "name": "styles",
9553
- "module": "src/navigation/drawer.styles.ts"
10037
+ "name": "extractTemplateHtml",
10038
+ "module": "src/shared/extract-template-html.ts"
9554
10039
  }
9555
10040
  }
9556
10041
  ]
9557
10042
  },
9558
10043
  {
9559
10044
  "kind": "javascript-module",
9560
- "path": "src/navigation/drawer.ts",
10045
+ "path": "src/shared/mixin-attribute-properties.ts",
9561
10046
  "declarations": [
9562
10047
  {
9563
- "kind": "class",
10048
+ "kind": "mixin",
9564
10049
  "description": "",
9565
- "name": "UmDrawer",
9566
- "members": [],
9567
- "superclass": {
9568
- "name": "LitElement",
9569
- "package": "lit"
9570
- },
9571
- "tagName": "u-drawer",
9572
- "customElement": true
10050
+ "name": "mixinAttributeProperties",
10051
+ "parameters": [
10052
+ {
10053
+ "name": "base",
10054
+ "type": {
10055
+ "text": "T"
10056
+ }
10057
+ },
10058
+ {
10059
+ "name": "properties",
10060
+ "type": {
10061
+ "text": "string[]"
10062
+ }
10063
+ }
10064
+ ]
9573
10065
  }
9574
10066
  ],
9575
10067
  "exports": [
9576
10068
  {
9577
10069
  "kind": "js",
9578
- "name": "UmDrawer",
9579
- "declaration": {
9580
- "name": "UmDrawer",
9581
- "module": "src/navigation/drawer.ts"
9582
- }
9583
- },
9584
- {
9585
- "kind": "custom-element-definition",
9586
- "name": "u-drawer",
10070
+ "name": "mixinAttributeProperties",
9587
10071
  "declaration": {
9588
- "name": "UmDrawer",
9589
- "module": "src/navigation/drawer.ts"
10072
+ "name": "mixinAttributeProperties",
10073
+ "module": "src/shared/mixin-attribute-properties.ts"
9590
10074
  }
9591
10075
  }
9592
10076
  ]
9593
10077
  },
9594
10078
  {
9595
10079
  "kind": "javascript-module",
9596
- "path": "src/navigation/side-navigation-swiper.styles.ts",
9597
- "declarations": [
9598
- {
9599
- "kind": "variable",
9600
- "name": "styles",
9601
- "default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .content {\n position: fixed;\n inset: 0;\n z-index: 1;\n overflow: auto;\n }\n\n .drawer {\n position: relative;\n width: var(--_navigation-drawer-width);\n z-index: var(--u-side-navigation-z-index, 1030);\n pointer-events: auto;\n }\n\n .scrim {\n z-index: 1;\n }\n\n swiper-container {\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n swiper-container::part(wrapper) {\n pointer-events: none;\n z-index: 2;\n }\n\n @media (min-width: 1200px) {\n :host {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .content {\n position: static;\n }\n swiper-container::part(container) {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .dummy-slide {\n display: none;\n }\n }\n`"
9602
- }
9603
- ],
9604
- "exports": [
9605
- {
9606
- "kind": "js",
9607
- "name": "styles",
9608
- "declaration": {
9609
- "name": "styles",
9610
- "module": "src/navigation/side-navigation-swiper.styles.ts"
9611
- }
9612
- }
9613
- ]
10080
+ "path": "src/shared/mixin.ts",
10081
+ "declarations": [],
10082
+ "exports": []
9614
10083
  },
9615
10084
  {
9616
10085
  "kind": "javascript-module",
9617
- "path": "src/navigation/side-navigation.styles.ts",
10086
+ "path": "src/shared/normalize-text.ts",
9618
10087
  "declarations": [
9619
10088
  {
9620
- "kind": "variable",
9621
- "name": "styles",
9622
- "default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .navigation {\n position: fixed;\n inset-inline-start: 0;\n inset-block-start: 0;\n height: 100%;\n z-index: var(--u-side-navigation-z-index, 1030);\n }\n\n .drawer {\n position: absolute;\n inset-inline-start: var(--_navigation-drawer-width-negative);\n inset-block-start: 0;\n width: var(--_navigation-drawer-width);\n height: 100%;\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n overflow: hidden;\n }\n .drawer.toggle {\n inset-inline-start: 0;\n }\n\n .grid {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n @media (min-width: 1200px) {\n .drawer {\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n }\n`"
10089
+ "kind": "function",
10090
+ "name": "normalizeText",
10091
+ "return": {
10092
+ "type": {
10093
+ "text": "string"
10094
+ }
10095
+ },
10096
+ "parameters": [
10097
+ {
10098
+ "name": "text",
10099
+ "type": {
10100
+ "text": "string"
10101
+ }
10102
+ }
10103
+ ]
9623
10104
  }
9624
10105
  ],
9625
10106
  "exports": [
9626
10107
  {
9627
10108
  "kind": "js",
9628
- "name": "styles",
10109
+ "name": "normalizeText",
9629
10110
  "declaration": {
9630
- "name": "styles",
9631
- "module": "src/navigation/side-navigation.styles.ts"
10111
+ "name": "normalizeText",
10112
+ "module": "src/shared/normalize-text.ts"
9632
10113
  }
9633
10114
  }
9634
10115
  ]
9635
10116
  },
9636
10117
  {
9637
10118
  "kind": "javascript-module",
9638
- "path": "src/navigation/side-navigation.ts",
10119
+ "path": "src/shared/redispatch-event.ts",
9639
10120
  "declarations": [
9640
10121
  {
9641
- "kind": "class",
9642
- "description": "",
9643
- "name": "UmSideNavigation",
9644
- "members": [
9645
- {
9646
- "kind": "field",
9647
- "name": "#toggleDrawer",
9648
- "privacy": "private",
9649
- "type": {
9650
- "text": "boolean"
9651
- },
9652
- "default": "false"
9653
- },
9654
- {
9655
- "kind": "field",
9656
- "name": "disableSlideAnimation",
9657
- "type": {
9658
- "text": "boolean"
9659
- },
9660
- "privacy": "private",
9661
- "default": "false"
9662
- },
9663
- {
9664
- "kind": "field",
9665
- "name": "toggleDrawer",
9666
- "description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
9667
- "attribute": "toggle-drawer"
9668
- },
9669
- {
9670
- "kind": "field",
9671
- "name": "swiperContainer",
9672
- "type": {
9673
- "text": "any"
9674
- }
9675
- },
10122
+ "kind": "function",
10123
+ "name": "redispatchEvent",
10124
+ "parameters": [
9676
10125
  {
9677
- "kind": "field",
9678
- "name": "scrim",
10126
+ "name": "element",
9679
10127
  "type": {
9680
- "text": "HTMLElement"
10128
+ "text": "Element"
9681
10129
  }
9682
10130
  },
9683
10131
  {
9684
- "kind": "field",
9685
- "name": "scrollContainer",
10132
+ "name": "event",
9686
10133
  "type": {
9687
- "text": "HTMLElement | undefined"
10134
+ "text": "Event"
9688
10135
  }
9689
- },
9690
- {
9691
- "kind": "method",
9692
- "name": "renderDefault",
9693
- "privacy": "private"
9694
- },
9695
- {
9696
- "kind": "method",
9697
- "name": "renderWithSwipe",
9698
- "privacy": "private"
9699
- },
9700
- {
9701
- "kind": "method",
9702
- "name": "swiperActiveIndexChange",
9703
- "privacy": "private"
9704
- },
9705
- {
9706
- "kind": "method",
9707
- "name": "swiperTransitionStart",
9708
- "privacy": "private"
9709
- },
9710
- {
9711
- "kind": "method",
9712
- "name": "slidesGridLengthChange",
9713
- "privacy": "private"
9714
- },
9715
- {
9716
- "kind": "method",
9717
- "name": "swiperTransitionEnd",
9718
- "privacy": "private"
9719
- },
9720
- {
9721
- "kind": "method",
9722
- "name": "swiperSliderMove",
9723
- "privacy": "private",
9724
- "parameters": [
9725
- {
9726
- "name": "e",
9727
- "type": {
9728
- "text": "Event"
9729
- }
9730
- }
9731
- ]
9732
- },
9733
- {
9734
- "kind": "method",
9735
- "name": "scrimClick",
9736
- "privacy": "private"
9737
- }
9738
- ],
9739
- "attributes": [
9740
- {
9741
- "name": "toggle-drawer",
9742
- "description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
9743
- "fieldName": "toggleDrawer"
9744
10136
  }
9745
- ],
9746
- "superclass": {
9747
- "name": "LitElement",
9748
- "package": "lit"
9749
- },
9750
- "tagName": "u-side-navigation",
9751
- "customElement": true
10137
+ ]
9752
10138
  }
9753
10139
  ],
9754
10140
  "exports": [
9755
10141
  {
9756
10142
  "kind": "js",
9757
- "name": "UmSideNavigation",
9758
- "declaration": {
9759
- "name": "UmSideNavigation",
9760
- "module": "src/navigation/side-navigation.ts"
9761
- }
9762
- },
9763
- {
9764
- "kind": "custom-element-definition",
9765
- "name": "u-side-navigation",
10143
+ "name": "redispatchEvent",
9766
10144
  "declaration": {
9767
- "name": "UmSideNavigation",
9768
- "module": "src/navigation/side-navigation.ts"
10145
+ "name": "redispatchEvent",
10146
+ "module": "src/shared/redispatch-event.ts"
9769
10147
  }
9770
10148
  }
9771
10149
  ]
@@ -9982,439 +10360,61 @@
9982
10360
  ],
9983
10361
  "attributes": [
9984
10362
  {
9985
- "name": "label",
9986
- "type": {
9987
- "text": "string"
9988
- },
9989
- "default": "''",
9990
- "fieldName": "label"
9991
- },
9992
- {
9993
- "name": "buttonLabel",
9994
- "type": {
9995
- "text": "string"
9996
- },
9997
- "default": "''",
9998
- "fieldName": "buttonLabel"
9999
- },
10000
- {
10001
- "name": "show-close",
10002
- "type": {
10003
- "text": "boolean"
10004
- },
10005
- "default": "false",
10006
- "fieldName": "showClose"
10007
- },
10008
- {
10009
- "name": "dismissed",
10010
- "type": {
10011
- "text": "boolean"
10012
- },
10013
- "default": "false",
10014
- "fieldName": "dismissed"
10015
- }
10016
- ],
10017
- "superclass": {
10018
- "name": "LitElement",
10019
- "package": "lit"
10020
- },
10021
- "tagName": "u-snackbar",
10022
- "customElement": true
10023
- }
10024
- ],
10025
- "exports": [
10026
- {
10027
- "kind": "js",
10028
- "name": "UmSnackbar",
10029
- "declaration": {
10030
- "name": "UmSnackbar",
10031
- "module": "src/snackbar/snackbar.ts"
10032
- }
10033
- },
10034
- {
10035
- "kind": "custom-element-definition",
10036
- "name": "u-snackbar",
10037
- "declaration": {
10038
- "name": "UmSnackbar",
10039
- "module": "src/snackbar/snackbar.ts"
10040
- }
10041
- }
10042
- ]
10043
- },
10044
- {
10045
- "kind": "javascript-module",
10046
- "path": "src/shared/base.styles.ts",
10047
- "declarations": [
10048
- {
10049
- "kind": "variable",
10050
- "name": "styles",
10051
- "default": "css `\n :host,\n * {\n --_focus-ring-outline-offset: var(--u-focus-ring-outline-offset, 2px);\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n box-sizing: border-box;\n outline: 0;\n }\n\n :host(.force-focus-ring) .focus-ring,\n .focus-ring:focus-visible {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n animation: u-focus-pulse 500ms ease;\n animation-fill-mode: forwards;\n outline-offset: var(--_focus-ring-outline-offset);\n }\n\n @keyframes u-focus-pulse {\n 0% {\n outline: 0 solid var(--_color-primary);\n }\n 50% {\n outline: 6px solid var(--_color-primary);\n }\n 100% {\n outline: 4px solid var(--_color-primary);\n }\n }\n`"
10052
- }
10053
- ],
10054
- "exports": [
10055
- {
10056
- "kind": "js",
10057
- "name": "styles",
10058
- "declaration": {
10059
- "name": "styles",
10060
- "module": "src/shared/base.styles.ts"
10061
- }
10062
- }
10063
- ]
10064
- },
10065
- {
10066
- "kind": "javascript-module",
10067
- "path": "src/shared/button-wrapper.ts",
10068
- "declarations": [
10069
- {
10070
- "kind": "class",
10071
- "description": "",
10072
- "name": "UmButtonWrapper",
10073
- "members": [
10074
- {
10075
- "kind": "field",
10076
- "name": "disabled",
10077
- "type": {
10078
- "text": "boolean"
10079
- },
10080
- "default": "false",
10081
- "description": "Whether the button is disabled or not.",
10082
- "attribute": "disabled",
10083
- "reflects": true
10084
- },
10085
- {
10086
- "kind": "field",
10087
- "name": "renderRipple",
10088
- "type": {
10089
- "text": "boolean"
10090
- },
10091
- "default": "true"
10092
- },
10093
- {
10094
- "kind": "field",
10095
- "name": "href",
10096
- "type": {
10097
- "text": "string | undefined"
10098
- },
10099
- "description": "The URL that the link button points to.",
10100
- "attribute": "href"
10101
- },
10102
- {
10103
- "kind": "field",
10104
- "name": "target",
10105
- "type": {
10106
- "text": "string | undefined"
10107
- },
10108
- "description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
10109
- "attribute": "target"
10110
- },
10111
- {
10112
- "kind": "field",
10113
- "name": "name",
10114
- "type": {
10115
- "text": "string | undefined"
10116
- },
10117
- "attribute": "name"
10118
- },
10119
- {
10120
- "kind": "field",
10121
- "name": "buttonElement",
10122
- "type": {
10123
- "text": "HTMLElement"
10124
- }
10125
- },
10126
- {
10127
- "kind": "field",
10128
- "name": "ripple",
10129
- "type": {
10130
- "text": "UmRipple"
10131
- },
10132
- "privacy": "private"
10133
- },
10134
- {
10135
- "kind": "field",
10136
- "name": "innerRole",
10137
- "type": {
10138
- "text": "string | null"
10139
- },
10140
- "privacy": "protected",
10141
- "default": "null"
10142
- },
10143
- {
10144
- "kind": "field",
10145
- "name": "pathname",
10146
- "type": {
10147
- "text": "string"
10148
- }
10149
- },
10150
- {
10151
- "kind": "method",
10152
- "name": "renderButton",
10153
- "privacy": "private"
10154
- },
10155
- {
10156
- "kind": "method",
10157
- "name": "renderLink",
10158
- "privacy": "private"
10159
- },
10160
- {
10161
- "kind": "method",
10162
- "name": "renderContent",
10163
- "privacy": "protected",
10164
- "return": {
10165
- "type": {
10166
- "text": "HTMLTemplateResult"
10167
- }
10168
- }
10169
- },
10170
- {
10171
- "kind": "method",
10172
- "name": "focus"
10173
- },
10174
- {
10175
- "kind": "method",
10176
- "name": "blur"
10177
- },
10178
- {
10179
- "kind": "method",
10180
- "name": "getAriaLabel",
10181
- "privacy": "protected",
10182
- "return": {
10183
- "type": {
10184
- "text": "string | null"
10185
- }
10186
- }
10187
- },
10188
- {
10189
- "kind": "method",
10190
- "name": "innerFocusHandler",
10191
- "privacy": "private",
10192
- "return": {
10193
- "type": {
10194
- "text": "void"
10195
- }
10196
- }
10197
- },
10198
- {
10199
- "kind": "method",
10200
- "name": "#innerClickHandler",
10201
- "return": {
10202
- "type": {
10203
- "text": "void"
10204
- }
10205
- },
10206
- "parameters": [
10207
- {
10208
- "name": "event",
10209
- "type": {
10210
- "text": "MouseEvent"
10211
- }
10212
- }
10213
- ]
10214
- },
10215
- {
10216
- "kind": "method",
10217
- "name": "handleClick",
10218
- "privacy": "protected",
10219
- "return": {
10220
- "type": {
10221
- "text": "void"
10222
- }
10223
- },
10224
- "parameters": [
10225
- {
10226
- "name": "_",
10227
- "type": {
10228
- "text": "UIEvent"
10229
- }
10230
- }
10231
- ]
10232
- }
10233
- ],
10234
- "attributes": [
10235
- {
10236
- "name": "disabled",
10363
+ "name": "label",
10237
10364
  "type": {
10238
- "text": "boolean"
10365
+ "text": "string"
10239
10366
  },
10240
- "default": "false",
10241
- "description": "Whether the button is disabled or not.",
10242
- "fieldName": "disabled"
10367
+ "default": "''",
10368
+ "fieldName": "label"
10243
10369
  },
10244
10370
  {
10245
- "name": "href",
10371
+ "name": "buttonLabel",
10246
10372
  "type": {
10247
- "text": "string | undefined"
10373
+ "text": "string"
10248
10374
  },
10249
- "description": "The URL that the link button points to.",
10250
- "fieldName": "href"
10375
+ "default": "''",
10376
+ "fieldName": "buttonLabel"
10251
10377
  },
10252
10378
  {
10253
- "name": "target",
10379
+ "name": "show-close",
10254
10380
  "type": {
10255
- "text": "string | undefined"
10381
+ "text": "boolean"
10256
10382
  },
10257
- "description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
10258
- "fieldName": "target"
10383
+ "default": "false",
10384
+ "fieldName": "showClose"
10259
10385
  },
10260
10386
  {
10261
- "name": "name",
10387
+ "name": "dismissed",
10262
10388
  "type": {
10263
- "text": "string | undefined"
10389
+ "text": "boolean"
10264
10390
  },
10265
- "fieldName": "name"
10391
+ "default": "false",
10392
+ "fieldName": "dismissed"
10266
10393
  }
10267
10394
  ],
10268
10395
  "superclass": {
10269
10396
  "name": "LitElement",
10270
10397
  "package": "lit"
10271
10398
  },
10399
+ "tagName": "u-snackbar",
10272
10400
  "customElement": true
10273
10401
  }
10274
10402
  ],
10275
10403
  "exports": [
10276
10404
  {
10277
10405
  "kind": "js",
10278
- "name": "UmButtonWrapper",
10279
- "declaration": {
10280
- "name": "UmButtonWrapper",
10281
- "module": "src/shared/button-wrapper.ts"
10282
- }
10283
- }
10284
- ]
10285
- },
10286
- {
10287
- "kind": "javascript-module",
10288
- "path": "src/shared/extract-template-html.ts",
10289
- "declarations": [
10290
- {
10291
- "kind": "function",
10292
- "name": "extractTemplateHtml",
10293
- "parameters": [
10294
- {
10295
- "name": "template",
10296
- "type": {
10297
- "text": "HTMLTemplateElement"
10298
- }
10299
- }
10300
- ]
10301
- }
10302
- ],
10303
- "exports": [
10304
- {
10305
- "kind": "js",
10306
- "name": "extractTemplateHtml",
10307
- "declaration": {
10308
- "name": "extractTemplateHtml",
10309
- "module": "src/shared/extract-template-html.ts"
10310
- }
10311
- }
10312
- ]
10313
- },
10314
- {
10315
- "kind": "javascript-module",
10316
- "path": "src/shared/mixin-attribute-properties.ts",
10317
- "declarations": [
10318
- {
10319
- "kind": "mixin",
10320
- "description": "",
10321
- "name": "mixinAttributeProperties",
10322
- "parameters": [
10323
- {
10324
- "name": "base",
10325
- "type": {
10326
- "text": "T"
10327
- }
10328
- },
10329
- {
10330
- "name": "properties",
10331
- "type": {
10332
- "text": "string[]"
10333
- }
10334
- }
10335
- ]
10336
- }
10337
- ],
10338
- "exports": [
10339
- {
10340
- "kind": "js",
10341
- "name": "mixinAttributeProperties",
10342
- "declaration": {
10343
- "name": "mixinAttributeProperties",
10344
- "module": "src/shared/mixin-attribute-properties.ts"
10345
- }
10346
- }
10347
- ]
10348
- },
10349
- {
10350
- "kind": "javascript-module",
10351
- "path": "src/shared/mixin.ts",
10352
- "declarations": [],
10353
- "exports": []
10354
- },
10355
- {
10356
- "kind": "javascript-module",
10357
- "path": "src/shared/normalize-text.ts",
10358
- "declarations": [
10359
- {
10360
- "kind": "function",
10361
- "name": "normalizeText",
10362
- "return": {
10363
- "type": {
10364
- "text": "string"
10365
- }
10366
- },
10367
- "parameters": [
10368
- {
10369
- "name": "text",
10370
- "type": {
10371
- "text": "string"
10372
- }
10373
- }
10374
- ]
10375
- }
10376
- ],
10377
- "exports": [
10378
- {
10379
- "kind": "js",
10380
- "name": "normalizeText",
10406
+ "name": "UmSnackbar",
10381
10407
  "declaration": {
10382
- "name": "normalizeText",
10383
- "module": "src/shared/normalize-text.ts"
10408
+ "name": "UmSnackbar",
10409
+ "module": "src/snackbar/snackbar.ts"
10384
10410
  }
10385
- }
10386
- ]
10387
- },
10388
- {
10389
- "kind": "javascript-module",
10390
- "path": "src/shared/redispatch-event.ts",
10391
- "declarations": [
10392
- {
10393
- "kind": "function",
10394
- "name": "redispatchEvent",
10395
- "parameters": [
10396
- {
10397
- "name": "element",
10398
- "type": {
10399
- "text": "Element"
10400
- }
10401
- },
10402
- {
10403
- "name": "event",
10404
- "type": {
10405
- "text": "Event"
10406
- }
10407
- }
10408
- ]
10409
- }
10410
- ],
10411
- "exports": [
10411
+ },
10412
10412
  {
10413
- "kind": "js",
10414
- "name": "redispatchEvent",
10413
+ "kind": "custom-element-definition",
10414
+ "name": "u-snackbar",
10415
10415
  "declaration": {
10416
- "name": "redispatchEvent",
10417
- "module": "src/shared/redispatch-event.ts"
10416
+ "name": "UmSnackbar",
10417
+ "module": "src/snackbar/snackbar.ts"
10418
10418
  }
10419
10419
  }
10420
10420
  ]
@@ -12844,6 +12844,46 @@
12844
12844
  }
12845
12845
  ]
12846
12846
  },
12847
+ {
12848
+ "kind": "javascript-module",
12849
+ "path": "src/shared/events/dispatch-event.ts",
12850
+ "declarations": [],
12851
+ "exports": []
12852
+ },
12853
+ {
12854
+ "kind": "javascript-module",
12855
+ "path": "src/shared/events/redispatch-event.ts",
12856
+ "declarations": [
12857
+ {
12858
+ "kind": "function",
12859
+ "name": "redispatchEvent",
12860
+ "parameters": [
12861
+ {
12862
+ "name": "element",
12863
+ "type": {
12864
+ "text": "Element"
12865
+ }
12866
+ },
12867
+ {
12868
+ "name": "event",
12869
+ "type": {
12870
+ "text": "Event"
12871
+ }
12872
+ }
12873
+ ]
12874
+ }
12875
+ ],
12876
+ "exports": [
12877
+ {
12878
+ "kind": "js",
12879
+ "name": "redispatchEvent",
12880
+ "declaration": {
12881
+ "name": "redispatchEvent",
12882
+ "module": "src/shared/events/redispatch-event.ts"
12883
+ }
12884
+ }
12885
+ ]
12886
+ },
12847
12887
  {
12848
12888
  "kind": "javascript-module",
12849
12889
  "path": "src/shared/selection-control/selection-control-list-item.ts",
@@ -13151,46 +13191,6 @@
13151
13191
  }
13152
13192
  ]
13153
13193
  },
13154
- {
13155
- "kind": "javascript-module",
13156
- "path": "src/shared/events/dispatch-event.ts",
13157
- "declarations": [],
13158
- "exports": []
13159
- },
13160
- {
13161
- "kind": "javascript-module",
13162
- "path": "src/shared/events/redispatch-event.ts",
13163
- "declarations": [
13164
- {
13165
- "kind": "function",
13166
- "name": "redispatchEvent",
13167
- "parameters": [
13168
- {
13169
- "name": "element",
13170
- "type": {
13171
- "text": "Element"
13172
- }
13173
- },
13174
- {
13175
- "name": "event",
13176
- "type": {
13177
- "text": "Event"
13178
- }
13179
- }
13180
- ]
13181
- }
13182
- ],
13183
- "exports": [
13184
- {
13185
- "kind": "js",
13186
- "name": "redispatchEvent",
13187
- "declaration": {
13188
- "name": "redispatchEvent",
13189
- "module": "src/shared/events/redispatch-event.ts"
13190
- }
13191
- }
13192
- ]
13193
- },
13194
13194
  {
13195
13195
  "kind": "javascript-module",
13196
13196
  "path": "src/shared/text-field-base/text-field-base.styles.ts",