@universal-material/web 3.0.81 → 3.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/universal-material.css +3 -2
- package/css/universal-material.min.css +2 -2
- package/custom-elements.json +471 -349
- package/package.json +1 -1
- package/scss/table/_table.scss +1 -0
- package/shared/selection-control/selection-control.d.ts +2 -1
- package/shared/selection-control/selection-control.d.ts.map +1 -1
- package/shared/selection-control/selection-control.js +13 -8
- package/shared/selection-control/selection-control.js.map +1 -1
package/custom-elements.json
CHANGED
|
@@ -583,6 +583,255 @@
|
|
|
583
583
|
}
|
|
584
584
|
]
|
|
585
585
|
},
|
|
586
|
+
{
|
|
587
|
+
"kind": "javascript-module",
|
|
588
|
+
"path": "src/card/card-content.styles.ts",
|
|
589
|
+
"declarations": [
|
|
590
|
+
{
|
|
591
|
+
"kind": "variable",
|
|
592
|
+
"name": "styles",
|
|
593
|
+
"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`"
|
|
594
|
+
}
|
|
595
|
+
],
|
|
596
|
+
"exports": [
|
|
597
|
+
{
|
|
598
|
+
"kind": "js",
|
|
599
|
+
"name": "styles",
|
|
600
|
+
"declaration": {
|
|
601
|
+
"name": "styles",
|
|
602
|
+
"module": "src/card/card-content.styles.ts"
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
]
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"kind": "javascript-module",
|
|
609
|
+
"path": "src/card/card-content.ts",
|
|
610
|
+
"declarations": [
|
|
611
|
+
{
|
|
612
|
+
"kind": "class",
|
|
613
|
+
"description": "",
|
|
614
|
+
"name": "UmCardContent",
|
|
615
|
+
"members": [
|
|
616
|
+
{
|
|
617
|
+
"kind": "field",
|
|
618
|
+
"name": "hasContent",
|
|
619
|
+
"type": {
|
|
620
|
+
"text": "boolean"
|
|
621
|
+
},
|
|
622
|
+
"default": "false",
|
|
623
|
+
"attribute": "has-content",
|
|
624
|
+
"reflects": true
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"kind": "method",
|
|
628
|
+
"name": "handleSlotChange",
|
|
629
|
+
"privacy": "private",
|
|
630
|
+
"parameters": [
|
|
631
|
+
{
|
|
632
|
+
"name": "e",
|
|
633
|
+
"type": {
|
|
634
|
+
"text": "Event"
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
]
|
|
638
|
+
}
|
|
639
|
+
],
|
|
640
|
+
"attributes": [
|
|
641
|
+
{
|
|
642
|
+
"name": "has-content",
|
|
643
|
+
"type": {
|
|
644
|
+
"text": "boolean"
|
|
645
|
+
},
|
|
646
|
+
"default": "false",
|
|
647
|
+
"fieldName": "hasContent"
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"superclass": {
|
|
651
|
+
"name": "LitElement",
|
|
652
|
+
"package": "lit"
|
|
653
|
+
},
|
|
654
|
+
"tagName": "u-card-content",
|
|
655
|
+
"customElement": true
|
|
656
|
+
}
|
|
657
|
+
],
|
|
658
|
+
"exports": [
|
|
659
|
+
{
|
|
660
|
+
"kind": "js",
|
|
661
|
+
"name": "UmCardContent",
|
|
662
|
+
"declaration": {
|
|
663
|
+
"name": "UmCardContent",
|
|
664
|
+
"module": "src/card/card-content.ts"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"kind": "custom-element-definition",
|
|
669
|
+
"name": "u-card-content",
|
|
670
|
+
"declaration": {
|
|
671
|
+
"name": "UmCardContent",
|
|
672
|
+
"module": "src/card/card-content.ts"
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
]
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"kind": "javascript-module",
|
|
679
|
+
"path": "src/card/card-media.styles.ts",
|
|
680
|
+
"declarations": [
|
|
681
|
+
{
|
|
682
|
+
"kind": "variable",
|
|
683
|
+
"name": "styles",
|
|
684
|
+
"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`"
|
|
685
|
+
}
|
|
686
|
+
],
|
|
687
|
+
"exports": [
|
|
688
|
+
{
|
|
689
|
+
"kind": "js",
|
|
690
|
+
"name": "styles",
|
|
691
|
+
"declaration": {
|
|
692
|
+
"name": "styles",
|
|
693
|
+
"module": "src/card/card-media.styles.ts"
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"kind": "javascript-module",
|
|
700
|
+
"path": "src/card/card-media.ts",
|
|
701
|
+
"declarations": [
|
|
702
|
+
{
|
|
703
|
+
"kind": "class",
|
|
704
|
+
"description": "",
|
|
705
|
+
"name": "UmCardMedia",
|
|
706
|
+
"members": [
|
|
707
|
+
{
|
|
708
|
+
"kind": "field",
|
|
709
|
+
"name": "wide",
|
|
710
|
+
"type": {
|
|
711
|
+
"text": "boolean"
|
|
712
|
+
},
|
|
713
|
+
"default": "false",
|
|
714
|
+
"attribute": "wide",
|
|
715
|
+
"reflects": true
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"attributes": [
|
|
719
|
+
{
|
|
720
|
+
"name": "wide",
|
|
721
|
+
"type": {
|
|
722
|
+
"text": "boolean"
|
|
723
|
+
},
|
|
724
|
+
"default": "false",
|
|
725
|
+
"fieldName": "wide"
|
|
726
|
+
}
|
|
727
|
+
],
|
|
728
|
+
"superclass": {
|
|
729
|
+
"name": "LitElement",
|
|
730
|
+
"package": "lit"
|
|
731
|
+
},
|
|
732
|
+
"tagName": "u-card-media",
|
|
733
|
+
"customElement": true
|
|
734
|
+
}
|
|
735
|
+
],
|
|
736
|
+
"exports": [
|
|
737
|
+
{
|
|
738
|
+
"kind": "js",
|
|
739
|
+
"name": "UmCardMedia",
|
|
740
|
+
"declaration": {
|
|
741
|
+
"name": "UmCardMedia",
|
|
742
|
+
"module": "src/card/card-media.ts"
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"kind": "custom-element-definition",
|
|
747
|
+
"name": "u-card-media",
|
|
748
|
+
"declaration": {
|
|
749
|
+
"name": "UmCardMedia",
|
|
750
|
+
"module": "src/card/card-media.ts"
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
]
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"kind": "javascript-module",
|
|
757
|
+
"path": "src/card/card.styles.ts",
|
|
758
|
+
"declarations": [
|
|
759
|
+
{
|
|
760
|
+
"kind": "variable",
|
|
761
|
+
"name": "styles",
|
|
762
|
+
"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 --u-current-bg-color: var(--u-card-elevated-bg-color, var(var(--u-color-surface-container-low, rgb(247, 242, 250))));\n background-color: var(--u-current-bg-color);\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 --u-current-bg-color: var(--u-card-filled-bg-color, var(--u-color-surface-container-highest, rgb(230, 224, 233)));\n background-color: var(--u-current-bg-color);\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`"
|
|
763
|
+
}
|
|
764
|
+
],
|
|
765
|
+
"exports": [
|
|
766
|
+
{
|
|
767
|
+
"kind": "js",
|
|
768
|
+
"name": "styles",
|
|
769
|
+
"declaration": {
|
|
770
|
+
"name": "styles",
|
|
771
|
+
"module": "src/card/card.styles.ts"
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"kind": "javascript-module",
|
|
778
|
+
"path": "src/card/card.ts",
|
|
779
|
+
"declarations": [
|
|
780
|
+
{
|
|
781
|
+
"kind": "class",
|
|
782
|
+
"description": "",
|
|
783
|
+
"name": "UmCard",
|
|
784
|
+
"members": [
|
|
785
|
+
{
|
|
786
|
+
"kind": "field",
|
|
787
|
+
"name": "variant",
|
|
788
|
+
"type": {
|
|
789
|
+
"text": "UmCardVariant"
|
|
790
|
+
},
|
|
791
|
+
"default": "'filled'",
|
|
792
|
+
"description": "The Card variant to render.",
|
|
793
|
+
"attribute": "variant",
|
|
794
|
+
"reflects": true
|
|
795
|
+
}
|
|
796
|
+
],
|
|
797
|
+
"attributes": [
|
|
798
|
+
{
|
|
799
|
+
"name": "variant",
|
|
800
|
+
"type": {
|
|
801
|
+
"text": "UmCardVariant"
|
|
802
|
+
},
|
|
803
|
+
"default": "'filled'",
|
|
804
|
+
"description": "The Card variant to render.",
|
|
805
|
+
"fieldName": "variant"
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
"superclass": {
|
|
809
|
+
"name": "LitElement",
|
|
810
|
+
"package": "lit"
|
|
811
|
+
},
|
|
812
|
+
"tagName": "u-card",
|
|
813
|
+
"customElement": true
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"exports": [
|
|
817
|
+
{
|
|
818
|
+
"kind": "js",
|
|
819
|
+
"name": "UmCard",
|
|
820
|
+
"declaration": {
|
|
821
|
+
"name": "UmCard",
|
|
822
|
+
"module": "src/card/card.ts"
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"kind": "custom-element-definition",
|
|
827
|
+
"name": "u-card",
|
|
828
|
+
"declaration": {
|
|
829
|
+
"name": "UmCard",
|
|
830
|
+
"module": "src/card/card.ts"
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
]
|
|
834
|
+
},
|
|
586
835
|
{
|
|
587
836
|
"kind": "javascript-module",
|
|
588
837
|
"path": "src/button/button-base.styles.ts",
|
|
@@ -2897,13 +3146,27 @@
|
|
|
2897
3146
|
}
|
|
2898
3147
|
},
|
|
2899
3148
|
{
|
|
2900
|
-
"kind": "
|
|
2901
|
-
"name": "
|
|
2902
|
-
"
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
3149
|
+
"kind": "field",
|
|
3150
|
+
"name": "_checkedAttribute",
|
|
3151
|
+
"type": {
|
|
3152
|
+
"text": "boolean"
|
|
3153
|
+
},
|
|
3154
|
+
"privacy": "private",
|
|
3155
|
+
"default": "false",
|
|
3156
|
+
"attribute": "checked",
|
|
3157
|
+
"inheritedFrom": {
|
|
3158
|
+
"name": "UmSelectionControl",
|
|
3159
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
3160
|
+
}
|
|
3161
|
+
},
|
|
3162
|
+
{
|
|
3163
|
+
"kind": "method",
|
|
3164
|
+
"name": "#handleClick",
|
|
3165
|
+
"parameters": [
|
|
3166
|
+
{
|
|
3167
|
+
"name": "e",
|
|
3168
|
+
"type": {
|
|
3169
|
+
"text": "Event"
|
|
2907
3170
|
}
|
|
2908
3171
|
}
|
|
2909
3172
|
],
|
|
@@ -2976,7 +3239,11 @@
|
|
|
2976
3239
|
},
|
|
2977
3240
|
{
|
|
2978
3241
|
"name": "checked",
|
|
2979
|
-
"fieldName": "
|
|
3242
|
+
"fieldName": "_checkedAttribute",
|
|
3243
|
+
"type": {
|
|
3244
|
+
"text": "boolean"
|
|
3245
|
+
},
|
|
3246
|
+
"default": "false",
|
|
2980
3247
|
"inheritedFrom": {
|
|
2981
3248
|
"name": "UmSelectionControl",
|
|
2982
3249
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
@@ -3236,6 +3503,20 @@
|
|
|
3236
3503
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
3237
3504
|
}
|
|
3238
3505
|
},
|
|
3506
|
+
{
|
|
3507
|
+
"kind": "field",
|
|
3508
|
+
"name": "_checkedAttribute",
|
|
3509
|
+
"type": {
|
|
3510
|
+
"text": "boolean"
|
|
3511
|
+
},
|
|
3512
|
+
"privacy": "private",
|
|
3513
|
+
"default": "false",
|
|
3514
|
+
"attribute": "checked",
|
|
3515
|
+
"inheritedFrom": {
|
|
3516
|
+
"name": "UmSelectionControl",
|
|
3517
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
3518
|
+
}
|
|
3519
|
+
},
|
|
3239
3520
|
{
|
|
3240
3521
|
"kind": "method",
|
|
3241
3522
|
"name": "#handleClick",
|
|
@@ -3308,7 +3589,11 @@
|
|
|
3308
3589
|
},
|
|
3309
3590
|
{
|
|
3310
3591
|
"name": "checked",
|
|
3311
|
-
"fieldName": "
|
|
3592
|
+
"fieldName": "_checkedAttribute",
|
|
3593
|
+
"type": {
|
|
3594
|
+
"text": "boolean"
|
|
3595
|
+
},
|
|
3596
|
+
"default": "false",
|
|
3312
3597
|
"inheritedFrom": {
|
|
3313
3598
|
"name": "UmSelectionControl",
|
|
3314
3599
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
@@ -3330,285 +3615,36 @@
|
|
|
3330
3615
|
"inheritedFrom": {
|
|
3331
3616
|
"name": "UmSelectionControl",
|
|
3332
3617
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
3333
|
-
}
|
|
3334
|
-
},
|
|
3335
|
-
{
|
|
3336
|
-
"name": "change",
|
|
3337
|
-
"type": {
|
|
3338
|
-
"text": "Event"
|
|
3339
|
-
},
|
|
3340
|
-
"inheritedFrom": {
|
|
3341
|
-
"name": "UmSelectionControl",
|
|
3342
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
3343
|
-
}
|
|
3344
|
-
}
|
|
3345
|
-
]
|
|
3346
|
-
}
|
|
3347
|
-
],
|
|
3348
|
-
"exports": [
|
|
3349
|
-
{
|
|
3350
|
-
"kind": "js",
|
|
3351
|
-
"name": "UmCheckbox",
|
|
3352
|
-
"declaration": {
|
|
3353
|
-
"name": "UmCheckbox",
|
|
3354
|
-
"module": "src/checkbox/checkbox.ts"
|
|
3355
|
-
}
|
|
3356
|
-
},
|
|
3357
|
-
{
|
|
3358
|
-
"kind": "custom-element-definition",
|
|
3359
|
-
"name": "u-checkbox",
|
|
3360
|
-
"declaration": {
|
|
3361
|
-
"name": "UmCheckbox",
|
|
3362
|
-
"module": "src/checkbox/checkbox.ts"
|
|
3363
|
-
}
|
|
3364
|
-
}
|
|
3365
|
-
]
|
|
3366
|
-
},
|
|
3367
|
-
{
|
|
3368
|
-
"kind": "javascript-module",
|
|
3369
|
-
"path": "src/card/card-content.styles.ts",
|
|
3370
|
-
"declarations": [
|
|
3371
|
-
{
|
|
3372
|
-
"kind": "variable",
|
|
3373
|
-
"name": "styles",
|
|
3374
|
-
"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`"
|
|
3375
|
-
}
|
|
3376
|
-
],
|
|
3377
|
-
"exports": [
|
|
3378
|
-
{
|
|
3379
|
-
"kind": "js",
|
|
3380
|
-
"name": "styles",
|
|
3381
|
-
"declaration": {
|
|
3382
|
-
"name": "styles",
|
|
3383
|
-
"module": "src/card/card-content.styles.ts"
|
|
3384
|
-
}
|
|
3385
|
-
}
|
|
3386
|
-
]
|
|
3387
|
-
},
|
|
3388
|
-
{
|
|
3389
|
-
"kind": "javascript-module",
|
|
3390
|
-
"path": "src/card/card-content.ts",
|
|
3391
|
-
"declarations": [
|
|
3392
|
-
{
|
|
3393
|
-
"kind": "class",
|
|
3394
|
-
"description": "",
|
|
3395
|
-
"name": "UmCardContent",
|
|
3396
|
-
"members": [
|
|
3397
|
-
{
|
|
3398
|
-
"kind": "field",
|
|
3399
|
-
"name": "hasContent",
|
|
3400
|
-
"type": {
|
|
3401
|
-
"text": "boolean"
|
|
3402
|
-
},
|
|
3403
|
-
"default": "false",
|
|
3404
|
-
"attribute": "has-content",
|
|
3405
|
-
"reflects": true
|
|
3406
|
-
},
|
|
3407
|
-
{
|
|
3408
|
-
"kind": "method",
|
|
3409
|
-
"name": "handleSlotChange",
|
|
3410
|
-
"privacy": "private",
|
|
3411
|
-
"parameters": [
|
|
3412
|
-
{
|
|
3413
|
-
"name": "e",
|
|
3414
|
-
"type": {
|
|
3415
|
-
"text": "Event"
|
|
3416
|
-
}
|
|
3417
|
-
}
|
|
3418
|
-
]
|
|
3419
|
-
}
|
|
3420
|
-
],
|
|
3421
|
-
"attributes": [
|
|
3422
|
-
{
|
|
3423
|
-
"name": "has-content",
|
|
3424
|
-
"type": {
|
|
3425
|
-
"text": "boolean"
|
|
3426
|
-
},
|
|
3427
|
-
"default": "false",
|
|
3428
|
-
"fieldName": "hasContent"
|
|
3429
|
-
}
|
|
3430
|
-
],
|
|
3431
|
-
"superclass": {
|
|
3432
|
-
"name": "LitElement",
|
|
3433
|
-
"package": "lit"
|
|
3434
|
-
},
|
|
3435
|
-
"tagName": "u-card-content",
|
|
3436
|
-
"customElement": true
|
|
3437
|
-
}
|
|
3438
|
-
],
|
|
3439
|
-
"exports": [
|
|
3440
|
-
{
|
|
3441
|
-
"kind": "js",
|
|
3442
|
-
"name": "UmCardContent",
|
|
3443
|
-
"declaration": {
|
|
3444
|
-
"name": "UmCardContent",
|
|
3445
|
-
"module": "src/card/card-content.ts"
|
|
3446
|
-
}
|
|
3447
|
-
},
|
|
3448
|
-
{
|
|
3449
|
-
"kind": "custom-element-definition",
|
|
3450
|
-
"name": "u-card-content",
|
|
3451
|
-
"declaration": {
|
|
3452
|
-
"name": "UmCardContent",
|
|
3453
|
-
"module": "src/card/card-content.ts"
|
|
3454
|
-
}
|
|
3455
|
-
}
|
|
3456
|
-
]
|
|
3457
|
-
},
|
|
3458
|
-
{
|
|
3459
|
-
"kind": "javascript-module",
|
|
3460
|
-
"path": "src/card/card-media.styles.ts",
|
|
3461
|
-
"declarations": [
|
|
3462
|
-
{
|
|
3463
|
-
"kind": "variable",
|
|
3464
|
-
"name": "styles",
|
|
3465
|
-
"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`"
|
|
3466
|
-
}
|
|
3467
|
-
],
|
|
3468
|
-
"exports": [
|
|
3469
|
-
{
|
|
3470
|
-
"kind": "js",
|
|
3471
|
-
"name": "styles",
|
|
3472
|
-
"declaration": {
|
|
3473
|
-
"name": "styles",
|
|
3474
|
-
"module": "src/card/card-media.styles.ts"
|
|
3475
|
-
}
|
|
3476
|
-
}
|
|
3477
|
-
]
|
|
3478
|
-
},
|
|
3479
|
-
{
|
|
3480
|
-
"kind": "javascript-module",
|
|
3481
|
-
"path": "src/card/card-media.ts",
|
|
3482
|
-
"declarations": [
|
|
3483
|
-
{
|
|
3484
|
-
"kind": "class",
|
|
3485
|
-
"description": "",
|
|
3486
|
-
"name": "UmCardMedia",
|
|
3487
|
-
"members": [
|
|
3488
|
-
{
|
|
3489
|
-
"kind": "field",
|
|
3490
|
-
"name": "wide",
|
|
3491
|
-
"type": {
|
|
3492
|
-
"text": "boolean"
|
|
3493
|
-
},
|
|
3494
|
-
"default": "false",
|
|
3495
|
-
"attribute": "wide",
|
|
3496
|
-
"reflects": true
|
|
3497
|
-
}
|
|
3498
|
-
],
|
|
3499
|
-
"attributes": [
|
|
3500
|
-
{
|
|
3501
|
-
"name": "wide",
|
|
3502
|
-
"type": {
|
|
3503
|
-
"text": "boolean"
|
|
3504
|
-
},
|
|
3505
|
-
"default": "false",
|
|
3506
|
-
"fieldName": "wide"
|
|
3507
|
-
}
|
|
3508
|
-
],
|
|
3509
|
-
"superclass": {
|
|
3510
|
-
"name": "LitElement",
|
|
3511
|
-
"package": "lit"
|
|
3512
|
-
},
|
|
3513
|
-
"tagName": "u-card-media",
|
|
3514
|
-
"customElement": true
|
|
3515
|
-
}
|
|
3516
|
-
],
|
|
3517
|
-
"exports": [
|
|
3518
|
-
{
|
|
3519
|
-
"kind": "js",
|
|
3520
|
-
"name": "UmCardMedia",
|
|
3521
|
-
"declaration": {
|
|
3522
|
-
"name": "UmCardMedia",
|
|
3523
|
-
"module": "src/card/card-media.ts"
|
|
3524
|
-
}
|
|
3525
|
-
},
|
|
3526
|
-
{
|
|
3527
|
-
"kind": "custom-element-definition",
|
|
3528
|
-
"name": "u-card-media",
|
|
3529
|
-
"declaration": {
|
|
3530
|
-
"name": "UmCardMedia",
|
|
3531
|
-
"module": "src/card/card-media.ts"
|
|
3532
|
-
}
|
|
3533
|
-
}
|
|
3534
|
-
]
|
|
3535
|
-
},
|
|
3536
|
-
{
|
|
3537
|
-
"kind": "javascript-module",
|
|
3538
|
-
"path": "src/card/card.styles.ts",
|
|
3539
|
-
"declarations": [
|
|
3540
|
-
{
|
|
3541
|
-
"kind": "variable",
|
|
3542
|
-
"name": "styles",
|
|
3543
|
-
"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 --u-current-bg-color: var(--u-card-elevated-bg-color, var(var(--u-color-surface-container-low, rgb(247, 242, 250))));\n background-color: var(--u-current-bg-color);\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 --u-current-bg-color: var(--u-card-filled-bg-color, var(--u-color-surface-container-highest, rgb(230, 224, 233)));\n background-color: var(--u-current-bg-color);\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`"
|
|
3544
|
-
}
|
|
3545
|
-
],
|
|
3546
|
-
"exports": [
|
|
3547
|
-
{
|
|
3548
|
-
"kind": "js",
|
|
3549
|
-
"name": "styles",
|
|
3550
|
-
"declaration": {
|
|
3551
|
-
"name": "styles",
|
|
3552
|
-
"module": "src/card/card.styles.ts"
|
|
3553
|
-
}
|
|
3554
|
-
}
|
|
3555
|
-
]
|
|
3556
|
-
},
|
|
3557
|
-
{
|
|
3558
|
-
"kind": "javascript-module",
|
|
3559
|
-
"path": "src/card/card.ts",
|
|
3560
|
-
"declarations": [
|
|
3561
|
-
{
|
|
3562
|
-
"kind": "class",
|
|
3563
|
-
"description": "",
|
|
3564
|
-
"name": "UmCard",
|
|
3565
|
-
"members": [
|
|
3566
|
-
{
|
|
3567
|
-
"kind": "field",
|
|
3568
|
-
"name": "variant",
|
|
3569
|
-
"type": {
|
|
3570
|
-
"text": "UmCardVariant"
|
|
3571
|
-
},
|
|
3572
|
-
"default": "'filled'",
|
|
3573
|
-
"description": "The Card variant to render.",
|
|
3574
|
-
"attribute": "variant",
|
|
3575
|
-
"reflects": true
|
|
3576
|
-
}
|
|
3577
|
-
],
|
|
3578
|
-
"attributes": [
|
|
3618
|
+
}
|
|
3619
|
+
},
|
|
3579
3620
|
{
|
|
3580
|
-
"name": "
|
|
3621
|
+
"name": "change",
|
|
3581
3622
|
"type": {
|
|
3582
|
-
"text": "
|
|
3623
|
+
"text": "Event"
|
|
3583
3624
|
},
|
|
3584
|
-
"
|
|
3585
|
-
|
|
3586
|
-
|
|
3625
|
+
"inheritedFrom": {
|
|
3626
|
+
"name": "UmSelectionControl",
|
|
3627
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
3628
|
+
}
|
|
3587
3629
|
}
|
|
3588
|
-
]
|
|
3589
|
-
"superclass": {
|
|
3590
|
-
"name": "LitElement",
|
|
3591
|
-
"package": "lit"
|
|
3592
|
-
},
|
|
3593
|
-
"tagName": "u-card",
|
|
3594
|
-
"customElement": true
|
|
3630
|
+
]
|
|
3595
3631
|
}
|
|
3596
3632
|
],
|
|
3597
3633
|
"exports": [
|
|
3598
3634
|
{
|
|
3599
3635
|
"kind": "js",
|
|
3600
|
-
"name": "
|
|
3636
|
+
"name": "UmCheckbox",
|
|
3601
3637
|
"declaration": {
|
|
3602
|
-
"name": "
|
|
3603
|
-
"module": "src/
|
|
3638
|
+
"name": "UmCheckbox",
|
|
3639
|
+
"module": "src/checkbox/checkbox.ts"
|
|
3604
3640
|
}
|
|
3605
3641
|
},
|
|
3606
3642
|
{
|
|
3607
3643
|
"kind": "custom-element-definition",
|
|
3608
|
-
"name": "u-
|
|
3644
|
+
"name": "u-checkbox",
|
|
3609
3645
|
"declaration": {
|
|
3610
|
-
"name": "
|
|
3611
|
-
"module": "src/
|
|
3646
|
+
"name": "UmCheckbox",
|
|
3647
|
+
"module": "src/checkbox/checkbox.ts"
|
|
3612
3648
|
}
|
|
3613
3649
|
}
|
|
3614
3650
|
]
|
|
@@ -9296,6 +9332,20 @@
|
|
|
9296
9332
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
9297
9333
|
}
|
|
9298
9334
|
},
|
|
9335
|
+
{
|
|
9336
|
+
"kind": "field",
|
|
9337
|
+
"name": "_checkedAttribute",
|
|
9338
|
+
"type": {
|
|
9339
|
+
"text": "boolean"
|
|
9340
|
+
},
|
|
9341
|
+
"privacy": "private",
|
|
9342
|
+
"default": "false",
|
|
9343
|
+
"attribute": "checked",
|
|
9344
|
+
"inheritedFrom": {
|
|
9345
|
+
"name": "UmSelectionControl",
|
|
9346
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
9347
|
+
}
|
|
9348
|
+
},
|
|
9299
9349
|
{
|
|
9300
9350
|
"kind": "method",
|
|
9301
9351
|
"name": "#handleClick",
|
|
@@ -9365,7 +9415,11 @@
|
|
|
9365
9415
|
},
|
|
9366
9416
|
{
|
|
9367
9417
|
"name": "checked",
|
|
9368
|
-
"fieldName": "
|
|
9418
|
+
"fieldName": "_checkedAttribute",
|
|
9419
|
+
"type": {
|
|
9420
|
+
"text": "boolean"
|
|
9421
|
+
},
|
|
9422
|
+
"default": "false",
|
|
9369
9423
|
"inheritedFrom": {
|
|
9370
9424
|
"name": "UmSelectionControl",
|
|
9371
9425
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
@@ -9635,6 +9689,20 @@
|
|
|
9635
9689
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
9636
9690
|
}
|
|
9637
9691
|
},
|
|
9692
|
+
{
|
|
9693
|
+
"kind": "field",
|
|
9694
|
+
"name": "_checkedAttribute",
|
|
9695
|
+
"type": {
|
|
9696
|
+
"text": "boolean"
|
|
9697
|
+
},
|
|
9698
|
+
"privacy": "private",
|
|
9699
|
+
"default": "false",
|
|
9700
|
+
"attribute": "checked",
|
|
9701
|
+
"inheritedFrom": {
|
|
9702
|
+
"name": "UmSelectionControl",
|
|
9703
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
9704
|
+
}
|
|
9705
|
+
},
|
|
9638
9706
|
{
|
|
9639
9707
|
"kind": "method",
|
|
9640
9708
|
"name": "#handleClick",
|
|
@@ -9700,7 +9768,11 @@
|
|
|
9700
9768
|
},
|
|
9701
9769
|
{
|
|
9702
9770
|
"name": "checked",
|
|
9703
|
-
"fieldName": "
|
|
9771
|
+
"fieldName": "_checkedAttribute",
|
|
9772
|
+
"type": {
|
|
9773
|
+
"text": "boolean"
|
|
9774
|
+
},
|
|
9775
|
+
"default": "false",
|
|
9704
9776
|
"inheritedFrom": {
|
|
9705
9777
|
"name": "UmSelectionControl",
|
|
9706
9778
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
@@ -12592,6 +12664,20 @@
|
|
|
12592
12664
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
12593
12665
|
}
|
|
12594
12666
|
},
|
|
12667
|
+
{
|
|
12668
|
+
"kind": "field",
|
|
12669
|
+
"name": "_checkedAttribute",
|
|
12670
|
+
"type": {
|
|
12671
|
+
"text": "boolean"
|
|
12672
|
+
},
|
|
12673
|
+
"privacy": "private",
|
|
12674
|
+
"default": "false",
|
|
12675
|
+
"attribute": "checked",
|
|
12676
|
+
"inheritedFrom": {
|
|
12677
|
+
"name": "UmSelectionControl",
|
|
12678
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
12679
|
+
}
|
|
12680
|
+
},
|
|
12595
12681
|
{
|
|
12596
12682
|
"kind": "method",
|
|
12597
12683
|
"name": "#handleClick",
|
|
@@ -12649,7 +12735,11 @@
|
|
|
12649
12735
|
},
|
|
12650
12736
|
{
|
|
12651
12737
|
"name": "checked",
|
|
12652
|
-
"fieldName": "
|
|
12738
|
+
"fieldName": "_checkedAttribute",
|
|
12739
|
+
"type": {
|
|
12740
|
+
"text": "boolean"
|
|
12741
|
+
},
|
|
12742
|
+
"default": "false",
|
|
12653
12743
|
"inheritedFrom": {
|
|
12654
12744
|
"name": "UmSelectionControl",
|
|
12655
12745
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
@@ -12879,6 +12969,20 @@
|
|
|
12879
12969
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
12880
12970
|
}
|
|
12881
12971
|
},
|
|
12972
|
+
{
|
|
12973
|
+
"kind": "field",
|
|
12974
|
+
"name": "_checkedAttribute",
|
|
12975
|
+
"type": {
|
|
12976
|
+
"text": "boolean"
|
|
12977
|
+
},
|
|
12978
|
+
"privacy": "private",
|
|
12979
|
+
"default": "false",
|
|
12980
|
+
"attribute": "checked",
|
|
12981
|
+
"inheritedFrom": {
|
|
12982
|
+
"name": "UmSelectionControl",
|
|
12983
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
12984
|
+
}
|
|
12985
|
+
},
|
|
12882
12986
|
{
|
|
12883
12987
|
"kind": "method",
|
|
12884
12988
|
"name": "#handleClick",
|
|
@@ -12942,7 +13046,11 @@
|
|
|
12942
13046
|
},
|
|
12943
13047
|
{
|
|
12944
13048
|
"name": "checked",
|
|
12945
|
-
"fieldName": "
|
|
13049
|
+
"fieldName": "_checkedAttribute",
|
|
13050
|
+
"type": {
|
|
13051
|
+
"text": "boolean"
|
|
13052
|
+
},
|
|
13053
|
+
"default": "false",
|
|
12946
13054
|
"inheritedFrom": {
|
|
12947
13055
|
"name": "UmSelectionControl",
|
|
12948
13056
|
"module": "src/shared/selection-control/selection-control.ts"
|
|
@@ -15947,6 +16055,16 @@
|
|
|
15947
16055
|
"name": "checked",
|
|
15948
16056
|
"attribute": "checked"
|
|
15949
16057
|
},
|
|
16058
|
+
{
|
|
16059
|
+
"kind": "field",
|
|
16060
|
+
"name": "_checkedAttribute",
|
|
16061
|
+
"type": {
|
|
16062
|
+
"text": "boolean"
|
|
16063
|
+
},
|
|
16064
|
+
"privacy": "private",
|
|
16065
|
+
"default": "false",
|
|
16066
|
+
"attribute": "checked"
|
|
16067
|
+
},
|
|
15950
16068
|
{
|
|
15951
16069
|
"kind": "method",
|
|
15952
16070
|
"name": "#handleClick",
|
|
@@ -16002,7 +16120,11 @@
|
|
|
16002
16120
|
},
|
|
16003
16121
|
{
|
|
16004
16122
|
"name": "checked",
|
|
16005
|
-
"fieldName": "
|
|
16123
|
+
"fieldName": "_checkedAttribute",
|
|
16124
|
+
"type": {
|
|
16125
|
+
"text": "boolean"
|
|
16126
|
+
},
|
|
16127
|
+
"default": "false"
|
|
16006
16128
|
}
|
|
16007
16129
|
],
|
|
16008
16130
|
"superclass": {
|
|
@@ -16023,77 +16145,6 @@
|
|
|
16023
16145
|
}
|
|
16024
16146
|
]
|
|
16025
16147
|
},
|
|
16026
|
-
{
|
|
16027
|
-
"kind": "javascript-module",
|
|
16028
|
-
"path": "src/shared/sets/set-base.styles.ts",
|
|
16029
|
-
"declarations": [
|
|
16030
|
-
{
|
|
16031
|
-
"kind": "variable",
|
|
16032
|
-
"name": "styles",
|
|
16033
|
-
"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`"
|
|
16034
|
-
}
|
|
16035
|
-
],
|
|
16036
|
-
"exports": [
|
|
16037
|
-
{
|
|
16038
|
-
"kind": "js",
|
|
16039
|
-
"name": "styles",
|
|
16040
|
-
"declaration": {
|
|
16041
|
-
"name": "styles",
|
|
16042
|
-
"module": "src/shared/sets/set-base.styles.ts"
|
|
16043
|
-
}
|
|
16044
|
-
}
|
|
16045
|
-
]
|
|
16046
|
-
},
|
|
16047
|
-
{
|
|
16048
|
-
"kind": "javascript-module",
|
|
16049
|
-
"path": "src/shared/sets/set-base.ts",
|
|
16050
|
-
"declarations": [
|
|
16051
|
-
{
|
|
16052
|
-
"kind": "class",
|
|
16053
|
-
"description": "",
|
|
16054
|
-
"name": "UmSetBase",
|
|
16055
|
-
"members": [
|
|
16056
|
-
{
|
|
16057
|
-
"kind": "field",
|
|
16058
|
-
"name": "alignment",
|
|
16059
|
-
"type": {
|
|
16060
|
-
"text": "'start' | 'center' | 'end'"
|
|
16061
|
-
},
|
|
16062
|
-
"default": "'start'",
|
|
16063
|
-
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16064
|
-
"attribute": "alignment",
|
|
16065
|
-
"reflects": true
|
|
16066
|
-
}
|
|
16067
|
-
],
|
|
16068
|
-
"attributes": [
|
|
16069
|
-
{
|
|
16070
|
-
"name": "alignment",
|
|
16071
|
-
"type": {
|
|
16072
|
-
"text": "'start' | 'center' | 'end'"
|
|
16073
|
-
},
|
|
16074
|
-
"default": "'start'",
|
|
16075
|
-
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16076
|
-
"fieldName": "alignment"
|
|
16077
|
-
}
|
|
16078
|
-
],
|
|
16079
|
-
"superclass": {
|
|
16080
|
-
"name": "LitElement",
|
|
16081
|
-
"package": "lit"
|
|
16082
|
-
},
|
|
16083
|
-
"customElement": true
|
|
16084
|
-
}
|
|
16085
|
-
],
|
|
16086
|
-
"exports": [
|
|
16087
|
-
{
|
|
16088
|
-
"kind": "js",
|
|
16089
|
-
"name": "UmSetBase",
|
|
16090
|
-
"declaration": {
|
|
16091
|
-
"name": "UmSetBase",
|
|
16092
|
-
"module": "src/shared/sets/set-base.ts"
|
|
16093
|
-
}
|
|
16094
|
-
}
|
|
16095
|
-
]
|
|
16096
|
-
},
|
|
16097
16148
|
{
|
|
16098
16149
|
"kind": "javascript-module",
|
|
16099
16150
|
"path": "src/shared/text-field-base/text-field-base.styles.ts",
|
|
@@ -16688,6 +16739,77 @@
|
|
|
16688
16739
|
}
|
|
16689
16740
|
}
|
|
16690
16741
|
]
|
|
16742
|
+
},
|
|
16743
|
+
{
|
|
16744
|
+
"kind": "javascript-module",
|
|
16745
|
+
"path": "src/shared/sets/set-base.styles.ts",
|
|
16746
|
+
"declarations": [
|
|
16747
|
+
{
|
|
16748
|
+
"kind": "variable",
|
|
16749
|
+
"name": "styles",
|
|
16750
|
+
"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`"
|
|
16751
|
+
}
|
|
16752
|
+
],
|
|
16753
|
+
"exports": [
|
|
16754
|
+
{
|
|
16755
|
+
"kind": "js",
|
|
16756
|
+
"name": "styles",
|
|
16757
|
+
"declaration": {
|
|
16758
|
+
"name": "styles",
|
|
16759
|
+
"module": "src/shared/sets/set-base.styles.ts"
|
|
16760
|
+
}
|
|
16761
|
+
}
|
|
16762
|
+
]
|
|
16763
|
+
},
|
|
16764
|
+
{
|
|
16765
|
+
"kind": "javascript-module",
|
|
16766
|
+
"path": "src/shared/sets/set-base.ts",
|
|
16767
|
+
"declarations": [
|
|
16768
|
+
{
|
|
16769
|
+
"kind": "class",
|
|
16770
|
+
"description": "",
|
|
16771
|
+
"name": "UmSetBase",
|
|
16772
|
+
"members": [
|
|
16773
|
+
{
|
|
16774
|
+
"kind": "field",
|
|
16775
|
+
"name": "alignment",
|
|
16776
|
+
"type": {
|
|
16777
|
+
"text": "'start' | 'center' | 'end'"
|
|
16778
|
+
},
|
|
16779
|
+
"default": "'start'",
|
|
16780
|
+
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16781
|
+
"attribute": "alignment",
|
|
16782
|
+
"reflects": true
|
|
16783
|
+
}
|
|
16784
|
+
],
|
|
16785
|
+
"attributes": [
|
|
16786
|
+
{
|
|
16787
|
+
"name": "alignment",
|
|
16788
|
+
"type": {
|
|
16789
|
+
"text": "'start' | 'center' | 'end'"
|
|
16790
|
+
},
|
|
16791
|
+
"default": "'start'",
|
|
16792
|
+
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
16793
|
+
"fieldName": "alignment"
|
|
16794
|
+
}
|
|
16795
|
+
],
|
|
16796
|
+
"superclass": {
|
|
16797
|
+
"name": "LitElement",
|
|
16798
|
+
"package": "lit"
|
|
16799
|
+
},
|
|
16800
|
+
"customElement": true
|
|
16801
|
+
}
|
|
16802
|
+
],
|
|
16803
|
+
"exports": [
|
|
16804
|
+
{
|
|
16805
|
+
"kind": "js",
|
|
16806
|
+
"name": "UmSetBase",
|
|
16807
|
+
"declaration": {
|
|
16808
|
+
"name": "UmSetBase",
|
|
16809
|
+
"module": "src/shared/sets/set-base.ts"
|
|
16810
|
+
}
|
|
16811
|
+
}
|
|
16812
|
+
]
|
|
16691
16813
|
}
|
|
16692
16814
|
]
|
|
16693
16815
|
}
|