@momentum-design/components 0.107.1 → 0.108.0
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/custom-elements.json +561 -561
- package/dist/react/brandvisual/index.d.ts +1 -1
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/package.json +1 -1
@@ -477,6 +477,157 @@
|
|
477
477
|
}
|
478
478
|
]
|
479
479
|
},
|
480
|
+
{
|
481
|
+
"kind": "javascript-module",
|
482
|
+
"path": "components/accordiongroup/accordiongroup.component.js",
|
483
|
+
"declarations": [
|
484
|
+
{
|
485
|
+
"kind": "class",
|
486
|
+
"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.",
|
487
|
+
"name": "AccordionGroup",
|
488
|
+
"cssProperties": [
|
489
|
+
{
|
490
|
+
"description": "The border color of the entire accordiongroup",
|
491
|
+
"name": "--mdc-accordiongroup-border-color"
|
492
|
+
}
|
493
|
+
],
|
494
|
+
"slots": [
|
495
|
+
{
|
496
|
+
"description": "The default slot can contain the `accordion` or `accordionbutton` components.",
|
497
|
+
"name": "default"
|
498
|
+
}
|
499
|
+
],
|
500
|
+
"members": [
|
501
|
+
{
|
502
|
+
"kind": "field",
|
503
|
+
"name": "size",
|
504
|
+
"type": {
|
505
|
+
"text": "Size"
|
506
|
+
},
|
507
|
+
"description": "The size of the accordion item.",
|
508
|
+
"default": "'small'",
|
509
|
+
"attribute": "size",
|
510
|
+
"reflects": true
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"kind": "field",
|
514
|
+
"name": "variant",
|
515
|
+
"type": {
|
516
|
+
"text": "Variant"
|
517
|
+
},
|
518
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
519
|
+
"default": "'stacked'",
|
520
|
+
"attribute": "variant",
|
521
|
+
"reflects": true
|
522
|
+
},
|
523
|
+
{
|
524
|
+
"kind": "field",
|
525
|
+
"name": "allowMultiple",
|
526
|
+
"type": {
|
527
|
+
"text": "boolean"
|
528
|
+
},
|
529
|
+
"default": "false",
|
530
|
+
"description": "If true, multiple accordion items can be visible at the same time.",
|
531
|
+
"attribute": "allow-multiple",
|
532
|
+
"reflects": true
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"kind": "method",
|
536
|
+
"name": "handleAccordionExpanded",
|
537
|
+
"privacy": "private",
|
538
|
+
"return": {
|
539
|
+
"type": {
|
540
|
+
"text": "void"
|
541
|
+
}
|
542
|
+
},
|
543
|
+
"parameters": [
|
544
|
+
{
|
545
|
+
"name": "event",
|
546
|
+
"type": {
|
547
|
+
"text": "Event"
|
548
|
+
},
|
549
|
+
"description": "The event object from the 'shown' event."
|
550
|
+
}
|
551
|
+
],
|
552
|
+
"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."
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"kind": "method",
|
556
|
+
"name": "setChildrenAccordionAttributes",
|
557
|
+
"privacy": "private",
|
558
|
+
"return": {
|
559
|
+
"type": {
|
560
|
+
"text": "void"
|
561
|
+
}
|
562
|
+
},
|
563
|
+
"parameters": [
|
564
|
+
{
|
565
|
+
"name": "attributeName",
|
566
|
+
"type": {
|
567
|
+
"text": "string"
|
568
|
+
},
|
569
|
+
"description": "The name of the attribute to set."
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"name": "attributeValue",
|
573
|
+
"type": {
|
574
|
+
"text": "string"
|
575
|
+
},
|
576
|
+
"description": "The value to set the attribute to."
|
577
|
+
}
|
578
|
+
],
|
579
|
+
"description": "Sets the given attribute on all child accordion or accordionbutton components."
|
580
|
+
}
|
581
|
+
],
|
582
|
+
"attributes": [
|
583
|
+
{
|
584
|
+
"name": "size",
|
585
|
+
"type": {
|
586
|
+
"text": "Size"
|
587
|
+
},
|
588
|
+
"description": "The size of the accordion item.",
|
589
|
+
"default": "'small'",
|
590
|
+
"fieldName": "size"
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"name": "variant",
|
594
|
+
"type": {
|
595
|
+
"text": "Variant"
|
596
|
+
},
|
597
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
598
|
+
"default": "'stacked'",
|
599
|
+
"fieldName": "variant"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"name": "allow-multiple",
|
603
|
+
"type": {
|
604
|
+
"text": "boolean"
|
605
|
+
},
|
606
|
+
"default": "false",
|
607
|
+
"description": "If true, multiple accordion items can be visible at the same time.",
|
608
|
+
"fieldName": "allowMultiple"
|
609
|
+
}
|
610
|
+
],
|
611
|
+
"superclass": {
|
612
|
+
"name": "Component",
|
613
|
+
"module": "/src/models"
|
614
|
+
},
|
615
|
+
"tagName": "mdc-accordiongroup",
|
616
|
+
"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 */",
|
617
|
+
"customElement": true
|
618
|
+
}
|
619
|
+
],
|
620
|
+
"exports": [
|
621
|
+
{
|
622
|
+
"kind": "js",
|
623
|
+
"name": "default",
|
624
|
+
"declaration": {
|
625
|
+
"name": "AccordionGroup",
|
626
|
+
"module": "components/accordiongroup/accordiongroup.component.js"
|
627
|
+
}
|
628
|
+
}
|
629
|
+
]
|
630
|
+
},
|
480
631
|
{
|
481
632
|
"kind": "javascript-module",
|
482
633
|
"path": "components/accordionbutton/accordionbutton.component.js",
|
@@ -817,157 +968,6 @@
|
|
817
968
|
}
|
818
969
|
]
|
819
970
|
},
|
820
|
-
{
|
821
|
-
"kind": "javascript-module",
|
822
|
-
"path": "components/accordiongroup/accordiongroup.component.js",
|
823
|
-
"declarations": [
|
824
|
-
{
|
825
|
-
"kind": "class",
|
826
|
-
"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.",
|
827
|
-
"name": "AccordionGroup",
|
828
|
-
"cssProperties": [
|
829
|
-
{
|
830
|
-
"description": "The border color of the entire accordiongroup",
|
831
|
-
"name": "--mdc-accordiongroup-border-color"
|
832
|
-
}
|
833
|
-
],
|
834
|
-
"slots": [
|
835
|
-
{
|
836
|
-
"description": "The default slot can contain the `accordion` or `accordionbutton` components.",
|
837
|
-
"name": "default"
|
838
|
-
}
|
839
|
-
],
|
840
|
-
"members": [
|
841
|
-
{
|
842
|
-
"kind": "field",
|
843
|
-
"name": "size",
|
844
|
-
"type": {
|
845
|
-
"text": "Size"
|
846
|
-
},
|
847
|
-
"description": "The size of the accordion item.",
|
848
|
-
"default": "'small'",
|
849
|
-
"attribute": "size",
|
850
|
-
"reflects": true
|
851
|
-
},
|
852
|
-
{
|
853
|
-
"kind": "field",
|
854
|
-
"name": "variant",
|
855
|
-
"type": {
|
856
|
-
"text": "Variant"
|
857
|
-
},
|
858
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
859
|
-
"default": "'stacked'",
|
860
|
-
"attribute": "variant",
|
861
|
-
"reflects": true
|
862
|
-
},
|
863
|
-
{
|
864
|
-
"kind": "field",
|
865
|
-
"name": "allowMultiple",
|
866
|
-
"type": {
|
867
|
-
"text": "boolean"
|
868
|
-
},
|
869
|
-
"default": "false",
|
870
|
-
"description": "If true, multiple accordion items can be visible at the same time.",
|
871
|
-
"attribute": "allow-multiple",
|
872
|
-
"reflects": true
|
873
|
-
},
|
874
|
-
{
|
875
|
-
"kind": "method",
|
876
|
-
"name": "handleAccordionExpanded",
|
877
|
-
"privacy": "private",
|
878
|
-
"return": {
|
879
|
-
"type": {
|
880
|
-
"text": "void"
|
881
|
-
}
|
882
|
-
},
|
883
|
-
"parameters": [
|
884
|
-
{
|
885
|
-
"name": "event",
|
886
|
-
"type": {
|
887
|
-
"text": "Event"
|
888
|
-
},
|
889
|
-
"description": "The event object from the 'shown' event."
|
890
|
-
}
|
891
|
-
],
|
892
|
-
"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."
|
893
|
-
},
|
894
|
-
{
|
895
|
-
"kind": "method",
|
896
|
-
"name": "setChildrenAccordionAttributes",
|
897
|
-
"privacy": "private",
|
898
|
-
"return": {
|
899
|
-
"type": {
|
900
|
-
"text": "void"
|
901
|
-
}
|
902
|
-
},
|
903
|
-
"parameters": [
|
904
|
-
{
|
905
|
-
"name": "attributeName",
|
906
|
-
"type": {
|
907
|
-
"text": "string"
|
908
|
-
},
|
909
|
-
"description": "The name of the attribute to set."
|
910
|
-
},
|
911
|
-
{
|
912
|
-
"name": "attributeValue",
|
913
|
-
"type": {
|
914
|
-
"text": "string"
|
915
|
-
},
|
916
|
-
"description": "The value to set the attribute to."
|
917
|
-
}
|
918
|
-
],
|
919
|
-
"description": "Sets the given attribute on all child accordion or accordionbutton components."
|
920
|
-
}
|
921
|
-
],
|
922
|
-
"attributes": [
|
923
|
-
{
|
924
|
-
"name": "size",
|
925
|
-
"type": {
|
926
|
-
"text": "Size"
|
927
|
-
},
|
928
|
-
"description": "The size of the accordion item.",
|
929
|
-
"default": "'small'",
|
930
|
-
"fieldName": "size"
|
931
|
-
},
|
932
|
-
{
|
933
|
-
"name": "variant",
|
934
|
-
"type": {
|
935
|
-
"text": "Variant"
|
936
|
-
},
|
937
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
938
|
-
"default": "'stacked'",
|
939
|
-
"fieldName": "variant"
|
940
|
-
},
|
941
|
-
{
|
942
|
-
"name": "allow-multiple",
|
943
|
-
"type": {
|
944
|
-
"text": "boolean"
|
945
|
-
},
|
946
|
-
"default": "false",
|
947
|
-
"description": "If true, multiple accordion items can be visible at the same time.",
|
948
|
-
"fieldName": "allowMultiple"
|
949
|
-
}
|
950
|
-
],
|
951
|
-
"superclass": {
|
952
|
-
"name": "Component",
|
953
|
-
"module": "/src/models"
|
954
|
-
},
|
955
|
-
"tagName": "mdc-accordiongroup",
|
956
|
-
"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 */",
|
957
|
-
"customElement": true
|
958
|
-
}
|
959
|
-
],
|
960
|
-
"exports": [
|
961
|
-
{
|
962
|
-
"kind": "js",
|
963
|
-
"name": "default",
|
964
|
-
"declaration": {
|
965
|
-
"name": "AccordionGroup",
|
966
|
-
"module": "components/accordiongroup/accordiongroup.component.js"
|
967
|
-
}
|
968
|
-
}
|
969
|
-
]
|
970
|
-
},
|
971
971
|
{
|
972
972
|
"kind": "javascript-module",
|
973
973
|
"path": "components/alertchip/alertchip.component.js",
|
@@ -33577,416 +33577,6 @@
|
|
33577
33577
|
}
|
33578
33578
|
]
|
33579
33579
|
},
|
33580
|
-
{
|
33581
|
-
"kind": "javascript-module",
|
33582
|
-
"path": "components/spinner/spinner.component.js",
|
33583
|
-
"declarations": [
|
33584
|
-
{
|
33585
|
-
"kind": "class",
|
33586
|
-
"description": "`mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\nit's best for cases where the progress or duration of a process is variable or unknown.\n\nSpinner Variants:\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\nicon or label text.\n\nSpinner Sizes:\n- **Large (96px)**: Use when replacing entire regions or pages that are still loading\n- **MidSize (48px) (Default)**: Use for most use cases.\n- **Small (24px)**: Use for inline with loading text.\n\nCustomisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\nCSS property.\n\nSpinner Colors:\n- **Default**: Use for most use cases.\n- **Inverted**: Only to be used within inverted components, such as coachmarks.\n\nRegarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\nwill be unset\nand aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.",
|
33587
|
-
"name": "Spinner",
|
33588
|
-
"cssProperties": [
|
33589
|
-
{
|
33590
|
-
"description": "Allows customization of the default spinner color.",
|
33591
|
-
"name": "--mdc-spinner-default-color"
|
33592
|
-
},
|
33593
|
-
{
|
33594
|
-
"description": "Allows customization of the inverted spinner color.",
|
33595
|
-
"name": "--mdc-spinner-inverted-color"
|
33596
|
-
},
|
33597
|
-
{
|
33598
|
-
"description": "Allows customization of the spinner Button variant color.",
|
33599
|
-
"name": "--mdc-spinner-button-variant-color"
|
33600
|
-
},
|
33601
|
-
{
|
33602
|
-
"description": "Allows customization of the spinner size.",
|
33603
|
-
"name": "--mdc-spinner-size"
|
33604
|
-
}
|
33605
|
-
],
|
33606
|
-
"cssParts": [
|
33607
|
-
{
|
33608
|
-
"description": "The svg which contains the circle spinner.",
|
33609
|
-
"name": "container"
|
33610
|
-
},
|
33611
|
-
{
|
33612
|
-
"description": "The circle of the spinner.",
|
33613
|
-
"name": "circle"
|
33614
|
-
}
|
33615
|
-
],
|
33616
|
-
"members": [
|
33617
|
-
{
|
33618
|
-
"kind": "field",
|
33619
|
-
"name": "inverted",
|
33620
|
-
"type": {
|
33621
|
-
"text": "boolean | undefined"
|
33622
|
-
},
|
33623
|
-
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
33624
|
-
"default": "false",
|
33625
|
-
"attribute": "inverted",
|
33626
|
-
"reflects": true
|
33627
|
-
},
|
33628
|
-
{
|
33629
|
-
"kind": "field",
|
33630
|
-
"name": "size",
|
33631
|
-
"type": {
|
33632
|
-
"text": "SpinnerSize | undefined"
|
33633
|
-
},
|
33634
|
-
"description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
|
33635
|
-
"default": "midsize",
|
33636
|
-
"attribute": "size",
|
33637
|
-
"reflects": true
|
33638
|
-
},
|
33639
|
-
{
|
33640
|
-
"kind": "field",
|
33641
|
-
"name": "ariaLabel",
|
33642
|
-
"type": {
|
33643
|
-
"text": "string | null"
|
33644
|
-
},
|
33645
|
-
"default": "null",
|
33646
|
-
"description": "Aria-label attribute to be set for accessibility",
|
33647
|
-
"attribute": "aria-label"
|
33648
|
-
},
|
33649
|
-
{
|
33650
|
-
"kind": "field",
|
33651
|
-
"name": "variant",
|
33652
|
-
"type": {
|
33653
|
-
"text": "SpinnerVariant"
|
33654
|
-
},
|
33655
|
-
"description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
|
33656
|
-
"default": "standalone",
|
33657
|
-
"attribute": "variant",
|
33658
|
-
"reflects": true
|
33659
|
-
}
|
33660
|
-
],
|
33661
|
-
"attributes": [
|
33662
|
-
{
|
33663
|
-
"name": "inverted",
|
33664
|
-
"type": {
|
33665
|
-
"text": "boolean | undefined"
|
33666
|
-
},
|
33667
|
-
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
33668
|
-
"default": "false",
|
33669
|
-
"fieldName": "inverted"
|
33670
|
-
},
|
33671
|
-
{
|
33672
|
-
"name": "size",
|
33673
|
-
"type": {
|
33674
|
-
"text": "SpinnerSize | undefined"
|
33675
|
-
},
|
33676
|
-
"description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
|
33677
|
-
"default": "midsize",
|
33678
|
-
"fieldName": "size"
|
33679
|
-
},
|
33680
|
-
{
|
33681
|
-
"name": "aria-label",
|
33682
|
-
"type": {
|
33683
|
-
"text": "string | null"
|
33684
|
-
},
|
33685
|
-
"default": "null",
|
33686
|
-
"description": "Aria-label attribute to be set for accessibility",
|
33687
|
-
"fieldName": "ariaLabel"
|
33688
|
-
},
|
33689
|
-
{
|
33690
|
-
"name": "variant",
|
33691
|
-
"type": {
|
33692
|
-
"text": "SpinnerVariant"
|
33693
|
-
},
|
33694
|
-
"description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
|
33695
|
-
"default": "standalone",
|
33696
|
-
"fieldName": "variant"
|
33697
|
-
}
|
33698
|
-
],
|
33699
|
-
"superclass": {
|
33700
|
-
"name": "Component",
|
33701
|
-
"module": "/src/models"
|
33702
|
-
},
|
33703
|
-
"tagName": "mdc-spinner",
|
33704
|
-
"jsDoc": "/**\n * `mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\n * it's best for cases where the progress or duration of a process is variable or unknown.\n *\n * Spinner Variants:\n * - **Standalone (Default)**: Track has a blue color.\n * - **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\n * To ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\n * icon or label text.\n *\n * Spinner Sizes:\n * - **Large (96px)**: Use when replacing entire regions or pages that are still loading\n * - **MidSize (48px) (Default)**: Use for most use cases.\n * - **Small (24px)**: Use for inline with loading text.\n *\n * Customisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\n * CSS property.\n *\n * Spinner Colors:\n * - **Default**: Use for most use cases.\n * - **Inverted**: Only to be used within inverted components, such as coachmarks.\n *\n * Regarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\n * will be unset\n * and aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.\n *\n * @tagname mdc-spinner\n *\n * @cssproperty --mdc-spinner-default-color - Allows customization of the default spinner color.\n * @cssproperty --mdc-spinner-inverted-color - Allows customization of the inverted spinner color.\n * @cssproperty --mdc-spinner-button-variant-color - Allows customization of the spinner Button variant color.\n * @cssproperty --mdc-spinner-size - Allows customization of the spinner size.\n *\n * @csspart container - The svg which contains the circle spinner.\n * @csspart circle - The circle of the spinner.\n */",
|
33705
|
-
"customElement": true
|
33706
|
-
}
|
33707
|
-
],
|
33708
|
-
"exports": [
|
33709
|
-
{
|
33710
|
-
"kind": "js",
|
33711
|
-
"name": "default",
|
33712
|
-
"declaration": {
|
33713
|
-
"name": "Spinner",
|
33714
|
-
"module": "components/spinner/spinner.component.js"
|
33715
|
-
}
|
33716
|
-
}
|
33717
|
-
]
|
33718
|
-
},
|
33719
|
-
{
|
33720
|
-
"kind": "javascript-module",
|
33721
|
-
"path": "components/staticcheckbox/staticcheckbox.component.js",
|
33722
|
-
"declarations": [
|
33723
|
-
{
|
33724
|
-
"kind": "class",
|
33725
|
-
"description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 3 properties - checked, indeterminate and disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
|
33726
|
-
"name": "StaticCheckbox",
|
33727
|
-
"cssProperties": [
|
33728
|
-
{
|
33729
|
-
"description": "Border color in high contrast.",
|
33730
|
-
"name": "--mdc-staticcheckbox-border-color"
|
33731
|
-
},
|
33732
|
-
{
|
33733
|
-
"description": "Background color for a selected checkbox.",
|
33734
|
-
"name": "--mdc-staticcheckbox-checked-background-color"
|
33735
|
-
},
|
33736
|
-
{
|
33737
|
-
"description": "Background color for a disabled checkbox.",
|
33738
|
-
"name": "--mdc-staticcheckbox-disabled-background-color"
|
33739
|
-
},
|
33740
|
-
{
|
33741
|
-
"description": "Border color for a disabled checkbox.",
|
33742
|
-
"name": "--mdc-checkbox-disabled-border-color"
|
33743
|
-
},
|
33744
|
-
{
|
33745
|
-
"description": "Background color for a disabled, selected checkbox.",
|
33746
|
-
"name": "--mdc-checkbox-disabled-checked-icon-color"
|
33747
|
-
},
|
33748
|
-
{
|
33749
|
-
"description": "Icon color for a disabled checkbox.",
|
33750
|
-
"name": "--mdc-staticcheckbox-disabled-icon-color"
|
33751
|
-
},
|
33752
|
-
{
|
33753
|
-
"description": "Background color for an unselected checkbox.",
|
33754
|
-
"name": "--mdc-staticcheckbox-icon-background-color"
|
33755
|
-
},
|
33756
|
-
{
|
33757
|
-
"description": "Default background color for an unselected checkbox.",
|
33758
|
-
"name": "--mdc-staticcheckbox-icon-border-color"
|
33759
|
-
},
|
33760
|
-
{
|
33761
|
-
"description": "Icon color for an unselected checkbox.",
|
33762
|
-
"name": "--mdc-staticcheckbox-icon-color"
|
33763
|
-
}
|
33764
|
-
],
|
33765
|
-
"members": [
|
33766
|
-
{
|
33767
|
-
"kind": "field",
|
33768
|
-
"name": "checked",
|
33769
|
-
"type": {
|
33770
|
-
"text": "boolean"
|
33771
|
-
},
|
33772
|
-
"default": "false",
|
33773
|
-
"description": "Determines whether the checkbox is selected or unselected.",
|
33774
|
-
"attribute": "checked",
|
33775
|
-
"reflects": true
|
33776
|
-
},
|
33777
|
-
{
|
33778
|
-
"kind": "field",
|
33779
|
-
"name": "indeterminate",
|
33780
|
-
"type": {
|
33781
|
-
"text": "boolean"
|
33782
|
-
},
|
33783
|
-
"default": "false",
|
33784
|
-
"description": "Determines whether the checkbox is in an indeterminate state.",
|
33785
|
-
"attribute": "indeterminate",
|
33786
|
-
"reflects": true
|
33787
|
-
},
|
33788
|
-
{
|
33789
|
-
"kind": "field",
|
33790
|
-
"name": "disabled",
|
33791
|
-
"type": {
|
33792
|
-
"text": "boolean | undefined"
|
33793
|
-
},
|
33794
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
33795
|
-
"default": "undefined",
|
33796
|
-
"attribute": "disabled",
|
33797
|
-
"reflects": true,
|
33798
|
-
"inheritedFrom": {
|
33799
|
-
"name": "DisabledMixin",
|
33800
|
-
"module": "utils/mixins/DisabledMixin.js"
|
33801
|
-
}
|
33802
|
-
}
|
33803
|
-
],
|
33804
|
-
"attributes": [
|
33805
|
-
{
|
33806
|
-
"name": "checked",
|
33807
|
-
"type": {
|
33808
|
-
"text": "boolean"
|
33809
|
-
},
|
33810
|
-
"default": "false",
|
33811
|
-
"description": "Determines whether the checkbox is selected or unselected.",
|
33812
|
-
"fieldName": "checked"
|
33813
|
-
},
|
33814
|
-
{
|
33815
|
-
"name": "indeterminate",
|
33816
|
-
"type": {
|
33817
|
-
"text": "boolean"
|
33818
|
-
},
|
33819
|
-
"default": "false",
|
33820
|
-
"description": "Determines whether the checkbox is in an indeterminate state.",
|
33821
|
-
"fieldName": "indeterminate"
|
33822
|
-
},
|
33823
|
-
{
|
33824
|
-
"name": "disabled",
|
33825
|
-
"type": {
|
33826
|
-
"text": "boolean | undefined"
|
33827
|
-
},
|
33828
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
33829
|
-
"default": "undefined",
|
33830
|
-
"fieldName": "disabled",
|
33831
|
-
"inheritedFrom": {
|
33832
|
-
"name": "DisabledMixin",
|
33833
|
-
"module": "src/utils/mixins/DisabledMixin.ts"
|
33834
|
-
}
|
33835
|
-
}
|
33836
|
-
],
|
33837
|
-
"mixins": [
|
33838
|
-
{
|
33839
|
-
"name": "DisabledMixin",
|
33840
|
-
"module": "/src/utils/mixins/DisabledMixin"
|
33841
|
-
}
|
33842
|
-
],
|
33843
|
-
"superclass": {
|
33844
|
-
"name": "Component",
|
33845
|
-
"module": "/src/models"
|
33846
|
-
},
|
33847
|
-
"tagName": "mdc-staticcheckbox",
|
33848
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n */",
|
33849
|
-
"customElement": true
|
33850
|
-
}
|
33851
|
-
],
|
33852
|
-
"exports": [
|
33853
|
-
{
|
33854
|
-
"kind": "js",
|
33855
|
-
"name": "default",
|
33856
|
-
"declaration": {
|
33857
|
-
"name": "StaticCheckbox",
|
33858
|
-
"module": "components/staticcheckbox/staticcheckbox.component.js"
|
33859
|
-
}
|
33860
|
-
}
|
33861
|
-
]
|
33862
|
-
},
|
33863
|
-
{
|
33864
|
-
"kind": "javascript-module",
|
33865
|
-
"path": "components/staticchip/staticchip.component.js",
|
33866
|
-
"declarations": [
|
33867
|
-
{
|
33868
|
-
"kind": "class",
|
33869
|
-
"description": "mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n\nIt is recommended to keep the label text for the chip component concise and compact.\nFor best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.",
|
33870
|
-
"name": "StaticChip",
|
33871
|
-
"cssProperties": [
|
33872
|
-
{
|
33873
|
-
"description": "The color of the static chip.",
|
33874
|
-
"name": "--mdc-chip-color"
|
33875
|
-
},
|
33876
|
-
{
|
33877
|
-
"description": "The border color of the static chip.",
|
33878
|
-
"name": "--mdc-chip-border-color"
|
33879
|
-
},
|
33880
|
-
{
|
33881
|
-
"description": "The background color of the static chip.",
|
33882
|
-
"name": "--mdc-chip-background-color"
|
33883
|
-
}
|
33884
|
-
],
|
33885
|
-
"members": [
|
33886
|
-
{
|
33887
|
-
"kind": "field",
|
33888
|
-
"name": "color",
|
33889
|
-
"type": {
|
33890
|
-
"text": "ColorType"
|
33891
|
-
},
|
33892
|
-
"description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
|
33893
|
-
"default": "default",
|
33894
|
-
"attribute": "color",
|
33895
|
-
"reflects": true
|
33896
|
-
},
|
33897
|
-
{
|
33898
|
-
"kind": "field",
|
33899
|
-
"name": "label",
|
33900
|
-
"type": {
|
33901
|
-
"text": "string"
|
33902
|
-
},
|
33903
|
-
"default": "''",
|
33904
|
-
"description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
|
33905
|
-
"attribute": "label"
|
33906
|
-
},
|
33907
|
-
{
|
33908
|
-
"kind": "method",
|
33909
|
-
"name": "renderIcon",
|
33910
|
-
"privacy": "private",
|
33911
|
-
"description": "Renders the icon element if available.",
|
33912
|
-
"return": {
|
33913
|
-
"type": {
|
33914
|
-
"text": ""
|
33915
|
-
}
|
33916
|
-
}
|
33917
|
-
},
|
33918
|
-
{
|
33919
|
-
"kind": "field",
|
33920
|
-
"name": "iconName",
|
33921
|
-
"type": {
|
33922
|
-
"text": "IconNames | undefined"
|
33923
|
-
},
|
33924
|
-
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
33925
|
-
"attribute": "icon-name",
|
33926
|
-
"inheritedFrom": {
|
33927
|
-
"name": "IconNameMixin",
|
33928
|
-
"module": "utils/mixins/IconNameMixin.js"
|
33929
|
-
}
|
33930
|
-
}
|
33931
|
-
],
|
33932
|
-
"attributes": [
|
33933
|
-
{
|
33934
|
-
"name": "color",
|
33935
|
-
"type": {
|
33936
|
-
"text": "ColorType"
|
33937
|
-
},
|
33938
|
-
"description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
|
33939
|
-
"default": "default",
|
33940
|
-
"fieldName": "color"
|
33941
|
-
},
|
33942
|
-
{
|
33943
|
-
"name": "label",
|
33944
|
-
"type": {
|
33945
|
-
"text": "string"
|
33946
|
-
},
|
33947
|
-
"default": "''",
|
33948
|
-
"description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
|
33949
|
-
"fieldName": "label"
|
33950
|
-
},
|
33951
|
-
{
|
33952
|
-
"name": "icon-name",
|
33953
|
-
"type": {
|
33954
|
-
"text": "IconNames | undefined"
|
33955
|
-
},
|
33956
|
-
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
33957
|
-
"fieldName": "iconName",
|
33958
|
-
"inheritedFrom": {
|
33959
|
-
"name": "IconNameMixin",
|
33960
|
-
"module": "src/utils/mixins/IconNameMixin.ts"
|
33961
|
-
}
|
33962
|
-
}
|
33963
|
-
],
|
33964
|
-
"mixins": [
|
33965
|
-
{
|
33966
|
-
"name": "IconNameMixin",
|
33967
|
-
"module": "/src/utils/mixins/IconNameMixin"
|
33968
|
-
}
|
33969
|
-
],
|
33970
|
-
"superclass": {
|
33971
|
-
"name": "Component",
|
33972
|
-
"module": "/src/models"
|
33973
|
-
},
|
33974
|
-
"tagName": "mdc-staticchip",
|
33975
|
-
"jsDoc": "/**\n * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.\n *\n *\n * @tagname mdc-staticchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the static chip.\n * @cssproperty --mdc-chip-border-color - The border color of the static chip.\n * @cssproperty --mdc-chip-background-color - The background color of the static chip.\n *\n */",
|
33976
|
-
"customElement": true
|
33977
|
-
}
|
33978
|
-
],
|
33979
|
-
"exports": [
|
33980
|
-
{
|
33981
|
-
"kind": "js",
|
33982
|
-
"name": "default",
|
33983
|
-
"declaration": {
|
33984
|
-
"name": "StaticChip",
|
33985
|
-
"module": "components/staticchip/staticchip.component.js"
|
33986
|
-
}
|
33987
|
-
}
|
33988
|
-
]
|
33989
|
-
},
|
33990
33580
|
{
|
33991
33581
|
"kind": "javascript-module",
|
33992
33582
|
"path": "components/slider/slider.component.js",
|
@@ -34499,6 +34089,416 @@
|
|
34499
34089
|
}
|
34500
34090
|
]
|
34501
34091
|
},
|
34092
|
+
{
|
34093
|
+
"kind": "javascript-module",
|
34094
|
+
"path": "components/spinner/spinner.component.js",
|
34095
|
+
"declarations": [
|
34096
|
+
{
|
34097
|
+
"kind": "class",
|
34098
|
+
"description": "`mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\nit's best for cases where the progress or duration of a process is variable or unknown.\n\nSpinner Variants:\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\nicon or label text.\n\nSpinner Sizes:\n- **Large (96px)**: Use when replacing entire regions or pages that are still loading\n- **MidSize (48px) (Default)**: Use for most use cases.\n- **Small (24px)**: Use for inline with loading text.\n\nCustomisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\nCSS property.\n\nSpinner Colors:\n- **Default**: Use for most use cases.\n- **Inverted**: Only to be used within inverted components, such as coachmarks.\n\nRegarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\nwill be unset\nand aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.",
|
34099
|
+
"name": "Spinner",
|
34100
|
+
"cssProperties": [
|
34101
|
+
{
|
34102
|
+
"description": "Allows customization of the default spinner color.",
|
34103
|
+
"name": "--mdc-spinner-default-color"
|
34104
|
+
},
|
34105
|
+
{
|
34106
|
+
"description": "Allows customization of the inverted spinner color.",
|
34107
|
+
"name": "--mdc-spinner-inverted-color"
|
34108
|
+
},
|
34109
|
+
{
|
34110
|
+
"description": "Allows customization of the spinner Button variant color.",
|
34111
|
+
"name": "--mdc-spinner-button-variant-color"
|
34112
|
+
},
|
34113
|
+
{
|
34114
|
+
"description": "Allows customization of the spinner size.",
|
34115
|
+
"name": "--mdc-spinner-size"
|
34116
|
+
}
|
34117
|
+
],
|
34118
|
+
"cssParts": [
|
34119
|
+
{
|
34120
|
+
"description": "The svg which contains the circle spinner.",
|
34121
|
+
"name": "container"
|
34122
|
+
},
|
34123
|
+
{
|
34124
|
+
"description": "The circle of the spinner.",
|
34125
|
+
"name": "circle"
|
34126
|
+
}
|
34127
|
+
],
|
34128
|
+
"members": [
|
34129
|
+
{
|
34130
|
+
"kind": "field",
|
34131
|
+
"name": "inverted",
|
34132
|
+
"type": {
|
34133
|
+
"text": "boolean | undefined"
|
34134
|
+
},
|
34135
|
+
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
34136
|
+
"default": "false",
|
34137
|
+
"attribute": "inverted",
|
34138
|
+
"reflects": true
|
34139
|
+
},
|
34140
|
+
{
|
34141
|
+
"kind": "field",
|
34142
|
+
"name": "size",
|
34143
|
+
"type": {
|
34144
|
+
"text": "SpinnerSize | undefined"
|
34145
|
+
},
|
34146
|
+
"description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
|
34147
|
+
"default": "midsize",
|
34148
|
+
"attribute": "size",
|
34149
|
+
"reflects": true
|
34150
|
+
},
|
34151
|
+
{
|
34152
|
+
"kind": "field",
|
34153
|
+
"name": "ariaLabel",
|
34154
|
+
"type": {
|
34155
|
+
"text": "string | null"
|
34156
|
+
},
|
34157
|
+
"default": "null",
|
34158
|
+
"description": "Aria-label attribute to be set for accessibility",
|
34159
|
+
"attribute": "aria-label"
|
34160
|
+
},
|
34161
|
+
{
|
34162
|
+
"kind": "field",
|
34163
|
+
"name": "variant",
|
34164
|
+
"type": {
|
34165
|
+
"text": "SpinnerVariant"
|
34166
|
+
},
|
34167
|
+
"description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
|
34168
|
+
"default": "standalone",
|
34169
|
+
"attribute": "variant",
|
34170
|
+
"reflects": true
|
34171
|
+
}
|
34172
|
+
],
|
34173
|
+
"attributes": [
|
34174
|
+
{
|
34175
|
+
"name": "inverted",
|
34176
|
+
"type": {
|
34177
|
+
"text": "boolean | undefined"
|
34178
|
+
},
|
34179
|
+
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
34180
|
+
"default": "false",
|
34181
|
+
"fieldName": "inverted"
|
34182
|
+
},
|
34183
|
+
{
|
34184
|
+
"name": "size",
|
34185
|
+
"type": {
|
34186
|
+
"text": "SpinnerSize | undefined"
|
34187
|
+
},
|
34188
|
+
"description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
|
34189
|
+
"default": "midsize",
|
34190
|
+
"fieldName": "size"
|
34191
|
+
},
|
34192
|
+
{
|
34193
|
+
"name": "aria-label",
|
34194
|
+
"type": {
|
34195
|
+
"text": "string | null"
|
34196
|
+
},
|
34197
|
+
"default": "null",
|
34198
|
+
"description": "Aria-label attribute to be set for accessibility",
|
34199
|
+
"fieldName": "ariaLabel"
|
34200
|
+
},
|
34201
|
+
{
|
34202
|
+
"name": "variant",
|
34203
|
+
"type": {
|
34204
|
+
"text": "SpinnerVariant"
|
34205
|
+
},
|
34206
|
+
"description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
|
34207
|
+
"default": "standalone",
|
34208
|
+
"fieldName": "variant"
|
34209
|
+
}
|
34210
|
+
],
|
34211
|
+
"superclass": {
|
34212
|
+
"name": "Component",
|
34213
|
+
"module": "/src/models"
|
34214
|
+
},
|
34215
|
+
"tagName": "mdc-spinner",
|
34216
|
+
"jsDoc": "/**\n * `mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\n * it's best for cases where the progress or duration of a process is variable or unknown.\n *\n * Spinner Variants:\n * - **Standalone (Default)**: Track has a blue color.\n * - **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\n * To ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\n * icon or label text.\n *\n * Spinner Sizes:\n * - **Large (96px)**: Use when replacing entire regions or pages that are still loading\n * - **MidSize (48px) (Default)**: Use for most use cases.\n * - **Small (24px)**: Use for inline with loading text.\n *\n * Customisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\n * CSS property.\n *\n * Spinner Colors:\n * - **Default**: Use for most use cases.\n * - **Inverted**: Only to be used within inverted components, such as coachmarks.\n *\n * Regarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\n * will be unset\n * and aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.\n *\n * @tagname mdc-spinner\n *\n * @cssproperty --mdc-spinner-default-color - Allows customization of the default spinner color.\n * @cssproperty --mdc-spinner-inverted-color - Allows customization of the inverted spinner color.\n * @cssproperty --mdc-spinner-button-variant-color - Allows customization of the spinner Button variant color.\n * @cssproperty --mdc-spinner-size - Allows customization of the spinner size.\n *\n * @csspart container - The svg which contains the circle spinner.\n * @csspart circle - The circle of the spinner.\n */",
|
34217
|
+
"customElement": true
|
34218
|
+
}
|
34219
|
+
],
|
34220
|
+
"exports": [
|
34221
|
+
{
|
34222
|
+
"kind": "js",
|
34223
|
+
"name": "default",
|
34224
|
+
"declaration": {
|
34225
|
+
"name": "Spinner",
|
34226
|
+
"module": "components/spinner/spinner.component.js"
|
34227
|
+
}
|
34228
|
+
}
|
34229
|
+
]
|
34230
|
+
},
|
34231
|
+
{
|
34232
|
+
"kind": "javascript-module",
|
34233
|
+
"path": "components/staticcheckbox/staticcheckbox.component.js",
|
34234
|
+
"declarations": [
|
34235
|
+
{
|
34236
|
+
"kind": "class",
|
34237
|
+
"description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 3 properties - checked, indeterminate and disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
|
34238
|
+
"name": "StaticCheckbox",
|
34239
|
+
"cssProperties": [
|
34240
|
+
{
|
34241
|
+
"description": "Border color in high contrast.",
|
34242
|
+
"name": "--mdc-staticcheckbox-border-color"
|
34243
|
+
},
|
34244
|
+
{
|
34245
|
+
"description": "Background color for a selected checkbox.",
|
34246
|
+
"name": "--mdc-staticcheckbox-checked-background-color"
|
34247
|
+
},
|
34248
|
+
{
|
34249
|
+
"description": "Background color for a disabled checkbox.",
|
34250
|
+
"name": "--mdc-staticcheckbox-disabled-background-color"
|
34251
|
+
},
|
34252
|
+
{
|
34253
|
+
"description": "Border color for a disabled checkbox.",
|
34254
|
+
"name": "--mdc-checkbox-disabled-border-color"
|
34255
|
+
},
|
34256
|
+
{
|
34257
|
+
"description": "Background color for a disabled, selected checkbox.",
|
34258
|
+
"name": "--mdc-checkbox-disabled-checked-icon-color"
|
34259
|
+
},
|
34260
|
+
{
|
34261
|
+
"description": "Icon color for a disabled checkbox.",
|
34262
|
+
"name": "--mdc-staticcheckbox-disabled-icon-color"
|
34263
|
+
},
|
34264
|
+
{
|
34265
|
+
"description": "Background color for an unselected checkbox.",
|
34266
|
+
"name": "--mdc-staticcheckbox-icon-background-color"
|
34267
|
+
},
|
34268
|
+
{
|
34269
|
+
"description": "Default background color for an unselected checkbox.",
|
34270
|
+
"name": "--mdc-staticcheckbox-icon-border-color"
|
34271
|
+
},
|
34272
|
+
{
|
34273
|
+
"description": "Icon color for an unselected checkbox.",
|
34274
|
+
"name": "--mdc-staticcheckbox-icon-color"
|
34275
|
+
}
|
34276
|
+
],
|
34277
|
+
"members": [
|
34278
|
+
{
|
34279
|
+
"kind": "field",
|
34280
|
+
"name": "checked",
|
34281
|
+
"type": {
|
34282
|
+
"text": "boolean"
|
34283
|
+
},
|
34284
|
+
"default": "false",
|
34285
|
+
"description": "Determines whether the checkbox is selected or unselected.",
|
34286
|
+
"attribute": "checked",
|
34287
|
+
"reflects": true
|
34288
|
+
},
|
34289
|
+
{
|
34290
|
+
"kind": "field",
|
34291
|
+
"name": "indeterminate",
|
34292
|
+
"type": {
|
34293
|
+
"text": "boolean"
|
34294
|
+
},
|
34295
|
+
"default": "false",
|
34296
|
+
"description": "Determines whether the checkbox is in an indeterminate state.",
|
34297
|
+
"attribute": "indeterminate",
|
34298
|
+
"reflects": true
|
34299
|
+
},
|
34300
|
+
{
|
34301
|
+
"kind": "field",
|
34302
|
+
"name": "disabled",
|
34303
|
+
"type": {
|
34304
|
+
"text": "boolean | undefined"
|
34305
|
+
},
|
34306
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
34307
|
+
"default": "undefined",
|
34308
|
+
"attribute": "disabled",
|
34309
|
+
"reflects": true,
|
34310
|
+
"inheritedFrom": {
|
34311
|
+
"name": "DisabledMixin",
|
34312
|
+
"module": "utils/mixins/DisabledMixin.js"
|
34313
|
+
}
|
34314
|
+
}
|
34315
|
+
],
|
34316
|
+
"attributes": [
|
34317
|
+
{
|
34318
|
+
"name": "checked",
|
34319
|
+
"type": {
|
34320
|
+
"text": "boolean"
|
34321
|
+
},
|
34322
|
+
"default": "false",
|
34323
|
+
"description": "Determines whether the checkbox is selected or unselected.",
|
34324
|
+
"fieldName": "checked"
|
34325
|
+
},
|
34326
|
+
{
|
34327
|
+
"name": "indeterminate",
|
34328
|
+
"type": {
|
34329
|
+
"text": "boolean"
|
34330
|
+
},
|
34331
|
+
"default": "false",
|
34332
|
+
"description": "Determines whether the checkbox is in an indeterminate state.",
|
34333
|
+
"fieldName": "indeterminate"
|
34334
|
+
},
|
34335
|
+
{
|
34336
|
+
"name": "disabled",
|
34337
|
+
"type": {
|
34338
|
+
"text": "boolean | undefined"
|
34339
|
+
},
|
34340
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
34341
|
+
"default": "undefined",
|
34342
|
+
"fieldName": "disabled",
|
34343
|
+
"inheritedFrom": {
|
34344
|
+
"name": "DisabledMixin",
|
34345
|
+
"module": "src/utils/mixins/DisabledMixin.ts"
|
34346
|
+
}
|
34347
|
+
}
|
34348
|
+
],
|
34349
|
+
"mixins": [
|
34350
|
+
{
|
34351
|
+
"name": "DisabledMixin",
|
34352
|
+
"module": "/src/utils/mixins/DisabledMixin"
|
34353
|
+
}
|
34354
|
+
],
|
34355
|
+
"superclass": {
|
34356
|
+
"name": "Component",
|
34357
|
+
"module": "/src/models"
|
34358
|
+
},
|
34359
|
+
"tagName": "mdc-staticcheckbox",
|
34360
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n */",
|
34361
|
+
"customElement": true
|
34362
|
+
}
|
34363
|
+
],
|
34364
|
+
"exports": [
|
34365
|
+
{
|
34366
|
+
"kind": "js",
|
34367
|
+
"name": "default",
|
34368
|
+
"declaration": {
|
34369
|
+
"name": "StaticCheckbox",
|
34370
|
+
"module": "components/staticcheckbox/staticcheckbox.component.js"
|
34371
|
+
}
|
34372
|
+
}
|
34373
|
+
]
|
34374
|
+
},
|
34375
|
+
{
|
34376
|
+
"kind": "javascript-module",
|
34377
|
+
"path": "components/staticchip/staticchip.component.js",
|
34378
|
+
"declarations": [
|
34379
|
+
{
|
34380
|
+
"kind": "class",
|
34381
|
+
"description": "mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n\nIt is recommended to keep the label text for the chip component concise and compact.\nFor best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.",
|
34382
|
+
"name": "StaticChip",
|
34383
|
+
"cssProperties": [
|
34384
|
+
{
|
34385
|
+
"description": "The color of the static chip.",
|
34386
|
+
"name": "--mdc-chip-color"
|
34387
|
+
},
|
34388
|
+
{
|
34389
|
+
"description": "The border color of the static chip.",
|
34390
|
+
"name": "--mdc-chip-border-color"
|
34391
|
+
},
|
34392
|
+
{
|
34393
|
+
"description": "The background color of the static chip.",
|
34394
|
+
"name": "--mdc-chip-background-color"
|
34395
|
+
}
|
34396
|
+
],
|
34397
|
+
"members": [
|
34398
|
+
{
|
34399
|
+
"kind": "field",
|
34400
|
+
"name": "color",
|
34401
|
+
"type": {
|
34402
|
+
"text": "ColorType"
|
34403
|
+
},
|
34404
|
+
"description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
|
34405
|
+
"default": "default",
|
34406
|
+
"attribute": "color",
|
34407
|
+
"reflects": true
|
34408
|
+
},
|
34409
|
+
{
|
34410
|
+
"kind": "field",
|
34411
|
+
"name": "label",
|
34412
|
+
"type": {
|
34413
|
+
"text": "string"
|
34414
|
+
},
|
34415
|
+
"default": "''",
|
34416
|
+
"description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
|
34417
|
+
"attribute": "label"
|
34418
|
+
},
|
34419
|
+
{
|
34420
|
+
"kind": "method",
|
34421
|
+
"name": "renderIcon",
|
34422
|
+
"privacy": "private",
|
34423
|
+
"description": "Renders the icon element if available.",
|
34424
|
+
"return": {
|
34425
|
+
"type": {
|
34426
|
+
"text": ""
|
34427
|
+
}
|
34428
|
+
}
|
34429
|
+
},
|
34430
|
+
{
|
34431
|
+
"kind": "field",
|
34432
|
+
"name": "iconName",
|
34433
|
+
"type": {
|
34434
|
+
"text": "IconNames | undefined"
|
34435
|
+
},
|
34436
|
+
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
34437
|
+
"attribute": "icon-name",
|
34438
|
+
"inheritedFrom": {
|
34439
|
+
"name": "IconNameMixin",
|
34440
|
+
"module": "utils/mixins/IconNameMixin.js"
|
34441
|
+
}
|
34442
|
+
}
|
34443
|
+
],
|
34444
|
+
"attributes": [
|
34445
|
+
{
|
34446
|
+
"name": "color",
|
34447
|
+
"type": {
|
34448
|
+
"text": "ColorType"
|
34449
|
+
},
|
34450
|
+
"description": "The color of the chip. It supports the following colors\n- default\n- cobalt\n- gold\n- lime\n- mint\n- orange\n- pink\n- purple\n- slate\n- violet",
|
34451
|
+
"default": "default",
|
34452
|
+
"fieldName": "color"
|
34453
|
+
},
|
34454
|
+
{
|
34455
|
+
"name": "label",
|
34456
|
+
"type": {
|
34457
|
+
"text": "string"
|
34458
|
+
},
|
34459
|
+
"default": "''",
|
34460
|
+
"description": "The visible label text of the chip.\n\nWe recommend limiting the <b>maximum length of the label text to 20 characters</b>,\nincluding empty spaces to split words.",
|
34461
|
+
"fieldName": "label"
|
34462
|
+
},
|
34463
|
+
{
|
34464
|
+
"name": "icon-name",
|
34465
|
+
"type": {
|
34466
|
+
"text": "IconNames | undefined"
|
34467
|
+
},
|
34468
|
+
"description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
|
34469
|
+
"fieldName": "iconName",
|
34470
|
+
"inheritedFrom": {
|
34471
|
+
"name": "IconNameMixin",
|
34472
|
+
"module": "src/utils/mixins/IconNameMixin.ts"
|
34473
|
+
}
|
34474
|
+
}
|
34475
|
+
],
|
34476
|
+
"mixins": [
|
34477
|
+
{
|
34478
|
+
"name": "IconNameMixin",
|
34479
|
+
"module": "/src/utils/mixins/IconNameMixin"
|
34480
|
+
}
|
34481
|
+
],
|
34482
|
+
"superclass": {
|
34483
|
+
"name": "Component",
|
34484
|
+
"module": "/src/models"
|
34485
|
+
},
|
34486
|
+
"tagName": "mdc-staticchip",
|
34487
|
+
"jsDoc": "/**\n * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.\n *\n *\n * @tagname mdc-staticchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the static chip.\n * @cssproperty --mdc-chip-border-color - The border color of the static chip.\n * @cssproperty --mdc-chip-background-color - The background color of the static chip.\n *\n */",
|
34488
|
+
"customElement": true
|
34489
|
+
}
|
34490
|
+
],
|
34491
|
+
"exports": [
|
34492
|
+
{
|
34493
|
+
"kind": "js",
|
34494
|
+
"name": "default",
|
34495
|
+
"declaration": {
|
34496
|
+
"name": "StaticChip",
|
34497
|
+
"module": "components/staticchip/staticchip.component.js"
|
34498
|
+
}
|
34499
|
+
}
|
34500
|
+
]
|
34501
|
+
},
|
34502
34502
|
{
|
34503
34503
|
"kind": "javascript-module",
|
34504
34504
|
"path": "components/staticradio/staticradio.component.js",
|
@@ -19,7 +19,7 @@ import Component from '../../components/brandvisual';
|
|
19
19
|
*/
|
20
20
|
declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
|
21
21
|
onLoad: EventName<import("../../utils/types").TypedCustomEvent<Component, {
|
22
|
-
name: "operation-pop-background-dark" | "operation-pop-background-light" | "webex-background-dark" | "webex-background-light" | "device-deskphone-eighteightsevenfive" | "device-deskphone-eighteightsevenfour" | "device-deskphone-eighteightsevenone" | "device-deskphone-eighteightseventwo" | "device-deskphone-eighteightsevenzero" | "device-deskphone-eighteightsixsix" | "device-deskphone-nineeightfiveone" | "device-deskphone-nineeightfourone" | "device-deskphone-nineeightsevenone" | "device-deskphone-nineeightsixone" | "device-deskpro" | "device-dx-sixfivezero" | "device-generic-mobile" | "device-ip-conference-phone-seveneightthreethree" | "device-ip-phone-eighteightfiveone-plus-multiple-screen" | "device-ip-phone-eighteightfiveone-plus-screen" | "device-ip-phone-eighteightfiveone" | "device-ip-phone-eighteightfourfive" | "device-ip-phone-eighteightfourone" | "device-ip-phone-eighteightoneone" | "device-ip-phone-eighteightsixfive-plus-screen" | "device-ip-phone-eighteightsixfive" | "device-ip-phone-eighteightsixone" | "device-ip-phone-seveneightfourone" | "device-ip-phone-seveneightoneone" | "device-ip-phone-seveneightsixone" | "device-ip-phone-seveneighttwoone" | "device-ip-phone-sixeightfiveone" | "device-ip-phone-sixeightsevenone" | "device-ip-phone-sixeightsixone" | "device-ip-phone-sixeighttwoone" | "device-ip-phone-sixninezeroone" | "device-phoenix" | "device-telepresence-dxeightzero" | "device-telepresence-dxsevenzero" | "device-telepresence-ixfivezerozerozero" | "device-telepresence-mxeightzerozero-dual" | "device-telepresence-mxeightzerozero-speakertrack" | "device-telepresence-mxeightzerozero" | "device-telepresence-mxsevenzerozero" | "device-telepresence-mxtwozerozero-gtwo" | "device-telepresence-sxeightzero" | "device-telepresence-sxonezero" | "device-webex-board-fivefive" | "device-webex-codec-plus" | "device-webex-room-bar" | "device-webex-room-fivefive" | "device-webex-room-kit-mini" | "device-webex-room-kit-plus" | "device-webex-room-kit-psixzero" | "device-webex-room-kit" | "device-webex-room-sevenzero-dual" | "device-webex-room-sevenzero" | "device-webex-share-ninesix-with-spark" | "device-webex-share-with-macbook" | "device-webex-share" | "alphalink" | "amazon-q-color" | "apple-business-chat-color" | "cisco-ai-assistant-bw-gradient" | "cisco-ai-assistant-bw-outline" | "cisco-ai-assistant-color-gradient" | "cisco-logo-dark-bw" | "cisco-logo-light-bw" | "cisco-logo-light-color" | "citynet-horizontal" | "citynet-mark" | "creative-direction-logo-dark-bw-horizontal" | "creative-direction-logo-dark-bw-mark" | "creative-direction-logo-dark-bw-vertical" | "creative-direction-logo-dark-color-horizontal" | "creative-direction-logo-dark-color-mark" | "creative-direction-logo-dark-color-vertical" | "creative-direction-logo-light-bw-horizontal" | "creative-direction-logo-light-bw-mark" | "creative-direction-logo-light-bw-vertical" | "creative-direction-logo-light-color-horizontal" | "creative-direction-logo-light-color-mark" | "creative-direction-logo-light-color-vertical" | "excelcom-horizontal" | "excelcom-mark" | "fedramp-logo" | "glean-color" | "google-meet-color" | "jira-color" | "momentum-design-logo-dark-bw-horizontal" | "momentum-design-logo-dark-bw-mark" | "momentum-design-logo-dark-bw-vertical" | "momentum-design-logo-dark-color-horizontal" | "momentum-design-logo-dark-color-mark" | "momentum-design-logo-dark-color-vertical" | "momentum-design-logo-light-bw-horizontal" | "momentum-design-logo-light-bw-mark" | "momentum-design-logo-light-bw-vertical" | "momentum-design-logo-light-color-horizontal" | "momentum-design-logo-light-color-mark" | "momentum-design-logo-light-color-vertical" | "ms-teams-color" | "northland-horizontal" | "northland-mark" | "salesforce-color" | "slack-color" | "slido-color" | "social-alexa-bw" | "social-alexa-color" | "social-facebook-bw" | "social-facebook-color" | "social-fbmessenger-bw" | "social-fbmessenger-color" | "social-instagram" | "social-line-bw" | "social-line-color" | "social-microsoft-bw" | "social-microsoft-color" | "social-rcs-bw" | "social-rcs-color" | "social-telegram-bw" | "social-telegram-color" | "social-viber-bw" | "social-viber-color" | "social-wechat-bw" | "social-wechat-color" | "social-whatsapp-bw" | "social-whatsapp-color" | "social-x" | "swiftmatch-bw" | "swiftmatch-color" | "switchconnect-horizontal" | "switchconnect-mark" | "telus-horizontal" | "telus-mark" | "verizon-horizontal" | "verizon-mark" | "videotron-horizontal" | "videotron-mark" | "voxon-horizontal" | "voxon-mark" | "webex-app-icon-color-container" | "webex-app-icon-meet-container" | "webex-app-icon-play-container" | "webex-app-icon-record-container" | "webex-app-icon-wda-container" | "webex-design-logo-dark-bw-gradient" | "webex-design-logo-dark-bw-outline" | "webex-design-logo-light-bw-gradient" | "webex-design-logo-light-bw-outline" | "webex-graphic-element-graphic-five" | "webex-graphic-element-graphic-four" | "webex-graphic-element-graphic-one" | "webex-graphic-element-graphic-three" | "webex-graphic-element-graphic-two" | "webex-graphic-element-wx-graphic" | "webex-logo-lockup-dark-bw-gradient-horizontal-bycisco" | "webex-logo-lockup-dark-bw-gradient-horizontal" | "webex-logo-lockup-dark-bw-gradient-vertical-bycisco" | "webex-logo-lockup-dark-bw-gradient-vertical" | "webex-logo-lockup-dark-bw-outline-horizontal-bycisco" | "webex-logo-lockup-dark-bw-outline-horizontal" | "webex-logo-lockup-dark-bw-outline-vertical-bycisco" | "webex-logo-lockup-dark-bw-outline-vertical" | "webex-logo-lockup-dark-color-gradient-horizontal-bycisco" | "webex-logo-lockup-dark-color-gradient-horizontal" | "webex-logo-lockup-dark-color-gradient-vertical-bycisco" | "webex-logo-lockup-dark-color-gradient-vertical" | "webex-logo-lockup-light-bw-gradient-horizontal-bycisco" | "webex-logo-lockup-light-bw-gradient-horizontal" | "webex-logo-lockup-light-bw-gradient-vertical-bycisco" | "webex-logo-lockup-light-bw-gradient-vertical" | "webex-logo-lockup-light-bw-outline-horizontal-bycisco" | "webex-logo-lockup-light-bw-outline-horizontal" | "webex-logo-lockup-light-bw-outline-vertical-bycisco" | "webex-logo-lockup-light-bw-outline-vertical" | "webex-logo-lockup-light-color-gradient-horizontal-bycisco" | "webex-logo-lockup-light-color-gradient-horizontal" | "webex-logo-lockup-light-color-gradient-vertical-bycisco" | "webex-logo-lockup-light-color-gradient-vertical" | "webex-partnership-logo-lockup-dark-apple" | "webex-partnership-logo-lockup-dark-box" | "webex-partnership-logo-lockup-dark-microsoft" | "webex-partnership-logo-lockup-dark-ms-teams" | "webex-partnership-logo-lockup-dark-okta" | "webex-partnership-logo-lockup-light-apple" | "webex-partnership-logo-lockup-light-box" | "webex-partnership-logo-lockup-light-microsoft" | "webex-partnership-logo-lockup-light-ms-teams" | "webex-partnership-logo-lockup-light-okta" | "webex-suite-icons-dark-bw-outline-events" | "webex-suite-icons-dark-bw-outline-vidcast" | "webex-suite-icons-dark-bw-outline-webex" | "webex-suite-icons-dark-color-gradient-events" | "webex-suite-icons-dark-color-gradient-vidcast" | "webex-suite-icons-dark-color-gradient-webex" | "webex-suite-icons-light-bw-outline-events" | "webex-suite-icons-light-bw-outline-vidcast" | "webex-suite-icons-light-bw-outline-webex" | "webex-suite-icons-light-color-gradient-events" | "webex-suite-icons-light-color-gradient-vidcast" | "webex-suite-icons-light-color-gradient-webex" | "webex-suite-tiles-dark-assist" | "webex-suite-tiles-dark-bot" | "webex-suite-tiles-dark-campaign" | "webex-suite-tiles-dark-engage" | "webex-suite-tiles-light-assist" | "webex-suite-tiles-light-bot" | "webex-suite-tiles-light-campaign" | "webex-suite-tiles-light-engage" | "webex-suite-wordmark-dark-account" | "webex-suite-wordmark-dark-adoption-methodology" | "webex-suite-wordmark-dark-ai-agent-studio" | "webex-suite-wordmark-dark-ambassador" | "webex-suite-wordmark-dark-analyzer" | "webex-suite-wordmark-dark-app-hub" | "webex-suite-wordmark-dark-assist" | "webex-suite-wordmark-dark-campaign-management" | "webex-suite-wordmark-dark-campaign-manager" | "webex-suite-wordmark-dark-campaign" | "webex-suite-wordmark-dark-connect-integrations" | "webex-suite-wordmark-dark-connect" | "webex-suite-wordmark-dark-contact-center" | "webex-suite-wordmark-dark-control-hub" | "webex-suite-wordmark-dark-cx-studio" | "webex-suite-wordmark-dark-directory-connector" | "webex-suite-wordmark-dark-ediscovery" | "webex-suite-wordmark-dark-engage" | "webex-suite-wordmark-dark-events" | "webex-suite-wordmark-dark-flow-designer" | "webex-suite-wordmark-dark-for-developers" | "webex-suite-wordmark-dark-global-service-status" | "webex-suite-wordmark-dark-interact" | "webex-suite-wordmark-dark-notify" | "webex-suite-wordmark-dark-partner-hub" | "webex-suite-wordmark-dark-placeholder" | "webex-suite-wordmark-dark-reach" | "webex-suite-wordmark-dark-settings" | "webex-suite-wordmark-dark-suite-settings" | "webex-suite-wordmark-dark-support" | "webex-suite-wordmark-dark-the-bridge" | "webex-suite-wordmark-dark-user-hub" | "webex-suite-wordmark-dark-vidcast" | "webex-suite-wordmark-dark-view" | "webex-suite-wordmark-dark-whiteboard" | "webex-suite-wordmark-light-account" | "webex-suite-wordmark-light-adoption-methodology" | "webex-suite-wordmark-light-ai-agent-studio" | "webex-suite-wordmark-light-ambassador" | "webex-suite-wordmark-light-analyzer" | "webex-suite-wordmark-light-app-hub" | "webex-suite-wordmark-light-assist" | "webex-suite-wordmark-light-campaign-management" | "webex-suite-wordmark-light-campaign-manager" | "webex-suite-wordmark-light-campaign" | "webex-suite-wordmark-light-connect-integrations" | "webex-suite-wordmark-light-connect" | "webex-suite-wordmark-light-contact-center" | "webex-suite-wordmark-light-control-hub" | "webex-suite-wordmark-light-cx-studio" | "webex-suite-wordmark-light-directory-connector" | "webex-suite-wordmark-light-ediscovery" | "webex-suite-wordmark-light-engage" | "webex-suite-wordmark-light-events" | "webex-suite-wordmark-light-flow-designer" | "webex-suite-wordmark-light-for-developers" | "webex-suite-wordmark-light-global-service-status" | "webex-suite-wordmark-light-interact" | "webex-suite-wordmark-light-notify" | "webex-suite-wordmark-light-partner-hub" | "webex-suite-wordmark-light-placeholder" | "webex-suite-wordmark-light-reach" | "webex-suite-wordmark-light-settings" | "webex-suite-wordmark-light-suite-settings" | "webex-suite-wordmark-light-support" | "webex-suite-wordmark-light-the-bridge" | "webex-suite-wordmark-light-user-hub" | "webex-suite-wordmark-light-vidcast" | "webex-suite-wordmark-light-view" | "webex-suite-wordmark-light-whiteboard" | "webex-symbol-common-color-gradient" | "webex-symbol-dark-bw-gradient" | "webex-symbol-dark-bw-outline" | "webex-symbol-light-bw-gradient" | "webex-symbol-light-bw-outline" | "webex-wordmark-dark-horizontal-bycisco" | "webex-wordmark-dark-vertical-bycisco-center" | "webex-wordmark-dark-vertical-bycisco-right" | "webex-wordmark-dark-wordmark" | "webex-wordmark-light-horizontal-bycisco" | "webex-wordmark-light-vertical-bycisco-center" | "webex-wordmark-light-vertical-bycisco-right" | "webex-wordmark-light-wordmark" | "xtel-horizontal" | "xtel-mark" | "zoom-color";
|
22
|
+
name: "operation-pop-background-dark" | "operation-pop-background-light" | "webex-background-dark" | "webex-background-light" | "device-deskphone-eighteightsevenfive" | "device-deskphone-eighteightsevenfour" | "device-deskphone-eighteightsevenone" | "device-deskphone-eighteightseventwo" | "device-deskphone-eighteightsevenzero" | "device-deskphone-eighteightsixsix" | "device-deskphone-nineeightfiveone" | "device-deskphone-nineeightfourone" | "device-deskphone-nineeightsevenone" | "device-deskphone-nineeightsixone" | "device-deskpro" | "device-dx-sixfivezero" | "device-generic-mobile" | "device-ip-conference-phone-seveneightthreethree" | "device-ip-phone-eighteightfiveone-plus-multiple-screen" | "device-ip-phone-eighteightfiveone-plus-screen" | "device-ip-phone-eighteightfiveone" | "device-ip-phone-eighteightfourfive" | "device-ip-phone-eighteightfourone" | "device-ip-phone-eighteightoneone" | "device-ip-phone-eighteightsixfive-plus-screen" | "device-ip-phone-eighteightsixfive" | "device-ip-phone-eighteightsixone" | "device-ip-phone-seveneightfourone" | "device-ip-phone-seveneightoneone" | "device-ip-phone-seveneightsixone" | "device-ip-phone-seveneighttwoone" | "device-ip-phone-sixeightfiveone" | "device-ip-phone-sixeightsevenone" | "device-ip-phone-sixeightsixone" | "device-ip-phone-sixeighttwoone" | "device-ip-phone-sixninezeroone" | "device-phoenix" | "device-telepresence-dxeightzero" | "device-telepresence-dxsevenzero" | "device-telepresence-ixfivezerozerozero" | "device-telepresence-mxeightzerozero-dual" | "device-telepresence-mxeightzerozero-speakertrack" | "device-telepresence-mxeightzerozero" | "device-telepresence-mxsevenzerozero" | "device-telepresence-mxtwozerozero-gtwo" | "device-telepresence-sxeightzero" | "device-telepresence-sxonezero" | "device-thumbnails-deskphone-eighteightsevenfive" | "device-thumbnails-deskphone-eighteightsevenfour" | "device-thumbnails-deskphone-eighteightsevenone" | "device-thumbnails-deskphone-eighteightseventwo" | "device-thumbnails-deskphone-eighteightsevenzero" | "device-thumbnails-deskphone-eighteightsixsix" | "device-thumbnails-deskphone-nineeightfiveone" | "device-thumbnails-deskphone-nineeightfourone" | "device-thumbnails-deskphone-nineeightsevenone" | "device-thumbnails-deskphone-nineeightsixone" | "device-thumbnails-deskpro" | "device-thumbnails-dx-sixfivezero" | "device-thumbnails-generic-mobile" | "device-thumbnails-ip-conference-phone-seveneightthreethree" | "device-thumbnails-ip-phone-eighteightfiveone-plus-multiple-screen" | "device-thumbnails-ip-phone-eighteightfiveone-plus-screen" | "device-thumbnails-ip-phone-eighteightfiveone" | "device-thumbnails-ip-phone-eighteightfourfive" | "device-thumbnails-ip-phone-eighteightfourone" | "device-thumbnails-ip-phone-eighteightoneone" | "device-thumbnails-ip-phone-eighteightsixfive-plus-screen" | "device-thumbnails-ip-phone-eighteightsixfive" | "device-thumbnails-ip-phone-eighteightsixone" | "device-thumbnails-ip-phone-seveneightfourone" | "device-thumbnails-ip-phone-seveneightoneone" | "device-thumbnails-ip-phone-seveneightsixone" | "device-thumbnails-ip-phone-seveneighttwoone" | "device-thumbnails-ip-phone-sixeightfiveone" | "device-thumbnails-ip-phone-sixeightsevenone" | "device-thumbnails-ip-phone-sixeightsixone" | "device-thumbnails-ip-phone-sixeighttwoone" | "device-thumbnails-ip-phone-sixninezeroone" | "device-thumbnails-phoenix" | "device-thumbnails-telepresence-dxeightzero" | "device-thumbnails-telepresence-dxsevenzero" | "device-thumbnails-telepresence-ixfivezerozerozero" | "device-thumbnails-telepresence-mxeightzerozero-dual" | "device-thumbnails-telepresence-mxeightzerozero-speakertrack" | "device-thumbnails-telepresence-mxeightzerozero" | "device-thumbnails-telepresence-mxsevenzerozero" | "device-thumbnails-telepresence-mxtwozerozero-gtwo" | "device-thumbnails-telepresence-sxeightzero" | "device-thumbnails-telepresence-sxonezero" | "device-thumbnails-webex-board-fivefive" | "device-thumbnails-webex-codec-plus" | "device-thumbnails-webex-room-bar" | "device-thumbnails-webex-room-fivefive" | "device-thumbnails-webex-room-kit-mini" | "device-thumbnails-webex-room-kit-plus" | "device-thumbnails-webex-room-kit-psixzero" | "device-thumbnails-webex-room-kit" | "device-thumbnails-webex-room-sevenzero-dual" | "device-thumbnails-webex-room-sevenzero" | "device-thumbnails-webex-share-ninesix-with-spark" | "device-thumbnails-webex-share-with-macbook" | "device-thumbnails-webex-share" | "device-webex-board-fivefive" | "device-webex-codec-plus" | "device-webex-room-bar" | "device-webex-room-fivefive" | "device-webex-room-kit-mini" | "device-webex-room-kit-plus" | "device-webex-room-kit-psixzero" | "device-webex-room-kit" | "device-webex-room-sevenzero-dual" | "device-webex-room-sevenzero" | "device-webex-share-ninesix-with-spark" | "device-webex-share-with-macbook" | "device-webex-share" | "alphalink" | "amazon-q-color" | "apple-business-chat-color" | "cisco-ai-assistant-bw-gradient" | "cisco-ai-assistant-bw-outline" | "cisco-ai-assistant-color-gradient" | "cisco-logo-dark-bw" | "cisco-logo-light-bw" | "cisco-logo-light-color" | "citynet-horizontal" | "citynet-mark" | "creative-direction-logo-dark-bw-horizontal" | "creative-direction-logo-dark-bw-mark" | "creative-direction-logo-dark-bw-vertical" | "creative-direction-logo-dark-color-horizontal" | "creative-direction-logo-dark-color-mark" | "creative-direction-logo-dark-color-vertical" | "creative-direction-logo-light-bw-horizontal" | "creative-direction-logo-light-bw-mark" | "creative-direction-logo-light-bw-vertical" | "creative-direction-logo-light-color-horizontal" | "creative-direction-logo-light-color-mark" | "creative-direction-logo-light-color-vertical" | "excelcom-horizontal" | "excelcom-mark" | "fedramp-logo" | "glean-color" | "google-meet-color" | "jira-color" | "momentum-design-logo-dark-bw-horizontal" | "momentum-design-logo-dark-bw-mark" | "momentum-design-logo-dark-bw-vertical" | "momentum-design-logo-dark-color-horizontal" | "momentum-design-logo-dark-color-mark" | "momentum-design-logo-dark-color-vertical" | "momentum-design-logo-light-bw-horizontal" | "momentum-design-logo-light-bw-mark" | "momentum-design-logo-light-bw-vertical" | "momentum-design-logo-light-color-horizontal" | "momentum-design-logo-light-color-mark" | "momentum-design-logo-light-color-vertical" | "ms-teams-color" | "northland-horizontal" | "northland-mark" | "salesforce-color" | "slack-color" | "slido-color" | "social-alexa-bw" | "social-alexa-color" | "social-facebook-bw" | "social-facebook-color" | "social-fbmessenger-bw" | "social-fbmessenger-color" | "social-instagram" | "social-line-bw" | "social-line-color" | "social-microsoft-bw" | "social-microsoft-color" | "social-rcs-bw" | "social-rcs-color" | "social-telegram-bw" | "social-telegram-color" | "social-viber-bw" | "social-viber-color" | "social-wechat-bw" | "social-wechat-color" | "social-whatsapp-bw" | "social-whatsapp-color" | "social-x" | "swiftmatch-bw" | "swiftmatch-color" | "switchconnect-horizontal" | "switchconnect-mark" | "telus-horizontal" | "telus-mark" | "verizon-horizontal" | "verizon-mark" | "videotron-horizontal" | "videotron-mark" | "voxon-horizontal" | "voxon-mark" | "webex-app-icon-color-container" | "webex-app-icon-meet-container" | "webex-app-icon-play-container" | "webex-app-icon-record-container" | "webex-app-icon-wda-container" | "webex-design-logo-dark-bw-gradient" | "webex-design-logo-dark-bw-outline" | "webex-design-logo-light-bw-gradient" | "webex-design-logo-light-bw-outline" | "webex-graphic-element-graphic-five" | "webex-graphic-element-graphic-four" | "webex-graphic-element-graphic-one" | "webex-graphic-element-graphic-three" | "webex-graphic-element-graphic-two" | "webex-graphic-element-wx-graphic" | "webex-logo-lockup-dark-bw-gradient-horizontal-bycisco" | "webex-logo-lockup-dark-bw-gradient-horizontal" | "webex-logo-lockup-dark-bw-gradient-vertical-bycisco" | "webex-logo-lockup-dark-bw-gradient-vertical" | "webex-logo-lockup-dark-bw-outline-horizontal-bycisco" | "webex-logo-lockup-dark-bw-outline-horizontal" | "webex-logo-lockup-dark-bw-outline-vertical-bycisco" | "webex-logo-lockup-dark-bw-outline-vertical" | "webex-logo-lockup-dark-color-gradient-horizontal-bycisco" | "webex-logo-lockup-dark-color-gradient-horizontal" | "webex-logo-lockup-dark-color-gradient-vertical-bycisco" | "webex-logo-lockup-dark-color-gradient-vertical" | "webex-logo-lockup-light-bw-gradient-horizontal-bycisco" | "webex-logo-lockup-light-bw-gradient-horizontal" | "webex-logo-lockup-light-bw-gradient-vertical-bycisco" | "webex-logo-lockup-light-bw-gradient-vertical" | "webex-logo-lockup-light-bw-outline-horizontal-bycisco" | "webex-logo-lockup-light-bw-outline-horizontal" | "webex-logo-lockup-light-bw-outline-vertical-bycisco" | "webex-logo-lockup-light-bw-outline-vertical" | "webex-logo-lockup-light-color-gradient-horizontal-bycisco" | "webex-logo-lockup-light-color-gradient-horizontal" | "webex-logo-lockup-light-color-gradient-vertical-bycisco" | "webex-logo-lockup-light-color-gradient-vertical" | "webex-partnership-logo-lockup-dark-apple" | "webex-partnership-logo-lockup-dark-box" | "webex-partnership-logo-lockup-dark-microsoft" | "webex-partnership-logo-lockup-dark-ms-teams" | "webex-partnership-logo-lockup-dark-okta" | "webex-partnership-logo-lockup-light-apple" | "webex-partnership-logo-lockup-light-box" | "webex-partnership-logo-lockup-light-microsoft" | "webex-partnership-logo-lockup-light-ms-teams" | "webex-partnership-logo-lockup-light-okta" | "webex-suite-icons-dark-bw-outline-events" | "webex-suite-icons-dark-bw-outline-vidcast" | "webex-suite-icons-dark-bw-outline-webex" | "webex-suite-icons-dark-color-gradient-events" | "webex-suite-icons-dark-color-gradient-vidcast" | "webex-suite-icons-dark-color-gradient-webex" | "webex-suite-icons-light-bw-outline-events" | "webex-suite-icons-light-bw-outline-vidcast" | "webex-suite-icons-light-bw-outline-webex" | "webex-suite-icons-light-color-gradient-events" | "webex-suite-icons-light-color-gradient-vidcast" | "webex-suite-icons-light-color-gradient-webex" | "webex-suite-tiles-dark-assist" | "webex-suite-tiles-dark-bot" | "webex-suite-tiles-dark-campaign" | "webex-suite-tiles-dark-engage" | "webex-suite-tiles-light-assist" | "webex-suite-tiles-light-bot" | "webex-suite-tiles-light-campaign" | "webex-suite-tiles-light-engage" | "webex-suite-wordmark-dark-account" | "webex-suite-wordmark-dark-adoption-methodology" | "webex-suite-wordmark-dark-ai-agent-studio" | "webex-suite-wordmark-dark-ambassador" | "webex-suite-wordmark-dark-analyzer" | "webex-suite-wordmark-dark-app-hub" | "webex-suite-wordmark-dark-assist" | "webex-suite-wordmark-dark-campaign-management" | "webex-suite-wordmark-dark-campaign-manager" | "webex-suite-wordmark-dark-campaign" | "webex-suite-wordmark-dark-connect-integrations" | "webex-suite-wordmark-dark-connect" | "webex-suite-wordmark-dark-contact-center" | "webex-suite-wordmark-dark-control-hub" | "webex-suite-wordmark-dark-cx-studio" | "webex-suite-wordmark-dark-directory-connector" | "webex-suite-wordmark-dark-ediscovery" | "webex-suite-wordmark-dark-engage" | "webex-suite-wordmark-dark-events" | "webex-suite-wordmark-dark-flow-designer" | "webex-suite-wordmark-dark-for-developers" | "webex-suite-wordmark-dark-global-service-status" | "webex-suite-wordmark-dark-interact" | "webex-suite-wordmark-dark-notify" | "webex-suite-wordmark-dark-partner-hub" | "webex-suite-wordmark-dark-placeholder" | "webex-suite-wordmark-dark-reach" | "webex-suite-wordmark-dark-settings" | "webex-suite-wordmark-dark-suite-settings" | "webex-suite-wordmark-dark-support" | "webex-suite-wordmark-dark-the-bridge" | "webex-suite-wordmark-dark-user-hub" | "webex-suite-wordmark-dark-vidcast" | "webex-suite-wordmark-dark-view" | "webex-suite-wordmark-dark-whiteboard" | "webex-suite-wordmark-light-account" | "webex-suite-wordmark-light-adoption-methodology" | "webex-suite-wordmark-light-ai-agent-studio" | "webex-suite-wordmark-light-ambassador" | "webex-suite-wordmark-light-analyzer" | "webex-suite-wordmark-light-app-hub" | "webex-suite-wordmark-light-assist" | "webex-suite-wordmark-light-campaign-management" | "webex-suite-wordmark-light-campaign-manager" | "webex-suite-wordmark-light-campaign" | "webex-suite-wordmark-light-connect-integrations" | "webex-suite-wordmark-light-connect" | "webex-suite-wordmark-light-contact-center" | "webex-suite-wordmark-light-control-hub" | "webex-suite-wordmark-light-cx-studio" | "webex-suite-wordmark-light-directory-connector" | "webex-suite-wordmark-light-ediscovery" | "webex-suite-wordmark-light-engage" | "webex-suite-wordmark-light-events" | "webex-suite-wordmark-light-flow-designer" | "webex-suite-wordmark-light-for-developers" | "webex-suite-wordmark-light-global-service-status" | "webex-suite-wordmark-light-interact" | "webex-suite-wordmark-light-notify" | "webex-suite-wordmark-light-partner-hub" | "webex-suite-wordmark-light-placeholder" | "webex-suite-wordmark-light-reach" | "webex-suite-wordmark-light-settings" | "webex-suite-wordmark-light-suite-settings" | "webex-suite-wordmark-light-support" | "webex-suite-wordmark-light-the-bridge" | "webex-suite-wordmark-light-user-hub" | "webex-suite-wordmark-light-vidcast" | "webex-suite-wordmark-light-view" | "webex-suite-wordmark-light-whiteboard" | "webex-symbol-common-color-gradient" | "webex-symbol-dark-bw-gradient" | "webex-symbol-dark-bw-outline" | "webex-symbol-light-bw-gradient" | "webex-symbol-light-bw-outline" | "webex-wordmark-dark-horizontal-bycisco" | "webex-wordmark-dark-vertical-bycisco-center" | "webex-wordmark-dark-vertical-bycisco-right" | "webex-wordmark-dark-wordmark" | "webex-wordmark-light-horizontal-bycisco" | "webex-wordmark-light-vertical-bycisco-center" | "webex-wordmark-light-vertical-bycisco-right" | "webex-wordmark-light-wordmark" | "xtel-horizontal" | "xtel-mark" | "zoom-color";
|
23
23
|
}>>;
|
24
24
|
onError: EventName<import("../../utils/types").TypedCustomEvent<Component, {
|
25
25
|
error: Error;
|
package/dist/react/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export { default as Accordion } from './accordion';
|
2
|
-
export { default as AccordionButton } from './accordionbutton';
|
3
2
|
export { default as AccordionGroup } from './accordiongroup';
|
3
|
+
export { default as AccordionButton } from './accordionbutton';
|
4
4
|
export { default as AlertChip } from './alertchip';
|
5
5
|
export { default as Animation } from './animation';
|
6
6
|
export { default as Appheader } from './appheader';
|
@@ -60,10 +60,10 @@ export { default as Select } from './select';
|
|
60
60
|
export { default as Selectlistbox } from './selectlistbox';
|
61
61
|
export { default as SideNavigation } from './sidenavigation';
|
62
62
|
export { default as Skeleton } from './skeleton';
|
63
|
+
export { default as Slider } from './slider';
|
63
64
|
export { default as Spinner } from './spinner';
|
64
65
|
export { default as StaticCheckbox } from './staticcheckbox';
|
65
66
|
export { default as StaticChip } from './staticchip';
|
66
|
-
export { default as Slider } from './slider';
|
67
67
|
export { default as StaticRadio } from './staticradio';
|
68
68
|
export { default as StaticToggle } from './statictoggle';
|
69
69
|
export { default as Stepper } from './stepper';
|
package/dist/react/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
export { default as Accordion } from './accordion';
|
2
|
-
export { default as AccordionButton } from './accordionbutton';
|
3
2
|
export { default as AccordionGroup } from './accordiongroup';
|
3
|
+
export { default as AccordionButton } from './accordionbutton';
|
4
4
|
export { default as AlertChip } from './alertchip';
|
5
5
|
export { default as Animation } from './animation';
|
6
6
|
export { default as Appheader } from './appheader';
|
@@ -60,10 +60,10 @@ export { default as Select } from './select';
|
|
60
60
|
export { default as Selectlistbox } from './selectlistbox';
|
61
61
|
export { default as SideNavigation } from './sidenavigation';
|
62
62
|
export { default as Skeleton } from './skeleton';
|
63
|
+
export { default as Slider } from './slider';
|
63
64
|
export { default as Spinner } from './spinner';
|
64
65
|
export { default as StaticCheckbox } from './staticcheckbox';
|
65
66
|
export { default as StaticChip } from './staticchip';
|
66
|
-
export { default as Slider } from './slider';
|
67
67
|
export { default as StaticRadio } from './staticradio';
|
68
68
|
export { default as StaticToggle } from './statictoggle';
|
69
69
|
export { default as Stepper } from './stepper';
|