@momentum-design/components 0.102.3 → 0.102.4

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,6 +477,157 @@
477
477
  }
478
478
  ]
479
479
  },
480
+ {
481
+ "kind": "javascript-module",
482
+ "path": "components/accordiongroup/accordiongroup.component.js",
483
+ "declarations": [
484
+ {
485
+ "kind": "class",
486
+ "description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
487
+ "name": "AccordionGroup",
488
+ "cssProperties": [
489
+ {
490
+ "description": "The border color of the entire accordiongroup",
491
+ "name": "--mdc-accordiongroup-border-color"
492
+ }
493
+ ],
494
+ "slots": [
495
+ {
496
+ "description": "The default slot can contain the `accordion` or `accordionbutton` components.",
497
+ "name": "default"
498
+ }
499
+ ],
500
+ "members": [
501
+ {
502
+ "kind": "field",
503
+ "name": "size",
504
+ "type": {
505
+ "text": "Size"
506
+ },
507
+ "description": "The size of the accordion item.",
508
+ "default": "'small'",
509
+ "attribute": "size",
510
+ "reflects": true
511
+ },
512
+ {
513
+ "kind": "field",
514
+ "name": "variant",
515
+ "type": {
516
+ "text": "Variant"
517
+ },
518
+ "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
519
+ "default": "'stacked'",
520
+ "attribute": "variant",
521
+ "reflects": true
522
+ },
523
+ {
524
+ "kind": "field",
525
+ "name": "allowMultiple",
526
+ "type": {
527
+ "text": "boolean"
528
+ },
529
+ "default": "false",
530
+ "description": "If true, multiple accordion items can be visible at the same time.",
531
+ "attribute": "allow-multiple",
532
+ "reflects": true
533
+ },
534
+ {
535
+ "kind": "method",
536
+ "name": "handleAccordionExpanded",
537
+ "privacy": "private",
538
+ "return": {
539
+ "type": {
540
+ "text": "void"
541
+ }
542
+ },
543
+ "parameters": [
544
+ {
545
+ "name": "event",
546
+ "type": {
547
+ "text": "Event"
548
+ },
549
+ "description": "The event object from the 'shown' event."
550
+ }
551
+ ],
552
+ "description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
553
+ },
554
+ {
555
+ "kind": "method",
556
+ "name": "setChildrenAccordionAttributes",
557
+ "privacy": "private",
558
+ "return": {
559
+ "type": {
560
+ "text": "void"
561
+ }
562
+ },
563
+ "parameters": [
564
+ {
565
+ "name": "attributeName",
566
+ "type": {
567
+ "text": "string"
568
+ },
569
+ "description": "The name of the attribute to set."
570
+ },
571
+ {
572
+ "name": "attributeValue",
573
+ "type": {
574
+ "text": "string"
575
+ },
576
+ "description": "The value to set the attribute to."
577
+ }
578
+ ],
579
+ "description": "Sets the given attribute on all child accordion or accordionbutton components."
580
+ }
581
+ ],
582
+ "attributes": [
583
+ {
584
+ "name": "size",
585
+ "type": {
586
+ "text": "Size"
587
+ },
588
+ "description": "The size of the accordion item.",
589
+ "default": "'small'",
590
+ "fieldName": "size"
591
+ },
592
+ {
593
+ "name": "variant",
594
+ "type": {
595
+ "text": "Variant"
596
+ },
597
+ "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
598
+ "default": "'stacked'",
599
+ "fieldName": "variant"
600
+ },
601
+ {
602
+ "name": "allow-multiple",
603
+ "type": {
604
+ "text": "boolean"
605
+ },
606
+ "default": "false",
607
+ "description": "If true, multiple accordion items can be visible at the same time.",
608
+ "fieldName": "allowMultiple"
609
+ }
610
+ ],
611
+ "superclass": {
612
+ "name": "Component",
613
+ "module": "/src/models"
614
+ },
615
+ "tagName": "mdc-accordiongroup",
616
+ "jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
617
+ "customElement": true
618
+ }
619
+ ],
620
+ "exports": [
621
+ {
622
+ "kind": "js",
623
+ "name": "default",
624
+ "declaration": {
625
+ "name": "AccordionGroup",
626
+ "module": "components/accordiongroup/accordiongroup.component.js"
627
+ }
628
+ }
629
+ ]
630
+ },
480
631
  {
481
632
  "kind": "javascript-module",
482
633
  "path": "components/accordionbutton/accordionbutton.component.js",
@@ -817,157 +968,6 @@
817
968
  }
818
969
  ]
819
970
  },
820
- {
821
- "kind": "javascript-module",
822
- "path": "components/accordiongroup/accordiongroup.component.js",
823
- "declarations": [
824
- {
825
- "kind": "class",
826
- "description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
827
- "name": "AccordionGroup",
828
- "cssProperties": [
829
- {
830
- "description": "The border color of the entire accordiongroup",
831
- "name": "--mdc-accordiongroup-border-color"
832
- }
833
- ],
834
- "slots": [
835
- {
836
- "description": "The default slot can contain the `accordion` or `accordionbutton` components.",
837
- "name": "default"
838
- }
839
- ],
840
- "members": [
841
- {
842
- "kind": "field",
843
- "name": "size",
844
- "type": {
845
- "text": "Size"
846
- },
847
- "description": "The size of the accordion item.",
848
- "default": "'small'",
849
- "attribute": "size",
850
- "reflects": true
851
- },
852
- {
853
- "kind": "field",
854
- "name": "variant",
855
- "type": {
856
- "text": "Variant"
857
- },
858
- "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
859
- "default": "'stacked'",
860
- "attribute": "variant",
861
- "reflects": true
862
- },
863
- {
864
- "kind": "field",
865
- "name": "allowMultiple",
866
- "type": {
867
- "text": "boolean"
868
- },
869
- "default": "false",
870
- "description": "If true, multiple accordion items can be visible at the same time.",
871
- "attribute": "allow-multiple",
872
- "reflects": true
873
- },
874
- {
875
- "kind": "method",
876
- "name": "handleAccordionExpanded",
877
- "privacy": "private",
878
- "return": {
879
- "type": {
880
- "text": "void"
881
- }
882
- },
883
- "parameters": [
884
- {
885
- "name": "event",
886
- "type": {
887
- "text": "Event"
888
- },
889
- "description": "The event object from the 'shown' event."
890
- }
891
- ],
892
- "description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
893
- },
894
- {
895
- "kind": "method",
896
- "name": "setChildrenAccordionAttributes",
897
- "privacy": "private",
898
- "return": {
899
- "type": {
900
- "text": "void"
901
- }
902
- },
903
- "parameters": [
904
- {
905
- "name": "attributeName",
906
- "type": {
907
- "text": "string"
908
- },
909
- "description": "The name of the attribute to set."
910
- },
911
- {
912
- "name": "attributeValue",
913
- "type": {
914
- "text": "string"
915
- },
916
- "description": "The value to set the attribute to."
917
- }
918
- ],
919
- "description": "Sets the given attribute on all child accordion or accordionbutton components."
920
- }
921
- ],
922
- "attributes": [
923
- {
924
- "name": "size",
925
- "type": {
926
- "text": "Size"
927
- },
928
- "description": "The size of the accordion item.",
929
- "default": "'small'",
930
- "fieldName": "size"
931
- },
932
- {
933
- "name": "variant",
934
- "type": {
935
- "text": "Variant"
936
- },
937
- "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
938
- "default": "'stacked'",
939
- "fieldName": "variant"
940
- },
941
- {
942
- "name": "allow-multiple",
943
- "type": {
944
- "text": "boolean"
945
- },
946
- "default": "false",
947
- "description": "If true, multiple accordion items can be visible at the same time.",
948
- "fieldName": "allowMultiple"
949
- }
950
- ],
951
- "superclass": {
952
- "name": "Component",
953
- "module": "/src/models"
954
- },
955
- "tagName": "mdc-accordiongroup",
956
- "jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
957
- "customElement": true
958
- }
959
- ],
960
- "exports": [
961
- {
962
- "kind": "js",
963
- "name": "default",
964
- "declaration": {
965
- "name": "AccordionGroup",
966
- "module": "components/accordiongroup/accordiongroup.component.js"
967
- }
968
- }
969
- ]
970
- },
971
971
  {
972
972
  "kind": "javascript-module",
973
973
  "path": "components/alertchip/alertchip.component.js",
@@ -16527,25 +16527,25 @@
16527
16527
  "declarations": [
16528
16528
  {
16529
16529
  "kind": "class",
16530
- "description": "mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.",
16530
+ "description": "mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n\nTo add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n`mdc-listitem` components can be placed in the default slot.",
16531
16531
  "name": "List",
16532
+ "cssParts": [
16533
+ {
16534
+ "description": "The container slot around the list items",
16535
+ "name": "container"
16536
+ }
16537
+ ],
16532
16538
  "slots": [
16533
16539
  {
16534
- "description": "This is a default/unnamed slot",
16540
+ "description": "This is a default/unnamed slot, where listitems can be placed.",
16535
16541
  "name": "default"
16542
+ },
16543
+ {
16544
+ "description": "This slot is used to pass a header for the list, which can be a `mdc-listheader` component.",
16545
+ "name": "list-header"
16536
16546
  }
16537
16547
  ],
16538
16548
  "members": [
16539
- {
16540
- "kind": "field",
16541
- "name": "headerText",
16542
- "type": {
16543
- "text": "string | undefined"
16544
- },
16545
- "description": "The header text of the list.",
16546
- "attribute": "header-text",
16547
- "reflects": true
16548
- },
16549
16549
  {
16550
16550
  "kind": "method",
16551
16551
  "name": "handleKeyDown",
@@ -16654,50 +16654,6 @@
16654
16654
  }
16655
16655
  ],
16656
16656
  "description": "Resets all list items tabindex to -1 and sets the tabindex of the\nelement at the given index to 0, effectively setting the active\nelement. This is used when navigating the list via keyboard."
16657
- },
16658
- {
16659
- "kind": "field",
16660
- "name": "dataAriaLabel",
16661
- "type": {
16662
- "text": "string | null"
16663
- },
16664
- "default": "null",
16665
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
16666
- "attribute": "data-aria-label",
16667
- "reflects": true,
16668
- "inheritedFrom": {
16669
- "name": "DataAriaLabelMixin",
16670
- "module": "utils/mixins/DataAriaLabelMixin.js"
16671
- }
16672
- }
16673
- ],
16674
- "attributes": [
16675
- {
16676
- "name": "header-text",
16677
- "type": {
16678
- "text": "string | undefined"
16679
- },
16680
- "description": "The header text of the list.",
16681
- "fieldName": "headerText"
16682
- },
16683
- {
16684
- "name": "data-aria-label",
16685
- "type": {
16686
- "text": "string | null"
16687
- },
16688
- "default": "null",
16689
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
16690
- "fieldName": "dataAriaLabel",
16691
- "inheritedFrom": {
16692
- "name": "DataAriaLabelMixin",
16693
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
16694
- }
16695
- }
16696
- ],
16697
- "mixins": [
16698
- {
16699
- "name": "DataAriaLabelMixin",
16700
- "module": "/src/utils/mixins/DataAriaLabelMixin"
16701
16657
  }
16702
16658
  ],
16703
16659
  "superclass": {
@@ -16705,7 +16661,7 @@
16705
16661
  "module": "/src/models"
16706
16662
  },
16707
16663
  "tagName": "mdc-list",
16708
- "jsDoc": "/**\n * mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n *\n * @tagname mdc-list\n *\n * @dependency mdc-text\n *\n * @slot default - This is a default/unnamed slot\n */",
16664
+ "jsDoc": "/**\n * mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n *\n * To add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n * `mdc-listitem` components can be placed in the default slot.\n *\n * @tagname mdc-list\n *\n * @slot default - This is a default/unnamed slot, where listitems can be placed.\n * @slot list-header - This slot is used to pass a header for the list, which can be a `mdc-listheader` component.\n *\n * @csspart container - The container slot around the list items\n */",
16709
16665
  "customElement": true
16710
16666
  }
16711
16667
  ],
@@ -20573,216 +20529,75 @@
20573
20529
  "description": "Allows customization of the primary label, side header and subline text slot color.",
20574
20530
  "name": "--mdc-listitem-primary-label-color",
20575
20531
  "inheritedFrom": {
20576
- "name": "ListItem",
20577
- "module": "src/components/listitem/listitem.component.ts"
20578
- }
20579
- },
20580
- {
20581
- "description": "Allows customization of the secondary and tertiary label text slot color.",
20582
- "name": "--mdc-listitem-secondary-label-color",
20583
- "inheritedFrom": {
20584
- "name": "ListItem",
20585
- "module": "src/components/listitem/listitem.component.ts"
20586
- }
20587
- },
20588
- {
20589
- "description": "Allows customization of the disabled color.",
20590
- "name": "--mdc-listitem-disabled-color",
20591
- "inheritedFrom": {
20592
- "name": "ListItem",
20593
- "module": "src/components/listitem/listitem.component.ts"
20594
- }
20595
- },
20596
- {
20597
- "description": "Allows customization of column gap.",
20598
- "name": "--mdc-listitem-column-gap",
20599
- "inheritedFrom": {
20600
- "name": "ListItem",
20601
- "module": "src/components/listitem/listitem.component.ts"
20602
- }
20603
- },
20604
- {
20605
- "description": "Allows customization of padding left and right.",
20606
- "name": "--mdc-listitem-padding-left-right",
20607
- "inheritedFrom": {
20608
- "name": "ListItem",
20609
- "module": "src/components/listitem/listitem.component.ts"
20610
- }
20611
- },
20612
- {
20613
- "description": "Allows customization of padding top and bottom.",
20614
- "name": "--mdc-listitem-padding-top-bottom",
20615
- "inheritedFrom": {
20616
- "name": "ListItem",
20617
- "module": "src/components/listitem/listitem.component.ts"
20618
- }
20619
- },
20620
- {
20621
- "description": "Allows customization of the cursor.",
20622
- "name": "--mdc-listitem-cursor",
20623
- "inheritedFrom": {
20624
- "name": "ListItem",
20625
- "module": "src/components/listitem/listitem.component.ts"
20626
- }
20627
- },
20628
- {
20629
- "description": "Allows customization of the width of the list item.",
20630
- "name": "--mdc-listitem-width",
20631
- "inheritedFrom": {
20632
- "name": "ListItem",
20633
- "module": "src/components/listitem/listitem.component.ts"
20634
- }
20635
- },
20636
- {
20637
- "description": "Allows customization of the height of the list item.",
20638
- "name": "--mdc-listitem-height",
20639
- "inheritedFrom": {
20640
- "name": "ListItem",
20641
- "module": "src/components/listitem/listitem.component.ts"
20642
- }
20643
- }
20644
- ]
20645
- }
20646
- ],
20647
- "exports": [
20648
- {
20649
- "kind": "js",
20650
- "name": "default",
20651
- "declaration": {
20652
- "name": "MenuItemRadio",
20653
- "module": "components/menuitemradio/menuitemradio.component.js"
20654
- }
20655
- }
20656
- ]
20657
- },
20658
- {
20659
- "kind": "javascript-module",
20660
- "path": "components/menusection/menusection.component.js",
20661
- "declarations": [
20662
- {
20663
- "kind": "class",
20664
- "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.",
20665
- "name": "MenuSection",
20666
- "slots": [
20667
- {
20668
- "description": "Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`",
20669
- "name": ""
20670
- }
20671
- ],
20672
- "members": [
20673
- {
20674
- "kind": "field",
20675
- "name": "ariaLabel",
20676
- "type": {
20677
- "text": "string | null"
20678
- },
20679
- "default": "null",
20680
- "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`.",
20681
- "attribute": "aria-label",
20682
- "reflects": true
20683
- },
20684
- {
20685
- "kind": "field",
20686
- "name": "headerText",
20687
- "type": {
20688
- "text": "string | null"
20689
- },
20690
- "default": "null",
20691
- "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
20692
- "attribute": "header-text",
20693
- "reflects": true
20694
- },
20695
- {
20696
- "kind": "field",
20697
- "name": "prefixIcon",
20698
- "type": {
20699
- "text": "IconNames | undefined"
20700
- },
20701
- "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.",
20702
- "attribute": "prefix-icon"
20703
- },
20704
- {
20705
- "kind": "field",
20706
- "name": "showDivider",
20707
- "type": {
20708
- "text": "boolean"
20709
- },
20710
- "default": "false",
20711
- "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
20712
- "attribute": "show-divider",
20713
- "reflects": true
20532
+ "name": "ListItem",
20533
+ "module": "src/components/listitem/listitem.component.ts"
20534
+ }
20714
20535
  },
20715
20536
  {
20716
- "kind": "field",
20717
- "name": "dividerVariant",
20718
- "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.",
20719
- "default": "'solid'",
20720
- "attribute": "divider-variant",
20721
- "reflects": true
20537
+ "description": "Allows customization of the secondary and tertiary label text slot color.",
20538
+ "name": "--mdc-listitem-secondary-label-color",
20539
+ "inheritedFrom": {
20540
+ "name": "ListItem",
20541
+ "module": "src/components/listitem/listitem.component.ts"
20542
+ }
20722
20543
  },
20723
20544
  {
20724
- "kind": "method",
20725
- "name": "renderHeader",
20726
- "privacy": "private"
20727
- }
20728
- ],
20729
- "events": [
20545
+ "description": "Allows customization of the disabled color.",
20546
+ "name": "--mdc-listitem-disabled-color",
20547
+ "inheritedFrom": {
20548
+ "name": "ListItem",
20549
+ "module": "src/components/listitem/listitem.component.ts"
20550
+ }
20551
+ },
20730
20552
  {
20731
- "description": "(React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.",
20732
- "name": "change",
20733
- "reactName": "onChange"
20734
- }
20735
- ],
20736
- "attributes": [
20553
+ "description": "Allows customization of column gap.",
20554
+ "name": "--mdc-listitem-column-gap",
20555
+ "inheritedFrom": {
20556
+ "name": "ListItem",
20557
+ "module": "src/components/listitem/listitem.component.ts"
20558
+ }
20559
+ },
20737
20560
  {
20738
- "name": "aria-label",
20739
- "type": {
20740
- "text": "string | null"
20741
- },
20742
- "default": "null",
20743
- "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`.",
20744
- "fieldName": "ariaLabel"
20561
+ "description": "Allows customization of padding left and right.",
20562
+ "name": "--mdc-listitem-padding-left-right",
20563
+ "inheritedFrom": {
20564
+ "name": "ListItem",
20565
+ "module": "src/components/listitem/listitem.component.ts"
20566
+ }
20745
20567
  },
20746
20568
  {
20747
- "name": "header-text",
20748
- "type": {
20749
- "text": "string | null"
20750
- },
20751
- "default": "null",
20752
- "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
20753
- "fieldName": "headerText"
20569
+ "description": "Allows customization of padding top and bottom.",
20570
+ "name": "--mdc-listitem-padding-top-bottom",
20571
+ "inheritedFrom": {
20572
+ "name": "ListItem",
20573
+ "module": "src/components/listitem/listitem.component.ts"
20574
+ }
20754
20575
  },
20755
20576
  {
20756
- "name": "prefix-icon",
20757
- "type": {
20758
- "text": "IconNames | undefined"
20759
- },
20760
- "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.",
20761
- "fieldName": "prefixIcon"
20577
+ "description": "Allows customization of the cursor.",
20578
+ "name": "--mdc-listitem-cursor",
20579
+ "inheritedFrom": {
20580
+ "name": "ListItem",
20581
+ "module": "src/components/listitem/listitem.component.ts"
20582
+ }
20762
20583
  },
20763
20584
  {
20764
- "name": "show-divider",
20765
- "type": {
20766
- "text": "boolean"
20767
- },
20768
- "default": "false",
20769
- "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
20770
- "fieldName": "showDivider"
20585
+ "description": "Allows customization of the width of the list item.",
20586
+ "name": "--mdc-listitem-width",
20587
+ "inheritedFrom": {
20588
+ "name": "ListItem",
20589
+ "module": "src/components/listitem/listitem.component.ts"
20590
+ }
20771
20591
  },
20772
20592
  {
20773
- "name": "divider-variant",
20774
- "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.",
20775
- "default": "'solid'",
20776
- "fieldName": "dividerVariant"
20593
+ "description": "Allows customization of the height of the list item.",
20594
+ "name": "--mdc-listitem-height",
20595
+ "inheritedFrom": {
20596
+ "name": "ListItem",
20597
+ "module": "src/components/listitem/listitem.component.ts"
20598
+ }
20777
20599
  }
20778
- ],
20779
- "superclass": {
20780
- "name": "Component",
20781
- "module": "/src/models"
20782
- },
20783
- "tagName": "mdc-menusection",
20784
- "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 */",
20785
- "customElement": true
20600
+ ]
20786
20601
  }
20787
20602
  ],
20788
20603
  "exports": [
@@ -20790,8 +20605,8 @@
20790
20605
  "kind": "js",
20791
20606
  "name": "default",
20792
20607
  "declaration": {
20793
- "name": "MenuSection",
20794
- "module": "components/menusection/menusection.component.js"
20608
+ "name": "MenuItemRadio",
20609
+ "module": "components/menuitemradio/menuitemradio.component.js"
20795
20610
  }
20796
20611
  }
20797
20612
  ]
@@ -22940,6 +22755,147 @@
22940
22755
  }
22941
22756
  ]
22942
22757
  },
22758
+ {
22759
+ "kind": "javascript-module",
22760
+ "path": "components/menusection/menusection.component.js",
22761
+ "declarations": [
22762
+ {
22763
+ "kind": "class",
22764
+ "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.",
22765
+ "name": "MenuSection",
22766
+ "slots": [
22767
+ {
22768
+ "description": "Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`",
22769
+ "name": ""
22770
+ }
22771
+ ],
22772
+ "members": [
22773
+ {
22774
+ "kind": "field",
22775
+ "name": "ariaLabel",
22776
+ "type": {
22777
+ "text": "string | null"
22778
+ },
22779
+ "default": "null",
22780
+ "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`.",
22781
+ "attribute": "aria-label",
22782
+ "reflects": true
22783
+ },
22784
+ {
22785
+ "kind": "field",
22786
+ "name": "headerText",
22787
+ "type": {
22788
+ "text": "string | null"
22789
+ },
22790
+ "default": "null",
22791
+ "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
22792
+ "attribute": "header-text",
22793
+ "reflects": true
22794
+ },
22795
+ {
22796
+ "kind": "field",
22797
+ "name": "prefixIcon",
22798
+ "type": {
22799
+ "text": "IconNames | undefined"
22800
+ },
22801
+ "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.",
22802
+ "attribute": "prefix-icon"
22803
+ },
22804
+ {
22805
+ "kind": "field",
22806
+ "name": "showDivider",
22807
+ "type": {
22808
+ "text": "boolean"
22809
+ },
22810
+ "default": "false",
22811
+ "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
22812
+ "attribute": "show-divider",
22813
+ "reflects": true
22814
+ },
22815
+ {
22816
+ "kind": "field",
22817
+ "name": "dividerVariant",
22818
+ "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.",
22819
+ "default": "'solid'",
22820
+ "attribute": "divider-variant",
22821
+ "reflects": true
22822
+ },
22823
+ {
22824
+ "kind": "method",
22825
+ "name": "renderHeader",
22826
+ "privacy": "private"
22827
+ }
22828
+ ],
22829
+ "events": [
22830
+ {
22831
+ "description": "(React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.",
22832
+ "name": "change",
22833
+ "reactName": "onChange"
22834
+ }
22835
+ ],
22836
+ "attributes": [
22837
+ {
22838
+ "name": "aria-label",
22839
+ "type": {
22840
+ "text": "string | null"
22841
+ },
22842
+ "default": "null",
22843
+ "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`.",
22844
+ "fieldName": "ariaLabel"
22845
+ },
22846
+ {
22847
+ "name": "header-text",
22848
+ "type": {
22849
+ "text": "string | null"
22850
+ },
22851
+ "default": "null",
22852
+ "description": "The primary headerText of the list item.\nThis appears on the leading side of the list item.",
22853
+ "fieldName": "headerText"
22854
+ },
22855
+ {
22856
+ "name": "prefix-icon",
22857
+ "type": {
22858
+ "text": "IconNames | undefined"
22859
+ },
22860
+ "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.",
22861
+ "fieldName": "prefixIcon"
22862
+ },
22863
+ {
22864
+ "name": "show-divider",
22865
+ "type": {
22866
+ "text": "boolean"
22867
+ },
22868
+ "default": "false",
22869
+ "description": "Whether to show a divider below the section header.\nThis is useful for visually separating sections in the menu.",
22870
+ "fieldName": "showDivider"
22871
+ },
22872
+ {
22873
+ "name": "divider-variant",
22874
+ "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.",
22875
+ "default": "'solid'",
22876
+ "fieldName": "dividerVariant"
22877
+ }
22878
+ ],
22879
+ "superclass": {
22880
+ "name": "Component",
22881
+ "module": "/src/models"
22882
+ },
22883
+ "tagName": "mdc-menusection",
22884
+ "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 */",
22885
+ "customElement": true
22886
+ }
22887
+ ],
22888
+ "exports": [
22889
+ {
22890
+ "kind": "js",
22891
+ "name": "default",
22892
+ "declaration": {
22893
+ "name": "MenuSection",
22894
+ "module": "components/menusection/menusection.component.js"
22895
+ }
22896
+ }
22897
+ ]
22898
+ },
22943
22899
  {
22944
22900
  "kind": "javascript-module",
22945
22901
  "path": "components/navmenuitem/navmenuitem.component.js",