@momentum-design/components 0.127.1 → 0.127.3
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/dist/browser/index.js +8 -8
- package/dist/browser/index.js.map +2 -2
- package/dist/components/menusection/menusection.component.d.ts +1 -1
- package/dist/components/menusection/menusection.component.js +1 -1
- package/dist/components/select/select.component.js +8 -8
- package/dist/custom-elements.json +525 -525
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/dist/react/menusection/index.d.ts +1 -1
- package/dist/react/menusection/index.js +1 -1
- package/package.json +1 -1
|
@@ -513,157 +513,6 @@
|
|
|
513
513
|
}
|
|
514
514
|
]
|
|
515
515
|
},
|
|
516
|
-
{
|
|
517
|
-
"kind": "javascript-module",
|
|
518
|
-
"path": "components/accordiongroup/accordiongroup.component.js",
|
|
519
|
-
"declarations": [
|
|
520
|
-
{
|
|
521
|
-
"kind": "class",
|
|
522
|
-
"description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
|
|
523
|
-
"name": "AccordionGroup",
|
|
524
|
-
"cssProperties": [
|
|
525
|
-
{
|
|
526
|
-
"description": "The border color of the entire accordiongroup",
|
|
527
|
-
"name": "--mdc-accordiongroup-border-color"
|
|
528
|
-
}
|
|
529
|
-
],
|
|
530
|
-
"slots": [
|
|
531
|
-
{
|
|
532
|
-
"description": "The default slot can contain the `accordion` or `accordionbutton` components.",
|
|
533
|
-
"name": "default"
|
|
534
|
-
}
|
|
535
|
-
],
|
|
536
|
-
"members": [
|
|
537
|
-
{
|
|
538
|
-
"kind": "field",
|
|
539
|
-
"name": "size",
|
|
540
|
-
"type": {
|
|
541
|
-
"text": "Size"
|
|
542
|
-
},
|
|
543
|
-
"description": "The size of the accordion item.",
|
|
544
|
-
"default": "'small'",
|
|
545
|
-
"attribute": "size",
|
|
546
|
-
"reflects": true
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
"kind": "field",
|
|
550
|
-
"name": "variant",
|
|
551
|
-
"type": {
|
|
552
|
-
"text": "Variant"
|
|
553
|
-
},
|
|
554
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
555
|
-
"default": "'stacked'",
|
|
556
|
-
"attribute": "variant",
|
|
557
|
-
"reflects": true
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"kind": "field",
|
|
561
|
-
"name": "allowMultiple",
|
|
562
|
-
"type": {
|
|
563
|
-
"text": "boolean"
|
|
564
|
-
},
|
|
565
|
-
"default": "false",
|
|
566
|
-
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
567
|
-
"attribute": "allow-multiple",
|
|
568
|
-
"reflects": true
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"kind": "method",
|
|
572
|
-
"name": "handleAccordionExpanded",
|
|
573
|
-
"privacy": "private",
|
|
574
|
-
"return": {
|
|
575
|
-
"type": {
|
|
576
|
-
"text": "void"
|
|
577
|
-
}
|
|
578
|
-
},
|
|
579
|
-
"parameters": [
|
|
580
|
-
{
|
|
581
|
-
"name": "event",
|
|
582
|
-
"type": {
|
|
583
|
-
"text": "Event"
|
|
584
|
-
},
|
|
585
|
-
"description": "The event object from the 'shown' event."
|
|
586
|
-
}
|
|
587
|
-
],
|
|
588
|
-
"description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"kind": "method",
|
|
592
|
-
"name": "setChildrenAccordionAttributes",
|
|
593
|
-
"privacy": "private",
|
|
594
|
-
"return": {
|
|
595
|
-
"type": {
|
|
596
|
-
"text": "void"
|
|
597
|
-
}
|
|
598
|
-
},
|
|
599
|
-
"parameters": [
|
|
600
|
-
{
|
|
601
|
-
"name": "attributeName",
|
|
602
|
-
"type": {
|
|
603
|
-
"text": "string"
|
|
604
|
-
},
|
|
605
|
-
"description": "The name of the attribute to set."
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
"name": "attributeValue",
|
|
609
|
-
"type": {
|
|
610
|
-
"text": "string"
|
|
611
|
-
},
|
|
612
|
-
"description": "The value to set the attribute to."
|
|
613
|
-
}
|
|
614
|
-
],
|
|
615
|
-
"description": "Sets the given attribute on all child accordion or accordionbutton components."
|
|
616
|
-
}
|
|
617
|
-
],
|
|
618
|
-
"attributes": [
|
|
619
|
-
{
|
|
620
|
-
"name": "size",
|
|
621
|
-
"type": {
|
|
622
|
-
"text": "Size"
|
|
623
|
-
},
|
|
624
|
-
"description": "The size of the accordion item.",
|
|
625
|
-
"default": "'small'",
|
|
626
|
-
"fieldName": "size"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"name": "variant",
|
|
630
|
-
"type": {
|
|
631
|
-
"text": "Variant"
|
|
632
|
-
},
|
|
633
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
634
|
-
"default": "'stacked'",
|
|
635
|
-
"fieldName": "variant"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"name": "allow-multiple",
|
|
639
|
-
"type": {
|
|
640
|
-
"text": "boolean"
|
|
641
|
-
},
|
|
642
|
-
"default": "false",
|
|
643
|
-
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
644
|
-
"fieldName": "allowMultiple"
|
|
645
|
-
}
|
|
646
|
-
],
|
|
647
|
-
"superclass": {
|
|
648
|
-
"name": "Component",
|
|
649
|
-
"module": "/src/models"
|
|
650
|
-
},
|
|
651
|
-
"tagName": "mdc-accordiongroup",
|
|
652
|
-
"jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
|
|
653
|
-
"customElement": true
|
|
654
|
-
}
|
|
655
|
-
],
|
|
656
|
-
"exports": [
|
|
657
|
-
{
|
|
658
|
-
"kind": "js",
|
|
659
|
-
"name": "default",
|
|
660
|
-
"declaration": {
|
|
661
|
-
"name": "AccordionGroup",
|
|
662
|
-
"module": "components/accordiongroup/accordiongroup.component.js"
|
|
663
|
-
}
|
|
664
|
-
}
|
|
665
|
-
]
|
|
666
|
-
},
|
|
667
516
|
{
|
|
668
517
|
"kind": "javascript-module",
|
|
669
518
|
"path": "components/accordionbutton/accordionbutton.component.js",
|
|
@@ -1004,6 +853,157 @@
|
|
|
1004
853
|
}
|
|
1005
854
|
]
|
|
1006
855
|
},
|
|
856
|
+
{
|
|
857
|
+
"kind": "javascript-module",
|
|
858
|
+
"path": "components/accordiongroup/accordiongroup.component.js",
|
|
859
|
+
"declarations": [
|
|
860
|
+
{
|
|
861
|
+
"kind": "class",
|
|
862
|
+
"description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
|
|
863
|
+
"name": "AccordionGroup",
|
|
864
|
+
"cssProperties": [
|
|
865
|
+
{
|
|
866
|
+
"description": "The border color of the entire accordiongroup",
|
|
867
|
+
"name": "--mdc-accordiongroup-border-color"
|
|
868
|
+
}
|
|
869
|
+
],
|
|
870
|
+
"slots": [
|
|
871
|
+
{
|
|
872
|
+
"description": "The default slot can contain the `accordion` or `accordionbutton` components.",
|
|
873
|
+
"name": "default"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"members": [
|
|
877
|
+
{
|
|
878
|
+
"kind": "field",
|
|
879
|
+
"name": "size",
|
|
880
|
+
"type": {
|
|
881
|
+
"text": "Size"
|
|
882
|
+
},
|
|
883
|
+
"description": "The size of the accordion item.",
|
|
884
|
+
"default": "'small'",
|
|
885
|
+
"attribute": "size",
|
|
886
|
+
"reflects": true
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"kind": "field",
|
|
890
|
+
"name": "variant",
|
|
891
|
+
"type": {
|
|
892
|
+
"text": "Variant"
|
|
893
|
+
},
|
|
894
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
895
|
+
"default": "'stacked'",
|
|
896
|
+
"attribute": "variant",
|
|
897
|
+
"reflects": true
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"kind": "field",
|
|
901
|
+
"name": "allowMultiple",
|
|
902
|
+
"type": {
|
|
903
|
+
"text": "boolean"
|
|
904
|
+
},
|
|
905
|
+
"default": "false",
|
|
906
|
+
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
907
|
+
"attribute": "allow-multiple",
|
|
908
|
+
"reflects": true
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"kind": "method",
|
|
912
|
+
"name": "handleAccordionExpanded",
|
|
913
|
+
"privacy": "private",
|
|
914
|
+
"return": {
|
|
915
|
+
"type": {
|
|
916
|
+
"text": "void"
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
"parameters": [
|
|
920
|
+
{
|
|
921
|
+
"name": "event",
|
|
922
|
+
"type": {
|
|
923
|
+
"text": "Event"
|
|
924
|
+
},
|
|
925
|
+
"description": "The event object from the 'shown' event."
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
"description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"kind": "method",
|
|
932
|
+
"name": "setChildrenAccordionAttributes",
|
|
933
|
+
"privacy": "private",
|
|
934
|
+
"return": {
|
|
935
|
+
"type": {
|
|
936
|
+
"text": "void"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
"parameters": [
|
|
940
|
+
{
|
|
941
|
+
"name": "attributeName",
|
|
942
|
+
"type": {
|
|
943
|
+
"text": "string"
|
|
944
|
+
},
|
|
945
|
+
"description": "The name of the attribute to set."
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"name": "attributeValue",
|
|
949
|
+
"type": {
|
|
950
|
+
"text": "string"
|
|
951
|
+
},
|
|
952
|
+
"description": "The value to set the attribute to."
|
|
953
|
+
}
|
|
954
|
+
],
|
|
955
|
+
"description": "Sets the given attribute on all child accordion or accordionbutton components."
|
|
956
|
+
}
|
|
957
|
+
],
|
|
958
|
+
"attributes": [
|
|
959
|
+
{
|
|
960
|
+
"name": "size",
|
|
961
|
+
"type": {
|
|
962
|
+
"text": "Size"
|
|
963
|
+
},
|
|
964
|
+
"description": "The size of the accordion item.",
|
|
965
|
+
"default": "'small'",
|
|
966
|
+
"fieldName": "size"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"name": "variant",
|
|
970
|
+
"type": {
|
|
971
|
+
"text": "Variant"
|
|
972
|
+
},
|
|
973
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
974
|
+
"default": "'stacked'",
|
|
975
|
+
"fieldName": "variant"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"name": "allow-multiple",
|
|
979
|
+
"type": {
|
|
980
|
+
"text": "boolean"
|
|
981
|
+
},
|
|
982
|
+
"default": "false",
|
|
983
|
+
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
984
|
+
"fieldName": "allowMultiple"
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
"superclass": {
|
|
988
|
+
"name": "Component",
|
|
989
|
+
"module": "/src/models"
|
|
990
|
+
},
|
|
991
|
+
"tagName": "mdc-accordiongroup",
|
|
992
|
+
"jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
|
|
993
|
+
"customElement": true
|
|
994
|
+
}
|
|
995
|
+
],
|
|
996
|
+
"exports": [
|
|
997
|
+
{
|
|
998
|
+
"kind": "js",
|
|
999
|
+
"name": "default",
|
|
1000
|
+
"declaration": {
|
|
1001
|
+
"name": "AccordionGroup",
|
|
1002
|
+
"module": "components/accordiongroup/accordiongroup.component.js"
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
]
|
|
1006
|
+
},
|
|
1007
1007
|
{
|
|
1008
1008
|
"kind": "javascript-module",
|
|
1009
1009
|
"path": "components/alertchip/alertchip.component.js",
|
|
@@ -3290,268 +3290,6 @@
|
|
|
3290
3290
|
}
|
|
3291
3291
|
]
|
|
3292
3292
|
},
|
|
3293
|
-
{
|
|
3294
|
-
"kind": "javascript-module",
|
|
3295
|
-
"path": "components/avatar/avatar.component.js",
|
|
3296
|
-
"declarations": [
|
|
3297
|
-
{
|
|
3298
|
-
"kind": "class",
|
|
3299
|
-
"description": "The `mdc-avatar` component is used to represent a person or a space.\nAn avatar can be an icon, initials, counter and photo.\n\nTo set the photo of an avatar,\nyou need to set \"src\" attribute.\n\nWhile the avatar image is loading, as a placeholder,\nwe will show the initials text.\nIf the initials are not specified then,\nwe will show `user-regular` icon as a placeholder.\n\nBy default, if there are no attributes specified,\nthen the default avatar will be an icon with `user-regular` name.\n\nThe avatar component is non clickable and non interactive/focusable component.\nIf the avatar is typing, then the loading indicator will be displayed.\nIf the counter type avatar is set to a negative number, then we will display 0.\nThe presence indicator will be hidden when the counter property is set.",
|
|
3300
|
-
"name": "Avatar",
|
|
3301
|
-
"cssProperties": [
|
|
3302
|
-
{
|
|
3303
|
-
"description": "Allows customization of the default background color.",
|
|
3304
|
-
"name": "--mdc-avatar-default-background-color"
|
|
3305
|
-
},
|
|
3306
|
-
{
|
|
3307
|
-
"description": "Allows customization of the default foreground color.",
|
|
3308
|
-
"name": "--mdc-avatar-default-foreground-color"
|
|
3309
|
-
},
|
|
3310
|
-
{
|
|
3311
|
-
"description": "Allows customization of the loading indicator background color.",
|
|
3312
|
-
"name": "--mdc-avatar-loading-indicator-background-color"
|
|
3313
|
-
},
|
|
3314
|
-
{
|
|
3315
|
-
"description": "Allows customization of the loading indicator foreground color.",
|
|
3316
|
-
"name": "--mdc-avatar-loading-indicator-foreground-color"
|
|
3317
|
-
},
|
|
3318
|
-
{
|
|
3319
|
-
"description": "Allows customization of the loading overlay background color.",
|
|
3320
|
-
"name": "--mdc-avatar-loading-overlay-background-color"
|
|
3321
|
-
}
|
|
3322
|
-
],
|
|
3323
|
-
"cssParts": [
|
|
3324
|
-
{
|
|
3325
|
-
"description": "The photo of the avatar.",
|
|
3326
|
-
"name": "photo"
|
|
3327
|
-
},
|
|
3328
|
-
{
|
|
3329
|
-
"description": "The presence indicator of the avatar.",
|
|
3330
|
-
"name": "presence"
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"description": "The wrapper for the loading indicator.",
|
|
3334
|
-
"name": "loading-wrapper"
|
|
3335
|
-
},
|
|
3336
|
-
{
|
|
3337
|
-
"description": "The loading indicator of the avatar.",
|
|
3338
|
-
"name": "loader"
|
|
3339
|
-
}
|
|
3340
|
-
],
|
|
3341
|
-
"members": [
|
|
3342
|
-
{
|
|
3343
|
-
"kind": "field",
|
|
3344
|
-
"name": "src",
|
|
3345
|
-
"type": {
|
|
3346
|
-
"text": "string | undefined"
|
|
3347
|
-
},
|
|
3348
|
-
"description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
|
|
3349
|
-
"attribute": "src",
|
|
3350
|
-
"inheritedFrom": {
|
|
3351
|
-
"name": "AvatarComponentMixin",
|
|
3352
|
-
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
3353
|
-
}
|
|
3354
|
-
},
|
|
3355
|
-
{
|
|
3356
|
-
"kind": "field",
|
|
3357
|
-
"name": "initials",
|
|
3358
|
-
"type": {
|
|
3359
|
-
"text": "string | undefined"
|
|
3360
|
-
},
|
|
3361
|
-
"description": "The initials to be displayed for the avatar.",
|
|
3362
|
-
"attribute": "initials",
|
|
3363
|
-
"inheritedFrom": {
|
|
3364
|
-
"name": "AvatarComponentMixin",
|
|
3365
|
-
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
3366
|
-
}
|
|
3367
|
-
},
|
|
3368
|
-
{
|
|
3369
|
-
"kind": "field",
|
|
3370
|
-
"name": "presence",
|
|
3371
|
-
"type": {
|
|
3372
|
-
"text": "PresenceType | undefined"
|
|
3373
|
-
},
|
|
3374
|
-
"description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
|
|
3375
|
-
"attribute": "presence",
|
|
3376
|
-
"inheritedFrom": {
|
|
3377
|
-
"name": "AvatarComponentMixin",
|
|
3378
|
-
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
3379
|
-
}
|
|
3380
|
-
},
|
|
3381
|
-
{
|
|
3382
|
-
"kind": "field",
|
|
3383
|
-
"name": "size",
|
|
3384
|
-
"type": {
|
|
3385
|
-
"text": "AvatarSize"
|
|
3386
|
-
},
|
|
3387
|
-
"description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
|
|
3388
|
-
"default": "32",
|
|
3389
|
-
"attribute": "size",
|
|
3390
|
-
"reflects": true,
|
|
3391
|
-
"inheritedFrom": {
|
|
3392
|
-
"name": "AvatarComponentMixin",
|
|
3393
|
-
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
3394
|
-
}
|
|
3395
|
-
},
|
|
3396
|
-
{
|
|
3397
|
-
"kind": "field",
|
|
3398
|
-
"name": "counter",
|
|
3399
|
-
"type": {
|
|
3400
|
-
"text": "number | undefined"
|
|
3401
|
-
},
|
|
3402
|
-
"description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
|
|
3403
|
-
"attribute": "counter",
|
|
3404
|
-
"inheritedFrom": {
|
|
3405
|
-
"name": "AvatarComponentMixin",
|
|
3406
|
-
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
3407
|
-
}
|
|
3408
|
-
},
|
|
3409
|
-
{
|
|
3410
|
-
"kind": "field",
|
|
3411
|
-
"name": "isTyping",
|
|
3412
|
-
"type": {
|
|
3413
|
-
"text": "boolean"
|
|
3414
|
-
},
|
|
3415
|
-
"default": "false",
|
|
3416
|
-
"description": "Represents the typing indicator when the user is typing.",
|
|
3417
|
-
"attribute": "is-typing",
|
|
3418
|
-
"inheritedFrom": {
|
|
3419
|
-
"name": "AvatarComponentMixin",
|
|
3420
|
-
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
3421
|
-
}
|
|
3422
|
-
},
|
|
3423
|
-
{
|
|
3424
|
-
"kind": "field",
|
|
3425
|
-
"name": "iconName",
|
|
3426
|
-
"type": {
|
|
3427
|
-
"text": "IconNames | undefined"
|
|
3428
|
-
},
|
|
3429
|
-
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
|
3430
|
-
"attribute": "icon-name",
|
|
3431
|
-
"inheritedFrom": {
|
|
3432
|
-
"name": "IconNameMixin",
|
|
3433
|
-
"module": "utils/mixins/IconNameMixin.js"
|
|
3434
|
-
}
|
|
3435
|
-
}
|
|
3436
|
-
],
|
|
3437
|
-
"mixins": [
|
|
3438
|
-
{
|
|
3439
|
-
"name": "AvatarComponentMixin",
|
|
3440
|
-
"module": "/src/utils/mixins/AvatarComponentMixin"
|
|
3441
|
-
},
|
|
3442
|
-
{
|
|
3443
|
-
"name": "IconNameMixin",
|
|
3444
|
-
"module": "/src/utils/mixins/IconNameMixin"
|
|
3445
|
-
}
|
|
3446
|
-
],
|
|
3447
|
-
"superclass": {
|
|
3448
|
-
"name": "Component",
|
|
3449
|
-
"module": "/src/models"
|
|
3450
|
-
},
|
|
3451
|
-
"tagName": "mdc-avatar",
|
|
3452
|
-
"jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
|
|
3453
|
-
"customElement": true,
|
|
3454
|
-
"attributes": [
|
|
3455
|
-
{
|
|
3456
|
-
"name": "src",
|
|
3457
|
-
"type": {
|
|
3458
|
-
"text": "string | undefined"
|
|
3459
|
-
},
|
|
3460
|
-
"description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
|
|
3461
|
-
"fieldName": "src",
|
|
3462
|
-
"inheritedFrom": {
|
|
3463
|
-
"name": "AvatarComponentMixin",
|
|
3464
|
-
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
3465
|
-
}
|
|
3466
|
-
},
|
|
3467
|
-
{
|
|
3468
|
-
"name": "initials",
|
|
3469
|
-
"type": {
|
|
3470
|
-
"text": "string | undefined"
|
|
3471
|
-
},
|
|
3472
|
-
"description": "The initials to be displayed for the avatar.",
|
|
3473
|
-
"fieldName": "initials",
|
|
3474
|
-
"inheritedFrom": {
|
|
3475
|
-
"name": "AvatarComponentMixin",
|
|
3476
|
-
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
3477
|
-
}
|
|
3478
|
-
},
|
|
3479
|
-
{
|
|
3480
|
-
"name": "presence",
|
|
3481
|
-
"type": {
|
|
3482
|
-
"text": "PresenceType | undefined"
|
|
3483
|
-
},
|
|
3484
|
-
"description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
|
|
3485
|
-
"fieldName": "presence",
|
|
3486
|
-
"inheritedFrom": {
|
|
3487
|
-
"name": "AvatarComponentMixin",
|
|
3488
|
-
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
3489
|
-
}
|
|
3490
|
-
},
|
|
3491
|
-
{
|
|
3492
|
-
"name": "size",
|
|
3493
|
-
"type": {
|
|
3494
|
-
"text": "AvatarSize"
|
|
3495
|
-
},
|
|
3496
|
-
"description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
|
|
3497
|
-
"default": "32",
|
|
3498
|
-
"fieldName": "size",
|
|
3499
|
-
"inheritedFrom": {
|
|
3500
|
-
"name": "AvatarComponentMixin",
|
|
3501
|
-
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
3502
|
-
}
|
|
3503
|
-
},
|
|
3504
|
-
{
|
|
3505
|
-
"name": "counter",
|
|
3506
|
-
"type": {
|
|
3507
|
-
"text": "number | undefined"
|
|
3508
|
-
},
|
|
3509
|
-
"description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
|
|
3510
|
-
"fieldName": "counter",
|
|
3511
|
-
"inheritedFrom": {
|
|
3512
|
-
"name": "AvatarComponentMixin",
|
|
3513
|
-
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
3514
|
-
}
|
|
3515
|
-
},
|
|
3516
|
-
{
|
|
3517
|
-
"name": "is-typing",
|
|
3518
|
-
"type": {
|
|
3519
|
-
"text": "boolean"
|
|
3520
|
-
},
|
|
3521
|
-
"default": "false",
|
|
3522
|
-
"description": "Represents the typing indicator when the user is typing.",
|
|
3523
|
-
"fieldName": "isTyping",
|
|
3524
|
-
"inheritedFrom": {
|
|
3525
|
-
"name": "AvatarComponentMixin",
|
|
3526
|
-
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
3527
|
-
}
|
|
3528
|
-
},
|
|
3529
|
-
{
|
|
3530
|
-
"name": "icon-name",
|
|
3531
|
-
"type": {
|
|
3532
|
-
"text": "IconNames | undefined"
|
|
3533
|
-
},
|
|
3534
|
-
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
|
3535
|
-
"fieldName": "iconName",
|
|
3536
|
-
"inheritedFrom": {
|
|
3537
|
-
"name": "IconNameMixin",
|
|
3538
|
-
"module": "src/utils/mixins/IconNameMixin.ts"
|
|
3539
|
-
}
|
|
3540
|
-
}
|
|
3541
|
-
]
|
|
3542
|
-
}
|
|
3543
|
-
],
|
|
3544
|
-
"exports": [
|
|
3545
|
-
{
|
|
3546
|
-
"kind": "js",
|
|
3547
|
-
"name": "default",
|
|
3548
|
-
"declaration": {
|
|
3549
|
-
"name": "Avatar",
|
|
3550
|
-
"module": "components/avatar/avatar.component.js"
|
|
3551
|
-
}
|
|
3552
|
-
}
|
|
3553
|
-
]
|
|
3554
|
-
},
|
|
3555
3293
|
{
|
|
3556
3294
|
"kind": "javascript-module",
|
|
3557
3295
|
"path": "components/avatarbutton/avatarbutton.component.js",
|
|
@@ -4338,6 +4076,268 @@
|
|
|
4338
4076
|
}
|
|
4339
4077
|
]
|
|
4340
4078
|
},
|
|
4079
|
+
{
|
|
4080
|
+
"kind": "javascript-module",
|
|
4081
|
+
"path": "components/avatar/avatar.component.js",
|
|
4082
|
+
"declarations": [
|
|
4083
|
+
{
|
|
4084
|
+
"kind": "class",
|
|
4085
|
+
"description": "The `mdc-avatar` component is used to represent a person or a space.\nAn avatar can be an icon, initials, counter and photo.\n\nTo set the photo of an avatar,\nyou need to set \"src\" attribute.\n\nWhile the avatar image is loading, as a placeholder,\nwe will show the initials text.\nIf the initials are not specified then,\nwe will show `user-regular` icon as a placeholder.\n\nBy default, if there are no attributes specified,\nthen the default avatar will be an icon with `user-regular` name.\n\nThe avatar component is non clickable and non interactive/focusable component.\nIf the avatar is typing, then the loading indicator will be displayed.\nIf the counter type avatar is set to a negative number, then we will display 0.\nThe presence indicator will be hidden when the counter property is set.",
|
|
4086
|
+
"name": "Avatar",
|
|
4087
|
+
"cssProperties": [
|
|
4088
|
+
{
|
|
4089
|
+
"description": "Allows customization of the default background color.",
|
|
4090
|
+
"name": "--mdc-avatar-default-background-color"
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
"description": "Allows customization of the default foreground color.",
|
|
4094
|
+
"name": "--mdc-avatar-default-foreground-color"
|
|
4095
|
+
},
|
|
4096
|
+
{
|
|
4097
|
+
"description": "Allows customization of the loading indicator background color.",
|
|
4098
|
+
"name": "--mdc-avatar-loading-indicator-background-color"
|
|
4099
|
+
},
|
|
4100
|
+
{
|
|
4101
|
+
"description": "Allows customization of the loading indicator foreground color.",
|
|
4102
|
+
"name": "--mdc-avatar-loading-indicator-foreground-color"
|
|
4103
|
+
},
|
|
4104
|
+
{
|
|
4105
|
+
"description": "Allows customization of the loading overlay background color.",
|
|
4106
|
+
"name": "--mdc-avatar-loading-overlay-background-color"
|
|
4107
|
+
}
|
|
4108
|
+
],
|
|
4109
|
+
"cssParts": [
|
|
4110
|
+
{
|
|
4111
|
+
"description": "The photo of the avatar.",
|
|
4112
|
+
"name": "photo"
|
|
4113
|
+
},
|
|
4114
|
+
{
|
|
4115
|
+
"description": "The presence indicator of the avatar.",
|
|
4116
|
+
"name": "presence"
|
|
4117
|
+
},
|
|
4118
|
+
{
|
|
4119
|
+
"description": "The wrapper for the loading indicator.",
|
|
4120
|
+
"name": "loading-wrapper"
|
|
4121
|
+
},
|
|
4122
|
+
{
|
|
4123
|
+
"description": "The loading indicator of the avatar.",
|
|
4124
|
+
"name": "loader"
|
|
4125
|
+
}
|
|
4126
|
+
],
|
|
4127
|
+
"members": [
|
|
4128
|
+
{
|
|
4129
|
+
"kind": "field",
|
|
4130
|
+
"name": "src",
|
|
4131
|
+
"type": {
|
|
4132
|
+
"text": "string | undefined"
|
|
4133
|
+
},
|
|
4134
|
+
"description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
|
|
4135
|
+
"attribute": "src",
|
|
4136
|
+
"inheritedFrom": {
|
|
4137
|
+
"name": "AvatarComponentMixin",
|
|
4138
|
+
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
4139
|
+
}
|
|
4140
|
+
},
|
|
4141
|
+
{
|
|
4142
|
+
"kind": "field",
|
|
4143
|
+
"name": "initials",
|
|
4144
|
+
"type": {
|
|
4145
|
+
"text": "string | undefined"
|
|
4146
|
+
},
|
|
4147
|
+
"description": "The initials to be displayed for the avatar.",
|
|
4148
|
+
"attribute": "initials",
|
|
4149
|
+
"inheritedFrom": {
|
|
4150
|
+
"name": "AvatarComponentMixin",
|
|
4151
|
+
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
4152
|
+
}
|
|
4153
|
+
},
|
|
4154
|
+
{
|
|
4155
|
+
"kind": "field",
|
|
4156
|
+
"name": "presence",
|
|
4157
|
+
"type": {
|
|
4158
|
+
"text": "PresenceType | undefined"
|
|
4159
|
+
},
|
|
4160
|
+
"description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
|
|
4161
|
+
"attribute": "presence",
|
|
4162
|
+
"inheritedFrom": {
|
|
4163
|
+
"name": "AvatarComponentMixin",
|
|
4164
|
+
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
4165
|
+
}
|
|
4166
|
+
},
|
|
4167
|
+
{
|
|
4168
|
+
"kind": "field",
|
|
4169
|
+
"name": "size",
|
|
4170
|
+
"type": {
|
|
4171
|
+
"text": "AvatarSize"
|
|
4172
|
+
},
|
|
4173
|
+
"description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
|
|
4174
|
+
"default": "32",
|
|
4175
|
+
"attribute": "size",
|
|
4176
|
+
"reflects": true,
|
|
4177
|
+
"inheritedFrom": {
|
|
4178
|
+
"name": "AvatarComponentMixin",
|
|
4179
|
+
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
4180
|
+
}
|
|
4181
|
+
},
|
|
4182
|
+
{
|
|
4183
|
+
"kind": "field",
|
|
4184
|
+
"name": "counter",
|
|
4185
|
+
"type": {
|
|
4186
|
+
"text": "number | undefined"
|
|
4187
|
+
},
|
|
4188
|
+
"description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
|
|
4189
|
+
"attribute": "counter",
|
|
4190
|
+
"inheritedFrom": {
|
|
4191
|
+
"name": "AvatarComponentMixin",
|
|
4192
|
+
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
4193
|
+
}
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
"kind": "field",
|
|
4197
|
+
"name": "isTyping",
|
|
4198
|
+
"type": {
|
|
4199
|
+
"text": "boolean"
|
|
4200
|
+
},
|
|
4201
|
+
"default": "false",
|
|
4202
|
+
"description": "Represents the typing indicator when the user is typing.",
|
|
4203
|
+
"attribute": "is-typing",
|
|
4204
|
+
"inheritedFrom": {
|
|
4205
|
+
"name": "AvatarComponentMixin",
|
|
4206
|
+
"module": "utils/mixins/AvatarComponentMixin.js"
|
|
4207
|
+
}
|
|
4208
|
+
},
|
|
4209
|
+
{
|
|
4210
|
+
"kind": "field",
|
|
4211
|
+
"name": "iconName",
|
|
4212
|
+
"type": {
|
|
4213
|
+
"text": "IconNames | undefined"
|
|
4214
|
+
},
|
|
4215
|
+
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
|
4216
|
+
"attribute": "icon-name",
|
|
4217
|
+
"inheritedFrom": {
|
|
4218
|
+
"name": "IconNameMixin",
|
|
4219
|
+
"module": "utils/mixins/IconNameMixin.js"
|
|
4220
|
+
}
|
|
4221
|
+
}
|
|
4222
|
+
],
|
|
4223
|
+
"mixins": [
|
|
4224
|
+
{
|
|
4225
|
+
"name": "AvatarComponentMixin",
|
|
4226
|
+
"module": "/src/utils/mixins/AvatarComponentMixin"
|
|
4227
|
+
},
|
|
4228
|
+
{
|
|
4229
|
+
"name": "IconNameMixin",
|
|
4230
|
+
"module": "/src/utils/mixins/IconNameMixin"
|
|
4231
|
+
}
|
|
4232
|
+
],
|
|
4233
|
+
"superclass": {
|
|
4234
|
+
"name": "Component",
|
|
4235
|
+
"module": "/src/models"
|
|
4236
|
+
},
|
|
4237
|
+
"tagName": "mdc-avatar",
|
|
4238
|
+
"jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
|
|
4239
|
+
"customElement": true,
|
|
4240
|
+
"attributes": [
|
|
4241
|
+
{
|
|
4242
|
+
"name": "src",
|
|
4243
|
+
"type": {
|
|
4244
|
+
"text": "string | undefined"
|
|
4245
|
+
},
|
|
4246
|
+
"description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
|
|
4247
|
+
"fieldName": "src",
|
|
4248
|
+
"inheritedFrom": {
|
|
4249
|
+
"name": "AvatarComponentMixin",
|
|
4250
|
+
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
4251
|
+
}
|
|
4252
|
+
},
|
|
4253
|
+
{
|
|
4254
|
+
"name": "initials",
|
|
4255
|
+
"type": {
|
|
4256
|
+
"text": "string | undefined"
|
|
4257
|
+
},
|
|
4258
|
+
"description": "The initials to be displayed for the avatar.",
|
|
4259
|
+
"fieldName": "initials",
|
|
4260
|
+
"inheritedFrom": {
|
|
4261
|
+
"name": "AvatarComponentMixin",
|
|
4262
|
+
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
4263
|
+
}
|
|
4264
|
+
},
|
|
4265
|
+
{
|
|
4266
|
+
"name": "presence",
|
|
4267
|
+
"type": {
|
|
4268
|
+
"text": "PresenceType | undefined"
|
|
4269
|
+
},
|
|
4270
|
+
"description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
|
|
4271
|
+
"fieldName": "presence",
|
|
4272
|
+
"inheritedFrom": {
|
|
4273
|
+
"name": "AvatarComponentMixin",
|
|
4274
|
+
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
4275
|
+
}
|
|
4276
|
+
},
|
|
4277
|
+
{
|
|
4278
|
+
"name": "size",
|
|
4279
|
+
"type": {
|
|
4280
|
+
"text": "AvatarSize"
|
|
4281
|
+
},
|
|
4282
|
+
"description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
|
|
4283
|
+
"default": "32",
|
|
4284
|
+
"fieldName": "size",
|
|
4285
|
+
"inheritedFrom": {
|
|
4286
|
+
"name": "AvatarComponentMixin",
|
|
4287
|
+
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
4288
|
+
}
|
|
4289
|
+
},
|
|
4290
|
+
{
|
|
4291
|
+
"name": "counter",
|
|
4292
|
+
"type": {
|
|
4293
|
+
"text": "number | undefined"
|
|
4294
|
+
},
|
|
4295
|
+
"description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
|
|
4296
|
+
"fieldName": "counter",
|
|
4297
|
+
"inheritedFrom": {
|
|
4298
|
+
"name": "AvatarComponentMixin",
|
|
4299
|
+
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
4300
|
+
}
|
|
4301
|
+
},
|
|
4302
|
+
{
|
|
4303
|
+
"name": "is-typing",
|
|
4304
|
+
"type": {
|
|
4305
|
+
"text": "boolean"
|
|
4306
|
+
},
|
|
4307
|
+
"default": "false",
|
|
4308
|
+
"description": "Represents the typing indicator when the user is typing.",
|
|
4309
|
+
"fieldName": "isTyping",
|
|
4310
|
+
"inheritedFrom": {
|
|
4311
|
+
"name": "AvatarComponentMixin",
|
|
4312
|
+
"module": "src/utils/mixins/AvatarComponentMixin.ts"
|
|
4313
|
+
}
|
|
4314
|
+
},
|
|
4315
|
+
{
|
|
4316
|
+
"name": "icon-name",
|
|
4317
|
+
"type": {
|
|
4318
|
+
"text": "IconNames | undefined"
|
|
4319
|
+
},
|
|
4320
|
+
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
|
4321
|
+
"fieldName": "iconName",
|
|
4322
|
+
"inheritedFrom": {
|
|
4323
|
+
"name": "IconNameMixin",
|
|
4324
|
+
"module": "src/utils/mixins/IconNameMixin.ts"
|
|
4325
|
+
}
|
|
4326
|
+
}
|
|
4327
|
+
]
|
|
4328
|
+
}
|
|
4329
|
+
],
|
|
4330
|
+
"exports": [
|
|
4331
|
+
{
|
|
4332
|
+
"kind": "js",
|
|
4333
|
+
"name": "default",
|
|
4334
|
+
"declaration": {
|
|
4335
|
+
"name": "Avatar",
|
|
4336
|
+
"module": "components/avatar/avatar.component.js"
|
|
4337
|
+
}
|
|
4338
|
+
}
|
|
4339
|
+
]
|
|
4340
|
+
},
|
|
4341
4341
|
{
|
|
4342
4342
|
"kind": "javascript-module",
|
|
4343
4343
|
"path": "components/badge/badge.component.js",
|
|
@@ -29168,7 +29168,7 @@
|
|
|
29168
29168
|
"declarations": [
|
|
29169
29169
|
{
|
|
29170
29170
|
"kind": "class",
|
|
29171
|
-
"description": "`mdc-menusection` is a container element used to group a set of menu items.\n\nThis component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n\n- If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n only one radio item can be selected at a time.\n- If `menuitemcheckbox` components are included, their checked state can be toggled independently.",
|
|
29171
|
+
"description": "`mdc-menusection` is a container element used to group a set of menu items.\n\nThis component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components. MenuSection can not be nested.\n\n- If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n only one radio item can be selected at a time.\n- If `menuitemcheckbox` components are included, their checked state can be toggled independently.",
|
|
29172
29172
|
"name": "MenuSection",
|
|
29173
29173
|
"cssProperties": [
|
|
29174
29174
|
{
|
|
@@ -29329,7 +29329,7 @@
|
|
|
29329
29329
|
"module": "/src/models"
|
|
29330
29330
|
},
|
|
29331
29331
|
"tagName": "mdc-menusection",
|
|
29332
|
-
"jsDoc": "/**\n * `mdc-menusection` is a container element used to group a set of menu items.\n *\n * This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n *\n * - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n * only one radio item can be selected at a time.\n * - If `menuitemcheckbox` components are included, their checked state can be toggled independently.\n *\n * @tagname mdc-menusection\n *\n * @slot - Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`\n *\n * @event change - (React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.\n * @event action - (React: onAction) This event is dispatched when a `menuitem` selected.\n *\n * @csspart header - The header of the menusection.\n * @csspart align-header - The header of the menusection when it is aligned to the start.\n * @csspart container - The container of the menusection.\n * @csspart divider - The divider of the menusection.\n *\n * @cssproperty --mdc-menusection-divider-margin-block - Sets the margin block of the divider.\n * @cssproperty --mdc-menusection-gap - Sets the gap between items in the menusection.\n * @cssproperty --mdc-menusection-divider-width - Sets the width of the divider.\n * @cssproperty --mdc-menusection-header-padding - Sets the padding of the header, if present.\n */",
|
|
29332
|
+
"jsDoc": "/**\n * `mdc-menusection` is a container element used to group a set of menu items.\n *\n * This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components. MenuSection can not be nested.\n *\n * - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n * only one radio item can be selected at a time.\n * - If `menuitemcheckbox` components are included, their checked state can be toggled independently.\n *\n * @tagname mdc-menusection\n *\n * @slot - Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`\n *\n * @event change - (React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.\n * @event action - (React: onAction) This event is dispatched when a `menuitem` selected.\n *\n * @csspart header - The header of the menusection.\n * @csspart align-header - The header of the menusection when it is aligned to the start.\n * @csspart container - The container of the menusection.\n * @csspart divider - The divider of the menusection.\n *\n * @cssproperty --mdc-menusection-divider-margin-block - Sets the margin block of the divider.\n * @cssproperty --mdc-menusection-gap - Sets the gap between items in the menusection.\n * @cssproperty --mdc-menusection-divider-width - Sets the width of the divider.\n * @cssproperty --mdc-menusection-header-padding - Sets the padding of the header, if present.\n */",
|
|
29333
29333
|
"customElement": true
|
|
29334
29334
|
}
|
|
29335
29335
|
],
|
|
@@ -46674,116 +46674,6 @@
|
|
|
46674
46674
|
}
|
|
46675
46675
|
]
|
|
46676
46676
|
},
|
|
46677
|
-
{
|
|
46678
|
-
"kind": "javascript-module",
|
|
46679
|
-
"path": "components/themeprovider/themeprovider.component.js",
|
|
46680
|
-
"declarations": [
|
|
46681
|
-
{
|
|
46682
|
-
"kind": "class",
|
|
46683
|
-
"description": "ThemeProvider component, which sets the passed in themeclass as class.\nIf the themeclass switches, the existing themeclass will be removed as a class\nand the new themeclass will be added.\n\nCSS variables defined in the themeclass will be used for the styling of child dom nodes.\n\nAvailable Momentum theme classes:\n\n`mds-theme-stable-darkWebex`, `mds-theme-stable-lightWebex`\n\n`mds-theme-stable-darkBronzeWebex`, `mds-theme-stable-lightBronzeWebex`\n\n`mds-theme-stable-darkIndigoWebex`, `mds-theme-stable-lightIndigoWebex`\n\n`mds-theme-stable-darkJadeWebex`, `mds-theme-stable-lightJadeWebex`\n\n`mds-theme-stable-darkLavenderWebex`, `mds-theme-stable-lightLavenderWebex`\n\n`mds-theme-stable-darkRoseWebex`, `mds-theme-stable-lightRoseWebex`\n\nThemeclass context can be be consumed from Lit child components\n(see providerUtils.consume for how to consume)\n\nThemeProvider also includes basic font defaults for text.",
|
|
46684
|
-
"name": "ThemeProvider",
|
|
46685
|
-
"cssProperties": [
|
|
46686
|
-
{
|
|
46687
|
-
"description": "Option to override the default color, default: color-theme-text-primary-normal",
|
|
46688
|
-
"name": "--mdc-themeprovider-color-default"
|
|
46689
|
-
},
|
|
46690
|
-
{
|
|
46691
|
-
"description": "Option to override the font family, default: `Momentum` (from momentum-design/fonts)",
|
|
46692
|
-
"name": "--mdc-themeprovider-font-family"
|
|
46693
|
-
},
|
|
46694
|
-
{
|
|
46695
|
-
"description": "Option to override the font weight, default: `400`",
|
|
46696
|
-
"name": "--mdc-themeprovider-font-weight"
|
|
46697
|
-
},
|
|
46698
|
-
{
|
|
46699
|
-
"description": "Option to override the default letter-spacing, default: `-0.25px` (this is to match the old CiscoSans)",
|
|
46700
|
-
"name": "--mdc-themeprovider-letter-spacing-adjustment"
|
|
46701
|
-
},
|
|
46702
|
-
{
|
|
46703
|
-
"description": "Option to override the font feature settings, default: `\"ss02\" on`",
|
|
46704
|
-
"name": "--mdc-themeprovider-font-feature-settings"
|
|
46705
|
-
},
|
|
46706
|
-
{
|
|
46707
|
-
"description": "Option to override the color of the scrollbar track.",
|
|
46708
|
-
"name": "--mdc-themeprovider-scrollbar-track-color"
|
|
46709
|
-
},
|
|
46710
|
-
{
|
|
46711
|
-
"description": "Option to override the color of the scrollbar thumb.",
|
|
46712
|
-
"name": "--mdc-themeprovider-scrollbar-thumb-color"
|
|
46713
|
-
}
|
|
46714
|
-
],
|
|
46715
|
-
"slots": [
|
|
46716
|
-
{
|
|
46717
|
-
"description": "children",
|
|
46718
|
-
"name": ""
|
|
46719
|
-
}
|
|
46720
|
-
],
|
|
46721
|
-
"members": [
|
|
46722
|
-
{
|
|
46723
|
-
"kind": "field",
|
|
46724
|
-
"name": "Context",
|
|
46725
|
-
"privacy": "public",
|
|
46726
|
-
"static": true,
|
|
46727
|
-
"description": "Context object of the ThemeProvider, to be consumed by child components",
|
|
46728
|
-
"readonly": true
|
|
46729
|
-
},
|
|
46730
|
-
{
|
|
46731
|
-
"kind": "field",
|
|
46732
|
-
"name": "themeclass",
|
|
46733
|
-
"type": {
|
|
46734
|
-
"text": "string"
|
|
46735
|
-
},
|
|
46736
|
-
"description": "Current theme class\n\nHas to be fully qualified, such that\nthe theme class matches the class of the respective\ntheme stylesheet\n\nDefault: 'mds-theme-stable-darkWebex'",
|
|
46737
|
-
"attribute": "themeclass"
|
|
46738
|
-
},
|
|
46739
|
-
{
|
|
46740
|
-
"kind": "method",
|
|
46741
|
-
"name": "updateContext",
|
|
46742
|
-
"privacy": "protected",
|
|
46743
|
-
"return": {
|
|
46744
|
-
"type": {
|
|
46745
|
-
"text": "void"
|
|
46746
|
-
}
|
|
46747
|
-
},
|
|
46748
|
-
"description": "Update all observing components of this\nprovider to update the themeclass\n\nIs called on every re-render, see Provider class"
|
|
46749
|
-
},
|
|
46750
|
-
{
|
|
46751
|
-
"kind": "method",
|
|
46752
|
-
"name": "setThemeInClassList",
|
|
46753
|
-
"privacy": "private",
|
|
46754
|
-
"description": "Function to update the active theme classnames to update the theme tokens\nas CSS variables on the web component."
|
|
46755
|
-
}
|
|
46756
|
-
],
|
|
46757
|
-
"attributes": [
|
|
46758
|
-
{
|
|
46759
|
-
"name": "themeclass",
|
|
46760
|
-
"type": {
|
|
46761
|
-
"text": "string"
|
|
46762
|
-
},
|
|
46763
|
-
"description": "Current theme class\n\nHas to be fully qualified, such that\nthe theme class matches the class of the respective\ntheme stylesheet\n\nDefault: 'mds-theme-stable-darkWebex'",
|
|
46764
|
-
"fieldName": "themeclass"
|
|
46765
|
-
}
|
|
46766
|
-
],
|
|
46767
|
-
"superclass": {
|
|
46768
|
-
"name": "Provider",
|
|
46769
|
-
"module": "/src/models"
|
|
46770
|
-
},
|
|
46771
|
-
"tagName": "mdc-themeprovider",
|
|
46772
|
-
"jsDoc": "/**\n * ThemeProvider component, which sets the passed in themeclass as class.\n * If the themeclass switches, the existing themeclass will be removed as a class\n * and the new themeclass will be added.\n *\n * CSS variables defined in the themeclass will be used for the styling of child dom nodes.\n *\n * Available Momentum theme classes:\n *\n * `mds-theme-stable-darkWebex`, `mds-theme-stable-lightWebex`\n *\n * `mds-theme-stable-darkBronzeWebex`, `mds-theme-stable-lightBronzeWebex`\n *\n * `mds-theme-stable-darkIndigoWebex`, `mds-theme-stable-lightIndigoWebex`\n *\n * `mds-theme-stable-darkJadeWebex`, `mds-theme-stable-lightJadeWebex`\n *\n * `mds-theme-stable-darkLavenderWebex`, `mds-theme-stable-lightLavenderWebex`\n *\n * `mds-theme-stable-darkRoseWebex`, `mds-theme-stable-lightRoseWebex`\n *\n * Themeclass context can be be consumed from Lit child components\n * (see providerUtils.consume for how to consume)\n *\n * ThemeProvider also includes basic font defaults for text.\n *\n * @tagname mdc-themeprovider\n *\n * @slot - children\n *\n * @cssproperty --mdc-themeprovider-color-default - Option to override the default color,\n * default: color-theme-text-primary-normal\n * @cssproperty --mdc-themeprovider-font-family - Option to override the font family,\n * default: `Momentum` (from momentum-design/fonts)\n * @cssproperty --mdc-themeprovider-font-weight - Option to override the font weight, default: `400`\n * @cssproperty --mdc-themeprovider-letter-spacing-adjustment - Option to override the default letter-spacing,\n * default: `-0.25px` (this is to match the old CiscoSans)\n * @cssproperty --mdc-themeprovider-font-feature-settings - Option to override the font feature settings,\n * default: `\"ss02\" on`\n * @cssproperty --mdc-themeprovider-scrollbar-track-color - Option to override the color of the scrollbar track.\n * @cssproperty --mdc-themeprovider-scrollbar-thumb-color - Option to override the color of the scrollbar thumb.\n */",
|
|
46773
|
-
"customElement": true
|
|
46774
|
-
}
|
|
46775
|
-
],
|
|
46776
|
-
"exports": [
|
|
46777
|
-
{
|
|
46778
|
-
"kind": "js",
|
|
46779
|
-
"name": "default",
|
|
46780
|
-
"declaration": {
|
|
46781
|
-
"name": "ThemeProvider",
|
|
46782
|
-
"module": "components/themeprovider/themeprovider.component.js"
|
|
46783
|
-
}
|
|
46784
|
-
}
|
|
46785
|
-
]
|
|
46786
|
-
},
|
|
46787
46677
|
{
|
|
46788
46678
|
"kind": "javascript-module",
|
|
46789
46679
|
"path": "components/textarea/textarea.component.js",
|
|
@@ -48026,6 +47916,116 @@
|
|
|
48026
47916
|
}
|
|
48027
47917
|
]
|
|
48028
47918
|
},
|
|
47919
|
+
{
|
|
47920
|
+
"kind": "javascript-module",
|
|
47921
|
+
"path": "components/themeprovider/themeprovider.component.js",
|
|
47922
|
+
"declarations": [
|
|
47923
|
+
{
|
|
47924
|
+
"kind": "class",
|
|
47925
|
+
"description": "ThemeProvider component, which sets the passed in themeclass as class.\nIf the themeclass switches, the existing themeclass will be removed as a class\nand the new themeclass will be added.\n\nCSS variables defined in the themeclass will be used for the styling of child dom nodes.\n\nAvailable Momentum theme classes:\n\n`mds-theme-stable-darkWebex`, `mds-theme-stable-lightWebex`\n\n`mds-theme-stable-darkBronzeWebex`, `mds-theme-stable-lightBronzeWebex`\n\n`mds-theme-stable-darkIndigoWebex`, `mds-theme-stable-lightIndigoWebex`\n\n`mds-theme-stable-darkJadeWebex`, `mds-theme-stable-lightJadeWebex`\n\n`mds-theme-stable-darkLavenderWebex`, `mds-theme-stable-lightLavenderWebex`\n\n`mds-theme-stable-darkRoseWebex`, `mds-theme-stable-lightRoseWebex`\n\nThemeclass context can be be consumed from Lit child components\n(see providerUtils.consume for how to consume)\n\nThemeProvider also includes basic font defaults for text.",
|
|
47926
|
+
"name": "ThemeProvider",
|
|
47927
|
+
"cssProperties": [
|
|
47928
|
+
{
|
|
47929
|
+
"description": "Option to override the default color, default: color-theme-text-primary-normal",
|
|
47930
|
+
"name": "--mdc-themeprovider-color-default"
|
|
47931
|
+
},
|
|
47932
|
+
{
|
|
47933
|
+
"description": "Option to override the font family, default: `Momentum` (from momentum-design/fonts)",
|
|
47934
|
+
"name": "--mdc-themeprovider-font-family"
|
|
47935
|
+
},
|
|
47936
|
+
{
|
|
47937
|
+
"description": "Option to override the font weight, default: `400`",
|
|
47938
|
+
"name": "--mdc-themeprovider-font-weight"
|
|
47939
|
+
},
|
|
47940
|
+
{
|
|
47941
|
+
"description": "Option to override the default letter-spacing, default: `-0.25px` (this is to match the old CiscoSans)",
|
|
47942
|
+
"name": "--mdc-themeprovider-letter-spacing-adjustment"
|
|
47943
|
+
},
|
|
47944
|
+
{
|
|
47945
|
+
"description": "Option to override the font feature settings, default: `\"ss02\" on`",
|
|
47946
|
+
"name": "--mdc-themeprovider-font-feature-settings"
|
|
47947
|
+
},
|
|
47948
|
+
{
|
|
47949
|
+
"description": "Option to override the color of the scrollbar track.",
|
|
47950
|
+
"name": "--mdc-themeprovider-scrollbar-track-color"
|
|
47951
|
+
},
|
|
47952
|
+
{
|
|
47953
|
+
"description": "Option to override the color of the scrollbar thumb.",
|
|
47954
|
+
"name": "--mdc-themeprovider-scrollbar-thumb-color"
|
|
47955
|
+
}
|
|
47956
|
+
],
|
|
47957
|
+
"slots": [
|
|
47958
|
+
{
|
|
47959
|
+
"description": "children",
|
|
47960
|
+
"name": ""
|
|
47961
|
+
}
|
|
47962
|
+
],
|
|
47963
|
+
"members": [
|
|
47964
|
+
{
|
|
47965
|
+
"kind": "field",
|
|
47966
|
+
"name": "Context",
|
|
47967
|
+
"privacy": "public",
|
|
47968
|
+
"static": true,
|
|
47969
|
+
"description": "Context object of the ThemeProvider, to be consumed by child components",
|
|
47970
|
+
"readonly": true
|
|
47971
|
+
},
|
|
47972
|
+
{
|
|
47973
|
+
"kind": "field",
|
|
47974
|
+
"name": "themeclass",
|
|
47975
|
+
"type": {
|
|
47976
|
+
"text": "string"
|
|
47977
|
+
},
|
|
47978
|
+
"description": "Current theme class\n\nHas to be fully qualified, such that\nthe theme class matches the class of the respective\ntheme stylesheet\n\nDefault: 'mds-theme-stable-darkWebex'",
|
|
47979
|
+
"attribute": "themeclass"
|
|
47980
|
+
},
|
|
47981
|
+
{
|
|
47982
|
+
"kind": "method",
|
|
47983
|
+
"name": "updateContext",
|
|
47984
|
+
"privacy": "protected",
|
|
47985
|
+
"return": {
|
|
47986
|
+
"type": {
|
|
47987
|
+
"text": "void"
|
|
47988
|
+
}
|
|
47989
|
+
},
|
|
47990
|
+
"description": "Update all observing components of this\nprovider to update the themeclass\n\nIs called on every re-render, see Provider class"
|
|
47991
|
+
},
|
|
47992
|
+
{
|
|
47993
|
+
"kind": "method",
|
|
47994
|
+
"name": "setThemeInClassList",
|
|
47995
|
+
"privacy": "private",
|
|
47996
|
+
"description": "Function to update the active theme classnames to update the theme tokens\nas CSS variables on the web component."
|
|
47997
|
+
}
|
|
47998
|
+
],
|
|
47999
|
+
"attributes": [
|
|
48000
|
+
{
|
|
48001
|
+
"name": "themeclass",
|
|
48002
|
+
"type": {
|
|
48003
|
+
"text": "string"
|
|
48004
|
+
},
|
|
48005
|
+
"description": "Current theme class\n\nHas to be fully qualified, such that\nthe theme class matches the class of the respective\ntheme stylesheet\n\nDefault: 'mds-theme-stable-darkWebex'",
|
|
48006
|
+
"fieldName": "themeclass"
|
|
48007
|
+
}
|
|
48008
|
+
],
|
|
48009
|
+
"superclass": {
|
|
48010
|
+
"name": "Provider",
|
|
48011
|
+
"module": "/src/models"
|
|
48012
|
+
},
|
|
48013
|
+
"tagName": "mdc-themeprovider",
|
|
48014
|
+
"jsDoc": "/**\n * ThemeProvider component, which sets the passed in themeclass as class.\n * If the themeclass switches, the existing themeclass will be removed as a class\n * and the new themeclass will be added.\n *\n * CSS variables defined in the themeclass will be used for the styling of child dom nodes.\n *\n * Available Momentum theme classes:\n *\n * `mds-theme-stable-darkWebex`, `mds-theme-stable-lightWebex`\n *\n * `mds-theme-stable-darkBronzeWebex`, `mds-theme-stable-lightBronzeWebex`\n *\n * `mds-theme-stable-darkIndigoWebex`, `mds-theme-stable-lightIndigoWebex`\n *\n * `mds-theme-stable-darkJadeWebex`, `mds-theme-stable-lightJadeWebex`\n *\n * `mds-theme-stable-darkLavenderWebex`, `mds-theme-stable-lightLavenderWebex`\n *\n * `mds-theme-stable-darkRoseWebex`, `mds-theme-stable-lightRoseWebex`\n *\n * Themeclass context can be be consumed from Lit child components\n * (see providerUtils.consume for how to consume)\n *\n * ThemeProvider also includes basic font defaults for text.\n *\n * @tagname mdc-themeprovider\n *\n * @slot - children\n *\n * @cssproperty --mdc-themeprovider-color-default - Option to override the default color,\n * default: color-theme-text-primary-normal\n * @cssproperty --mdc-themeprovider-font-family - Option to override the font family,\n * default: `Momentum` (from momentum-design/fonts)\n * @cssproperty --mdc-themeprovider-font-weight - Option to override the font weight, default: `400`\n * @cssproperty --mdc-themeprovider-letter-spacing-adjustment - Option to override the default letter-spacing,\n * default: `-0.25px` (this is to match the old CiscoSans)\n * @cssproperty --mdc-themeprovider-font-feature-settings - Option to override the font feature settings,\n * default: `\"ss02\" on`\n * @cssproperty --mdc-themeprovider-scrollbar-track-color - Option to override the color of the scrollbar track.\n * @cssproperty --mdc-themeprovider-scrollbar-thumb-color - Option to override the color of the scrollbar thumb.\n */",
|
|
48015
|
+
"customElement": true
|
|
48016
|
+
}
|
|
48017
|
+
],
|
|
48018
|
+
"exports": [
|
|
48019
|
+
{
|
|
48020
|
+
"kind": "js",
|
|
48021
|
+
"name": "default",
|
|
48022
|
+
"declaration": {
|
|
48023
|
+
"name": "ThemeProvider",
|
|
48024
|
+
"module": "components/themeprovider/themeprovider.component.js"
|
|
48025
|
+
}
|
|
48026
|
+
}
|
|
48027
|
+
]
|
|
48028
|
+
},
|
|
48029
48029
|
{
|
|
48030
48030
|
"kind": "javascript-module",
|
|
48031
48031
|
"path": "components/toast/toast.component.js",
|