@momentum-design/components 0.123.5 → 0.124.1

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.
Files changed (35) hide show
  1. package/dist/browser/index.js +469 -318
  2. package/dist/browser/index.js.map +3 -3
  3. package/dist/components/menubar/menubar.component.js +1 -1
  4. package/dist/components/menuitem/menuitem.styles.js +1 -1
  5. package/dist/components/menusection/menusection.component.d.ts +5 -0
  6. package/dist/components/menusection/menusection.component.js +5 -0
  7. package/dist/components/menusection/menusection.styles.js +10 -7
  8. package/dist/components/navmenuitem/navmenuitem.component.d.ts +74 -27
  9. package/dist/components/navmenuitem/navmenuitem.component.js +135 -87
  10. package/dist/components/navmenuitem/navmenuitem.constants.d.ts +1 -0
  11. package/dist/components/navmenuitem/navmenuitem.constants.js +1 -0
  12. package/dist/components/navmenuitem/navmenuitem.styles.js +64 -29
  13. package/dist/components/popover/popover.component.js +4 -2
  14. package/dist/components/sidenavigation/sidenavigation.component.d.ts +50 -6
  15. package/dist/components/sidenavigation/sidenavigation.component.js +132 -25
  16. package/dist/components/sidenavigation/sidenavigation.constants.d.ts +1 -0
  17. package/dist/components/sidenavigation/sidenavigation.constants.js +1 -0
  18. package/dist/components/sidenavigation/sidenavigation.context.d.ts +1 -2
  19. package/dist/components/sidenavigation/sidenavigation.context.js +8 -9
  20. package/dist/components/sidenavigation/sidenavigation.styles.js +76 -8
  21. package/dist/components/textarea/textarea.component.d.ts +56 -0
  22. package/dist/components/textarea/textarea.component.js +122 -2
  23. package/dist/components/textarea/textarea.styles.js +25 -0
  24. package/dist/custom-elements.json +481 -160
  25. package/dist/react/index.d.ts +1 -1
  26. package/dist/react/index.js +1 -1
  27. package/dist/react/menusection/index.d.ts +5 -0
  28. package/dist/react/menusection/index.js +5 -0
  29. package/dist/react/navmenuitem/index.d.ts +9 -3
  30. package/dist/react/navmenuitem/index.js +9 -3
  31. package/dist/react/sidenavigation/index.d.ts +12 -2
  32. package/dist/react/sidenavigation/index.js +12 -2
  33. package/dist/react/textarea/index.d.ts +20 -0
  34. package/dist/react/textarea/index.js +20 -0
  35. package/package.json +1 -1
@@ -4838,6 +4838,77 @@
4838
4838
  }
4839
4839
  ]
4840
4840
  },
4841
+ {
4842
+ "kind": "javascript-module",
4843
+ "path": "components/bullet/bullet.component.js",
4844
+ "declarations": [
4845
+ {
4846
+ "kind": "class",
4847
+ "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
4848
+ "name": "Bullet",
4849
+ "cssProperties": [
4850
+ {
4851
+ "description": "background color of the bullet",
4852
+ "name": "--mdc-bullet-background-color"
4853
+ },
4854
+ {
4855
+ "description": "small size value of the bullet",
4856
+ "name": "--mdc-bullet-size-small"
4857
+ },
4858
+ {
4859
+ "description": "medium size value of the bullet",
4860
+ "name": "--mdc-bullet-size-medium"
4861
+ },
4862
+ {
4863
+ "description": "large size value of the bullet",
4864
+ "name": "--mdc-bullet-size-large"
4865
+ }
4866
+ ],
4867
+ "members": [
4868
+ {
4869
+ "kind": "field",
4870
+ "name": "size",
4871
+ "type": {
4872
+ "text": "Size"
4873
+ },
4874
+ "privacy": "public",
4875
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4876
+ "default": "small",
4877
+ "attribute": "size",
4878
+ "reflects": true
4879
+ }
4880
+ ],
4881
+ "attributes": [
4882
+ {
4883
+ "name": "size",
4884
+ "type": {
4885
+ "text": "Size"
4886
+ },
4887
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4888
+ "default": "small",
4889
+ "fieldName": "size"
4890
+ }
4891
+ ],
4892
+ "superclass": {
4893
+ "name": "Component",
4894
+ "module": "/src/models"
4895
+ },
4896
+ "tagName": "mdc-bullet",
4897
+ "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
4898
+ "customElement": true
4899
+ }
4900
+ ],
4901
+ "exports": [
4902
+ {
4903
+ "kind": "js",
4904
+ "name": "default",
4905
+ "declaration": {
4906
+ "name": "Bullet",
4907
+ "module": "components/bullet/bullet.component.js"
4908
+ }
4909
+ }
4910
+ ]
4911
+ },
4841
4912
  {
4842
4913
  "kind": "javascript-module",
4843
4914
  "path": "components/brandvisual/brandvisual.component.js",
@@ -5014,77 +5085,6 @@
5014
5085
  }
5015
5086
  ]
5016
5087
  },
5017
- {
5018
- "kind": "javascript-module",
5019
- "path": "components/bullet/bullet.component.js",
5020
- "declarations": [
5021
- {
5022
- "kind": "class",
5023
- "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
5024
- "name": "Bullet",
5025
- "cssProperties": [
5026
- {
5027
- "description": "background color of the bullet",
5028
- "name": "--mdc-bullet-background-color"
5029
- },
5030
- {
5031
- "description": "small size value of the bullet",
5032
- "name": "--mdc-bullet-size-small"
5033
- },
5034
- {
5035
- "description": "medium size value of the bullet",
5036
- "name": "--mdc-bullet-size-medium"
5037
- },
5038
- {
5039
- "description": "large size value of the bullet",
5040
- "name": "--mdc-bullet-size-large"
5041
- }
5042
- ],
5043
- "members": [
5044
- {
5045
- "kind": "field",
5046
- "name": "size",
5047
- "type": {
5048
- "text": "Size"
5049
- },
5050
- "privacy": "public",
5051
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
5052
- "default": "small",
5053
- "attribute": "size",
5054
- "reflects": true
5055
- }
5056
- ],
5057
- "attributes": [
5058
- {
5059
- "name": "size",
5060
- "type": {
5061
- "text": "Size"
5062
- },
5063
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
5064
- "default": "small",
5065
- "fieldName": "size"
5066
- }
5067
- ],
5068
- "superclass": {
5069
- "name": "Component",
5070
- "module": "/src/models"
5071
- },
5072
- "tagName": "mdc-bullet",
5073
- "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
5074
- "customElement": true
5075
- }
5076
- ],
5077
- "exports": [
5078
- {
5079
- "kind": "js",
5080
- "name": "default",
5081
- "declaration": {
5082
- "name": "Bullet",
5083
- "module": "components/bullet/bullet.component.js"
5084
- }
5085
- }
5086
- ]
5087
- },
5088
5088
  {
5089
5089
  "kind": "javascript-module",
5090
5090
  "path": "components/button/button.component.js",
@@ -29170,6 +29170,24 @@
29170
29170
  "kind": "class",
29171
29171
  "description": "`mdc-menusection` is a container element used to group a set of menu items.\n\nThis component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n\n- If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n only one radio item can be selected at a time.\n- If `menuitemcheckbox` components are included, their checked state can be toggled independently.",
29172
29172
  "name": "MenuSection",
29173
+ "cssProperties": [
29174
+ {
29175
+ "description": "Sets the margin block of the divider.",
29176
+ "name": "--mdc-menusection-divider-margin-block"
29177
+ },
29178
+ {
29179
+ "description": "Sets the gap between items in the menusection.",
29180
+ "name": "--mdc-menusection-gap"
29181
+ },
29182
+ {
29183
+ "description": "Sets the width of the divider.",
29184
+ "name": "--mdc-menusection-divider-width"
29185
+ },
29186
+ {
29187
+ "description": "Sets the padding of the header, if present.",
29188
+ "name": "--mdc-menusection-header-padding"
29189
+ }
29190
+ ],
29173
29191
  "cssParts": [
29174
29192
  {
29175
29193
  "description": "The header of the menusection.",
@@ -29311,7 +29329,7 @@
29311
29329
  "module": "/src/models"
29312
29330
  },
29313
29331
  "tagName": "mdc-menusection",
29314
- "jsDoc": "/**\n * `mdc-menusection` is a container element used to group a set of menu items.\n *\n * This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n *\n * - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n * only one radio item can be selected at a time.\n * - If `menuitemcheckbox` components are included, their checked state can be toggled independently.\n *\n * @tagname mdc-menusection\n *\n * @slot - Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`\n *\n * @event change - (React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.\n * @event action - (React: onAction) This event is dispatched when a `menuitem` selected.\n *\n * @csspart header - The header of the menusection.\n * @csspart align-header - The header of the menusection when it is aligned to the start.\n * @csspart container - The container of the menusection.\n * @csspart divider - The divider of the menusection.\n */",
29332
+ "jsDoc": "/**\n * `mdc-menusection` is a container element used to group a set of menu items.\n *\n * This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.\n *\n * - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:\n * only one radio item can be selected at a time.\n * - If `menuitemcheckbox` components are included, their checked state can be toggled independently.\n *\n * @tagname mdc-menusection\n *\n * @slot - Default slot for inserting `menuitem`, `menuitemcheckbox`, or `menuitemradio`\n *\n * @event change - (React: onChange) This event is dispatched when a `menuitemcheckbox`, or `menuitemradio` changes.\n * @event action - (React: onAction) This event is dispatched when a `menuitem` selected.\n *\n * @csspart header - The header of the menusection.\n * @csspart align-header - The header of the menusection when it is aligned to the start.\n * @csspart container - The container of the menusection.\n * @csspart divider - The divider of the menusection.\n *\n * @cssproperty --mdc-menusection-divider-margin-block - Sets the margin block of the divider.\n * @cssproperty --mdc-menusection-gap - Sets the gap between items in the menusection.\n * @cssproperty --mdc-menusection-divider-width - Sets the width of the divider.\n * @cssproperty --mdc-menusection-header-padding - Sets the padding of the header, if present.\n */",
29315
29333
  "customElement": true
29316
29334
  }
29317
29335
  ],
@@ -29332,24 +29350,44 @@
29332
29350
  "declarations": [
29333
29351
  {
29334
29352
  "kind": "class",
29335
- "description": "`mdc-navmenuitem` is a menuitem styled to work as a navigation tab.\nIt supports a leading icon, optional badge and dynamic text rendering.\n\nNote: `mdc-navmenuitem` is intended to be used inside `mdc-menubar` as part of the sideNavigation\ncomponent. Its structure, spacing, and interactions are designed to align with\nthe visual and functional requirements of side navigation layouts.\n\nBy providing the tooltip-text attribute, a tooltip will be displayed on hover of the navmenuitem. This tooltip is useful when an active navmenuitem is present within a submenu of the sidenavigation component.",
29353
+ "description": "`mdc-navmenuitem` is a menuitem styled to work as a navigation tab.\nIt supports a leading icon, optional badge and dynamic text rendering.\n\nThe navmenuitem can be in an active or inactive state, indicating whether it is currently selected.\n\nNote: `mdc-navmenuitem` is intended to be used inside `mdc-menubar` as part of the sideNavigation\ncomponent. Its structure, spacing, and interactions are designed to align with\nthe visual and functional requirements of side navigation layouts.\n\nBy providing the tooltip-text attribute, a tooltip will be displayed on hover of the navmenuitem. This tooltip is useful when an active navmenuitem is present within a submenu of the sidenavigation component.",
29336
29354
  "name": "NavMenuItem",
29337
29355
  "cssProperties": [
29338
29356
  {
29339
- "description": "Text color of the navmenuitem in its normal state.",
29340
- "name": "--mdc-navmenuitem-color"
29357
+ "description": "Width of the navmenuitem when expanded.",
29358
+ "name": "--mdc-navmenuitem-in-sidenav-expanded-width"
29359
+ },
29360
+ {
29361
+ "description": "Left margin of the navmenuitem, when expanded.",
29362
+ "name": "--mdc-navmenuitem-in-sidenav-expanded-margin-left"
29363
+ },
29364
+ {
29365
+ "description": "Right margin of the navmenuitem, when expanded.",
29366
+ "name": "--mdc-navmenuitem-in-sidenav-expanded-margin-right"
29367
+ },
29368
+ {
29369
+ "description": "Width of the navmenuitem when collapsed.",
29370
+ "name": "--mdc-navmenuitem-in-sidenav-collapsed-width"
29341
29371
  },
29342
29372
  {
29343
- "description": "Border color of the navmenuitem in its normal state.",
29344
- "name": "--mdc-navmenuitem-border-color"
29373
+ "description": "Left margin of the navmenuitem, when collapsed.",
29374
+ "name": "--mdc-navmenuitem-in-sidenav-collapsed-margin-left"
29375
+ },
29376
+ {
29377
+ "description": "Right margin of the navmenuitem, when collapsed.",
29378
+ "name": "--mdc-navmenuitem-in-sidenav-collapsed-margin-right"
29379
+ },
29380
+ {
29381
+ "description": "Text color of the navmenuitem in its normal state.",
29382
+ "name": "--mdc-navmenuitem-color"
29345
29383
  },
29346
29384
  {
29347
29385
  "description": "Text color of the navmenuitem when disabled.",
29348
29386
  "name": "--mdc-navmenuitem-disabled-color"
29349
29387
  },
29350
29388
  {
29351
- "description": "Width of the navmenuitem when expanded.",
29352
- "name": "--mdc-navmenuitem-expanded-width"
29389
+ "description": "Background color of the active nav item in its rest state.",
29390
+ "name": "--mdc-navmenuitem-rest-active-background-color"
29353
29391
  },
29354
29392
  {
29355
29393
  "description": "Background color of the navmenuitem when hovered.",
@@ -29375,10 +29413,6 @@
29375
29413
  "description": "Background color of the active navmenuitem when disabled.",
29376
29414
  "name": "--mdc-navmenuitem-disabled-active-background-color"
29377
29415
  },
29378
- {
29379
- "description": "Background color of the active nav item in its rest state.",
29380
- "name": "--mdc-navmenuitem-rest-active-background-color"
29381
- },
29382
29416
  {
29383
29417
  "description": "Allows customization of the default background color.",
29384
29418
  "name": "--mdc-listitem-default-background-color",
@@ -29549,7 +29583,7 @@
29549
29583
  "type": {
29550
29584
  "text": "boolean | undefined"
29551
29585
  },
29552
- "description": "The navmenuitem's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the navmenuitem is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the navmenuitem is in an inactive state, indicating it is toggled off.",
29586
+ "description": "The navmenuitem's active state indicates whether it is currently toggled on (active) or off (inactive).\nIf cannotActivate is set to true, the surrounding SideNavigation will\nnot set this property when the navmenuitem is clicked.",
29553
29587
  "default": "undefined",
29554
29588
  "attribute": "active",
29555
29589
  "reflects": true,
@@ -29558,6 +29592,27 @@
29558
29592
  "module": "components/listitem/listitem.component.js"
29559
29593
  }
29560
29594
  },
29595
+ {
29596
+ "kind": "field",
29597
+ "name": "cannotActivate",
29598
+ "type": {
29599
+ "text": "boolean | undefined"
29600
+ },
29601
+ "description": "When set to true, prevents the navmenuitem from being activated.\nThis is useful for cases where the navmenuitem is used as a button\nor link, where not the content on the current page is changing.\nBy default this is set to false, making the navmenuitem activatable (= aria-current gets set when active).",
29602
+ "default": "false",
29603
+ "attribute": "cannot-activate",
29604
+ "reflects": true
29605
+ },
29606
+ {
29607
+ "kind": "field",
29608
+ "name": "iconName",
29609
+ "type": {
29610
+ "text": "IconNames | undefined"
29611
+ },
29612
+ "description": "Name of the leading icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
29613
+ "attribute": "icon-name",
29614
+ "reflects": true
29615
+ },
29561
29616
  {
29562
29617
  "kind": "field",
29563
29618
  "name": "badgeType",
@@ -29600,6 +29655,17 @@
29600
29655
  "attribute": "nav-id",
29601
29656
  "reflects": true
29602
29657
  },
29658
+ {
29659
+ "kind": "field",
29660
+ "name": "showLabel",
29661
+ "type": {
29662
+ "text": "boolean | undefined"
29663
+ },
29664
+ "description": "Determines whether the nav item is expanded or not.\n\nIf used in SideNavigation, this property is automatically managed by the SideNavigation component.",
29665
+ "default": "undefined",
29666
+ "attribute": "show-label",
29667
+ "reflects": true
29668
+ },
29603
29669
  {
29604
29670
  "kind": "field",
29605
29671
  "name": "ariaLabel",
@@ -29616,7 +29682,8 @@
29616
29682
  "type": {
29617
29683
  "text": "boolean | undefined"
29618
29684
  },
29619
- "description": "When set to true, prevents the automatic setting of the `aria-current` attribute on the navmenuitem\nwhen it becomes active. This is useful for cases where you want to maintain the visual active styling\nbut need to handle aria-current attribute differently or not at all.\nThe active button styling will still be applied regardless of this setting.",
29685
+ "description": "When set to true, prevents the automatic setting of the `aria-current` attribute on the navmenuitem\nwhen it becomes active. This is useful for cases where you want to maintain the visual active styling\nbut need to handle aria-current attribute differently or not at all.\nThe active button styling will still be applied regardless of this setting.\n\nIf you also want to prevent activation, use the `cannot-activate` property instead.",
29686
+ "default": "undefined",
29620
29687
  "attribute": "disable-aria-current",
29621
29688
  "reflects": true
29622
29689
  },
@@ -29626,14 +29693,52 @@
29626
29693
  "type": {
29627
29694
  "text": "string | undefined"
29628
29695
  },
29629
- "description": "The tooltip text is displayed on hover of the list item.",
29696
+ "description": "The tooltip text is displayed on hover of the nav item.\nWill only be shown when the `show-label` property is false\n(i.e., when the nav item is collapsed).",
29630
29697
  "attribute": "tooltip-text",
29631
29698
  "reflects": true
29632
29699
  },
29633
29700
  {
29634
- "kind": "method",
29635
- "name": "removeTooltip",
29636
- "privacy": "private"
29701
+ "kind": "field",
29702
+ "name": "tooltipPlacement",
29703
+ "type": {
29704
+ "text": "PopoverPlacement"
29705
+ },
29706
+ "default": "'right'",
29707
+ "description": "The placement of the tooltip relative to the nav item.",
29708
+ "attribute": "tooltip-placement",
29709
+ "reflects": true
29710
+ },
29711
+ {
29712
+ "kind": "field",
29713
+ "name": "tooltipAppearance",
29714
+ "type": {
29715
+ "text": "'when-collapsed' | 'always'"
29716
+ },
29717
+ "default": "'when-collapsed'",
29718
+ "description": "The appearance behavior of the tooltip.\nOptions are 'when-collapsed' (default) or 'always'.",
29719
+ "attribute": "tooltip-appearance",
29720
+ "reflects": true
29721
+ },
29722
+ {
29723
+ "kind": "field",
29724
+ "name": "tooltipBoundaryPadding",
29725
+ "type": {
29726
+ "text": "number | undefined"
29727
+ },
29728
+ "description": "The boundary padding for the tooltip.\nThis defines the minimum distance in pixels between the tooltip and the edges of the viewport.",
29729
+ "default": "0",
29730
+ "attribute": "tooltip-boundary-padding",
29731
+ "reflects": true
29732
+ },
29733
+ {
29734
+ "kind": "field",
29735
+ "name": "isActiveParentTooltipText",
29736
+ "type": {
29737
+ "text": "string | undefined"
29738
+ },
29739
+ "description": "Tooltip text shown when this parent NavItem has a active child navitem.\nThis is useful for nested navmenuitems within a sidenavigation.\n\nMake sure to include what was normally used as the `tooltip-text` in this property.\ni.e. `Messaging, contains active navmenuitem`",
29740
+ "attribute": "is-active-parent-tooltip-text",
29741
+ "reflects": true
29637
29742
  },
29638
29743
  {
29639
29744
  "kind": "method",
@@ -29645,6 +29750,11 @@
29645
29750
  }
29646
29751
  }
29647
29752
  },
29753
+ {
29754
+ "kind": "method",
29755
+ "name": "removeTooltip",
29756
+ "privacy": "private"
29757
+ },
29648
29758
  {
29649
29759
  "kind": "method",
29650
29760
  "name": "isNested",
@@ -29668,34 +29778,23 @@
29668
29778
  },
29669
29779
  {
29670
29780
  "kind": "method",
29671
- "name": "renderTextLabel",
29781
+ "name": "getFilledIconName",
29672
29782
  "privacy": "private",
29673
- "parameters": [
29674
- {
29675
- "name": "label",
29676
- "type": {
29677
- "text": "string | undefined"
29678
- }
29679
- }
29680
- ]
29681
- },
29682
- {
29683
- "kind": "method",
29684
- "name": "renderArrowIcon",
29685
- "privacy": "private",
29686
- "parameters": [
29687
- {
29688
- "name": "showLabel",
29689
- "type": {
29690
- "text": "boolean | undefined"
29691
- }
29783
+ "return": {
29784
+ "type": {
29785
+ "text": "IconNames | undefined"
29692
29786
  }
29693
- ]
29787
+ }
29694
29788
  },
29695
29789
  {
29696
29790
  "kind": "method",
29697
29791
  "name": "renderBadge",
29698
29792
  "privacy": "private",
29793
+ "return": {
29794
+ "type": {
29795
+ "text": "TemplateResult | typeof nothing"
29796
+ }
29797
+ },
29699
29798
  "parameters": [
29700
29799
  {
29701
29800
  "name": "showLabel",
@@ -29705,19 +29804,6 @@
29705
29804
  }
29706
29805
  ]
29707
29806
  },
29708
- {
29709
- "kind": "field",
29710
- "name": "iconName",
29711
- "type": {
29712
- "text": "IconNames | undefined"
29713
- },
29714
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
29715
- "attribute": "icon-name",
29716
- "inheritedFrom": {
29717
- "name": "IconNameMixin",
29718
- "module": "utils/mixins/IconNameMixin.js"
29719
- }
29720
- },
29721
29807
  {
29722
29808
  "kind": "field",
29723
29809
  "name": "arrowPosition",
@@ -30219,7 +30305,7 @@
30219
30305
  "type": {
30220
30306
  "text": "boolean | undefined"
30221
30307
  },
30222
- "description": "The navmenuitem's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the navmenuitem is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the navmenuitem is in an inactive state, indicating it is toggled off.",
30308
+ "description": "The navmenuitem's active state indicates whether it is currently toggled on (active) or off (inactive).\nIf cannotActivate is set to true, the surrounding SideNavigation will\nnot set this property when the navmenuitem is clicked.",
30223
30309
  "default": "undefined",
30224
30310
  "fieldName": "active",
30225
30311
  "inheritedFrom": {
@@ -30227,6 +30313,23 @@
30227
30313
  "module": "src/components/listitem/listitem.component.ts"
30228
30314
  }
30229
30315
  },
30316
+ {
30317
+ "name": "cannot-activate",
30318
+ "type": {
30319
+ "text": "boolean | undefined"
30320
+ },
30321
+ "description": "When set to true, prevents the navmenuitem from being activated.\nThis is useful for cases where the navmenuitem is used as a button\nor link, where not the content on the current page is changing.\nBy default this is set to false, making the navmenuitem activatable (= aria-current gets set when active).",
30322
+ "default": "false",
30323
+ "fieldName": "cannotActivate"
30324
+ },
30325
+ {
30326
+ "name": "icon-name",
30327
+ "type": {
30328
+ "text": "IconNames | undefined"
30329
+ },
30330
+ "description": "Name of the leading icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
30331
+ "fieldName": "iconName"
30332
+ },
30230
30333
  {
30231
30334
  "name": "badge-type",
30232
30335
  "type": {
@@ -30261,6 +30364,15 @@
30261
30364
  "default": "undefined",
30262
30365
  "fieldName": "navId"
30263
30366
  },
30367
+ {
30368
+ "name": "show-label",
30369
+ "type": {
30370
+ "text": "boolean | undefined"
30371
+ },
30372
+ "description": "Determines whether the nav item is expanded or not.\n\nIf used in SideNavigation, this property is automatically managed by the SideNavigation component.",
30373
+ "default": "undefined",
30374
+ "fieldName": "showLabel"
30375
+ },
30264
30376
  {
30265
30377
  "name": "aria-label",
30266
30378
  "type": {
@@ -30275,7 +30387,8 @@
30275
30387
  "type": {
30276
30388
  "text": "boolean | undefined"
30277
30389
  },
30278
- "description": "When set to true, prevents the automatic setting of the `aria-current` attribute on the navmenuitem\nwhen it becomes active. This is useful for cases where you want to maintain the visual active styling\nbut need to handle aria-current attribute differently or not at all.\nThe active button styling will still be applied regardless of this setting.",
30390
+ "description": "When set to true, prevents the automatic setting of the `aria-current` attribute on the navmenuitem\nwhen it becomes active. This is useful for cases where you want to maintain the visual active styling\nbut need to handle aria-current attribute differently or not at all.\nThe active button styling will still be applied regardless of this setting.\n\nIf you also want to prevent activation, use the `cannot-activate` property instead.",
30391
+ "default": "undefined",
30279
30392
  "fieldName": "disableAriaCurrent"
30280
30393
  },
30281
30394
  {
@@ -30283,20 +30396,43 @@
30283
30396
  "type": {
30284
30397
  "text": "string | undefined"
30285
30398
  },
30286
- "description": "The tooltip text is displayed on hover of the list item.",
30399
+ "description": "The tooltip text is displayed on hover of the nav item.\nWill only be shown when the `show-label` property is false\n(i.e., when the nav item is collapsed).",
30287
30400
  "fieldName": "tooltipText"
30288
30401
  },
30289
30402
  {
30290
- "name": "icon-name",
30403
+ "name": "tooltip-placement",
30291
30404
  "type": {
30292
- "text": "IconNames | undefined"
30405
+ "text": "PopoverPlacement"
30293
30406
  },
30294
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
30295
- "fieldName": "iconName",
30296
- "inheritedFrom": {
30297
- "name": "IconNameMixin",
30298
- "module": "src/utils/mixins/IconNameMixin.ts"
30299
- }
30407
+ "default": "'right'",
30408
+ "description": "The placement of the tooltip relative to the nav item.",
30409
+ "fieldName": "tooltipPlacement"
30410
+ },
30411
+ {
30412
+ "name": "tooltip-appearance",
30413
+ "type": {
30414
+ "text": "'when-collapsed' | 'always'"
30415
+ },
30416
+ "default": "'when-collapsed'",
30417
+ "description": "The appearance behavior of the tooltip.\nOptions are 'when-collapsed' (default) or 'always'.",
30418
+ "fieldName": "tooltipAppearance"
30419
+ },
30420
+ {
30421
+ "name": "tooltip-boundary-padding",
30422
+ "type": {
30423
+ "text": "number | undefined"
30424
+ },
30425
+ "description": "The boundary padding for the tooltip.\nThis defines the minimum distance in pixels between the tooltip and the edges of the viewport.",
30426
+ "default": "0",
30427
+ "fieldName": "tooltipBoundaryPadding"
30428
+ },
30429
+ {
30430
+ "name": "is-active-parent-tooltip-text",
30431
+ "type": {
30432
+ "text": "string | undefined"
30433
+ },
30434
+ "description": "Tooltip text shown when this parent NavItem has a active child navitem.\nThis is useful for nested navmenuitems within a sidenavigation.\n\nMake sure to include what was normally used as the `tooltip-text` in this property.\ni.e. `Messaging, contains active navmenuitem`",
30435
+ "fieldName": "isActiveParentTooltipText"
30300
30436
  },
30301
30437
  {
30302
30438
  "name": "arrow-position",
@@ -30472,18 +30608,12 @@
30472
30608
  }
30473
30609
  }
30474
30610
  ],
30475
- "mixins": [
30476
- {
30477
- "name": "IconNameMixin",
30478
- "module": "/src/utils/mixins/IconNameMixin"
30479
- }
30480
- ],
30481
30611
  "superclass": {
30482
30612
  "name": "MenuItem",
30483
30613
  "module": "/src/components/menuitem/menuitem.component"
30484
30614
  },
30485
30615
  "tagName": "mdc-navmenuitem",
30486
- "jsDoc": "/**\n * `mdc-navmenuitem` is a menuitem styled to work as a navigation tab.\n * It supports a leading icon, optional badge and dynamic text rendering.\n *\n * Note: `mdc-navmenuitem` is intended to be used inside `mdc-menubar` as part of the sideNavigation\n * component. Its structure, spacing, and interactions are designed to align with\n * the visual and functional requirements of side navigation layouts.\n *\n * By providing the tooltip-text attribute, a tooltip will be displayed on hover of the navmenuitem. This tooltip is useful when an active navmenuitem is present within a submenu of the sidenavigation component.\n *\n * @tagname mdc-navmenuitem\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-badge\n * @dependency mdc-tooltip\n *\n * @event click - (React: onClick) This event is dispatched when the navmenuitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the navmenuitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the navmenuitem.\n * @event focus - (React: onFocus) This event is dispatched when the navmenuitem receives focus.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @cssproperty --mdc-navmenuitem-color - Text color of the navmenuitem in its normal state.\n * @cssproperty --mdc-navmenuitem-border-color - Border color of the navmenuitem in its normal state.\n * @cssproperty --mdc-navmenuitem-disabled-color - Text color of the navmenuitem when disabled.\n * @cssproperty --mdc-navmenuitem-expanded-width - Width of the navmenuitem when expanded.\n * @cssproperty --mdc-navmenuitem-hover-background-color - Background color of the navmenuitem when hovered.\n * @cssproperty --mdc-navmenuitem-hover-active-background-color - Background color of the active navmenuitem when hovered.\n * @cssproperty --mdc-navmenuitem-pressed-background-color - Background color of the navmenuitem when pressed.\n * @cssproperty --mdc-navmenuitem-pressed-active-background-color - Background color of the active navmenuitem when pressed.\n * @cssproperty --mdc-navmenuitem-disabled-background-color - Background color of the navmenuitem when disabled.\n * @cssproperty --mdc-navmenuitem-disabled-active-background-color - Background color of the active navmenuitem when disabled.\n * @cssproperty --mdc-navmenuitem-rest-active-background-color - Background color of the active nav item in its rest state.\n *\n * @csspart arrow - The arrow of the navmenuitem.\n * @csspart badge - The badge of the navmenuitem.\n * @csspart icon-container - The container of the icon.\n * @csspart text-container - The container of the text.\n * @csspart trailing-arrow - The trailing arrow of the navmenuitem.\n */",
30616
+ "jsDoc": "/**\n * `mdc-navmenuitem` is a menuitem styled to work as a navigation tab.\n * It supports a leading icon, optional badge and dynamic text rendering.\n *\n * The navmenuitem can be in an active or inactive state, indicating whether it is currently selected.\n *\n * Note: `mdc-navmenuitem` is intended to be used inside `mdc-menubar` as part of the sideNavigation\n * component. Its structure, spacing, and interactions are designed to align with\n * the visual and functional requirements of side navigation layouts.\n *\n * By providing the tooltip-text attribute, a tooltip will be displayed on hover of the navmenuitem. This tooltip is useful when an active navmenuitem is present within a submenu of the sidenavigation component.\n *\n * @tagname mdc-navmenuitem\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-badge\n * @dependency mdc-tooltip\n *\n * @event click - (React: onClick) This event is dispatched when the navmenuitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the navmenuitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the navmenuitem.\n * @event focus - (React: onFocus) This event is dispatched when the navmenuitem receives focus.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @cssproperty --mdc-navmenuitem-in-sidenav-expanded-width - Width of the navmenuitem when expanded.\n * @cssproperty --mdc-navmenuitem-in-sidenav-expanded-margin-left - Left margin of the navmenuitem, when expanded.\n * @cssproperty --mdc-navmenuitem-in-sidenav-expanded-margin-right - Right margin of the navmenuitem, when expanded.\n * @cssproperty --mdc-navmenuitem-in-sidenav-collapsed-width - Width of the navmenuitem when collapsed.\n * @cssproperty --mdc-navmenuitem-in-sidenav-collapsed-margin-left - Left margin of the navmenuitem, when collapsed.\n * @cssproperty --mdc-navmenuitem-in-sidenav-collapsed-margin-right - Right margin of the navmenuitem, when collapsed.\n * @cssproperty --mdc-navmenuitem-color - Text color of the navmenuitem in its normal state.\n * @cssproperty --mdc-navmenuitem-disabled-color - Text color of the navmenuitem when disabled.\n * @cssproperty --mdc-navmenuitem-rest-active-background-color - Background color of the active nav item in its rest state.\n * @cssproperty --mdc-navmenuitem-hover-background-color - Background color of the navmenuitem when hovered.\n * @cssproperty --mdc-navmenuitem-hover-active-background-color - Background color of the active navmenuitem when hovered.\n * @cssproperty --mdc-navmenuitem-pressed-background-color - Background color of the navmenuitem when pressed.\n * @cssproperty --mdc-navmenuitem-pressed-active-background-color - Background color of the active navmenuitem when pressed.\n * @cssproperty --mdc-navmenuitem-disabled-background-color - Background color of the navmenuitem when disabled.\n * @cssproperty --mdc-navmenuitem-disabled-active-background-color - Background color of the active navmenuitem when disabled.\n *\n * @csspart arrow - The arrow of the navmenuitem.\n * @csspart badge - The badge of the navmenuitem.\n * @csspart icon-container - The container of the icon.\n * @csspart text-container - The container of the text.\n * @csspart trailing-arrow - The trailing arrow of the navmenuitem.\n */",
30487
30617
  "customElement": true,
30488
30618
  "slots": [
30489
30619
  {
@@ -42859,17 +42989,41 @@
42859
42989
  "declarations": [
42860
42990
  {
42861
42991
  "kind": "class",
42862
- "description": "The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\ntypically used in layouts with persistent or collapsible sidebars.\n\n## Features:\n- Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n- Toggleable expand/collapse behavior\n- Displays brand logo and customer name\n- Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n\n### Usage:\nIn a sidenavigation, navmenuitems can be used in the following ways:\n\n1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n\n2. **NavMenuItem with submenu**:\n - Provide an `id` on the `mdc-navmenuitem`\n - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n inside the nested menupopover is active, conveying which submenu item is currently selected\n\n3. **Actionable navmenuitem (no submenu)**:\n - Performs an action such as navigation or alert trigger\n - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n\n### Recommendations:\n- Use `mdc-text` for section headers\n- Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n- For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n\n#### Accessibility Notes:\n- Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\nto ensure screen reader support\n- Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button",
42992
+ "description": "The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\ntypically used in layouts with persistent or collapsible sidebars.\n\n## Features:\n- Supports five layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, `flexible-on-hover`, and `hidden`\n- Toggleable expand/collapse behavior\n- Displays brand logo and customer name\n- Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n\n### Usage:\nIn a sidenavigation, navmenuitems can be used in the following ways:\n\n1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n\n2. **NavMenuItem with submenu**:\n - Provide an `id` on the `mdc-navmenuitem`\n - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n inside the nested menupopover is active, conveying which submenu item is currently selected\n\n3. **Actionable navmenuitem (no submenu)**:\n - Performs an action such as navigation or alert trigger\n - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n\n### Recommendations:\n- Use `mdc-text` for section headers\n- Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n- For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n\n#### Accessibility Notes:\n- Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\nto ensure screen reader support\n- Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button",
42863
42993
  "name": "SideNavigation",
42864
42994
  "cssProperties": [
42865
42995
  {
42866
42996
  "description": "width of the sideNavigation when expanded",
42867
42997
  "name": "--mdc-sidenavigation-expanded-width"
42868
42998
  },
42999
+ {
43000
+ "description": "padding for the left side of navmenuitems, when expanded",
43001
+ "name": "--mdc-sidenavigation-expanded-left-padding"
43002
+ },
43003
+ {
43004
+ "description": "padding for the right side of navmenuitems, when expanded",
43005
+ "name": "--mdc-sidenavigation-expanded-right-padding"
43006
+ },
42869
43007
  {
42870
43008
  "description": "width of the sideNavigation when collapsed",
42871
43009
  "name": "--mdc-sidenavigation-collapsed-width"
42872
43010
  },
43011
+ {
43012
+ "description": "padding for the left side of navmenuitems, when collapsed",
43013
+ "name": "--mdc-sidenavigation-collapsed-left-padding"
43014
+ },
43015
+ {
43016
+ "description": "padding for the right side of navmenuitems, when collapsed",
43017
+ "name": "--mdc-sidenavigation-collapsed-right-padding"
43018
+ },
43019
+ {
43020
+ "description": "padding for the top of the scrollable section - note: if setting to 0 focus ring might be cut off",
43021
+ "name": "--mdc-sidenavigation-top-padding"
43022
+ },
43023
+ {
43024
+ "description": "padding for the bottom of the scrollable section",
43025
+ "name": "--mdc-sidenavigation-bottom-padding"
43026
+ },
42873
43027
  {
42874
43028
  "description": "z-index of the vertical divider button",
42875
43029
  "name": "--mdc-sidenavigation-vertical-divider-button-z-index"
@@ -42885,13 +43039,21 @@
42885
43039
  "name": "scrollable-section"
42886
43040
  },
42887
43041
  {
42888
- "description": "The fixed section of the side navigation.",
42889
- "name": "fixed-section"
43042
+ "description": "The menubar inside the scrollable section.",
43043
+ "name": "scrollable-menubar"
42890
43044
  },
42891
43045
  {
42892
43046
  "description": "The divider between the scrollable and fixed sections.",
42893
43047
  "name": "separator"
42894
43048
  },
43049
+ {
43050
+ "description": "The fixed section of the side navigation.",
43051
+ "name": "fixed-section"
43052
+ },
43053
+ {
43054
+ "description": "The menubar inside the fixed section.",
43055
+ "name": "fixed-menubar"
43056
+ },
42895
43057
  {
42896
43058
  "description": "The container wrapping the brand logo and footer text.",
42897
43059
  "name": "brand-logo-container"
@@ -42914,10 +43076,18 @@
42914
43076
  "description": "Slot for the scrollable content area of the side navigation.",
42915
43077
  "name": "scrollable-section"
42916
43078
  },
43079
+ {
43080
+ "description": "Slot for the menubar inside the scrollable section.",
43081
+ "name": "scrollable-menubar"
43082
+ },
42917
43083
  {
42918
43084
  "description": "Slot for the fixed content area of the side navigation.",
42919
43085
  "name": "fixed-section"
42920
43086
  },
43087
+ {
43088
+ "description": "Slot for the menubar inside the fixed section.",
43089
+ "name": "fixed-menubar"
43090
+ },
42921
43091
  {
42922
43092
  "description": "Slot for the brand logo (e.g., icon or img).",
42923
43093
  "name": "brand-logo"
@@ -42930,7 +43100,7 @@
42930
43100
  "type": {
42931
43101
  "text": "SideNavigationVariant"
42932
43102
  },
42933
- "description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
43103
+ "description": "Five variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **flexible-on-hover**: Similar to flexible, but the grabber button is only visible on hover or focus.\n- **hidden**: Removes the sidenavigation from the DOM.",
42934
43104
  "default": "flexible",
42935
43105
  "attribute": "variant",
42936
43106
  "reflects": true
@@ -42942,10 +43112,21 @@
42942
43112
  "text": "string"
42943
43113
  },
42944
43114
  "default": "''",
42945
- "description": "Displays footer text in the bottom section of the sidenavigation.",
43115
+ "description": "Displays footer text in the bottom section of the sidenavigation.\n\nNote: if footerText is not provided, the bottom brand logo section will not be rendered.",
42946
43116
  "attribute": "footer-text",
42947
43117
  "reflects": true
42948
43118
  },
43119
+ {
43120
+ "kind": "field",
43121
+ "name": "expanded",
43122
+ "type": {
43123
+ "text": "boolean | undefined"
43124
+ },
43125
+ "description": "Determines whether the sideNavigation is expanded or not.\n\nNOTE: For `fixed-collapsed` and `fixed-expanded` variants, this property is hard set to `false` and `true` respectively.\nFor `flexible` and `flexible-on-hover` variants, this property can be toggled / controlled from parent.",
43126
+ "default": "true",
43127
+ "attribute": "expanded",
43128
+ "reflects": true
43129
+ },
42949
43130
  {
42950
43131
  "kind": "field",
42951
43132
  "name": "grabberBtnAriaLabel",
@@ -42959,14 +43140,33 @@
42959
43140
  },
42960
43141
  {
42961
43142
  "kind": "field",
42962
- "name": "parentNavTooltipText",
43143
+ "name": "hideFixedSectionDivider",
42963
43144
  "type": {
42964
- "text": "string | undefined"
43145
+ "text": "boolean"
42965
43146
  },
42966
- "description": "Tooltip text shown on parent nav items when a child is active.",
42967
- "attribute": "parent-nav-tooltip-text",
43147
+ "default": "false",
43148
+ "description": "Hides the divider between the scrollable and fixed sections when set to true.",
43149
+ "attribute": "hide-fixed-section-divider",
42968
43150
  "reflects": true
42969
43151
  },
43152
+ {
43153
+ "kind": "field",
43154
+ "name": "isHovered",
43155
+ "type": {
43156
+ "text": "boolean"
43157
+ },
43158
+ "privacy": "private",
43159
+ "default": "false"
43160
+ },
43161
+ {
43162
+ "kind": "field",
43163
+ "name": "isFocused",
43164
+ "type": {
43165
+ "text": "boolean"
43166
+ },
43167
+ "privacy": "private",
43168
+ "default": "false"
43169
+ },
42970
43170
  {
42971
43171
  "kind": "field",
42972
43172
  "name": "Context",
@@ -43025,7 +43225,7 @@
43025
43225
  "type": {
43026
43226
  "text": "SideNavigationVariant"
43027
43227
  },
43028
- "description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
43228
+ "description": "Five variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **flexible-on-hover**: Similar to flexible, but the grabber button is only visible on hover or focus.\n- **hidden**: Removes the sidenavigation from the DOM.",
43029
43229
  "default": "flexible",
43030
43230
  "fieldName": "variant"
43031
43231
  },
@@ -43035,9 +43235,18 @@
43035
43235
  "text": "string"
43036
43236
  },
43037
43237
  "default": "''",
43038
- "description": "Displays footer text in the bottom section of the sidenavigation.",
43238
+ "description": "Displays footer text in the bottom section of the sidenavigation.\n\nNote: if footerText is not provided, the bottom brand logo section will not be rendered.",
43039
43239
  "fieldName": "footerText"
43040
43240
  },
43241
+ {
43242
+ "name": "expanded",
43243
+ "type": {
43244
+ "text": "boolean | undefined"
43245
+ },
43246
+ "description": "Determines whether the sideNavigation is expanded or not.\n\nNOTE: For `fixed-collapsed` and `fixed-expanded` variants, this property is hard set to `false` and `true` respectively.\nFor `flexible` and `flexible-on-hover` variants, this property can be toggled / controlled from parent.",
43247
+ "default": "true",
43248
+ "fieldName": "expanded"
43249
+ },
43041
43250
  {
43042
43251
  "name": "grabber-btn-aria-label",
43043
43252
  "type": {
@@ -43048,12 +43257,13 @@
43048
43257
  "fieldName": "grabberBtnAriaLabel"
43049
43258
  },
43050
43259
  {
43051
- "name": "parent-nav-tooltip-text",
43260
+ "name": "hide-fixed-section-divider",
43052
43261
  "type": {
43053
- "text": "string | undefined"
43262
+ "text": "boolean"
43054
43263
  },
43055
- "description": "Tooltip text shown on parent nav items when a child is active.",
43056
- "fieldName": "parentNavTooltipText"
43264
+ "default": "false",
43265
+ "description": "Hides the divider between the scrollable and fixed sections when set to true.",
43266
+ "fieldName": "hideFixedSectionDivider"
43057
43267
  }
43058
43268
  ],
43059
43269
  "superclass": {
@@ -43061,7 +43271,7 @@
43061
43271
  "module": "/src/models"
43062
43272
  },
43063
43273
  "tagName": "mdc-sidenavigation",
43064
- "jsDoc": "/**\n * The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\n * typically used in layouts with persistent or collapsible sidebars.\n *\n * ## Features:\n * - Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n * - Toggleable expand/collapse behavior\n * - Displays brand logo and customer name\n * - Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n *\n * ### Usage:\n * In a sidenavigation, navmenuitems can be used in the following ways:\n *\n * 1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n *\n * 2. **NavMenuItem with submenu**:\n * - Provide an `id` on the `mdc-navmenuitem`\n * - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n * - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n * inside the nested menupopover is active, conveying which submenu item is currently selected\n *\n * 3. **Actionable navmenuitem (no submenu)**:\n * - Performs an action such as navigation or alert trigger\n * - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n *\n * ### Recommendations:\n * - Use `mdc-text` for section headers\n * - Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n * - For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n *\n * #### Accessibility Notes:\n * - Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\n * to ensure screen reader support\n * - Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button\n *\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-divider\n * @dependency mdc-menubar\n *\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @tagname mdc-sidenavigation\n *\n * @slot scrollable-section - Slot for the scrollable content area of the side navigation.\n * @slot fixed-section - Slot for the fixed content area of the side navigation.\n * @slot brand-logo - Slot for the brand logo (e.g., icon or img).\n *\n * @csspart side-navigation-container - The main container wrapping the entire side navigation.\n * @csspart scrollable-section - The scrollable section of the side navigation.\n * @csspart fixed-section - The fixed section of the side navigation.\n * @csspart separator - The divider between the scrollable and fixed sections.\n * @csspart brand-logo-container - The container wrapping the brand logo and footer text.\n * @csspart footer-text - The footer text label in the fixed section.\n * @csspart vertical-divider - The vertical divider between the scrollable and fixed sections.\n * @csspart vertical-divider-button - The button inside the vertical divider used to toggle expand/collapse.\n *\n * @event toggle - (React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.\n *\n * @cssproperty --mdc-sidenavigation-expanded-width - width of the sideNavigation when expanded\n * @cssproperty --mdc-sidenavigation-collapsed-width - width of the sideNavigation when collapsed\n * @cssproperty --mdc-sidenavigation-vertical-divider-button-z-index - z-index of the vertical divider button\n */",
43274
+ "jsDoc": "/**\n * The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\n * typically used in layouts with persistent or collapsible sidebars.\n *\n * ## Features:\n * - Supports five layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, `flexible-on-hover`, and `hidden`\n * - Toggleable expand/collapse behavior\n * - Displays brand logo and customer name\n * - Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n *\n * ### Usage:\n * In a sidenavigation, navmenuitems can be used in the following ways:\n *\n * 1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n *\n * 2. **NavMenuItem with submenu**:\n * - Provide an `id` on the `mdc-navmenuitem`\n * - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n * - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n * inside the nested menupopover is active, conveying which submenu item is currently selected\n *\n * 3. **Actionable navmenuitem (no submenu)**:\n * - Performs an action such as navigation or alert trigger\n * - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n *\n * ### Recommendations:\n * - Use `mdc-text` for section headers\n * - Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n * - For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n *\n * #### Accessibility Notes:\n * - Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\n * to ensure screen reader support\n * - Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button\n *\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-divider\n * @dependency mdc-menubar\n *\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @tagname mdc-sidenavigation\n *\n * @slot scrollable-section - Slot for the scrollable content area of the side navigation.\n * @slot scrollable-menubar - Slot for the menubar inside the scrollable section.\n * @slot fixed-section - Slot for the fixed content area of the side navigation.\n * @slot fixed-menubar - Slot for the menubar inside the fixed section.\n * @slot brand-logo - Slot for the brand logo (e.g., icon or img).\n *\n * @csspart side-navigation-container - The main container wrapping the entire side navigation.\n * @csspart scrollable-section - The scrollable section of the side navigation.\n * @csspart scrollable-menubar - The menubar inside the scrollable section.\n * @csspart separator - The divider between the scrollable and fixed sections.\n * @csspart fixed-section - The fixed section of the side navigation.\n * @csspart fixed-menubar - The menubar inside the fixed section.\n * @csspart brand-logo-container - The container wrapping the brand logo and footer text.\n * @csspart footer-text - The footer text label in the fixed section.\n * @csspart vertical-divider - The vertical divider between the scrollable and fixed sections.\n * @csspart vertical-divider-button - The button inside the vertical divider used to toggle expand/collapse.\n *\n * @event toggle - (React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.\n *\n * @cssproperty --mdc-sidenavigation-expanded-width - width of the sideNavigation when expanded\n * @cssproperty --mdc-sidenavigation-expanded-left-padding - padding for the left side of navmenuitems, when expanded\n * @cssproperty --mdc-sidenavigation-expanded-right-padding - padding for the right side of navmenuitems, when expanded\n * @cssproperty --mdc-sidenavigation-collapsed-width - width of the sideNavigation when collapsed\n * @cssproperty --mdc-sidenavigation-collapsed-left-padding - padding for the left side of navmenuitems, when collapsed\n * @cssproperty --mdc-sidenavigation-collapsed-right-padding - padding for the right side of navmenuitems, when collapsed\n * @cssproperty --mdc-sidenavigation-top-padding - padding for the top of the scrollable section - note: if setting to 0 focus ring might be cut off\n * @cssproperty --mdc-sidenavigation-bottom-padding - padding for the bottom of the scrollable section\n * @cssproperty --mdc-sidenavigation-vertical-divider-button-z-index - z-index of the vertical divider button\n */",
43065
43275
  "customElement": true
43066
43276
  }
43067
43277
  ],
@@ -46354,7 +46564,7 @@
46354
46564
  "declarations": [
46355
46565
  {
46356
46566
  "kind": "class",
46357
- "description": "mdc-textarea component, which is used to get the multi-line text input from the user.\nIt contains:\n- label: It is the title of the textarea field.\n- required: A boolean attribute depicting that the textarea field is required.\n- Textarea: It is the multi-line text input field.\n- helper-text: It is the text that provides additional information about the textarea field.\n- max-character-limit: It is the text that shows the character count of the textarea field.\n- Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n about the textarea field based on the validation state.\n- limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n This event exposes 3 properties:\n - currentCharacterCount - the current number of characters in the textarea field,\n - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n - value - the current value of the textarea field,\n\n**Note**: Consumers must set the help-text-type with 'error' and\nhelp-text attribute with the error message using limitexceeded event.\nThe same help-text value will be used for the validation message to be displayed.",
46567
+ "description": "mdc-textarea component, which is used to get the multi-line text input from the user.\nIt contains:\n- label: It is the title of the textarea field.\n- required: A boolean attribute depicting that the textarea field is required.\n- Textarea: It is the multi-line text input field.\n- helper-text: It is the text that provides additional information about the textarea field.\n- max-character-limit: It is the text that shows the character count of the textarea field.\n- Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n about the textarea field based on the validation state.\n- limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n This event exposes 3 properties:\n - currentCharacterCount - the current number of characters in the textarea field,\n - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n - value - the current value of the textarea field,\n\n**Note**: Consumers must set the help-text-type with 'error' and\nhelp-text attribute with the error message using limitexceeded event.\nThe same help-text value will be used for the validation message to be displayed.\n\n### Accessibility \n\n#### Resize\n \nAccessible text area resizing can be turned on with the `resizable`. \nIt is strongly recommended to set the `resize-button-aria-label` attribute as well to describe what it is and what are the shortcuts (up/down arrows) of the button.\n\n#### Best practices\n\n- Always provide a `label` for screen readers to identify the textarea's purpose\n- Use `help-text` to provide additional context or instructions\n- When using `max-character-limit`, consider providing `character-limit-announcement` for screen reader updates\n- Use appropriate `help-text-type` (error, warning, success) to convey validation state\n- Ensure `validation-message` is set for form validation errors",
46358
46568
  "name": "Textarea",
46359
46569
  "cssProperties": [
46360
46570
  {
@@ -46499,6 +46709,26 @@
46499
46709
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
46500
46710
  }
46501
46711
  },
46712
+ {
46713
+ "description": "The textarea element.",
46714
+ "name": "textarea"
46715
+ },
46716
+ {
46717
+ "description": "The container element that wraps the textarea and resize button.",
46718
+ "name": "textarea-container"
46719
+ },
46720
+ {
46721
+ "description": "The footer element that contains the character counter.",
46722
+ "name": "textarea-footer"
46723
+ },
46724
+ {
46725
+ "description": "The character counter element.",
46726
+ "name": "character-counter"
46727
+ },
46728
+ {
46729
+ "description": "The resize button element (shown when `resizable` is true).",
46730
+ "name": "resize-button"
46731
+ },
46502
46732
  {
46503
46733
  "description": "The helper/validation text element.",
46504
46734
  "name": "help-text",
@@ -46576,7 +46806,8 @@
46576
46806
  },
46577
46807
  "description": "The rows attribute specifies the visible number of lines in a text area.",
46578
46808
  "default": "5",
46579
- "attribute": "rows"
46809
+ "attribute": "rows",
46810
+ "reflects": true
46580
46811
  },
46581
46812
  {
46582
46813
  "kind": "field",
@@ -46663,6 +46894,27 @@
46663
46894
  "description": "Template string for the announcement that will be read by screen readers when the max character limit is set.\nConsumers must use the placeholders `%{number-of-characters}` and `%{max-character-limit}` in the string,\nwhich will be dynamically replaced with the actual values at runtime.\nFor example: `%{number-of-characters} out of %{max-character-limit} characters are typed.`\nExample output: \"93 out of 140 characters are typed.\"",
46664
46895
  "attribute": "character-limit-announcement"
46665
46896
  },
46897
+ {
46898
+ "kind": "field",
46899
+ "name": "resizable",
46900
+ "type": {
46901
+ "text": "boolean"
46902
+ },
46903
+ "default": "false",
46904
+ "description": "Controls whether the textarea is resizable via the resize button.\nWhen set to false, the resize button will be hidden.",
46905
+ "attribute": "resizable",
46906
+ "reflects": true
46907
+ },
46908
+ {
46909
+ "kind": "field",
46910
+ "name": "resizeButtonAriaLabel",
46911
+ "type": {
46912
+ "text": "string | undefined"
46913
+ },
46914
+ "description": "Provides an accessible label for the resize button.\nThis value is used to set the `aria-label` attribute for the button.",
46915
+ "default": "''",
46916
+ "attribute": "resize-button-aria-label"
46917
+ },
46666
46918
  {
46667
46919
  "kind": "field",
46668
46920
  "name": "textarea",
@@ -46751,6 +47003,57 @@
46751
47003
  "name": "renderTextareaFooter",
46752
47004
  "privacy": "protected"
46753
47005
  },
47006
+ {
47007
+ "kind": "method",
47008
+ "name": "handleResizeKeyDown",
47009
+ "privacy": "private",
47010
+ "parameters": [
47011
+ {
47012
+ "name": "event",
47013
+ "type": {
47014
+ "text": "KeyboardEvent"
47015
+ },
47016
+ "description": "The keyboard event."
47017
+ }
47018
+ ],
47019
+ "description": "Handles the resize button keydown event for keyboard-based resizing."
47020
+ },
47021
+ {
47022
+ "kind": "field",
47023
+ "name": "handlePointerDown",
47024
+ "privacy": "private",
47025
+ "description": "Handles the start of pointer-based resizing.",
47026
+ "parameters": [
47027
+ {
47028
+ "description": "The pointer event.",
47029
+ "name": "event"
47030
+ }
47031
+ ]
47032
+ },
47033
+ {
47034
+ "kind": "field",
47035
+ "name": "handlePointerMove",
47036
+ "privacy": "private",
47037
+ "description": "Handles pointer movement during resizing.",
47038
+ "parameters": [
47039
+ {
47040
+ "description": "The pointer event.",
47041
+ "name": "event"
47042
+ }
47043
+ ]
47044
+ },
47045
+ {
47046
+ "kind": "field",
47047
+ "name": "handlePointerUp",
47048
+ "privacy": "private",
47049
+ "description": "Handles the end of pointer-based resizing.",
47050
+ "parameters": [
47051
+ {
47052
+ "description": "The pointer event.",
47053
+ "name": "event"
47054
+ }
47055
+ ]
47056
+ },
46754
47057
  {
46755
47058
  "kind": "field",
46756
47059
  "name": "autoFocusOnMount",
@@ -47244,6 +47547,24 @@
47244
47547
  "description": "Template string for the announcement that will be read by screen readers when the max character limit is set.\nConsumers must use the placeholders `%{number-of-characters}` and `%{max-character-limit}` in the string,\nwhich will be dynamically replaced with the actual values at runtime.\nFor example: `%{number-of-characters} out of %{max-character-limit} characters are typed.`\nExample output: \"93 out of 140 characters are typed.\"",
47245
47548
  "fieldName": "characterLimitAnnouncement"
47246
47549
  },
47550
+ {
47551
+ "name": "resizable",
47552
+ "type": {
47553
+ "text": "boolean"
47554
+ },
47555
+ "default": "false",
47556
+ "description": "Controls whether the textarea is resizable via the resize button.\nWhen set to false, the resize button will be hidden.",
47557
+ "fieldName": "resizable"
47558
+ },
47559
+ {
47560
+ "name": "resize-button-aria-label",
47561
+ "type": {
47562
+ "text": "string | undefined"
47563
+ },
47564
+ "description": "Provides an accessible label for the resize button.\nThis value is used to set the `aria-label` attribute for the button.",
47565
+ "default": "''",
47566
+ "fieldName": "resizeButtonAriaLabel"
47567
+ },
47247
47568
  {
47248
47569
  "name": "auto-focus-on-mount",
47249
47570
  "type": {
@@ -47464,7 +47785,7 @@
47464
47785
  "module": "/src/components/formfieldwrapper"
47465
47786
  },
47466
47787
  "tagName": "mdc-textarea",
47467
- "jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-text-font-size - Font size for the textarea field\n * @cssproperty --mdc-textarea-text-line-height - Line height for the textarea field\n * @cssproperty --mdc-textarea-container-background-color - Background color for the textarea container\n */",
47788
+ "jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * ### Accessibility \n * \n * #### Resize\n * \n * Accessible text area resizing can be turned on with the `resizable`. \n * It is strongly recommended to set the `resize-button-aria-label` attribute as well to describe what it is and what are the shortcuts (up/down arrows) of the button.\n * \n * #### Best practices\n * \n * - Always provide a `label` for screen readers to identify the textarea's purpose\n * - Use `help-text` to provide additional context or instructions\n * - When using `max-character-limit`, consider providing `character-limit-announcement` for screen reader updates\n * - Use appropriate `help-text-type` (error, warning, success) to convey validation state\n * - Ensure `validation-message` is set for form validation errors\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart textarea - The textarea element.\n * @csspart textarea-container - The container element that wraps the textarea and resize button.\n * @csspart textarea-footer - The footer element that contains the character counter.\n * @csspart character-counter - The character counter element.\n * @csspart resize-button - The resize button element (shown when `resizable` is true).\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-text-font-size - Font size for the textarea field\n * @cssproperty --mdc-textarea-text-line-height - Line height for the textarea field\n * @cssproperty --mdc-textarea-container-background-color - Background color for the textarea container\n */",
47468
47789
  "customElement": true
47469
47790
  }
47470
47791
  ],