@momentum-design/components 0.101.3 → 0.102.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.
@@ -477,157 +477,6 @@
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
- },
631
480
  {
632
481
  "kind": "javascript-module",
633
482
  "path": "components/accordionbutton/accordionbutton.component.js",
@@ -968,6 +817,157 @@
968
817
  }
969
818
  ]
970
819
  },
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",
@@ -17803,15 +17803,15 @@
17803
17803
  },
17804
17804
  {
17805
17805
  "kind": "javascript-module",
17806
- "path": "components/menuitem/menuitem.component.js",
17806
+ "path": "components/menuitemcheckbox/menuitemcheckbox.component.js",
17807
17807
  "declarations": [
17808
17808
  {
17809
17809
  "kind": "class",
17810
- "description": "menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\nA menu item can contain an icon on the leading or trailing side.\n\nThe leading and trailing slots can be used to display controls and text.<br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted.\n\nPlease use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\nFor example mdc-menupopover or mdc-menubar.\n\nMenu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.",
17811
- "name": "MenuItem",
17810
+ "description": "A menuitemcheckbox component is a checkable menuitem.\nThere should be no focusable descendants inside this menuitemcheckbox component.\n\nThe `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n\nMenu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n\nThe `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\nBy default, the `indicator` is set to <b>checkbox</b>.<br/>\n\nThe checkbox will always be positioned on the leading side of the menuitem label and\nthe toggle and checkmark will always be positioned on the trailing side.\n\nThe checkbox will have the possible states of `true` or `false`.\nIf the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\nthen the checkmark will be displayed. if not, then no indicator will be displayed.\n\nThe forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\nIt is intended to be used for customised menu items where the indicator is implemented differently.\nFor example, you can use a custom icon or a different visual element to indicate the state of the menu item.\nMake sure the new indicator is accessible.\n\nIf you want only one item in a group to be checked, consider using menuitemradio component.",
17811
+ "name": "MenuItemCheckbox",
17812
17812
  "slots": [
17813
17813
  {
17814
- "description": "slot for menu item controls to appear of leading end.",
17814
+ "description": "slot for menu item checkbox controls to appear of leading end.",
17815
17815
  "name": "leading-controls",
17816
17816
  "inheritedFrom": {
17817
17817
  "name": "ListItem",
@@ -17819,7 +17819,7 @@
17819
17819
  }
17820
17820
  },
17821
17821
  {
17822
- "description": "slot for menu item primary label.",
17822
+ "description": "slot for menu item checkbox primary label.",
17823
17823
  "name": "leading-text-primary-label",
17824
17824
  "inheritedFrom": {
17825
17825
  "name": "ListItem",
@@ -17827,7 +17827,7 @@
17827
17827
  }
17828
17828
  },
17829
17829
  {
17830
- "description": "slot for menu item secondary label.",
17830
+ "description": "slot for menu item checkbox secondary label.",
17831
17831
  "name": "leading-text-secondary-label",
17832
17832
  "inheritedFrom": {
17833
17833
  "name": "ListItem",
@@ -17835,7 +17835,7 @@
17835
17835
  }
17836
17836
  },
17837
17837
  {
17838
- "description": "slot for menu item tertiary label.",
17838
+ "description": "slot for menu item checkbox tertiary label.",
17839
17839
  "name": "leading-text-tertiary-label",
17840
17840
  "inheritedFrom": {
17841
17841
  "name": "ListItem",
@@ -17843,7 +17843,7 @@
17843
17843
  }
17844
17844
  },
17845
17845
  {
17846
- "description": "slot for menu item side header text.",
17846
+ "description": "slot for menu item checkbox side header text.",
17847
17847
  "name": "trailing-text-side-header",
17848
17848
  "inheritedFrom": {
17849
17849
  "name": "ListItem",
@@ -17851,7 +17851,7 @@
17851
17851
  }
17852
17852
  },
17853
17853
  {
17854
- "description": "slot for menu item subline text.",
17854
+ "description": "slot for menu item checkbox subline text.",
17855
17855
  "name": "trailing-text-subline",
17856
17856
  "inheritedFrom": {
17857
17857
  "name": "ListItem",
@@ -17859,7 +17859,7 @@
17859
17859
  }
17860
17860
  },
17861
17861
  {
17862
- "description": "slot for menu item controls to appear of trailing end.",
17862
+ "description": "slot for menu item checkbox controls to appear of trailing end.",
17863
17863
  "name": "trailing-controls",
17864
17864
  "inheritedFrom": {
17865
17865
  "name": "ListItem",
@@ -17868,6 +17868,67 @@
17868
17868
  }
17869
17869
  ],
17870
17870
  "members": [
17871
+ {
17872
+ "kind": "field",
17873
+ "name": "checked",
17874
+ "type": {
17875
+ "text": "boolean"
17876
+ },
17877
+ "default": "false",
17878
+ "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
17879
+ "attribute": "checked",
17880
+ "reflects": true
17881
+ },
17882
+ {
17883
+ "kind": "field",
17884
+ "name": "indicator",
17885
+ "type": {
17886
+ "text": "Indicator"
17887
+ },
17888
+ "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
17889
+ "default": "'checkbox'",
17890
+ "attribute": "indicator",
17891
+ "reflects": true
17892
+ },
17893
+ {
17894
+ "kind": "method",
17895
+ "name": "handleMouseClick",
17896
+ "privacy": "private",
17897
+ "description": "Handles click events to toggle checked state\nIf the menuitemcheckbox is disabled, it does nothing.\nIf the menuitemcheckbox is not disabled, it toggles the `checked` state between `true` and `false`."
17898
+ },
17899
+ {
17900
+ "kind": "method",
17901
+ "name": "staticCheckbox",
17902
+ "privacy": "private",
17903
+ "return": {
17904
+ "type": {
17905
+ "text": ""
17906
+ }
17907
+ },
17908
+ "description": "Returns a static checkbox element if the indicator is set to checkbox.\nIf the indicator is not set to checkbox, it returns nothing."
17909
+ },
17910
+ {
17911
+ "kind": "method",
17912
+ "name": "staticToggle",
17913
+ "privacy": "private",
17914
+ "return": {
17915
+ "type": {
17916
+ "text": ""
17917
+ }
17918
+ },
17919
+ "description": "Returns a static toggle element if the indicator is set to toggle.\nIf the indicator is not set to toggle, it returns nothing.\n\nThe toggle will always be positioned on the trailing side of the menuitem label."
17920
+ },
17921
+ {
17922
+ "kind": "method",
17923
+ "name": "getCheckmarkIcon",
17924
+ "privacy": "private",
17925
+ "return": {
17926
+ "type": {
17927
+ "text": ""
17928
+ }
17929
+ },
17930
+ "description": "Returns a checkmark icon if the indicator is set to checkmark and the checked state is true.\nIf the indicator is not set to checkmark or the checked state is false, it returns nothing.\n\nThe checkmark icon will always be positioned on the trailing side of the menuitem label."
17931
+ },
17871
17932
  {
17872
17933
  "kind": "field",
17873
17934
  "name": "arrowPosition",
@@ -17876,7 +17937,11 @@
17876
17937
  },
17877
17938
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
17878
17939
  "attribute": "arrow-position",
17879
- "reflects": true
17940
+ "reflects": true,
17941
+ "inheritedFrom": {
17942
+ "name": "MenuItem",
17943
+ "module": "components/menuitem/menuitem.component.js"
17944
+ }
17880
17945
  },
17881
17946
  {
17882
17947
  "kind": "field",
@@ -17886,7 +17951,11 @@
17886
17951
  },
17887
17952
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
17888
17953
  "attribute": "arrow-direction",
17889
- "reflects": true
17954
+ "reflects": true,
17955
+ "inheritedFrom": {
17956
+ "name": "MenuItem",
17957
+ "module": "components/menuitem/menuitem.component.js"
17958
+ }
17890
17959
  },
17891
17960
  {
17892
17961
  "kind": "field",
@@ -17897,7 +17966,11 @@
17897
17966
  "default": "undefined",
17898
17967
  "description": "The name attribute is used to identify the menu item when it is selected.",
17899
17968
  "attribute": "name",
17900
- "reflects": true
17969
+ "reflects": true,
17970
+ "inheritedFrom": {
17971
+ "name": "MenuItem",
17972
+ "module": "components/menuitem/menuitem.component.js"
17973
+ }
17901
17974
  },
17902
17975
  {
17903
17976
  "kind": "field",
@@ -17908,7 +17981,11 @@
17908
17981
  "default": "undefined",
17909
17982
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
17910
17983
  "attribute": "value",
17911
- "reflects": true
17984
+ "reflects": true,
17985
+ "inheritedFrom": {
17986
+ "name": "MenuItem",
17987
+ "module": "components/menuitem/menuitem.component.js"
17988
+ }
17912
17989
  },
17913
17990
  {
17914
17991
  "kind": "method",
@@ -17952,7 +18029,11 @@
17952
18029
  "description": "The keyboard event that triggered the action."
17953
18030
  }
17954
18031
  ],
17955
- "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event."
18032
+ "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event.",
18033
+ "inheritedFrom": {
18034
+ "name": "MenuItem",
18035
+ "module": "components/menuitem/menuitem.component.js"
18036
+ }
17956
18037
  },
17957
18038
  {
17958
18039
  "kind": "method",
@@ -18289,7 +18370,15 @@
18289
18370
  ],
18290
18371
  "events": [
18291
18372
  {
18292
- "description": "(React: onClick) This event is dispatched when the menuitem is clicked.",
18373
+ "name": "change",
18374
+ "type": {
18375
+ "text": "Event"
18376
+ },
18377
+ "description": "(React: onChange) This event is dispatched when the menuitemcheckbox changes.",
18378
+ "reactName": "onChange"
18379
+ },
18380
+ {
18381
+ "description": "(React: onClick) This event is dispatched when the menuitemcheckbox is clicked.",
18293
18382
  "name": "click",
18294
18383
  "reactName": "onClick",
18295
18384
  "inheritedFrom": {
@@ -18298,27 +18387,27 @@
18298
18387
  }
18299
18388
  },
18300
18389
  {
18301
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.",
18302
- "name": "keydown",
18303
- "reactName": "onKeyDown",
18390
+ "description": "(React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.",
18391
+ "name": "focus",
18392
+ "reactName": "onFocus",
18304
18393
  "inheritedFrom": {
18305
18394
  "name": "ListItem",
18306
18395
  "module": "src/components/listitem/listitem.component.ts"
18307
18396
  }
18308
18397
  },
18309
18398
  {
18310
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the menuitem.",
18311
- "name": "keyup",
18312
- "reactName": "onKeyUp",
18399
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.",
18400
+ "name": "keydown",
18401
+ "reactName": "onKeyDown",
18313
18402
  "inheritedFrom": {
18314
18403
  "name": "ListItem",
18315
18404
  "module": "src/components/listitem/listitem.component.ts"
18316
18405
  }
18317
18406
  },
18318
18407
  {
18319
- "description": "(React: onFocus) This event is dispatched when the menuitem receives focus.",
18320
- "name": "focus",
18321
- "reactName": "onFocus",
18408
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the menuitem.",
18409
+ "name": "keyup",
18410
+ "reactName": "onKeyUp",
18322
18411
  "inheritedFrom": {
18323
18412
  "name": "ListItem",
18324
18413
  "module": "src/components/listitem/listitem.component.ts"
@@ -18362,13 +18451,35 @@
18362
18451
  }
18363
18452
  ],
18364
18453
  "attributes": [
18454
+ {
18455
+ "name": "checked",
18456
+ "type": {
18457
+ "text": "boolean"
18458
+ },
18459
+ "default": "false",
18460
+ "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
18461
+ "fieldName": "checked"
18462
+ },
18463
+ {
18464
+ "name": "indicator",
18465
+ "type": {
18466
+ "text": "Indicator"
18467
+ },
18468
+ "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
18469
+ "default": "'checkbox'",
18470
+ "fieldName": "indicator"
18471
+ },
18365
18472
  {
18366
18473
  "name": "arrow-position",
18367
18474
  "type": {
18368
18475
  "text": "ArrowPositions | undefined"
18369
18476
  },
18370
18477
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
18371
- "fieldName": "arrowPosition"
18478
+ "fieldName": "arrowPosition",
18479
+ "inheritedFrom": {
18480
+ "name": "MenuItem",
18481
+ "module": "src/components/menuitem/menuitem.component.ts"
18482
+ }
18372
18483
  },
18373
18484
  {
18374
18485
  "name": "arrow-direction",
@@ -18376,7 +18487,11 @@
18376
18487
  "text": "ArrowDirections | undefined"
18377
18488
  },
18378
18489
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
18379
- "fieldName": "arrowDirection"
18490
+ "fieldName": "arrowDirection",
18491
+ "inheritedFrom": {
18492
+ "name": "MenuItem",
18493
+ "module": "src/components/menuitem/menuitem.component.ts"
18494
+ }
18380
18495
  },
18381
18496
  {
18382
18497
  "name": "name",
@@ -18385,7 +18500,11 @@
18385
18500
  },
18386
18501
  "default": "undefined",
18387
18502
  "description": "The name attribute is used to identify the menu item when it is selected.",
18388
- "fieldName": "name"
18503
+ "fieldName": "name",
18504
+ "inheritedFrom": {
18505
+ "name": "MenuItem",
18506
+ "module": "src/components/menuitem/menuitem.component.ts"
18507
+ }
18389
18508
  },
18390
18509
  {
18391
18510
  "name": "value",
@@ -18394,7 +18513,11 @@
18394
18513
  },
18395
18514
  "default": "undefined",
18396
18515
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
18397
- "fieldName": "value"
18516
+ "fieldName": "value",
18517
+ "inheritedFrom": {
18518
+ "name": "MenuItem",
18519
+ "module": "src/components/menuitem/menuitem.component.ts"
18520
+ }
18398
18521
  },
18399
18522
  {
18400
18523
  "name": "disabled",
@@ -18535,11 +18658,11 @@
18535
18658
  }
18536
18659
  ],
18537
18660
  "superclass": {
18538
- "name": "ListItem",
18539
- "module": "/src/components/listitem/listitem.component"
18661
+ "name": "MenuItem",
18662
+ "module": "/src/components/menuitem/menuitem.component"
18540
18663
  },
18541
- "tagName": "mdc-menuitem",
18542
- "jsDoc": "/**\n * menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\n * A menu item can contain an icon on the leading or trailing side.\n *\n * The leading and trailing slots can be used to display controls and text.<br/>\n * Based on the leading/trailing slot, the position of the controls and text can be adjusted.\n *\n * Please use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\n * For example mdc-menupopover or mdc-menubar.\n *\n * Menu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-tooltip\n *\n * @tagname mdc-menuitem\n *\n * @slot leading-controls - slot for menu item controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item primary label.\n * @slot leading-text-secondary-label - slot for menu item secondary label.\n * @slot leading-text-tertiary-label - slot for menu item tertiary label.\n * @slot trailing-text-side-header - slot for menu item side header text.\n * @slot trailing-text-subline - slot for menu item subline text.\n * @slot trailing-controls - slot for menu item controls to appear of trailing end.\n *\n * @event click - (React: onClick) This event is dispatched when the menuitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the menuitem.\n * @event focus - (React: onFocus) This event is dispatched when the menuitem receives focus.\n */",
18664
+ "tagName": "mdc-menuitemcheckbox",
18665
+ "jsDoc": "/**\n * A menuitemcheckbox component is a checkable menuitem.\n * There should be no focusable descendants inside this menuitemcheckbox component.\n *\n * The `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n *\n * Menu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * The `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\n * By default, the `indicator` is set to <b>checkbox</b>.<br/>\n *\n * The checkbox will always be positioned on the leading side of the menuitem label and\n * the toggle and checkmark will always be positioned on the trailing side.\n *\n * The checkbox will have the possible states of `true` or `false`.\n * If the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\n * then the checkmark will be displayed. if not, then no indicator will be displayed.\n *\n * The forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\n * It is intended to be used for customised menu items where the indicator is implemented differently.\n * For example, you can use a custom icon or a different visual element to indicate the state of the menu item.\n * Make sure the new indicator is accessible.\n *\n * If you want only one item in a group to be checked, consider using menuitemradio component.\n *\n * @dependency mdc-staticcheckbox\n * @dependency mdc-statictoggle\n * @dependency mdc-icon\n *\n * @tagname mdc-menuitemcheckbox\n *\n * @slot leading-controls - slot for menu item checkbox controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item checkbox primary label.\n * @slot leading-text-secondary-label - slot for menu item checkbox secondary label.\n * @slot leading-text-tertiary-label - slot for menu item checkbox tertiary label.\n * @slot trailing-text-side-header - slot for menu item checkbox side header text.\n * @slot trailing-text-subline - slot for menu item checkbox subline text.\n * @slot trailing-controls - slot for menu item checkbox controls to appear of trailing end.\n *\n * @event change - (React: onChange) This event is dispatched when the menuitemcheckbox changes.\n * @event click - (React: onClick) This event is dispatched when the menuitemcheckbox is clicked.\n * @event focus - (React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.\n */",
18543
18666
  "customElement": true,
18544
18667
  "cssProperties": [
18545
18668
  {
@@ -18614,23 +18737,23 @@
18614
18737
  "kind": "js",
18615
18738
  "name": "default",
18616
18739
  "declaration": {
18617
- "name": "MenuItem",
18618
- "module": "components/menuitem/menuitem.component.js"
18740
+ "name": "MenuItemCheckbox",
18741
+ "module": "components/menuitemcheckbox/menuitemcheckbox.component.js"
18619
18742
  }
18620
18743
  }
18621
18744
  ]
18622
18745
  },
18623
18746
  {
18624
18747
  "kind": "javascript-module",
18625
- "path": "components/menuitemcheckbox/menuitemcheckbox.component.js",
18748
+ "path": "components/menuitem/menuitem.component.js",
18626
18749
  "declarations": [
18627
18750
  {
18628
18751
  "kind": "class",
18629
- "description": "A menuitemcheckbox component is a checkable menuitem.\nThere should be no focusable descendants inside this menuitemcheckbox component.\n\nThe `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n\nMenu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n\nThe `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\nBy default, the `indicator` is set to <b>checkbox</b>.<br/>\n\nThe checkbox will always be positioned on the leading side of the menuitem label and\nthe toggle and checkmark will always be positioned on the trailing side.\n\nThe checkbox will have the possible states of `true` or `false`.\nIf the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\nthen the checkmark will be displayed. if not, then no indicator will be displayed.\n\nThe forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\nIt is intended to be used for customised menu items where the indicator is implemented differently.\nFor example, you can use a custom icon or a different visual element to indicate the state of the menu item.\nMake sure the new indicator is accessible.\n\nIf you want only one item in a group to be checked, consider using menuitemradio component.",
18630
- "name": "MenuItemCheckbox",
18752
+ "description": "menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\nA menu item can contain an icon on the leading or trailing side.\n\nThe leading and trailing slots can be used to display controls and text.<br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted.\n\nPlease use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\nFor example mdc-menupopover or mdc-menubar.\n\nMenu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.",
18753
+ "name": "MenuItem",
18631
18754
  "slots": [
18632
18755
  {
18633
- "description": "slot for menu item checkbox controls to appear of leading end.",
18756
+ "description": "slot for menu item controls to appear of leading end.",
18634
18757
  "name": "leading-controls",
18635
18758
  "inheritedFrom": {
18636
18759
  "name": "ListItem",
@@ -18638,7 +18761,7 @@
18638
18761
  }
18639
18762
  },
18640
18763
  {
18641
- "description": "slot for menu item checkbox primary label.",
18764
+ "description": "slot for menu item primary label.",
18642
18765
  "name": "leading-text-primary-label",
18643
18766
  "inheritedFrom": {
18644
18767
  "name": "ListItem",
@@ -18646,7 +18769,7 @@
18646
18769
  }
18647
18770
  },
18648
18771
  {
18649
- "description": "slot for menu item checkbox secondary label.",
18772
+ "description": "slot for menu item secondary label.",
18650
18773
  "name": "leading-text-secondary-label",
18651
18774
  "inheritedFrom": {
18652
18775
  "name": "ListItem",
@@ -18654,7 +18777,7 @@
18654
18777
  }
18655
18778
  },
18656
18779
  {
18657
- "description": "slot for menu item checkbox tertiary label.",
18780
+ "description": "slot for menu item tertiary label.",
18658
18781
  "name": "leading-text-tertiary-label",
18659
18782
  "inheritedFrom": {
18660
18783
  "name": "ListItem",
@@ -18662,7 +18785,7 @@
18662
18785
  }
18663
18786
  },
18664
18787
  {
18665
- "description": "slot for menu item checkbox side header text.",
18788
+ "description": "slot for menu item side header text.",
18666
18789
  "name": "trailing-text-side-header",
18667
18790
  "inheritedFrom": {
18668
18791
  "name": "ListItem",
@@ -18670,7 +18793,7 @@
18670
18793
  }
18671
18794
  },
18672
18795
  {
18673
- "description": "slot for menu item checkbox subline text.",
18796
+ "description": "slot for menu item subline text.",
18674
18797
  "name": "trailing-text-subline",
18675
18798
  "inheritedFrom": {
18676
18799
  "name": "ListItem",
@@ -18678,7 +18801,7 @@
18678
18801
  }
18679
18802
  },
18680
18803
  {
18681
- "description": "slot for menu item checkbox controls to appear of trailing end.",
18804
+ "description": "slot for menu item controls to appear of trailing end.",
18682
18805
  "name": "trailing-controls",
18683
18806
  "inheritedFrom": {
18684
18807
  "name": "ListItem",
@@ -18687,67 +18810,6 @@
18687
18810
  }
18688
18811
  ],
18689
18812
  "members": [
18690
- {
18691
- "kind": "field",
18692
- "name": "checked",
18693
- "type": {
18694
- "text": "boolean"
18695
- },
18696
- "default": "false",
18697
- "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
18698
- "attribute": "checked",
18699
- "reflects": true
18700
- },
18701
- {
18702
- "kind": "field",
18703
- "name": "indicator",
18704
- "type": {
18705
- "text": "Indicator"
18706
- },
18707
- "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
18708
- "default": "'checkbox'",
18709
- "attribute": "indicator",
18710
- "reflects": true
18711
- },
18712
- {
18713
- "kind": "method",
18714
- "name": "handleMouseClick",
18715
- "privacy": "private",
18716
- "description": "Handles click events to toggle checked state\nIf the menuitemcheckbox is disabled, it does nothing.\nIf the menuitemcheckbox is not disabled, it toggles the `checked` state between `true` and `false`."
18717
- },
18718
- {
18719
- "kind": "method",
18720
- "name": "staticCheckbox",
18721
- "privacy": "private",
18722
- "return": {
18723
- "type": {
18724
- "text": ""
18725
- }
18726
- },
18727
- "description": "Returns a static checkbox element if the indicator is set to checkbox.\nIf the indicator is not set to checkbox, it returns nothing."
18728
- },
18729
- {
18730
- "kind": "method",
18731
- "name": "staticToggle",
18732
- "privacy": "private",
18733
- "return": {
18734
- "type": {
18735
- "text": ""
18736
- }
18737
- },
18738
- "description": "Returns a static toggle element if the indicator is set to toggle.\nIf the indicator is not set to toggle, it returns nothing.\n\nThe toggle will always be positioned on the trailing side of the menuitem label."
18739
- },
18740
- {
18741
- "kind": "method",
18742
- "name": "getCheckmarkIcon",
18743
- "privacy": "private",
18744
- "return": {
18745
- "type": {
18746
- "text": ""
18747
- }
18748
- },
18749
- "description": "Returns a checkmark icon if the indicator is set to checkmark and the checked state is true.\nIf the indicator is not set to checkmark or the checked state is false, it returns nothing.\n\nThe checkmark icon will always be positioned on the trailing side of the menuitem label."
18750
- },
18751
18813
  {
18752
18814
  "kind": "field",
18753
18815
  "name": "arrowPosition",
@@ -18756,11 +18818,7 @@
18756
18818
  },
18757
18819
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
18758
18820
  "attribute": "arrow-position",
18759
- "reflects": true,
18760
- "inheritedFrom": {
18761
- "name": "MenuItem",
18762
- "module": "components/menuitem/menuitem.component.js"
18763
- }
18821
+ "reflects": true
18764
18822
  },
18765
18823
  {
18766
18824
  "kind": "field",
@@ -18770,11 +18828,7 @@
18770
18828
  },
18771
18829
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
18772
18830
  "attribute": "arrow-direction",
18773
- "reflects": true,
18774
- "inheritedFrom": {
18775
- "name": "MenuItem",
18776
- "module": "components/menuitem/menuitem.component.js"
18777
- }
18831
+ "reflects": true
18778
18832
  },
18779
18833
  {
18780
18834
  "kind": "field",
@@ -18785,11 +18839,7 @@
18785
18839
  "default": "undefined",
18786
18840
  "description": "The name attribute is used to identify the menu item when it is selected.",
18787
18841
  "attribute": "name",
18788
- "reflects": true,
18789
- "inheritedFrom": {
18790
- "name": "MenuItem",
18791
- "module": "components/menuitem/menuitem.component.js"
18792
- }
18842
+ "reflects": true
18793
18843
  },
18794
18844
  {
18795
18845
  "kind": "field",
@@ -18800,11 +18850,7 @@
18800
18850
  "default": "undefined",
18801
18851
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
18802
18852
  "attribute": "value",
18803
- "reflects": true,
18804
- "inheritedFrom": {
18805
- "name": "MenuItem",
18806
- "module": "components/menuitem/menuitem.component.js"
18807
- }
18853
+ "reflects": true
18808
18854
  },
18809
18855
  {
18810
18856
  "kind": "method",
@@ -18848,11 +18894,7 @@
18848
18894
  "description": "The keyboard event that triggered the action."
18849
18895
  }
18850
18896
  ],
18851
- "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event.",
18852
- "inheritedFrom": {
18853
- "name": "MenuItem",
18854
- "module": "components/menuitem/menuitem.component.js"
18855
- }
18897
+ "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event."
18856
18898
  },
18857
18899
  {
18858
18900
  "kind": "method",
@@ -19189,15 +19231,7 @@
19189
19231
  ],
19190
19232
  "events": [
19191
19233
  {
19192
- "name": "change",
19193
- "type": {
19194
- "text": "Event"
19195
- },
19196
- "description": "(React: onChange) This event is dispatched when the menuitemcheckbox changes.",
19197
- "reactName": "onChange"
19198
- },
19199
- {
19200
- "description": "(React: onClick) This event is dispatched when the menuitemcheckbox is clicked.",
19234
+ "description": "(React: onClick) This event is dispatched when the menuitem is clicked.",
19201
19235
  "name": "click",
19202
19236
  "reactName": "onClick",
19203
19237
  "inheritedFrom": {
@@ -19205,15 +19239,6 @@
19205
19239
  "module": "src/components/listitem/listitem.component.ts"
19206
19240
  }
19207
19241
  },
19208
- {
19209
- "description": "(React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.",
19210
- "name": "focus",
19211
- "reactName": "onFocus",
19212
- "inheritedFrom": {
19213
- "name": "ListItem",
19214
- "module": "src/components/listitem/listitem.component.ts"
19215
- }
19216
- },
19217
19242
  {
19218
19243
  "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.",
19219
19244
  "name": "keydown",
@@ -19232,6 +19257,15 @@
19232
19257
  "module": "src/components/listitem/listitem.component.ts"
19233
19258
  }
19234
19259
  },
19260
+ {
19261
+ "description": "(React: onFocus) This event is dispatched when the menuitem receives focus.",
19262
+ "name": "focus",
19263
+ "reactName": "onFocus",
19264
+ "inheritedFrom": {
19265
+ "name": "ListItem",
19266
+ "module": "src/components/listitem/listitem.component.ts"
19267
+ }
19268
+ },
19235
19269
  {
19236
19270
  "description": "(React: onEnabled) This event is dispatched after the listitem is enabled",
19237
19271
  "name": "enabled",
@@ -19270,35 +19304,13 @@
19270
19304
  }
19271
19305
  ],
19272
19306
  "attributes": [
19273
- {
19274
- "name": "checked",
19275
- "type": {
19276
- "text": "boolean"
19277
- },
19278
- "default": "false",
19279
- "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
19280
- "fieldName": "checked"
19281
- },
19282
- {
19283
- "name": "indicator",
19284
- "type": {
19285
- "text": "Indicator"
19286
- },
19287
- "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
19288
- "default": "'checkbox'",
19289
- "fieldName": "indicator"
19290
- },
19291
19307
  {
19292
19308
  "name": "arrow-position",
19293
19309
  "type": {
19294
19310
  "text": "ArrowPositions | undefined"
19295
19311
  },
19296
19312
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
19297
- "fieldName": "arrowPosition",
19298
- "inheritedFrom": {
19299
- "name": "MenuItem",
19300
- "module": "src/components/menuitem/menuitem.component.ts"
19301
- }
19313
+ "fieldName": "arrowPosition"
19302
19314
  },
19303
19315
  {
19304
19316
  "name": "arrow-direction",
@@ -19306,11 +19318,7 @@
19306
19318
  "text": "ArrowDirections | undefined"
19307
19319
  },
19308
19320
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
19309
- "fieldName": "arrowDirection",
19310
- "inheritedFrom": {
19311
- "name": "MenuItem",
19312
- "module": "src/components/menuitem/menuitem.component.ts"
19313
- }
19321
+ "fieldName": "arrowDirection"
19314
19322
  },
19315
19323
  {
19316
19324
  "name": "name",
@@ -19319,11 +19327,7 @@
19319
19327
  },
19320
19328
  "default": "undefined",
19321
19329
  "description": "The name attribute is used to identify the menu item when it is selected.",
19322
- "fieldName": "name",
19323
- "inheritedFrom": {
19324
- "name": "MenuItem",
19325
- "module": "src/components/menuitem/menuitem.component.ts"
19326
- }
19330
+ "fieldName": "name"
19327
19331
  },
19328
19332
  {
19329
19333
  "name": "value",
@@ -19332,11 +19336,7 @@
19332
19336
  },
19333
19337
  "default": "undefined",
19334
19338
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
19335
- "fieldName": "value",
19336
- "inheritedFrom": {
19337
- "name": "MenuItem",
19338
- "module": "src/components/menuitem/menuitem.component.ts"
19339
- }
19339
+ "fieldName": "value"
19340
19340
  },
19341
19341
  {
19342
19342
  "name": "disabled",
@@ -19477,11 +19477,11 @@
19477
19477
  }
19478
19478
  ],
19479
19479
  "superclass": {
19480
- "name": "MenuItem",
19481
- "module": "/src/components/menuitem/menuitem.component"
19480
+ "name": "ListItem",
19481
+ "module": "/src/components/listitem/listitem.component"
19482
19482
  },
19483
- "tagName": "mdc-menuitemcheckbox",
19484
- "jsDoc": "/**\n * A menuitemcheckbox component is a checkable menuitem.\n * There should be no focusable descendants inside this menuitemcheckbox component.\n *\n * The `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n *\n * Menu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * The `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\n * By default, the `indicator` is set to <b>checkbox</b>.<br/>\n *\n * The checkbox will always be positioned on the leading side of the menuitem label and\n * the toggle and checkmark will always be positioned on the trailing side.\n *\n * The checkbox will have the possible states of `true` or `false`.\n * If the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\n * then the checkmark will be displayed. if not, then no indicator will be displayed.\n *\n * The forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\n * It is intended to be used for customised menu items where the indicator is implemented differently.\n * For example, you can use a custom icon or a different visual element to indicate the state of the menu item.\n * Make sure the new indicator is accessible.\n *\n * If you want only one item in a group to be checked, consider using menuitemradio component.\n *\n * @dependency mdc-staticcheckbox\n * @dependency mdc-statictoggle\n * @dependency mdc-icon\n *\n * @tagname mdc-menuitemcheckbox\n *\n * @slot leading-controls - slot for menu item checkbox controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item checkbox primary label.\n * @slot leading-text-secondary-label - slot for menu item checkbox secondary label.\n * @slot leading-text-tertiary-label - slot for menu item checkbox tertiary label.\n * @slot trailing-text-side-header - slot for menu item checkbox side header text.\n * @slot trailing-text-subline - slot for menu item checkbox subline text.\n * @slot trailing-controls - slot for menu item checkbox controls to appear of trailing end.\n *\n * @event change - (React: onChange) This event is dispatched when the menuitemcheckbox changes.\n * @event click - (React: onClick) This event is dispatched when the menuitemcheckbox is clicked.\n * @event focus - (React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.\n */",
19483
+ "tagName": "mdc-menuitem",
19484
+ "jsDoc": "/**\n * menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\n * A menu item can contain an icon on the leading or trailing side.\n *\n * The leading and trailing slots can be used to display controls and text.<br/>\n * Based on the leading/trailing slot, the position of the controls and text can be adjusted.\n *\n * Please use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\n * For example mdc-menupopover or mdc-menubar.\n *\n * Menu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-tooltip\n *\n * @tagname mdc-menuitem\n *\n * @slot leading-controls - slot for menu item controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item primary label.\n * @slot leading-text-secondary-label - slot for menu item secondary label.\n * @slot leading-text-tertiary-label - slot for menu item tertiary label.\n * @slot trailing-text-side-header - slot for menu item side header text.\n * @slot trailing-text-subline - slot for menu item subline text.\n * @slot trailing-controls - slot for menu item controls to appear of trailing end.\n *\n * @event click - (React: onClick) This event is dispatched when the menuitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the menuitem.\n * @event focus - (React: onFocus) This event is dispatched when the menuitem receives focus.\n */",
19485
19485
  "customElement": true,
19486
19486
  "cssProperties": [
19487
19487
  {
@@ -19556,8 +19556,8 @@
19556
19556
  "kind": "js",
19557
19557
  "name": "default",
19558
19558
  "declaration": {
19559
- "name": "MenuItemCheckbox",
19560
- "module": "components/menuitemcheckbox/menuitemcheckbox.component.js"
19559
+ "name": "MenuItem",
19560
+ "module": "components/menuitem/menuitem.component.js"
19561
19561
  }
19562
19562
  }
19563
19563
  ]
@@ -20515,6 +20515,147 @@
20515
20515
  }
20516
20516
  ]
20517
20517
  },
20518
+ {
20519
+ "kind": "javascript-module",
20520
+ "path": "components/menusection/menusection.component.js",
20521
+ "declarations": [
20522
+ {
20523
+ "kind": "class",
20524
+ "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.",
20525
+ "name": "MenuSection",
20526
+ "slots": [
20527
+ {
20528
+ "description": "Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`",
20529
+ "name": ""
20530
+ }
20531
+ ],
20532
+ "members": [
20533
+ {
20534
+ "kind": "field",
20535
+ "name": "ariaLabel",
20536
+ "type": {
20537
+ "text": "string | null"
20538
+ },
20539
+ "default": "null",
20540
+ "description": "The aria-label for the section.\nThis is used for accessibility purposes to describe the section.\nIf not provided, it defaults to the `headerText`.",
20541
+ "attribute": "aria-label",
20542
+ "reflects": true
20543
+ },
20544
+ {
20545
+ "kind": "field",
20546
+ "name": "headerText",
20547
+ "type": {
20548
+ "text": "string | null"
20549
+ },
20550
+ "default": "null",
20551
+ "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
20552
+ "attribute": "header-text",
20553
+ "reflects": true
20554
+ },
20555
+ {
20556
+ "kind": "field",
20557
+ "name": "prefixIcon",
20558
+ "type": {
20559
+ "text": "IconNames | undefined"
20560
+ },
20561
+ "description": "Name of the icon rendered before the text\n\nIf not provided, no icon will be rendered and text will be aligned to the start.",
20562
+ "attribute": "prefix-icon"
20563
+ },
20564
+ {
20565
+ "kind": "field",
20566
+ "name": "showDivider",
20567
+ "type": {
20568
+ "text": "boolean"
20569
+ },
20570
+ "default": "false",
20571
+ "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
20572
+ "attribute": "show-divider",
20573
+ "reflects": true
20574
+ },
20575
+ {
20576
+ "kind": "field",
20577
+ "name": "dividerVariant",
20578
+ "description": "The variant of the divider.\nCan be set to 'solid' or 'gradient'.\n\nKeep 'solid' if used in MenuPopovers, as it is the default style.",
20579
+ "default": "'solid'",
20580
+ "attribute": "divider-variant",
20581
+ "reflects": true
20582
+ },
20583
+ {
20584
+ "kind": "method",
20585
+ "name": "renderHeader",
20586
+ "privacy": "private"
20587
+ }
20588
+ ],
20589
+ "events": [
20590
+ {
20591
+ "description": "(React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.",
20592
+ "name": "change",
20593
+ "reactName": "onChange"
20594
+ }
20595
+ ],
20596
+ "attributes": [
20597
+ {
20598
+ "name": "aria-label",
20599
+ "type": {
20600
+ "text": "string | null"
20601
+ },
20602
+ "default": "null",
20603
+ "description": "The aria-label for the section.\nThis is used for accessibility purposes to describe the section.\nIf not provided, it defaults to the `headerText`.",
20604
+ "fieldName": "ariaLabel"
20605
+ },
20606
+ {
20607
+ "name": "header-text",
20608
+ "type": {
20609
+ "text": "string | null"
20610
+ },
20611
+ "default": "null",
20612
+ "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
20613
+ "fieldName": "headerText"
20614
+ },
20615
+ {
20616
+ "name": "prefix-icon",
20617
+ "type": {
20618
+ "text": "IconNames | undefined"
20619
+ },
20620
+ "description": "Name of the icon rendered before the text\n\nIf not provided, no icon will be rendered and text will be aligned to the start.",
20621
+ "fieldName": "prefixIcon"
20622
+ },
20623
+ {
20624
+ "name": "show-divider",
20625
+ "type": {
20626
+ "text": "boolean"
20627
+ },
20628
+ "default": "false",
20629
+ "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
20630
+ "fieldName": "showDivider"
20631
+ },
20632
+ {
20633
+ "name": "divider-variant",
20634
+ "description": "The variant of the divider.\nCan be set to 'solid' or 'gradient'.\n\nKeep 'solid' if used in MenuPopovers, as it is the default style.",
20635
+ "default": "'solid'",
20636
+ "fieldName": "dividerVariant"
20637
+ }
20638
+ ],
20639
+ "superclass": {
20640
+ "name": "Component",
20641
+ "module": "/src/models"
20642
+ },
20643
+ "tagName": "mdc-menusection",
20644
+ "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 */",
20645
+ "customElement": true
20646
+ }
20647
+ ],
20648
+ "exports": [
20649
+ {
20650
+ "kind": "js",
20651
+ "name": "default",
20652
+ "declaration": {
20653
+ "name": "MenuSection",
20654
+ "module": "components/menusection/menusection.component.js"
20655
+ }
20656
+ }
20657
+ ]
20658
+ },
20518
20659
  {
20519
20660
  "kind": "javascript-module",
20520
20661
  "path": "components/menupopover/menupopover.component.js",
@@ -22659,147 +22800,6 @@
22659
22800
  }
22660
22801
  ]
22661
22802
  },
22662
- {
22663
- "kind": "javascript-module",
22664
- "path": "components/menusection/menusection.component.js",
22665
- "declarations": [
22666
- {
22667
- "kind": "class",
22668
- "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.",
22669
- "name": "MenuSection",
22670
- "slots": [
22671
- {
22672
- "description": "Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`",
22673
- "name": ""
22674
- }
22675
- ],
22676
- "members": [
22677
- {
22678
- "kind": "field",
22679
- "name": "ariaLabel",
22680
- "type": {
22681
- "text": "string | null"
22682
- },
22683
- "default": "null",
22684
- "description": "The aria-label for the section.\nThis is used for accessibility purposes to describe the section.\nIf not provided, it defaults to the `headerText`.",
22685
- "attribute": "aria-label",
22686
- "reflects": true
22687
- },
22688
- {
22689
- "kind": "field",
22690
- "name": "headerText",
22691
- "type": {
22692
- "text": "string | null"
22693
- },
22694
- "default": "null",
22695
- "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
22696
- "attribute": "header-text",
22697
- "reflects": true
22698
- },
22699
- {
22700
- "kind": "field",
22701
- "name": "prefixIcon",
22702
- "type": {
22703
- "text": "IconNames | undefined"
22704
- },
22705
- "description": "Name of the icon rendered before the text\n\nIf not provided, no icon will be rendered and text will be aligned to the start.",
22706
- "attribute": "prefix-icon"
22707
- },
22708
- {
22709
- "kind": "field",
22710
- "name": "showDivider",
22711
- "type": {
22712
- "text": "boolean"
22713
- },
22714
- "default": "false",
22715
- "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
22716
- "attribute": "show-divider",
22717
- "reflects": true
22718
- },
22719
- {
22720
- "kind": "field",
22721
- "name": "dividerVariant",
22722
- "description": "The variant of the divider.\nCan be set to 'solid' or 'gradient'.\n\nKeep 'solid' if used in MenuPopovers, as it is the default style.",
22723
- "default": "'solid'",
22724
- "attribute": "divider-variant",
22725
- "reflects": true
22726
- },
22727
- {
22728
- "kind": "method",
22729
- "name": "renderHeader",
22730
- "privacy": "private"
22731
- }
22732
- ],
22733
- "events": [
22734
- {
22735
- "description": "(React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.",
22736
- "name": "change",
22737
- "reactName": "onChange"
22738
- }
22739
- ],
22740
- "attributes": [
22741
- {
22742
- "name": "aria-label",
22743
- "type": {
22744
- "text": "string | null"
22745
- },
22746
- "default": "null",
22747
- "description": "The aria-label for the section.\nThis is used for accessibility purposes to describe the section.\nIf not provided, it defaults to the `headerText`.",
22748
- "fieldName": "ariaLabel"
22749
- },
22750
- {
22751
- "name": "header-text",
22752
- "type": {
22753
- "text": "string | null"
22754
- },
22755
- "default": "null",
22756
- "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
22757
- "fieldName": "headerText"
22758
- },
22759
- {
22760
- "name": "prefix-icon",
22761
- "type": {
22762
- "text": "IconNames | undefined"
22763
- },
22764
- "description": "Name of the icon rendered before the text\n\nIf not provided, no icon will be rendered and text will be aligned to the start.",
22765
- "fieldName": "prefixIcon"
22766
- },
22767
- {
22768
- "name": "show-divider",
22769
- "type": {
22770
- "text": "boolean"
22771
- },
22772
- "default": "false",
22773
- "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
22774
- "fieldName": "showDivider"
22775
- },
22776
- {
22777
- "name": "divider-variant",
22778
- "description": "The variant of the divider.\nCan be set to 'solid' or 'gradient'.\n\nKeep 'solid' if used in MenuPopovers, as it is the default style.",
22779
- "default": "'solid'",
22780
- "fieldName": "dividerVariant"
22781
- }
22782
- ],
22783
- "superclass": {
22784
- "name": "Component",
22785
- "module": "/src/models"
22786
- },
22787
- "tagName": "mdc-menusection",
22788
- "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 */",
22789
- "customElement": true
22790
- }
22791
- ],
22792
- "exports": [
22793
- {
22794
- "kind": "js",
22795
- "name": "default",
22796
- "declaration": {
22797
- "name": "MenuSection",
22798
- "module": "components/menusection/menusection.component.js"
22799
- }
22800
- }
22801
- ]
22802
- },
22803
22803
  {
22804
22804
  "kind": "javascript-module",
22805
22805
  "path": "components/navmenuitem/navmenuitem.component.js",
@@ -33293,180 +33293,6 @@
33293
33293
  }
33294
33294
  ]
33295
33295
  },
33296
- {
33297
- "kind": "javascript-module",
33298
- "path": "components/statictoggle/statictoggle.component.js",
33299
- "declarations": [
33300
- {
33301
- "kind": "class",
33302
- "description": "This is a decorative component that is styled to look as a toggle. <br/>\nIt has 3 properties - checked, size and disabled. <br/>\nWe are using the same styling that has been created for the `mdc-toggle` component.",
33303
- "name": "StaticToggle",
33304
- "cssProperties": [
33305
- {
33306
- "description": "Width of the toggle",
33307
- "name": "--mdc-statictoggle-width"
33308
- },
33309
- {
33310
- "description": "Height of the toggle",
33311
- "name": "--mdc-statictoggle-height"
33312
- },
33313
- {
33314
- "description": "Width of the toggle when it's size is compact",
33315
- "name": "--mdc-statictoggle-width-compact"
33316
- },
33317
- {
33318
- "description": "Height of the toggle when it's size is compact",
33319
- "name": "--mdc-statictoggle-height-compact"
33320
- },
33321
- {
33322
- "description": "Border radius of the toggle",
33323
- "name": "--mdc-statictoggle-border-radius"
33324
- },
33325
- {
33326
- "description": "Border radius of the toggle when it's size is compact",
33327
- "name": "--mdc-statictoggle-border-radius-compact"
33328
- },
33329
- {
33330
- "description": "Border of the toggle",
33331
- "name": "--mdc-statictoggle-border"
33332
- },
33333
- {
33334
- "description": "Background color of the inactive toggle in rest state",
33335
- "name": "--mdc-statictoggle-inactive-rest-color"
33336
- },
33337
- {
33338
- "description": "Background color of the inactive toggle in disabled state",
33339
- "name": "--mdc-statictoggle-inactive-disabled-color"
33340
- },
33341
- {
33342
- "description": "Background color of the active toggle in rest state",
33343
- "name": "--mdc-statictoggle-active-rest-color"
33344
- },
33345
- {
33346
- "description": "Background color of the active toggle in disabled state",
33347
- "name": "--mdc-statictoggle-active-disabled-color"
33348
- },
33349
- {
33350
- "description": "Color of the icon in normal state",
33351
- "name": "--mdc-statictoggle-icon-color-normal"
33352
- },
33353
- {
33354
- "description": "Color of the icon in disabled state",
33355
- "name": "--mdc-statictoggle-icon-color-disabled"
33356
- },
33357
- {
33358
- "description": "Background color of the icon in normal state",
33359
- "name": "--mdc-statictoggle-icon-background-color-normal"
33360
- },
33361
- {
33362
- "description": "Background color of the icon in disabled state",
33363
- "name": "--mdc-statictoggle-icon-background-color-disabled"
33364
- }
33365
- ],
33366
- "slots": [
33367
- {
33368
- "description": "This is a default/unnamed slot",
33369
- "name": "default"
33370
- }
33371
- ],
33372
- "members": [
33373
- {
33374
- "kind": "field",
33375
- "name": "checked",
33376
- "type": {
33377
- "text": "boolean"
33378
- },
33379
- "default": "false",
33380
- "description": "Determines whether the toggle is active or inactive.",
33381
- "attribute": "checked",
33382
- "reflects": true
33383
- },
33384
- {
33385
- "kind": "field",
33386
- "name": "size",
33387
- "type": {
33388
- "text": "ToggleSize"
33389
- },
33390
- "description": "Determines toggle size in rem (height is specified here).\n- **Default**: 1.5\n- **Compact**: 1",
33391
- "default": "default",
33392
- "attribute": "size",
33393
- "reflects": true
33394
- },
33395
- {
33396
- "kind": "field",
33397
- "name": "disabled",
33398
- "type": {
33399
- "text": "boolean | undefined"
33400
- },
33401
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
33402
- "default": "undefined",
33403
- "attribute": "disabled",
33404
- "reflects": true,
33405
- "inheritedFrom": {
33406
- "name": "DisabledMixin",
33407
- "module": "utils/mixins/DisabledMixin.js"
33408
- }
33409
- }
33410
- ],
33411
- "attributes": [
33412
- {
33413
- "name": "checked",
33414
- "type": {
33415
- "text": "boolean"
33416
- },
33417
- "default": "false",
33418
- "description": "Determines whether the toggle is active or inactive.",
33419
- "fieldName": "checked"
33420
- },
33421
- {
33422
- "name": "size",
33423
- "type": {
33424
- "text": "ToggleSize"
33425
- },
33426
- "description": "Determines toggle size in rem (height is specified here).\n- **Default**: 1.5\n- **Compact**: 1",
33427
- "default": "default",
33428
- "fieldName": "size"
33429
- },
33430
- {
33431
- "name": "disabled",
33432
- "type": {
33433
- "text": "boolean | undefined"
33434
- },
33435
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
33436
- "default": "undefined",
33437
- "fieldName": "disabled",
33438
- "inheritedFrom": {
33439
- "name": "DisabledMixin",
33440
- "module": "src/utils/mixins/DisabledMixin.ts"
33441
- }
33442
- }
33443
- ],
33444
- "mixins": [
33445
- {
33446
- "name": "DisabledMixin",
33447
- "module": "/src/utils/mixins/DisabledMixin"
33448
- }
33449
- ],
33450
- "superclass": {
33451
- "name": "Component",
33452
- "module": "/src/models"
33453
- },
33454
- "tagName": "mdc-statictoggle",
33455
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 3 properties - checked, size and disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n */",
33456
- "customElement": true
33457
- }
33458
- ],
33459
- "exports": [
33460
- {
33461
- "kind": "js",
33462
- "name": "default",
33463
- "declaration": {
33464
- "name": "StaticToggle",
33465
- "module": "components/statictoggle/statictoggle.component.js"
33466
- }
33467
- }
33468
- ]
33469
- },
33470
33296
  {
33471
33297
  "kind": "javascript-module",
33472
33298
  "path": "components/stepper/stepper.component.js",
@@ -33652,6 +33478,180 @@
33652
33478
  }
33653
33479
  ]
33654
33480
  },
33481
+ {
33482
+ "kind": "javascript-module",
33483
+ "path": "components/statictoggle/statictoggle.component.js",
33484
+ "declarations": [
33485
+ {
33486
+ "kind": "class",
33487
+ "description": "This is a decorative component that is styled to look as a toggle. <br/>\nIt has 3 properties - checked, size and disabled. <br/>\nWe are using the same styling that has been created for the `mdc-toggle` component.",
33488
+ "name": "StaticToggle",
33489
+ "cssProperties": [
33490
+ {
33491
+ "description": "Width of the toggle",
33492
+ "name": "--mdc-statictoggle-width"
33493
+ },
33494
+ {
33495
+ "description": "Height of the toggle",
33496
+ "name": "--mdc-statictoggle-height"
33497
+ },
33498
+ {
33499
+ "description": "Width of the toggle when it's size is compact",
33500
+ "name": "--mdc-statictoggle-width-compact"
33501
+ },
33502
+ {
33503
+ "description": "Height of the toggle when it's size is compact",
33504
+ "name": "--mdc-statictoggle-height-compact"
33505
+ },
33506
+ {
33507
+ "description": "Border radius of the toggle",
33508
+ "name": "--mdc-statictoggle-border-radius"
33509
+ },
33510
+ {
33511
+ "description": "Border radius of the toggle when it's size is compact",
33512
+ "name": "--mdc-statictoggle-border-radius-compact"
33513
+ },
33514
+ {
33515
+ "description": "Border of the toggle",
33516
+ "name": "--mdc-statictoggle-border"
33517
+ },
33518
+ {
33519
+ "description": "Background color of the inactive toggle in rest state",
33520
+ "name": "--mdc-statictoggle-inactive-rest-color"
33521
+ },
33522
+ {
33523
+ "description": "Background color of the inactive toggle in disabled state",
33524
+ "name": "--mdc-statictoggle-inactive-disabled-color"
33525
+ },
33526
+ {
33527
+ "description": "Background color of the active toggle in rest state",
33528
+ "name": "--mdc-statictoggle-active-rest-color"
33529
+ },
33530
+ {
33531
+ "description": "Background color of the active toggle in disabled state",
33532
+ "name": "--mdc-statictoggle-active-disabled-color"
33533
+ },
33534
+ {
33535
+ "description": "Color of the icon in normal state",
33536
+ "name": "--mdc-statictoggle-icon-color-normal"
33537
+ },
33538
+ {
33539
+ "description": "Color of the icon in disabled state",
33540
+ "name": "--mdc-statictoggle-icon-color-disabled"
33541
+ },
33542
+ {
33543
+ "description": "Background color of the icon in normal state",
33544
+ "name": "--mdc-statictoggle-icon-background-color-normal"
33545
+ },
33546
+ {
33547
+ "description": "Background color of the icon in disabled state",
33548
+ "name": "--mdc-statictoggle-icon-background-color-disabled"
33549
+ }
33550
+ ],
33551
+ "slots": [
33552
+ {
33553
+ "description": "This is a default/unnamed slot",
33554
+ "name": "default"
33555
+ }
33556
+ ],
33557
+ "members": [
33558
+ {
33559
+ "kind": "field",
33560
+ "name": "checked",
33561
+ "type": {
33562
+ "text": "boolean"
33563
+ },
33564
+ "default": "false",
33565
+ "description": "Determines whether the toggle is active or inactive.",
33566
+ "attribute": "checked",
33567
+ "reflects": true
33568
+ },
33569
+ {
33570
+ "kind": "field",
33571
+ "name": "size",
33572
+ "type": {
33573
+ "text": "ToggleSize"
33574
+ },
33575
+ "description": "Determines toggle size in rem (height is specified here).\n- **Default**: 1.5\n- **Compact**: 1",
33576
+ "default": "default",
33577
+ "attribute": "size",
33578
+ "reflects": true
33579
+ },
33580
+ {
33581
+ "kind": "field",
33582
+ "name": "disabled",
33583
+ "type": {
33584
+ "text": "boolean | undefined"
33585
+ },
33586
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
33587
+ "default": "undefined",
33588
+ "attribute": "disabled",
33589
+ "reflects": true,
33590
+ "inheritedFrom": {
33591
+ "name": "DisabledMixin",
33592
+ "module": "utils/mixins/DisabledMixin.js"
33593
+ }
33594
+ }
33595
+ ],
33596
+ "attributes": [
33597
+ {
33598
+ "name": "checked",
33599
+ "type": {
33600
+ "text": "boolean"
33601
+ },
33602
+ "default": "false",
33603
+ "description": "Determines whether the toggle is active or inactive.",
33604
+ "fieldName": "checked"
33605
+ },
33606
+ {
33607
+ "name": "size",
33608
+ "type": {
33609
+ "text": "ToggleSize"
33610
+ },
33611
+ "description": "Determines toggle size in rem (height is specified here).\n- **Default**: 1.5\n- **Compact**: 1",
33612
+ "default": "default",
33613
+ "fieldName": "size"
33614
+ },
33615
+ {
33616
+ "name": "disabled",
33617
+ "type": {
33618
+ "text": "boolean | undefined"
33619
+ },
33620
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
33621
+ "default": "undefined",
33622
+ "fieldName": "disabled",
33623
+ "inheritedFrom": {
33624
+ "name": "DisabledMixin",
33625
+ "module": "src/utils/mixins/DisabledMixin.ts"
33626
+ }
33627
+ }
33628
+ ],
33629
+ "mixins": [
33630
+ {
33631
+ "name": "DisabledMixin",
33632
+ "module": "/src/utils/mixins/DisabledMixin"
33633
+ }
33634
+ ],
33635
+ "superclass": {
33636
+ "name": "Component",
33637
+ "module": "/src/models"
33638
+ },
33639
+ "tagName": "mdc-statictoggle",
33640
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 3 properties - checked, size and disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n */",
33641
+ "customElement": true
33642
+ }
33643
+ ],
33644
+ "exports": [
33645
+ {
33646
+ "kind": "js",
33647
+ "name": "default",
33648
+ "declaration": {
33649
+ "name": "StaticToggle",
33650
+ "module": "components/statictoggle/statictoggle.component.js"
33651
+ }
33652
+ }
33653
+ ]
33654
+ },
33655
33655
  {
33656
33656
  "kind": "javascript-module",
33657
33657
  "path": "components/stepperitem/stepperitem.component.js",
@@ -41036,6 +41036,342 @@
41036
41036
  }
41037
41037
  ]
41038
41038
  },
41039
+ {
41040
+ "kind": "javascript-module",
41041
+ "path": "components/typewriter/typewriter.component.js",
41042
+ "declarations": [
41043
+ {
41044
+ "kind": "class",
41045
+ "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
41046
+ "name": "Typewriter",
41047
+ "cssParts": [
41048
+ {
41049
+ "description": "Container for the text element",
41050
+ "name": "container"
41051
+ },
41052
+ {
41053
+ "description": "The text element (forwarded to mdc-text)",
41054
+ "name": "text"
41055
+ }
41056
+ ],
41057
+ "slots": [
41058
+ {
41059
+ "description": "Default slot for text content",
41060
+ "name": ""
41061
+ }
41062
+ ],
41063
+ "members": [
41064
+ {
41065
+ "kind": "field",
41066
+ "name": "type",
41067
+ "type": {
41068
+ "text": "TextType"
41069
+ },
41070
+ "privacy": "public",
41071
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
41072
+ "default": "body-large-regular",
41073
+ "attribute": "type",
41074
+ "reflects": true
41075
+ },
41076
+ {
41077
+ "kind": "field",
41078
+ "name": "tagname",
41079
+ "type": {
41080
+ "text": "TagName | undefined"
41081
+ },
41082
+ "privacy": "public",
41083
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
41084
+ "attribute": "tagname",
41085
+ "reflects": true
41086
+ },
41087
+ {
41088
+ "kind": "field",
41089
+ "name": "speed",
41090
+ "type": {
41091
+ "text": "TypewriterSpeed"
41092
+ },
41093
+ "privacy": "public",
41094
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
41095
+ "default": "'normal' (60ms per character)",
41096
+ "attribute": "speed",
41097
+ "reflects": true
41098
+ },
41099
+ {
41100
+ "kind": "field",
41101
+ "name": "maxQueueSize",
41102
+ "type": {
41103
+ "text": "number"
41104
+ },
41105
+ "privacy": "public",
41106
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
41107
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
41108
+ "attribute": "max-queue-size",
41109
+ "reflects": true
41110
+ },
41111
+ {
41112
+ "kind": "method",
41113
+ "name": "createTimeout",
41114
+ "privacy": "private",
41115
+ "return": {
41116
+ "type": {
41117
+ "text": "number"
41118
+ }
41119
+ },
41120
+ "parameters": [
41121
+ {
41122
+ "name": "callback",
41123
+ "type": {
41124
+ "text": "() => void"
41125
+ }
41126
+ },
41127
+ {
41128
+ "name": "delay",
41129
+ "type": {
41130
+ "text": "number"
41131
+ }
41132
+ }
41133
+ ],
41134
+ "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
41135
+ },
41136
+ {
41137
+ "kind": "method",
41138
+ "name": "clearAllTimeouts",
41139
+ "privacy": "private",
41140
+ "return": {
41141
+ "type": {
41142
+ "text": "void"
41143
+ }
41144
+ },
41145
+ "description": "Clear all pending timeouts"
41146
+ },
41147
+ {
41148
+ "kind": "method",
41149
+ "name": "clearQueue",
41150
+ "privacy": "public",
41151
+ "return": {
41152
+ "type": {
41153
+ "text": "void"
41154
+ }
41155
+ },
41156
+ "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
41157
+ },
41158
+ {
41159
+ "kind": "method",
41160
+ "name": "addTextChunk",
41161
+ "privacy": "public",
41162
+ "return": {
41163
+ "type": {
41164
+ "text": "void"
41165
+ }
41166
+ },
41167
+ "parameters": [
41168
+ {
41169
+ "name": "text",
41170
+ "type": {
41171
+ "text": "string"
41172
+ },
41173
+ "description": "The text to add"
41174
+ },
41175
+ {
41176
+ "name": "speed",
41177
+ "optional": true,
41178
+ "type": {
41179
+ "text": "TypewriterSpeed"
41180
+ },
41181
+ "description": "Optional speed override for this chunk"
41182
+ },
41183
+ {
41184
+ "name": "instant",
41185
+ "optional": true,
41186
+ "type": {
41187
+ "text": "boolean"
41188
+ },
41189
+ "description": "If true, text appears instantly without animation"
41190
+ }
41191
+ ],
41192
+ "description": "Adds a chunk of text to be typed out, optionally with a different speed"
41193
+ },
41194
+ {
41195
+ "kind": "method",
41196
+ "name": "addInstantTextChunk",
41197
+ "privacy": "public",
41198
+ "return": {
41199
+ "type": {
41200
+ "text": "void"
41201
+ }
41202
+ },
41203
+ "parameters": [
41204
+ {
41205
+ "name": "text",
41206
+ "type": {
41207
+ "text": "string"
41208
+ },
41209
+ "description": "The text to add instantly"
41210
+ }
41211
+ ],
41212
+ "description": "Adds a chunk of text instantly without typing animation"
41213
+ },
41214
+ {
41215
+ "kind": "method",
41216
+ "name": "processChunkQueue",
41217
+ "privacy": "private",
41218
+ "return": {
41219
+ "type": {
41220
+ "text": "void"
41221
+ }
41222
+ },
41223
+ "description": "Processes all chunks in the queue"
41224
+ },
41225
+ {
41226
+ "kind": "method",
41227
+ "name": "processNextChunk",
41228
+ "privacy": "private",
41229
+ "return": {
41230
+ "type": {
41231
+ "text": "void"
41232
+ }
41233
+ },
41234
+ "description": "Processes the next chunk in the queue"
41235
+ },
41236
+ {
41237
+ "kind": "method",
41238
+ "name": "getTypingDelayMs",
41239
+ "privacy": "private",
41240
+ "return": {
41241
+ "type": {
41242
+ "text": "number"
41243
+ }
41244
+ },
41245
+ "description": "Gets the typing delay in milliseconds per character"
41246
+ },
41247
+ {
41248
+ "kind": "method",
41249
+ "name": "captureAndProcessContent",
41250
+ "privacy": "private",
41251
+ "return": {
41252
+ "type": {
41253
+ "text": "void"
41254
+ }
41255
+ },
41256
+ "description": "Captures slot content and starts typewriter animation"
41257
+ },
41258
+ {
41259
+ "kind": "method",
41260
+ "name": "startTypingAnimation",
41261
+ "privacy": "private",
41262
+ "return": {
41263
+ "type": {
41264
+ "text": "void"
41265
+ }
41266
+ },
41267
+ "parameters": [
41268
+ {
41269
+ "name": "onComplete",
41270
+ "optional": true,
41271
+ "type": {
41272
+ "text": "() => void"
41273
+ }
41274
+ }
41275
+ ],
41276
+ "description": "Starts the typewriter animation"
41277
+ },
41278
+ {
41279
+ "kind": "method",
41280
+ "name": "clearTypingAnimation",
41281
+ "privacy": "private",
41282
+ "return": {
41283
+ "type": {
41284
+ "text": "void"
41285
+ }
41286
+ },
41287
+ "description": "Clears the typing animation timeout"
41288
+ },
41289
+ {
41290
+ "kind": "method",
41291
+ "name": "handleSlotChange",
41292
+ "privacy": "private",
41293
+ "return": {
41294
+ "type": {
41295
+ "text": "void"
41296
+ }
41297
+ },
41298
+ "description": "Handler for slotchange event"
41299
+ }
41300
+ ],
41301
+ "events": [
41302
+ {
41303
+ "type": {
41304
+ "text": "CustomEvent"
41305
+ }
41306
+ },
41307
+ {
41308
+ "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
41309
+ "name": "typing-complete",
41310
+ "reactName": "onTypingComplete"
41311
+ },
41312
+ {
41313
+ "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
41314
+ "name": "change",
41315
+ "reactName": "onChange"
41316
+ }
41317
+ ],
41318
+ "attributes": [
41319
+ {
41320
+ "name": "type",
41321
+ "type": {
41322
+ "text": "TextType"
41323
+ },
41324
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
41325
+ "default": "body-large-regular",
41326
+ "fieldName": "type"
41327
+ },
41328
+ {
41329
+ "name": "tagname",
41330
+ "type": {
41331
+ "text": "TagName | undefined"
41332
+ },
41333
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
41334
+ "fieldName": "tagname"
41335
+ },
41336
+ {
41337
+ "name": "speed",
41338
+ "type": {
41339
+ "text": "TypewriterSpeed"
41340
+ },
41341
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
41342
+ "default": "'normal' (60ms per character)",
41343
+ "fieldName": "speed"
41344
+ },
41345
+ {
41346
+ "name": "max-queue-size",
41347
+ "type": {
41348
+ "text": "number"
41349
+ },
41350
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
41351
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
41352
+ "fieldName": "maxQueueSize"
41353
+ }
41354
+ ],
41355
+ "superclass": {
41356
+ "name": "Component",
41357
+ "module": "/src/models"
41358
+ },
41359
+ "tagName": "mdc-typewriter",
41360
+ "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
41361
+ "customElement": true
41362
+ }
41363
+ ],
41364
+ "exports": [
41365
+ {
41366
+ "kind": "js",
41367
+ "name": "default",
41368
+ "declaration": {
41369
+ "name": "Typewriter",
41370
+ "module": "components/typewriter/typewriter.component.js"
41371
+ }
41372
+ }
41373
+ ]
41374
+ },
41039
41375
  {
41040
41376
  "kind": "javascript-module",
41041
41377
  "path": "components/virtualizedlist/virtualizedlist.component.js",