@momentum-design/components 0.120.2 → 0.120.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.
Files changed (78) hide show
  1. package/dist/browser/index.js +71 -70
  2. package/dist/browser/index.js.map +2 -2
  3. package/dist/components/checkbox/checkbox.component.d.ts +11 -0
  4. package/dist/components/checkbox/checkbox.component.js +11 -0
  5. package/dist/components/combobox/combobox.component.d.ts +9 -1
  6. package/dist/components/combobox/combobox.component.js +10 -3
  7. package/dist/components/combobox/combobox.styles.js +1 -1
  8. package/dist/components/formfieldgroup/formfieldgroup.component.d.ts +11 -0
  9. package/dist/components/formfieldgroup/formfieldgroup.component.js +11 -0
  10. package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +9 -0
  11. package/dist/components/formfieldwrapper/formfieldwrapper.component.js +9 -0
  12. package/dist/components/input/input.component.d.ts +14 -0
  13. package/dist/components/input/input.component.js +18 -6
  14. package/dist/components/input/input.styles.js +32 -32
  15. package/dist/components/password/password.component.d.ts +12 -0
  16. package/dist/components/password/password.component.js +12 -0
  17. package/dist/components/popover/popover.component.js +2 -2
  18. package/dist/components/popover/popover.styles.js +1 -1
  19. package/dist/components/progressbar/progressbar.component.d.ts +6 -0
  20. package/dist/components/progressbar/progressbar.component.js +6 -0
  21. package/dist/components/radio/radio.component.d.ts +10 -0
  22. package/dist/components/radio/radio.component.js +10 -0
  23. package/dist/components/searchfield/searchfield.component.d.ts +8 -0
  24. package/dist/components/searchfield/searchfield.component.js +8 -1
  25. package/dist/components/select/select.component.d.ts +15 -0
  26. package/dist/components/select/select.component.js +15 -0
  27. package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +3 -0
  28. package/dist/components/staticcheckbox/staticcheckbox.component.js +4 -1
  29. package/dist/components/staticcheckbox/staticcheckbox.styles.js +4 -3
  30. package/dist/components/staticradio/staticradio.component.d.ts +4 -0
  31. package/dist/components/staticradio/staticradio.component.js +5 -1
  32. package/dist/components/staticradio/staticradio.styles.js +13 -13
  33. package/dist/components/statictoggle/statictoggle.component.d.ts +5 -0
  34. package/dist/components/statictoggle/statictoggle.component.js +6 -1
  35. package/dist/components/statictoggle/statictoggle.styles.js +7 -4
  36. package/dist/components/textarea/textarea.component.d.ts +11 -0
  37. package/dist/components/textarea/textarea.component.js +11 -0
  38. package/dist/components/toast/toast.component.d.ts +1 -0
  39. package/dist/components/toast/toast.component.js +2 -1
  40. package/dist/components/toast/toast.styles.js +1 -1
  41. package/dist/components/toggle/toggle.component.d.ts +11 -0
  42. package/dist/components/toggle/toggle.component.js +11 -0
  43. package/dist/custom-elements.json +1280 -152
  44. package/dist/react/checkbox/index.d.ts +11 -0
  45. package/dist/react/checkbox/index.js +11 -0
  46. package/dist/react/combobox/index.d.ts +9 -1
  47. package/dist/react/combobox/index.js +9 -1
  48. package/dist/react/formfieldgroup/index.d.ts +11 -0
  49. package/dist/react/formfieldgroup/index.js +11 -0
  50. package/dist/react/formfieldwrapper/index.d.ts +9 -0
  51. package/dist/react/formfieldwrapper/index.js +9 -0
  52. package/dist/react/index.d.ts +2 -2
  53. package/dist/react/index.js +2 -2
  54. package/dist/react/input/index.d.ts +14 -0
  55. package/dist/react/input/index.js +14 -0
  56. package/dist/react/password/index.d.ts +12 -0
  57. package/dist/react/password/index.js +12 -0
  58. package/dist/react/progressbar/index.d.ts +6 -0
  59. package/dist/react/progressbar/index.js +6 -0
  60. package/dist/react/radio/index.d.ts +10 -0
  61. package/dist/react/radio/index.js +10 -0
  62. package/dist/react/searchfield/index.d.ts +8 -0
  63. package/dist/react/searchfield/index.js +8 -0
  64. package/dist/react/select/index.d.ts +15 -0
  65. package/dist/react/select/index.js +15 -0
  66. package/dist/react/staticcheckbox/index.d.ts +3 -0
  67. package/dist/react/staticcheckbox/index.js +3 -0
  68. package/dist/react/staticradio/index.d.ts +4 -0
  69. package/dist/react/staticradio/index.js +4 -0
  70. package/dist/react/statictoggle/index.d.ts +5 -0
  71. package/dist/react/statictoggle/index.js +5 -0
  72. package/dist/react/textarea/index.d.ts +11 -0
  73. package/dist/react/textarea/index.js +11 -0
  74. package/dist/react/toast/index.d.ts +1 -0
  75. package/dist/react/toast/index.js +1 -0
  76. package/dist/react/toggle/index.d.ts +11 -0
  77. package/dist/react/toggle/index.js +11 -0
  78. package/package.json +1 -1
@@ -9909,6 +9909,80 @@
9909
9909
  "name": "--mdc-checkbox-disabled-checked-icon-color"
9910
9910
  }
9911
9911
  ],
9912
+ "cssParts": [
9913
+ {
9914
+ "description": "The label element.",
9915
+ "name": "label",
9916
+ "inheritedFrom": {
9917
+ "name": "FormfieldWrapper",
9918
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9919
+ }
9920
+ },
9921
+ {
9922
+ "description": "The container for the label and required indicator elements.",
9923
+ "name": "label-text",
9924
+ "inheritedFrom": {
9925
+ "name": "FormfieldWrapper",
9926
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9927
+ }
9928
+ },
9929
+ {
9930
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
9931
+ "name": "required-indicator",
9932
+ "inheritedFrom": {
9933
+ "name": "FormfieldWrapper",
9934
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9935
+ }
9936
+ },
9937
+ {
9938
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
9939
+ "name": "info-icon-btn",
9940
+ "inheritedFrom": {
9941
+ "name": "FormfieldWrapper",
9942
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9943
+ }
9944
+ },
9945
+ {
9946
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
9947
+ "name": "label-toggletip",
9948
+ "inheritedFrom": {
9949
+ "name": "FormfieldWrapper",
9950
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9951
+ }
9952
+ },
9953
+ {
9954
+ "description": "The helper/validation text element.",
9955
+ "name": "help-text",
9956
+ "inheritedFrom": {
9957
+ "name": "FormfieldWrapper",
9958
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9959
+ }
9960
+ },
9961
+ {
9962
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
9963
+ "name": "helper-icon",
9964
+ "inheritedFrom": {
9965
+ "name": "FormfieldWrapper",
9966
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9967
+ }
9968
+ },
9969
+ {
9970
+ "description": "The container for the helper/validation icon and text elements.",
9971
+ "name": "help-text-container",
9972
+ "inheritedFrom": {
9973
+ "name": "FormfieldWrapper",
9974
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9975
+ }
9976
+ },
9977
+ {
9978
+ "description": "The native checkbox input element.",
9979
+ "name": "checkbox-input"
9980
+ },
9981
+ {
9982
+ "description": "The container for the label and helper text elements.",
9983
+ "name": "text-container"
9984
+ }
9985
+ ],
9912
9986
  "slots": [
9913
9987
  {
9914
9988
  "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
@@ -10617,7 +10691,7 @@
10617
10691
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
10618
10692
  },
10619
10693
  "tagName": "mdc-checkbox",
10620
- "jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * To create a group of checkboxes, use the FormFieldGroup component.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-staticcheckbox\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-checkbox\n *\n * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.\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 */",
10694
+ "jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * To create a group of checkboxes, use the FormFieldGroup component.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-staticcheckbox\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-checkbox\n *\n * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.\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 * @csspart checkbox-input - The native checkbox input element.\n * @csspart text-container - The container for the label and helper text elements.\n */",
10621
10695
  "customElement": true
10622
10696
  }
10623
10697
  ],
@@ -13282,13 +13356,77 @@
13282
13356
  }
13283
13357
  ],
13284
13358
  "cssParts": [
13359
+ {
13360
+ "description": "The label element.",
13361
+ "name": "label",
13362
+ "inheritedFrom": {
13363
+ "name": "FormfieldWrapper",
13364
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13365
+ }
13366
+ },
13367
+ {
13368
+ "description": "The container for the label and required indicator elements.",
13369
+ "name": "label-text",
13370
+ "inheritedFrom": {
13371
+ "name": "FormfieldWrapper",
13372
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13373
+ }
13374
+ },
13375
+ {
13376
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
13377
+ "name": "required-indicator",
13378
+ "inheritedFrom": {
13379
+ "name": "FormfieldWrapper",
13380
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13381
+ }
13382
+ },
13383
+ {
13384
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
13385
+ "name": "info-icon-btn",
13386
+ "inheritedFrom": {
13387
+ "name": "FormfieldWrapper",
13388
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13389
+ }
13390
+ },
13391
+ {
13392
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
13393
+ "name": "label-toggletip",
13394
+ "inheritedFrom": {
13395
+ "name": "FormfieldWrapper",
13396
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13397
+ }
13398
+ },
13399
+ {
13400
+ "description": "The helper/validation text element.",
13401
+ "name": "help-text",
13402
+ "inheritedFrom": {
13403
+ "name": "FormfieldWrapper",
13404
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13405
+ }
13406
+ },
13407
+ {
13408
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
13409
+ "name": "helper-icon",
13410
+ "inheritedFrom": {
13411
+ "name": "FormfieldWrapper",
13412
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13413
+ }
13414
+ },
13415
+ {
13416
+ "description": "The container for the helper/validation icon and text elements.",
13417
+ "name": "help-text-container",
13418
+ "inheritedFrom": {
13419
+ "name": "FormfieldWrapper",
13420
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13421
+ }
13422
+ },
13285
13423
  {
13286
13424
  "description": "The internal native input element of the combobox.",
13287
13425
  "name": "internal-native-input"
13288
13426
  },
13289
13427
  {
13290
13428
  "description": "The input element of the combobox.",
13291
- "name": "mdc-input"
13429
+ "name": "input-text"
13292
13430
  },
13293
13431
  {
13294
13432
  "description": "The no result text element of the combobox.",
@@ -14452,7 +14590,7 @@
14452
14590
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
14453
14591
  },
14454
14592
  "tagName": "mdc-combobox",
14455
- "jsDoc": "/**\n * The Combobox component is a text-based dropdown control that allows users to select an option from a predefined list.\n * Users can type text to filter the options and select their desired choice.\n *\n * When the user starts typing, the filter uses a \"starts with\" search and displays options based on the text entered by the user.\n * If the user entered text that doesn't match with any of the options, then the text in the `no-result-text` attribute will be displayed.\n *\n * If there is no text in the `no-result-text` attribute then nothing will be shown.\n *\n * Combobox is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases, including long text truncation with tooltip support.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-combobox` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-selectlistbox` element. Read more about it in Options documentation.\n *\n * To understand more about combobox and its patterns, refer to this [WCAG example](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/).\n *\n * @dependency mdc-buttonsimple\n * @dependency mdc-icon\n * @dependency mdc-input\n * @dependency mdc-listitem\n * @dependency mdc-popover\n *\n * @tagname mdc-combobox\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\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 * @event click - (React: onClick) This event is dispatched when the combobox is clicked.\n * @event change - (React: onChange) This event is dispatched when the combobox is changed.\n * @event input - (React: onInput) This event is dispatched when the combobox is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the combobox.\n * @event focus - (React: onFocus) This event is dispatched when the combobox receives focus.\n *\n * @cssproperty --mdc-combobox-border-color - The border color of the combobox\n * @cssproperty --mdc-combobox-icon-color - The icon color of the combobox\n * @cssproperty --mdc-combobox-listbox-height - The height of the listbox inside the combobox\n * @cssproperty --mdc-combobox-listbox-width - The width of the listbox inside the combobox\n * @cssproperty --mdc-combobox-width - The width of the combobox\n * @cssproperty --mdc-combobox-hover-background-color - The background color of the combobox when hovered\n * @cssproperty --mdc-combobox-focused-background-color - The background color of the combobox when focused\n * @cssproperty --mdc-combobox-error-border-color - The border color of the combobox when in error state\n * @cssproperty --mdc-combobox-warning-border-color - The border color of the combobox when in warning state\n * @cssproperty --mdc-combobox-success-border-color - The border color of the combobox when in success state\n * @cssproperty --mdc-combobox-primary-border-color - The border color of the combobox when in primary state\n * @cssproperty --mdc-combobox-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-combobox-focused-border-color - The border color of the combobox when focused\n *\n * @csspart internal-native-input - The internal native input element of the combobox.\n * @csspart mdc-input - The input element of the combobox.\n * @csspart no-result-text - The no result text element of the combobox.\n * @csspart combobox__base - The base container element of the combobox.\n * @csspart combobox__button - The button element of the combobox.\n * @csspart combobox__button-icon - The icon element of the button of the combobox.\n */",
14593
+ "jsDoc": "/**\n * The Combobox component is a text-based dropdown control that allows users to select an option from a predefined list.\n * Users can type text to filter the options and select their desired choice.\n *\n * When the user starts typing, the filter uses a \"starts with\" search and displays options based on the text entered by the user.\n * If the user entered text that doesn't match with any of the options, then the text in the `no-result-text` attribute will be displayed.\n *\n * If there is no text in the `no-result-text` attribute then nothing will be shown.\n *\n * Combobox is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases, including long text truncation with tooltip support.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-combobox` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-selectlistbox` element. Read more about it in Options documentation.\n *\n * To understand more about combobox and its patterns, refer to this [WCAG example](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/).\n *\n * @dependency mdc-buttonsimple\n * @dependency mdc-icon\n * @dependency mdc-input\n * @dependency mdc-listitem\n * @dependency mdc-popover\n *\n * @tagname mdc-combobox\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\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 * @event click - (React: onClick) This event is dispatched when the combobox is clicked.\n * @event change - (React: onChange) This event is dispatched when the combobox is changed.\n * @event input - (React: onInput) This event is dispatched when the combobox is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the combobox.\n * @event focus - (React: onFocus) This event is dispatched when the combobox receives focus.\n *\n * @cssproperty --mdc-combobox-border-color - The border color of the combobox\n * @cssproperty --mdc-combobox-icon-color - The icon color of the combobox\n * @cssproperty --mdc-combobox-listbox-height - The height of the listbox inside the combobox\n * @cssproperty --mdc-combobox-listbox-width - The width of the listbox inside the combobox\n * @cssproperty --mdc-combobox-width - The width of the combobox\n * @cssproperty --mdc-combobox-hover-background-color - The background color of the combobox when hovered\n * @cssproperty --mdc-combobox-focused-background-color - The background color of the combobox when focused\n * @cssproperty --mdc-combobox-error-border-color - The border color of the combobox when in error state\n * @cssproperty --mdc-combobox-warning-border-color - The border color of the combobox when in warning state\n * @cssproperty --mdc-combobox-success-border-color - The border color of the combobox when in success state\n * @cssproperty --mdc-combobox-primary-border-color - The border color of the combobox when in primary state\n * @cssproperty --mdc-combobox-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-combobox-focused-border-color - The border color of the combobox when focused\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 * @csspart internal-native-input - The internal native input element of the combobox.\n * @csspart input-text - The input element of the combobox.\n * @csspart no-result-text - The no result text element of the combobox.\n * @csspart combobox__base - The base container element of the combobox.\n * @csspart combobox__button - The button element of the combobox.\n * @csspart combobox__button-icon - The icon element of the button of the combobox.\n */",
14456
14594
  "customElement": true
14457
14595
  }
14458
14596
  ],
@@ -16501,6 +16639,80 @@
16501
16639
  "kind": "class",
16502
16640
  "description": "`mdc-formfieldgroup` component, groups the form field components together.\nAll passed in children will have a gap of 12px (0.75rem) each applied.\n\nThis component is specifically for creating a `checkbox` group and a `toggle` group component.\nFor the radiogroup use the RadioGroup component instead.\n\nThe header text and description text are displayed above the items with accessible labels.<br/>\nThe consumer has to provide atleast the header-text or the aria-label,\nlike one of them <b>has</b> to be passed in always, otherwise its not accessible.\n\nThe role will be set to `group`.\nThe aria-label will be set with the data-aria-label property.\nThe aria-labelledby will be set with the header id which contains the header text information.\nThe aria-describedby will be set with the description id which contains the description text information.",
16503
16641
  "name": "FormfieldGroup",
16642
+ "cssParts": [
16643
+ {
16644
+ "description": "The label element.",
16645
+ "name": "label",
16646
+ "inheritedFrom": {
16647
+ "name": "FormfieldWrapper",
16648
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16649
+ }
16650
+ },
16651
+ {
16652
+ "description": "The container for the label and required indicator elements.",
16653
+ "name": "label-text",
16654
+ "inheritedFrom": {
16655
+ "name": "FormfieldWrapper",
16656
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16657
+ }
16658
+ },
16659
+ {
16660
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
16661
+ "name": "required-indicator",
16662
+ "inheritedFrom": {
16663
+ "name": "FormfieldWrapper",
16664
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16665
+ }
16666
+ },
16667
+ {
16668
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
16669
+ "name": "info-icon-btn",
16670
+ "inheritedFrom": {
16671
+ "name": "FormfieldWrapper",
16672
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16673
+ }
16674
+ },
16675
+ {
16676
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
16677
+ "name": "label-toggletip",
16678
+ "inheritedFrom": {
16679
+ "name": "FormfieldWrapper",
16680
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16681
+ }
16682
+ },
16683
+ {
16684
+ "description": "The helper/validation text element.",
16685
+ "name": "help-text",
16686
+ "inheritedFrom": {
16687
+ "name": "FormfieldWrapper",
16688
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16689
+ }
16690
+ },
16691
+ {
16692
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
16693
+ "name": "helper-icon",
16694
+ "inheritedFrom": {
16695
+ "name": "FormfieldWrapper",
16696
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16697
+ }
16698
+ },
16699
+ {
16700
+ "description": "The container for the helper/validation icon and text elements.",
16701
+ "name": "help-text-container",
16702
+ "inheritedFrom": {
16703
+ "name": "FormfieldWrapper",
16704
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16705
+ }
16706
+ },
16707
+ {
16708
+ "description": "Formfieldgroup host container",
16709
+ "name": "container"
16710
+ },
16711
+ {
16712
+ "description": "This contains the label and help text for the group",
16713
+ "name": "group-header"
16714
+ }
16715
+ ],
16504
16716
  "slots": [
16505
16717
  {
16506
16718
  "description": "This is a default slot for checkbox or toggle components.",
@@ -16770,7 +16982,7 @@
16770
16982
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
16771
16983
  },
16772
16984
  "tagName": "mdc-formfieldgroup",
16773
- "jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\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 */",
16985
+ "jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\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 * @csspart container - Formfieldgroup host container\n * @csspart group-header - This contains the label and help text for the group\n */",
16774
16986
  "customElement": true,
16775
16987
  "attributes": [
16776
16988
  {
@@ -16918,6 +17130,40 @@
16918
17130
  "kind": "class",
16919
17131
  "description": "formfieldwrapper is a component that contains the label and helper/validation text\n that can be configured in various ways to suit different use cases (most of the input related components).\nIt is used as an internal component and is not intended to be used directly by consumers.",
16920
17132
  "name": "FormfieldWrapper",
17133
+ "cssParts": [
17134
+ {
17135
+ "description": "The label element.",
17136
+ "name": "label"
17137
+ },
17138
+ {
17139
+ "description": "The container for the label and required indicator elements.",
17140
+ "name": "label-text"
17141
+ },
17142
+ {
17143
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
17144
+ "name": "required-indicator"
17145
+ },
17146
+ {
17147
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
17148
+ "name": "info-icon-btn"
17149
+ },
17150
+ {
17151
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
17152
+ "name": "label-toggletip"
17153
+ },
17154
+ {
17155
+ "description": "The helper/validation text element.",
17156
+ "name": "help-text"
17157
+ },
17158
+ {
17159
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
17160
+ "name": "helper-icon"
17161
+ },
17162
+ {
17163
+ "description": "The container for the helper/validation icon and text elements.",
17164
+ "name": "help-text-container"
17165
+ }
17166
+ ],
16921
17167
  "slots": [
16922
17168
  {
16923
17169
  "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
@@ -17180,7 +17426,7 @@
17180
17426
  "module": "/src/models"
17181
17427
  },
17182
17428
  "tagName": "mdc-formfieldwrapper",
17183
- "jsDoc": "/**\n * formfieldwrapper is a component that contains the label and helper/validation text\n * that can be configured in various ways to suit different use cases (most of the input related components).\n * It is used as an internal component and is not intended to be used directly by consumers.\n *\n * @tagname mdc-formfieldwrapper\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-button\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 */",
17429
+ "jsDoc": "/**\n * formfieldwrapper is a component that contains the label and helper/validation text\n * that can be configured in various ways to suit different use cases (most of the input related components).\n * It is used as an internal component and is not intended to be used directly by consumers.\n *\n * @tagname mdc-formfieldwrapper\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-button\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 */",
17184
17430
  "customElement": true
17185
17431
  }
17186
17432
  ],
@@ -18047,6 +18293,96 @@
18047
18293
  "name": "--mdc-input-primary-border-color"
18048
18294
  }
18049
18295
  ],
18296
+ "cssParts": [
18297
+ {
18298
+ "description": "The label element.",
18299
+ "name": "label",
18300
+ "inheritedFrom": {
18301
+ "name": "FormfieldWrapper",
18302
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18303
+ }
18304
+ },
18305
+ {
18306
+ "description": "The container for the label and required indicator elements.",
18307
+ "name": "label-text",
18308
+ "inheritedFrom": {
18309
+ "name": "FormfieldWrapper",
18310
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18311
+ }
18312
+ },
18313
+ {
18314
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
18315
+ "name": "required-indicator",
18316
+ "inheritedFrom": {
18317
+ "name": "FormfieldWrapper",
18318
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18319
+ }
18320
+ },
18321
+ {
18322
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
18323
+ "name": "info-icon-btn",
18324
+ "inheritedFrom": {
18325
+ "name": "FormfieldWrapper",
18326
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18327
+ }
18328
+ },
18329
+ {
18330
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
18331
+ "name": "label-toggletip",
18332
+ "inheritedFrom": {
18333
+ "name": "FormfieldWrapper",
18334
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18335
+ }
18336
+ },
18337
+ {
18338
+ "description": "The helper/validation text element.",
18339
+ "name": "help-text",
18340
+ "inheritedFrom": {
18341
+ "name": "FormfieldWrapper",
18342
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18343
+ }
18344
+ },
18345
+ {
18346
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
18347
+ "name": "helper-icon",
18348
+ "inheritedFrom": {
18349
+ "name": "FormfieldWrapper",
18350
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18351
+ }
18352
+ },
18353
+ {
18354
+ "description": "The container for the helper/validation icon and text elements.",
18355
+ "name": "help-text-container",
18356
+ "inheritedFrom": {
18357
+ "name": "FormfieldWrapper",
18358
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18359
+ }
18360
+ },
18361
+ {
18362
+ "description": "The leading icon element that is displayed before the input field.",
18363
+ "name": "leading-icon"
18364
+ },
18365
+ {
18366
+ "description": "The prefix text element that is displayed before the input field.",
18367
+ "name": "prefix-text"
18368
+ },
18369
+ {
18370
+ "description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
18371
+ "name": "input-container"
18372
+ },
18373
+ {
18374
+ "description": "The container for the input field, leading icon, and prefix text elements.",
18375
+ "name": "input-section"
18376
+ },
18377
+ {
18378
+ "description": "The input field element.",
18379
+ "name": "input-text"
18380
+ },
18381
+ {
18382
+ "description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
18383
+ "name": "trailing-button"
18384
+ }
18385
+ ],
18050
18386
  "slots": [
18051
18387
  {
18052
18388
  "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
@@ -19028,7 +19364,7 @@
19028
19364
  "module": "/src/components/formfieldwrapper"
19029
19365
  },
19030
19366
  "tagName": "mdc-input",
19031
- "jsDoc": "/**\n * mdc-input is a component that allows users to input text.\n * It contains:\n * - label field - describe the input field.\n * - input field - contains the value\n * - help text or validation message - displayed below the input field.\n * - trailing button - it displays a clear the input field.\n * - prefix text - displayed before the input field.\n * - leading icon - displayed before the input field.\n * - clear-aria-label - aria label for the trailing button.\n * - all the attributes of the input field.\n *\n * @tagname mdc-input\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\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 * @slot input - Slot for the input element. If not provided, the input field will be rendered.\n * @slot input-leading-icon - Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.\n * @slot input-prefix-text - Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.\n * @slot trailing-button - Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the input container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the input field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the input field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the input field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the input field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the input container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the input container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the input container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the input container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the input container when primary\n *\n */",
19367
+ "jsDoc": "/**\n * mdc-input is a component that allows users to input text.\n * It contains:\n * - label field - describe the input field.\n * - input field - contains the value\n * - help text or validation message - displayed below the input field.\n * - trailing button - it displays a clear the input field.\n * - prefix text - displayed before the input field.\n * - leading icon - displayed before the input field.\n * - clear-aria-label - aria label for the trailing button.\n * - all the attributes of the input field.\n *\n * @tagname mdc-input\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\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 * @slot input - Slot for the input element. If not provided, the input field will be rendered.\n * @slot input-leading-icon - Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.\n * @slot input-prefix-text - Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.\n * @slot trailing-button - Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the input container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the input field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the input field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the input field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the input field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the input container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the input container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the input container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the input container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the input container when primary\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 * @csspart leading-icon - The leading icon element that is displayed before the input field.\n * @csspart prefix-text - The prefix text element that is displayed before the input field.\n * @csspart input-container - The container for the input field, leading icon, prefix text, and trailing button elements.\n * @csspart input-section - The container for the input field, leading icon, and prefix text elements.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.\n */",
19032
19368
  "customElement": true
19033
19369
  }
19034
19370
  ],
@@ -30057,6 +30393,120 @@
30057
30393
  }
30058
30394
  }
30059
30395
  ],
30396
+ "cssParts": [
30397
+ {
30398
+ "description": "The label element.",
30399
+ "name": "label",
30400
+ "inheritedFrom": {
30401
+ "name": "FormfieldWrapper",
30402
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30403
+ }
30404
+ },
30405
+ {
30406
+ "description": "The container for the label and required indicator elements.",
30407
+ "name": "label-text",
30408
+ "inheritedFrom": {
30409
+ "name": "FormfieldWrapper",
30410
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30411
+ }
30412
+ },
30413
+ {
30414
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
30415
+ "name": "required-indicator",
30416
+ "inheritedFrom": {
30417
+ "name": "FormfieldWrapper",
30418
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30419
+ }
30420
+ },
30421
+ {
30422
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
30423
+ "name": "info-icon-btn",
30424
+ "inheritedFrom": {
30425
+ "name": "FormfieldWrapper",
30426
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30427
+ }
30428
+ },
30429
+ {
30430
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
30431
+ "name": "label-toggletip",
30432
+ "inheritedFrom": {
30433
+ "name": "FormfieldWrapper",
30434
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30435
+ }
30436
+ },
30437
+ {
30438
+ "description": "The helper/validation text element.",
30439
+ "name": "help-text",
30440
+ "inheritedFrom": {
30441
+ "name": "FormfieldWrapper",
30442
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30443
+ }
30444
+ },
30445
+ {
30446
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
30447
+ "name": "helper-icon",
30448
+ "inheritedFrom": {
30449
+ "name": "FormfieldWrapper",
30450
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30451
+ }
30452
+ },
30453
+ {
30454
+ "description": "The container for the helper/validation icon and text elements.",
30455
+ "name": "help-text-container",
30456
+ "inheritedFrom": {
30457
+ "name": "FormfieldWrapper",
30458
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30459
+ }
30460
+ },
30461
+ {
30462
+ "description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
30463
+ "name": "input-container",
30464
+ "inheritedFrom": {
30465
+ "name": "Input",
30466
+ "module": "src/components/input/input.component.ts"
30467
+ }
30468
+ },
30469
+ {
30470
+ "description": "The container for the input field, leading icon, and prefix text elements.",
30471
+ "name": "input-section",
30472
+ "inheritedFrom": {
30473
+ "name": "Input",
30474
+ "module": "src/components/input/input.component.ts"
30475
+ }
30476
+ },
30477
+ {
30478
+ "description": "The input field element.",
30479
+ "name": "input-text",
30480
+ "inheritedFrom": {
30481
+ "name": "Input",
30482
+ "module": "src/components/input/input.component.ts"
30483
+ }
30484
+ },
30485
+ {
30486
+ "description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
30487
+ "name": "trailing-button",
30488
+ "inheritedFrom": {
30489
+ "name": "Input",
30490
+ "module": "src/components/input/input.component.ts"
30491
+ }
30492
+ },
30493
+ {
30494
+ "description": "The leading icon element that is displayed before the input field.",
30495
+ "name": "leading-icon",
30496
+ "inheritedFrom": {
30497
+ "name": "Input",
30498
+ "module": "src/components/input/input.component.ts"
30499
+ }
30500
+ },
30501
+ {
30502
+ "description": "The prefix text element that is displayed before the input field.",
30503
+ "name": "prefix-text",
30504
+ "inheritedFrom": {
30505
+ "name": "Input",
30506
+ "module": "src/components/input/input.component.ts"
30507
+ }
30508
+ }
30509
+ ],
30060
30510
  "members": [
30061
30511
  {
30062
30512
  "kind": "field",
@@ -31189,7 +31639,7 @@
31189
31639
  "module": "/src/components/input/input.component"
31190
31640
  },
31191
31641
  "tagName": "mdc-password",
31192
- "jsDoc": "/**\n * `mdc-password` is a component that allows users to input their password.\n * It extends the `mdc-input` component and provides additional features specific to password fields.\n * It contains:\n * - `label` field - describe the password field.\n * - `password` field - contains the value\n * - `help-text` or `validation-message` - displayed below the password field.\n * - `help-text-type` - type of the help text, can be 'default', 'error', 'warning', 'success', 'priority'.\n * - `show-hide-button-aria-label` - aria label for the trailing show/hide button.\n * - all the attributes of the native password field.\n *\n * @tagname mdc-password\n *\n * @event input - (React: onInput) This event is dispatched when the value of the password field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the password field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the password receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the password loses focus.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the password container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the password field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the password field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the password container\n * @cssproperty --mdc-input-text-color - Text color for the password field\n * @cssproperty --mdc-input-background-color - Background color for the password field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the password field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the password field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the password container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the password container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the password container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the password container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the password container when primary\n *\n */",
31642
+ "jsDoc": "/**\n * `mdc-password` is a component that allows users to input their password.\n * It extends the `mdc-input` component and provides additional features specific to password fields.\n * It contains:\n * - `label` field - describe the password field.\n * - `password` field - contains the value\n * - `help-text` or `validation-message` - displayed below the password field.\n * - `help-text-type` - type of the help text, can be 'default', 'error', 'warning', 'success', 'priority'.\n * - `show-hide-button-aria-label` - aria label for the trailing show/hide button.\n * - all the attributes of the native password field.\n *\n * @tagname mdc-password\n *\n * @event input - (React: onInput) This event is dispatched when the value of the password field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the password field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the password receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the password loses focus.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the password container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the password field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the password field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the password container\n * @cssproperty --mdc-input-text-color - Text color for the password field\n * @cssproperty --mdc-input-background-color - Background color for the password field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the password field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the password field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the password container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the password container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the password container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the password container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the password container when primary\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 * @csspart input-container - The container for the input field, leading icon, prefix text, and trailing button elements.\n * @csspart input-section - The container for the input field, leading icon, and prefix text elements.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.\n */",
31193
31643
  "customElement": true,
31194
31644
  "slots": [
31195
31645
  {
@@ -33136,6 +33586,54 @@
33136
33586
  }
33137
33587
  ],
33138
33588
  "cssParts": [
33589
+ {
33590
+ "description": "The label element.",
33591
+ "name": "label",
33592
+ "inheritedFrom": {
33593
+ "name": "FormfieldWrapper",
33594
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33595
+ }
33596
+ },
33597
+ {
33598
+ "description": "The container for the label and required indicator elements.",
33599
+ "name": "label-text",
33600
+ "inheritedFrom": {
33601
+ "name": "FormfieldWrapper",
33602
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33603
+ }
33604
+ },
33605
+ {
33606
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
33607
+ "name": "info-icon-btn",
33608
+ "inheritedFrom": {
33609
+ "name": "FormfieldWrapper",
33610
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33611
+ }
33612
+ },
33613
+ {
33614
+ "description": "The helper/validation text element.",
33615
+ "name": "help-text",
33616
+ "inheritedFrom": {
33617
+ "name": "FormfieldWrapper",
33618
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33619
+ }
33620
+ },
33621
+ {
33622
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
33623
+ "name": "helper-icon",
33624
+ "inheritedFrom": {
33625
+ "name": "FormfieldWrapper",
33626
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33627
+ }
33628
+ },
33629
+ {
33630
+ "description": "The container for the helper/validation icon and text elements.",
33631
+ "name": "help-text-container",
33632
+ "inheritedFrom": {
33633
+ "name": "FormfieldWrapper",
33634
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33635
+ }
33636
+ },
33139
33637
  {
33140
33638
  "description": "The gap between the label and the progressbar.",
33141
33639
  "name": "gap"
@@ -33163,6 +33661,22 @@
33163
33661
  {
33164
33662
  "description": "The container of the remaining progressbar portion.",
33165
33663
  "name": "remaining"
33664
+ },
33665
+ {
33666
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
33667
+ "name": "required-indicator",
33668
+ "inheritedFrom": {
33669
+ "name": "FormfieldWrapper",
33670
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33671
+ }
33672
+ },
33673
+ {
33674
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
33675
+ "name": "label-toggletip",
33676
+ "inheritedFrom": {
33677
+ "name": "FormfieldWrapper",
33678
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33679
+ }
33166
33680
  }
33167
33681
  ],
33168
33682
  "members": [
@@ -33591,7 +34105,7 @@
33591
34105
  "module": "/src/components/formfieldwrapper"
33592
34106
  },
33593
34107
  "tagName": "mdc-progressbar",
33594
- "jsDoc": "/**\n * mdc-progressbar component visually represents a progress indicator, typically used to show\n * the completion state of an ongoing process (e.g., loading, file upload, etc.).\n * It contains an optional label and an optional helper text.\n *\n * - It supports mainly two types: Default and Inline\n * - It supports three validation variants: Default, Success and Error.\n *\n * This component is created by extending FormfieldWrapper.\n *\n * @tagname mdc-progressbar\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-progressbar-background-color - Background color of the remaining progressbar portion.\n * @cssproperty --mdc-progressbar-active-background-color - Background color of the elapsed progressbar portion.\n * @cssproperty --mdc-progressbar-success-color - Background color of the progressbar when in success state.\n * @cssproperty --mdc-progressbar-error-color - Background color of the progressbar when in error state.\n * @cssproperty --mdc-progressbar-height - The height of the progressbar.\n * @cssproperty --mdc-progressbar-border-radius - The border radius of the progressbar.\n * @cssproperty --mdc-progressbar-label-color - Color of the progressbar label text.\n * @cssproperty --mdc-progressbar-label-line-height - Line height of the label text.\n * @cssproperty --mdc-progressbar-label-font-size - Font size of the label text.\n * @cssproperty --mdc-progressbar-label-font-weight - Font weight of the label text.\n * @cssproperty --mdc-progressbar-help-text-color - Color of the help text.\n *\n * @csspart gap - The gap between the label and the progressbar.\n * @csspart inline-label-container - The container of the label in inline variant.\n * @csspart label-container - The container of the label in inline variant.\n * @csspart percentage - The container of the label in inline variant.\n * @csspart progress-bar - The container of the label in inline variant.\n * @csspart progress-container - The container of the label in inline variant.\n * @csspart remaining - The container of the remaining progressbar portion.\n */",
34108
+ "jsDoc": "/**\n * mdc-progressbar component visually represents a progress indicator, typically used to show\n * the completion state of an ongoing process (e.g., loading, file upload, etc.).\n * It contains an optional label and an optional helper text.\n *\n * - It supports mainly two types: Default and Inline\n * - It supports three validation variants: Default, Success and Error.\n *\n * This component is created by extending FormfieldWrapper.\n *\n * @tagname mdc-progressbar\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-progressbar-background-color - Background color of the remaining progressbar portion.\n * @cssproperty --mdc-progressbar-active-background-color - Background color of the elapsed progressbar portion.\n * @cssproperty --mdc-progressbar-success-color - Background color of the progressbar when in success state.\n * @cssproperty --mdc-progressbar-error-color - Background color of the progressbar when in error state.\n * @cssproperty --mdc-progressbar-height - The height of the progressbar.\n * @cssproperty --mdc-progressbar-border-radius - The border radius of the progressbar.\n * @cssproperty --mdc-progressbar-label-color - Color of the progressbar label text.\n * @cssproperty --mdc-progressbar-label-line-height - Line height of the label text.\n * @cssproperty --mdc-progressbar-label-font-size - Font size of the label text.\n * @cssproperty --mdc-progressbar-label-font-weight - Font weight of the label text.\n * @cssproperty --mdc-progressbar-help-text-color - Color of the help text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\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 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 * @csspart gap - The gap between the label and the progressbar.\n * @csspart inline-label-container - The container of the label in inline variant.\n * @csspart label-container - The container of the label in inline variant.\n * @csspart percentage - The container of the label in inline variant.\n * @csspart progress-bar - The container of the label in inline variant.\n * @csspart progress-container - The container of the label in inline variant.\n * @csspart remaining - The container of the remaining progressbar portion.\n */",
33595
34109
  "customElement": true,
33596
34110
  "slots": [
33597
34111
  {
@@ -33783,6 +34297,54 @@
33783
34297
  "description": "The success icon of the progressspinner.",
33784
34298
  "name": "success-icon"
33785
34299
  },
34300
+ {
34301
+ "description": "The label element.",
34302
+ "name": "label",
34303
+ "inheritedFrom": {
34304
+ "name": "FormfieldWrapper",
34305
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34306
+ }
34307
+ },
34308
+ {
34309
+ "description": "The container for the label and required indicator elements.",
34310
+ "name": "label-text",
34311
+ "inheritedFrom": {
34312
+ "name": "FormfieldWrapper",
34313
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34314
+ }
34315
+ },
34316
+ {
34317
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
34318
+ "name": "info-icon-btn",
34319
+ "inheritedFrom": {
34320
+ "name": "FormfieldWrapper",
34321
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34322
+ }
34323
+ },
34324
+ {
34325
+ "description": "The helper/validation text element.",
34326
+ "name": "help-text",
34327
+ "inheritedFrom": {
34328
+ "name": "FormfieldWrapper",
34329
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34330
+ }
34331
+ },
34332
+ {
34333
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
34334
+ "name": "helper-icon",
34335
+ "inheritedFrom": {
34336
+ "name": "FormfieldWrapper",
34337
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34338
+ }
34339
+ },
34340
+ {
34341
+ "description": "The container for the helper/validation icon and text elements.",
34342
+ "name": "help-text-container",
34343
+ "inheritedFrom": {
34344
+ "name": "FormfieldWrapper",
34345
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34346
+ }
34347
+ },
33786
34348
  {
33787
34349
  "description": "The gap between the label and the progressbar.",
33788
34350
  "name": "gap",
@@ -33838,6 +34400,22 @@
33838
34400
  "name": "Progressbar",
33839
34401
  "module": "src/components/progressbar/progressbar.component.ts"
33840
34402
  }
34403
+ },
34404
+ {
34405
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
34406
+ "name": "required-indicator",
34407
+ "inheritedFrom": {
34408
+ "name": "FormfieldWrapper",
34409
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34410
+ }
34411
+ },
34412
+ {
34413
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
34414
+ "name": "label-toggletip",
34415
+ "inheritedFrom": {
34416
+ "name": "FormfieldWrapper",
34417
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34418
+ }
33841
34419
  }
33842
34420
  ],
33843
34421
  "members": [
@@ -34406,6 +34984,80 @@
34406
34984
  "name": "--mdc-radio-control-inactive-disabled-background"
34407
34985
  }
34408
34986
  ],
34987
+ "cssParts": [
34988
+ {
34989
+ "description": "The label element.",
34990
+ "name": "label",
34991
+ "inheritedFrom": {
34992
+ "name": "FormfieldWrapper",
34993
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34994
+ }
34995
+ },
34996
+ {
34997
+ "description": "The container for the label and required indicator elements.",
34998
+ "name": "label-text",
34999
+ "inheritedFrom": {
35000
+ "name": "FormfieldWrapper",
35001
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35002
+ }
35003
+ },
35004
+ {
35005
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
35006
+ "name": "required-indicator",
35007
+ "inheritedFrom": {
35008
+ "name": "FormfieldWrapper",
35009
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35010
+ }
35011
+ },
35012
+ {
35013
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
35014
+ "name": "info-icon-btn",
35015
+ "inheritedFrom": {
35016
+ "name": "FormfieldWrapper",
35017
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35018
+ }
35019
+ },
35020
+ {
35021
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
35022
+ "name": "label-toggletip",
35023
+ "inheritedFrom": {
35024
+ "name": "FormfieldWrapper",
35025
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35026
+ }
35027
+ },
35028
+ {
35029
+ "description": "The helper/validation text element.",
35030
+ "name": "help-text",
35031
+ "inheritedFrom": {
35032
+ "name": "FormfieldWrapper",
35033
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35034
+ }
35035
+ },
35036
+ {
35037
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
35038
+ "name": "helper-icon",
35039
+ "inheritedFrom": {
35040
+ "name": "FormfieldWrapper",
35041
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35042
+ }
35043
+ },
35044
+ {
35045
+ "description": "The container for the helper/validation icon and text elements.",
35046
+ "name": "help-text-container",
35047
+ "inheritedFrom": {
35048
+ "name": "FormfieldWrapper",
35049
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35050
+ }
35051
+ },
35052
+ {
35053
+ "description": "The native radio input element.",
35054
+ "name": "radio-input"
35055
+ },
35056
+ {
35057
+ "description": "The container for the label and helper text elements.",
35058
+ "name": "text-container"
35059
+ }
35060
+ ],
34409
35061
  "members": [
34410
35062
  {
34411
35063
  "kind": "field",
@@ -35098,7 +35750,7 @@
35098
35750
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
35099
35751
  },
35100
35752
  "tagName": "mdc-radio",
35101
- "jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-staticradio\n * @dependency mdc-toggletip\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\n *\n */",
35753
+ "jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-staticradio\n * @dependency mdc-toggletip\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\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 * @csspart radio-input - The native radio input element.\n * @csspart text-container - The container for the label and helper text elements.\n */",
35102
35754
  "customElement": true,
35103
35755
  "slots": [
35104
35756
  {
@@ -35573,6 +36225,88 @@
35573
36225
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35574
36226
  }
35575
36227
  }
36228
+ ],
36229
+ "cssParts": [
36230
+ {
36231
+ "description": "The label element.",
36232
+ "name": "label",
36233
+ "inheritedFrom": {
36234
+ "name": "FormfieldWrapper",
36235
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36236
+ }
36237
+ },
36238
+ {
36239
+ "description": "The container for the label and required indicator elements.",
36240
+ "name": "label-text",
36241
+ "inheritedFrom": {
36242
+ "name": "FormfieldWrapper",
36243
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36244
+ }
36245
+ },
36246
+ {
36247
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
36248
+ "name": "required-indicator",
36249
+ "inheritedFrom": {
36250
+ "name": "FormfieldWrapper",
36251
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36252
+ }
36253
+ },
36254
+ {
36255
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
36256
+ "name": "info-icon-btn",
36257
+ "inheritedFrom": {
36258
+ "name": "FormfieldWrapper",
36259
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36260
+ }
36261
+ },
36262
+ {
36263
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
36264
+ "name": "label-toggletip",
36265
+ "inheritedFrom": {
36266
+ "name": "FormfieldWrapper",
36267
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36268
+ }
36269
+ },
36270
+ {
36271
+ "description": "The helper/validation text element.",
36272
+ "name": "help-text",
36273
+ "inheritedFrom": {
36274
+ "name": "FormfieldWrapper",
36275
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36276
+ }
36277
+ },
36278
+ {
36279
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
36280
+ "name": "helper-icon",
36281
+ "inheritedFrom": {
36282
+ "name": "FormfieldWrapper",
36283
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36284
+ }
36285
+ },
36286
+ {
36287
+ "description": "The container for the helper/validation icon and text elements.",
36288
+ "name": "help-text-container",
36289
+ "inheritedFrom": {
36290
+ "name": "FormfieldWrapper",
36291
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36292
+ }
36293
+ },
36294
+ {
36295
+ "description": "Formfieldgroup host container",
36296
+ "name": "container",
36297
+ "inheritedFrom": {
36298
+ "name": "FormfieldGroup",
36299
+ "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
36300
+ }
36301
+ },
36302
+ {
36303
+ "description": "This contains the label and help text for the group",
36304
+ "name": "group-header",
36305
+ "inheritedFrom": {
36306
+ "name": "FormfieldGroup",
36307
+ "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
36308
+ }
36309
+ }
35576
36310
  ]
35577
36311
  }
35578
36312
  ],
@@ -35774,6 +36508,120 @@
35774
36508
  "kind": "class",
35775
36509
  "description": "`mdc-searchfield` component is used as an input field for search functionality.\n\nIt supports `mdc-inputchip` as filters.\n\nThis component is built by extending the `mdc-input` component.",
35776
36510
  "name": "Searchfield",
36511
+ "cssParts": [
36512
+ {
36513
+ "description": "The label element.",
36514
+ "name": "label",
36515
+ "inheritedFrom": {
36516
+ "name": "FormfieldWrapper",
36517
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36518
+ }
36519
+ },
36520
+ {
36521
+ "description": "The container for the label and required indicator elements.",
36522
+ "name": "label-text",
36523
+ "inheritedFrom": {
36524
+ "name": "FormfieldWrapper",
36525
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36526
+ }
36527
+ },
36528
+ {
36529
+ "description": "The leading icon element that is displayed before the input field.",
36530
+ "name": "leading-icon",
36531
+ "inheritedFrom": {
36532
+ "name": "Input",
36533
+ "module": "src/components/input/input.component.ts"
36534
+ }
36535
+ },
36536
+ {
36537
+ "description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
36538
+ "name": "input-container",
36539
+ "inheritedFrom": {
36540
+ "name": "Input",
36541
+ "module": "src/components/input/input.component.ts"
36542
+ }
36543
+ },
36544
+ {
36545
+ "description": "The container for the input field, leading icon, and prefix text elements.",
36546
+ "name": "input-section",
36547
+ "inheritedFrom": {
36548
+ "name": "Input",
36549
+ "module": "src/components/input/input.component.ts"
36550
+ }
36551
+ },
36552
+ {
36553
+ "description": "The input field element.",
36554
+ "name": "input-text",
36555
+ "inheritedFrom": {
36556
+ "name": "Input",
36557
+ "module": "src/components/input/input.component.ts"
36558
+ }
36559
+ },
36560
+ {
36561
+ "description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
36562
+ "name": "trailing-button",
36563
+ "inheritedFrom": {
36564
+ "name": "Input",
36565
+ "module": "src/components/input/input.component.ts"
36566
+ }
36567
+ },
36568
+ {
36569
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
36570
+ "name": "required-indicator",
36571
+ "inheritedFrom": {
36572
+ "name": "FormfieldWrapper",
36573
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36574
+ }
36575
+ },
36576
+ {
36577
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
36578
+ "name": "info-icon-btn",
36579
+ "inheritedFrom": {
36580
+ "name": "FormfieldWrapper",
36581
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36582
+ }
36583
+ },
36584
+ {
36585
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
36586
+ "name": "label-toggletip",
36587
+ "inheritedFrom": {
36588
+ "name": "FormfieldWrapper",
36589
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36590
+ }
36591
+ },
36592
+ {
36593
+ "description": "The helper/validation text element.",
36594
+ "name": "help-text",
36595
+ "inheritedFrom": {
36596
+ "name": "FormfieldWrapper",
36597
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36598
+ }
36599
+ },
36600
+ {
36601
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
36602
+ "name": "helper-icon",
36603
+ "inheritedFrom": {
36604
+ "name": "FormfieldWrapper",
36605
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36606
+ }
36607
+ },
36608
+ {
36609
+ "description": "The container for the helper/validation icon and text elements.",
36610
+ "name": "help-text-container",
36611
+ "inheritedFrom": {
36612
+ "name": "FormfieldWrapper",
36613
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36614
+ }
36615
+ },
36616
+ {
36617
+ "description": "The prefix text element that is displayed before the input field.",
36618
+ "name": "prefix-text",
36619
+ "inheritedFrom": {
36620
+ "name": "Input",
36621
+ "module": "src/components/input/input.component.ts"
36622
+ }
36623
+ }
36624
+ ],
35777
36625
  "slots": [
35778
36626
  {
35779
36627
  "description": "Slot for input chips",
@@ -36599,7 +37447,7 @@
36599
37447
  "module": "/src/components/input/input.component"
36600
37448
  },
36601
37449
  "tagName": "mdc-searchfield",
36602
- "jsDoc": "/**\n * `mdc-searchfield` component is used as an input field for search functionality.\n *\n * It supports `mdc-inputchip` as filters.\n *\n * This component is built by extending the `mdc-input` component.\n *\n * @tagname mdc-searchfield\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @slot filters - Slot for input chips\n */",
37450
+ "jsDoc": "/**\n * `mdc-searchfield` component is used as an input field for search functionality.\n *\n * It supports `mdc-inputchip` as filters.\n *\n * This component is built by extending the `mdc-input` component.\n *\n * @tagname mdc-searchfield\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @slot filters - Slot for input chips\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart leading-icon - The leading icon element that is displayed before the input field.\n * @csspart input-container - The container for the input field, leading icon, prefix text, and trailing button elements.\n * @csspart input-section - The container for the input field, leading icon, and prefix text elements.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.\n */",
36603
37451
  "customElement": true,
36604
37452
  "attributes": [
36605
37453
  {
@@ -37165,6 +38013,96 @@
37165
38013
  "name": "--mdc-select-listbox-width"
37166
38014
  }
37167
38015
  ],
38016
+ "cssParts": [
38017
+ {
38018
+ "description": "The label element.",
38019
+ "name": "label",
38020
+ "inheritedFrom": {
38021
+ "name": "FormfieldWrapper",
38022
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38023
+ }
38024
+ },
38025
+ {
38026
+ "description": "The container for the label and required indicator elements.",
38027
+ "name": "label-text",
38028
+ "inheritedFrom": {
38029
+ "name": "FormfieldWrapper",
38030
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38031
+ }
38032
+ },
38033
+ {
38034
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
38035
+ "name": "required-indicator",
38036
+ "inheritedFrom": {
38037
+ "name": "FormfieldWrapper",
38038
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38039
+ }
38040
+ },
38041
+ {
38042
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
38043
+ "name": "info-icon-btn",
38044
+ "inheritedFrom": {
38045
+ "name": "FormfieldWrapper",
38046
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38047
+ }
38048
+ },
38049
+ {
38050
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
38051
+ "name": "label-toggletip",
38052
+ "inheritedFrom": {
38053
+ "name": "FormfieldWrapper",
38054
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38055
+ }
38056
+ },
38057
+ {
38058
+ "description": "The helper/validation text element.",
38059
+ "name": "help-text",
38060
+ "inheritedFrom": {
38061
+ "name": "FormfieldWrapper",
38062
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38063
+ }
38064
+ },
38065
+ {
38066
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
38067
+ "name": "helper-icon",
38068
+ "inheritedFrom": {
38069
+ "name": "FormfieldWrapper",
38070
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38071
+ }
38072
+ },
38073
+ {
38074
+ "description": "The container for the helper/validation icon and text elements.",
38075
+ "name": "help-text-container",
38076
+ "inheritedFrom": {
38077
+ "name": "FormfieldWrapper",
38078
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38079
+ }
38080
+ },
38081
+ {
38082
+ "description": "The container element that wraps the visual combobox and the dropdown icon.",
38083
+ "name": "container"
38084
+ },
38085
+ {
38086
+ "description": "The container element that wraps the visual combobox, dropdown icon, and the popover.",
38087
+ "name": "base-container"
38088
+ },
38089
+ {
38090
+ "description": "The icon element that is displayed next to the selected option in the dropdown list.",
38091
+ "name": "selected-icon"
38092
+ },
38093
+ {
38094
+ "description": "The text element that displays the selected option or placeholder in the visual combobox.",
38095
+ "name": "base-text"
38096
+ },
38097
+ {
38098
+ "description": "The container element that wraps the dropdown icon.",
38099
+ "name": "icon-container"
38100
+ },
38101
+ {
38102
+ "description": "The native hidden input element.",
38103
+ "name": "native-input"
38104
+ }
38105
+ ],
37168
38106
  "slots": [
37169
38107
  {
37170
38108
  "description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
@@ -38195,7 +39133,7 @@
38195
39133
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
38196
39134
  },
38197
39135
  "tagName": "mdc-select",
38198
- "jsDoc": "/**\n * The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\n * It is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n * You can also set the `value` attribute on the `mdc-select` element to match the value of the desired option. The component will select the corresponding option automatically.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-select` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-popover\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-select\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the select is clicked.\n * @event change - (React: onChange) This event is dispatched when the select is changed.\n * @event input - (React: onInput) This event is dispatched when the select is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.\n * @event focus - (React: onFocus) This event is dispatched when the select receives focus.\n *\n * @cssproperty --mdc-select-background-color - The background color of the combobox of select.\n * @cssproperty --mdc-select-background-color-hover - The background color of the combobox of select when hovered.\n * @cssproperty --mdc-select-background-color-active - The background color of the combobox of select when active.\n * @cssproperty --mdc-select-background-color-disabled - The background color of the combobox of select when disabled.\n * @cssproperty --mdc-select-text-color - The text color of the select.\n * @cssproperty --mdc-select-text-color-selected - The text color of the selected option in the select.\n * @cssproperty --mdc-select-text-color-disabled - The text color of the select when disabled.\n * @cssproperty --mdc-select-border-color - The border color of the select.\n * @cssproperty --mdc-select-border-color-disabled - The border color of the select when disabled.\n * @cssproperty --mdc-select-border-color-success - The border color of the select when in success state.\n * @cssproperty --mdc-select-border-color-warning - The border color of the select when in warning state.\n * @cssproperty --mdc-select-border-color-error - The border color of the select when in error state.\n * @cssproperty --mdc-select-width - The width of the select.\n * @cssproperty --mdc-select-listbox-height - The height of the listbox inside the select.\n * @cssproperty --mdc-select-listbox-width - The width of the listbox inside the select (default: `--mdc-select-width`).\n */",
39136
+ "jsDoc": "/**\n * The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\n * It is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n * You can also set the `value` attribute on the `mdc-select` element to match the value of the desired option. The component will select the corresponding option automatically.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-select` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-popover\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-select\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the select is clicked.\n * @event change - (React: onChange) This event is dispatched when the select is changed.\n * @event input - (React: onInput) This event is dispatched when the select is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.\n * @event focus - (React: onFocus) This event is dispatched when the select receives focus.\n *\n * @cssproperty --mdc-select-background-color - The background color of the combobox of select.\n * @cssproperty --mdc-select-background-color-hover - The background color of the combobox of select when hovered.\n * @cssproperty --mdc-select-background-color-active - The background color of the combobox of select when active.\n * @cssproperty --mdc-select-background-color-disabled - The background color of the combobox of select when disabled.\n * @cssproperty --mdc-select-text-color - The text color of the select.\n * @cssproperty --mdc-select-text-color-selected - The text color of the selected option in the select.\n * @cssproperty --mdc-select-text-color-disabled - The text color of the select when disabled.\n * @cssproperty --mdc-select-border-color - The border color of the select.\n * @cssproperty --mdc-select-border-color-disabled - The border color of the select when disabled.\n * @cssproperty --mdc-select-border-color-success - The border color of the select when in success state.\n * @cssproperty --mdc-select-border-color-warning - The border color of the select when in warning state.\n * @cssproperty --mdc-select-border-color-error - The border color of the select when in error state.\n * @cssproperty --mdc-select-width - The width of the select.\n * @cssproperty --mdc-select-listbox-height - The height of the listbox inside the select.\n * @cssproperty --mdc-select-listbox-width - The width of the listbox inside the select (default: `--mdc-select-width`).\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 * @csspart container - The container element that wraps the visual combobox and the dropdown icon.\n * @csspart base-container - The container element that wraps the visual combobox, dropdown icon, and the popover.\n * @csspart selected-icon - The icon element that is displayed next to the selected option in the dropdown list.\n * @csspart base-text - The text element that displays the selected option or placeholder in the visual combobox.\n * @csspart icon-container - The container element that wraps the dropdown icon.\n * @csspart native-input - The native hidden input element.\n */",
38199
39137
  "customElement": true
38200
39138
  }
38201
39139
  ],
@@ -38210,6 +39148,41 @@
38210
39148
  }
38211
39149
  ]
38212
39150
  },
39151
+ {
39152
+ "kind": "javascript-module",
39153
+ "path": "components/selectlistbox/selectlistbox.component.js",
39154
+ "declarations": [
39155
+ {
39156
+ "kind": "class",
39157
+ "description": "Selectlistbox component as Light DOM component to act as a simple wrapper\nfor mdc-option components to ensure accessibility and proper role assignment.\n\nOnce [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\nand mdc-option can be used directly in the select component with a listbox in a different\nshadow root and aria-owns attribute to connect them.",
39158
+ "name": "Selectlistbox",
39159
+ "slots": [
39160
+ {
39161
+ "description": "This is a default/unnamed slot, which can be used to insert mdc-option components.",
39162
+ "name": "default"
39163
+ }
39164
+ ],
39165
+ "members": [],
39166
+ "superclass": {
39167
+ "name": "Component",
39168
+ "module": "/src/models"
39169
+ },
39170
+ "tagName": "mdc-selectlistbox",
39171
+ "jsDoc": "/**\n * Selectlistbox component as Light DOM component to act as a simple wrapper\n * for mdc-option components to ensure accessibility and proper role assignment.\n *\n * Once [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\n * and mdc-option can be used directly in the select component with a listbox in a different\n * shadow root and aria-owns attribute to connect them.\n *\n * @tagname mdc-selectlistbox\n *\n * @slot default - This is a default/unnamed slot, which can be used to insert mdc-option components.\n */",
39172
+ "customElement": true
39173
+ }
39174
+ ],
39175
+ "exports": [
39176
+ {
39177
+ "kind": "js",
39178
+ "name": "default",
39179
+ "declaration": {
39180
+ "name": "Selectlistbox",
39181
+ "module": "components/selectlistbox/selectlistbox.component.js"
39182
+ }
39183
+ }
39184
+ ]
39185
+ },
38213
39186
  {
38214
39187
  "kind": "javascript-module",
38215
39188
  "path": "components/sidenavigation/sidenavigation.component.js",
@@ -39296,41 +40269,6 @@
39296
40269
  }
39297
40270
  ]
39298
40271
  },
39299
- {
39300
- "kind": "javascript-module",
39301
- "path": "components/selectlistbox/selectlistbox.component.js",
39302
- "declarations": [
39303
- {
39304
- "kind": "class",
39305
- "description": "Selectlistbox component as Light DOM component to act as a simple wrapper\nfor mdc-option components to ensure accessibility and proper role assignment.\n\nOnce [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\nand mdc-option can be used directly in the select component with a listbox in a different\nshadow root and aria-owns attribute to connect them.",
39306
- "name": "Selectlistbox",
39307
- "slots": [
39308
- {
39309
- "description": "This is a default/unnamed slot, which can be used to insert mdc-option components.",
39310
- "name": "default"
39311
- }
39312
- ],
39313
- "members": [],
39314
- "superclass": {
39315
- "name": "Component",
39316
- "module": "/src/models"
39317
- },
39318
- "tagName": "mdc-selectlistbox",
39319
- "jsDoc": "/**\n * Selectlistbox component as Light DOM component to act as a simple wrapper\n * for mdc-option components to ensure accessibility and proper role assignment.\n *\n * Once [ariaOwnsElements](https://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/ariaOwnsElements) is supported in browsers, this component can be removed\n * and mdc-option can be used directly in the select component with a listbox in a different\n * shadow root and aria-owns attribute to connect them.\n *\n * @tagname mdc-selectlistbox\n *\n * @slot default - This is a default/unnamed slot, which can be used to insert mdc-option components.\n */",
39320
- "customElement": true
39321
- }
39322
- ],
39323
- "exports": [
39324
- {
39325
- "kind": "js",
39326
- "name": "default",
39327
- "declaration": {
39328
- "name": "Selectlistbox",
39329
- "module": "components/selectlistbox/selectlistbox.component.js"
39330
- }
39331
- }
39332
- ]
39333
- },
39334
40272
  {
39335
40273
  "kind": "javascript-module",
39336
40274
  "path": "components/spinner/spinner.component.js",
@@ -39520,6 +40458,16 @@
39520
40458
  {
39521
40459
  "description": "The container for the checkbox icon.",
39522
40460
  "name": "icon-container"
40461
+ },
40462
+ {
40463
+ "description": "The checkbox icon.",
40464
+ "name": "checkbox-icon"
40465
+ }
40466
+ ],
40467
+ "slots": [
40468
+ {
40469
+ "description": "Default slot for adding label text.",
40470
+ "name": ""
39523
40471
  }
39524
40472
  ],
39525
40473
  "members": [
@@ -39605,7 +40553,7 @@
39605
40553
  "module": "/src/models"
39606
40554
  },
39607
40555
  "tagName": "mdc-staticcheckbox",
39608
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n * @csspart icon-container - The container for the checkbox icon.\n */",
40556
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n * @csspart icon-container - The container for the checkbox icon.\n * @csspart checkbox-icon - The checkbox icon.\n *\n * @slot - Default slot for adding label text.\n */",
39609
40557
  "customElement": true
39610
40558
  }
39611
40559
  ],
@@ -39803,6 +40751,18 @@
39803
40751
  "name": "--mdc-staticradio-control-active-disabled-background"
39804
40752
  }
39805
40753
  ],
40754
+ "cssParts": [
40755
+ {
40756
+ "description": "The radio icon.",
40757
+ "name": "radio-icon"
40758
+ }
40759
+ ],
40760
+ "slots": [
40761
+ {
40762
+ "description": "Default slot for the label of the radio.",
40763
+ "name": ""
40764
+ }
40765
+ ],
39806
40766
  "members": [
39807
40767
  {
39808
40768
  "kind": "field",
@@ -39886,7 +40846,7 @@
39886
40846
  "module": "/src/models"
39887
40847
  },
39888
40848
  "tagName": "mdc-staticradio",
39889
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 2 properties - checked and disabled.\n *\n * We are using the same styling that has been created for the `mdc-radio` component.\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-staticradio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-staticradio-normal-border-color - color of the radio button border when normal\n * @cssproperty --mdc-staticradio-disabled-border-color - color of the radio button border when disabled\n * @cssproperty --mdc-staticradio-inner-circle-normal-background - background color of the inner circle when normal\n * @cssproperty --mdc-staticradio-inner-circle-disabled-background - background color of the inner circle when disabled\n * @cssproperty --mdc-staticradio-control-inactive-color - color of the radio button when inactive\n * @cssproperty --mdc-staticradio-control-inactive-disabled-background - background color of the radio button when\n * inactive and disabled\n * @cssproperty --mdc-staticradio-control-active-color - color of the radio button when active\n * @cssproperty --mdc-staticradio-control-active-disabled-background - background color of the radio button\n * when active and disabled\n */",
40849
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 2 properties - checked and disabled.\n *\n * We are using the same styling that has been created for the `mdc-radio` component.\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-staticradio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-staticradio-normal-border-color - color of the radio button border when normal\n * @cssproperty --mdc-staticradio-disabled-border-color - color of the radio button border when disabled\n * @cssproperty --mdc-staticradio-inner-circle-normal-background - background color of the inner circle when normal\n * @cssproperty --mdc-staticradio-inner-circle-disabled-background - background color of the inner circle when disabled\n * @cssproperty --mdc-staticradio-control-inactive-color - color of the radio button when inactive\n * @cssproperty --mdc-staticradio-control-inactive-disabled-background - background color of the radio button when\n * inactive and disabled\n * @cssproperty --mdc-staticradio-control-active-color - color of the radio button when active\n * @cssproperty --mdc-staticradio-control-active-disabled-background - background color of the radio button\n * when active and disabled\n *\n * @csspart radio-icon - The radio icon.\n *\n * @slot - Default slot for the label of the radio.\n */",
39890
40850
  "customElement": true
39891
40851
  }
39892
40852
  ],
@@ -39971,10 +40931,24 @@
39971
40931
  "name": "--mdc-statictoggle-icon-background-color-disabled"
39972
40932
  }
39973
40933
  ],
40934
+ "cssParts": [
40935
+ {
40936
+ "description": "The slider part of the toggle",
40937
+ "name": "slider"
40938
+ },
40939
+ {
40940
+ "description": "The icon part of the toggle",
40941
+ "name": "toggle-icon"
40942
+ }
40943
+ ],
39974
40944
  "slots": [
39975
40945
  {
39976
40946
  "description": "This is a default/unnamed slot",
39977
40947
  "name": "default"
40948
+ },
40949
+ {
40950
+ "description": "Default slot for adding label text.",
40951
+ "name": ""
39978
40952
  }
39979
40953
  ],
39980
40954
  "members": [
@@ -40060,7 +41034,7 @@
40060
41034
  "module": "/src/models"
40061
41035
  },
40062
41036
  "tagName": "mdc-statictoggle",
40063
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 3 properties - checked, size and disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n */",
41037
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 3 properties - checked, size and disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n *\n * @csspart slider - The slider part of the toggle\n * @csspart toggle-icon - The icon part of the toggle\n *\n * @slot - Default slot for adding label text.\n */",
40064
41038
  "customElement": true
40065
41039
  }
40066
41040
  ],
@@ -41442,6 +42416,106 @@
41442
42416
  }
41443
42417
  ]
41444
42418
  },
42419
+ {
42420
+ "kind": "javascript-module",
42421
+ "path": "components/tablist/tablist.component.js",
42422
+ "declarations": [
42423
+ {
42424
+ "kind": "class",
42425
+ "description": "Tab list organizes tabs into a container.\n\nChildren of the tab list are `mdc-tab` elements, sent to the default slot.\n\nThe tabs can be navigated using the left/right arrow keys, and selected by clicking,\n or pressing the Enter and Space keys.\n\n**Implicit accessibility rules**\n\n- The element that serves as the container for the set of tabs has role `tablist`.\n- Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n- The active tab element has the state `aria-selected` set to `true`\n and all other tab elements have it set to `false`.\n\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n- The `tablist` element needs to have a label provided by `data-aria-label`.\n- Each element with role `tab` has the property `aria-controls`\n that should refer to its associated `tabpanel` element.\n- Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n- If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.",
42426
+ "name": "TabList",
42427
+ "cssProperties": [
42428
+ {
42429
+ "description": "Gap between tabs",
42430
+ "name": "--mdc-tablist-gap"
42431
+ },
42432
+ {
42433
+ "description": "Width of the tablist",
42434
+ "name": "--mdc-tablist-width"
42435
+ },
42436
+ {
42437
+ "description": "Margin value for the arrow button",
42438
+ "name": "--mdc-tablist-arrow-button-margin"
42439
+ }
42440
+ ],
42441
+ "cssParts": [
42442
+ {
42443
+ "description": "The tablist container.",
42444
+ "name": "container"
42445
+ }
42446
+ ],
42447
+ "slots": [
42448
+ {
42449
+ "description": "slot for mdc-tab elements.",
42450
+ "name": "Default"
42451
+ }
42452
+ ],
42453
+ "members": [
42454
+ {
42455
+ "kind": "field",
42456
+ "name": "activeTabId",
42457
+ "type": {
42458
+ "text": "string | undefined"
42459
+ },
42460
+ "description": "ID of the active tab, defaults to the first tab if not provided",
42461
+ "attribute": "active-tab-id",
42462
+ "reflects": true
42463
+ },
42464
+ {
42465
+ "kind": "field",
42466
+ "name": "dataAriaLabel",
42467
+ "type": {
42468
+ "text": "string | undefined"
42469
+ },
42470
+ "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
42471
+ "attribute": "data-aria-label"
42472
+ }
42473
+ ],
42474
+ "events": [
42475
+ {
42476
+ "description": "(React: onChange) This event is dispatched when the tab is selected. Event that fires when user changes the active tab. The function sent as the argument will receive the fired event and the new tab id can be fetched from event.detail.tabId. `(event: CustomEvent) => handleTabChange(event.detail.tabId);`",
42477
+ "name": "change",
42478
+ "reactName": "onChange"
42479
+ }
42480
+ ],
42481
+ "attributes": [
42482
+ {
42483
+ "name": "active-tab-id",
42484
+ "type": {
42485
+ "text": "string | undefined"
42486
+ },
42487
+ "description": "ID of the active tab, defaults to the first tab if not provided",
42488
+ "fieldName": "activeTabId"
42489
+ },
42490
+ {
42491
+ "name": "data-aria-label",
42492
+ "type": {
42493
+ "text": "string | undefined"
42494
+ },
42495
+ "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
42496
+ "fieldName": "dataAriaLabel"
42497
+ }
42498
+ ],
42499
+ "superclass": {
42500
+ "name": "Component",
42501
+ "module": "/src/models"
42502
+ },
42503
+ "tagName": "mdc-tablist",
42504
+ "jsDoc": "/**\n * Tab list organizes tabs into a container.\n *\n * Children of the tab list are `mdc-tab` elements, sent to the default slot.\n *\n * The tabs can be navigated using the left/right arrow keys, and selected by clicking,\n * or pressing the Enter and Space keys.\n *\n * **Implicit accessibility rules**\n *\n * - The element that serves as the container for the set of tabs has role `tablist`.\n * - Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n * - The active tab element has the state `aria-selected` set to `true`\n * and all other tab elements have it set to `false`.\n *\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n * - The `tablist` element needs to have a label provided by `data-aria-label`.\n * - Each element with role `tab` has the property `aria-controls`\n * that should refer to its associated `tabpanel` element.\n * - Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n * - If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.\n *\n * @tagname mdc-tablist\n *\n * @dependency mdc-tab\n * @dependency mdc-button\n *\n * @event change - (React: onChange) This event is dispatched when the tab is selected.\n * Event that fires when user changes the active tab.\n * The function sent as the argument will receive the fired event\n * and the new tab id can be fetched from event.detail.tabId.\n *\n * `(event: CustomEvent) => handleTabChange(event.detail.tabId);`\n *\n * @slot Default slot for mdc-tab elements.\n *\n * @cssproperty --mdc-tablist-gap - Gap between tabs\n * @cssproperty --mdc-tablist-width - Width of the tablist\n * @cssproperty --mdc-tablist-arrow-button-margin - Margin value for the arrow button\n *\n * @csspart container - The tablist container.\n */",
42505
+ "customElement": true
42506
+ }
42507
+ ],
42508
+ "exports": [
42509
+ {
42510
+ "kind": "js",
42511
+ "name": "default",
42512
+ "declaration": {
42513
+ "name": "TabList",
42514
+ "module": "components/tablist/tablist.component.js"
42515
+ }
42516
+ }
42517
+ ]
42518
+ },
41445
42519
  {
41446
42520
  "kind": "javascript-module",
41447
42521
  "path": "components/text/text.component.js",
@@ -41593,9 +42667,85 @@
41593
42667
  }
41594
42668
  ],
41595
42669
  "cssParts": [
42670
+ {
42671
+ "description": "The label element.",
42672
+ "name": "label",
42673
+ "inheritedFrom": {
42674
+ "name": "FormfieldWrapper",
42675
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42676
+ }
42677
+ },
42678
+ {
42679
+ "description": "The container for the label and required indicator elements.",
42680
+ "name": "label-text",
42681
+ "inheritedFrom": {
42682
+ "name": "FormfieldWrapper",
42683
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42684
+ }
42685
+ },
42686
+ {
42687
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
42688
+ "name": "required-indicator",
42689
+ "inheritedFrom": {
42690
+ "name": "FormfieldWrapper",
42691
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42692
+ }
42693
+ },
42694
+ {
42695
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
42696
+ "name": "info-icon-btn",
42697
+ "inheritedFrom": {
42698
+ "name": "FormfieldWrapper",
42699
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42700
+ }
42701
+ },
42702
+ {
42703
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
42704
+ "name": "label-toggletip",
42705
+ "inheritedFrom": {
42706
+ "name": "FormfieldWrapper",
42707
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42708
+ }
42709
+ },
42710
+ {
42711
+ "description": "The helper/validation text element.",
42712
+ "name": "help-text",
42713
+ "inheritedFrom": {
42714
+ "name": "FormfieldWrapper",
42715
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42716
+ }
42717
+ },
42718
+ {
42719
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
42720
+ "name": "helper-icon",
42721
+ "inheritedFrom": {
42722
+ "name": "FormfieldWrapper",
42723
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42724
+ }
42725
+ },
42726
+ {
42727
+ "description": "The container for the helper/validation icon and text elements.",
42728
+ "name": "help-text-container",
42729
+ "inheritedFrom": {
42730
+ "name": "FormfieldWrapper",
42731
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
42732
+ }
42733
+ },
42734
+ {
42735
+ "description": "The character counter element that is displayed when the `max-character-limit` property is set.",
42736
+ "name": "character-counter"
42737
+ },
42738
+ {
42739
+ "description": "The container for the help text and character counter elements.",
42740
+ "name": "textarea-footer"
42741
+ },
41596
42742
  {
41597
42743
  "description": "The textarea container",
41598
42744
  "name": "textarea-container"
42745
+ },
42746
+ {
42747
+ "description": "The textarea field element.",
42748
+ "name": "textarea"
41599
42749
  }
41600
42750
  ],
41601
42751
  "members": [
@@ -42453,7 +43603,7 @@
42453
43603
  "module": "/src/components/formfieldwrapper"
42454
43604
  },
42455
43605
  "tagName": "mdc-textarea",
42456
- "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 * @cssproperty --mdc-textarea-disabled-border-color - Border color for the textarea container when disabled\n * @cssproperty --mdc-textarea-disabled-text-color - Text color for the textarea field when disabled\n * @cssproperty --mdc-textarea-disabled-background-color - Background color for the textarea field when disabled\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-error-border-color - Border color for the error related help text\n * @cssproperty --mdc-textarea-warning-border-color - Border color for the warning related help text\n * @cssproperty --mdc-textarea-success-border-color - Border color for the success related help text\n * @cssproperty --mdc-textarea-primary-border-color - Border color for the priority related help text\n * @cssproperty --mdc-textarea-hover-background-color - Background color for the textarea container when hover\n * @cssproperty --mdc-textarea-focused-background-color - Background color for the textarea container when focused\n * @cssproperty --mdc-textarea-focused-border-color - Border color for the textarea container when focused\n *\n * @csspart textarea-container - The textarea container\n */",
43606
+ "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 * @cssproperty --mdc-textarea-disabled-border-color - Border color for the textarea container when disabled\n * @cssproperty --mdc-textarea-disabled-text-color - Text color for the textarea field when disabled\n * @cssproperty --mdc-textarea-disabled-background-color - Background color for the textarea field when disabled\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-error-border-color - Border color for the error related help text\n * @cssproperty --mdc-textarea-warning-border-color - Border color for the warning related help text\n * @cssproperty --mdc-textarea-success-border-color - Border color for the success related help text\n * @cssproperty --mdc-textarea-primary-border-color - Border color for the priority related help text\n * @cssproperty --mdc-textarea-hover-background-color - Background color for the textarea container when hover\n * @cssproperty --mdc-textarea-focused-background-color - Background color for the textarea container when focused\n * @cssproperty --mdc-textarea-focused-border-color - Border color for the textarea container when focused\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 * @csspart character-counter - The character counter element that is displayed when the `max-character-limit` property is set.\n * @csspart textarea-footer - The container for the help text and character counter elements.\n * @csspart textarea-container - The textarea container\n * @csspart textarea - The textarea field element.\n */",
42457
43607
  "customElement": true,
42458
43608
  "slots": [
42459
43609
  {
@@ -42612,106 +43762,6 @@
42612
43762
  }
42613
43763
  ]
42614
43764
  },
42615
- {
42616
- "kind": "javascript-module",
42617
- "path": "components/tablist/tablist.component.js",
42618
- "declarations": [
42619
- {
42620
- "kind": "class",
42621
- "description": "Tab list organizes tabs into a container.\n\nChildren of the tab list are `mdc-tab` elements, sent to the default slot.\n\nThe tabs can be navigated using the left/right arrow keys, and selected by clicking,\n or pressing the Enter and Space keys.\n\n**Implicit accessibility rules**\n\n- The element that serves as the container for the set of tabs has role `tablist`.\n- Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n- The active tab element has the state `aria-selected` set to `true`\n and all other tab elements have it set to `false`.\n\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n- The `tablist` element needs to have a label provided by `data-aria-label`.\n- Each element with role `tab` has the property `aria-controls`\n that should refer to its associated `tabpanel` element.\n- Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n- If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.",
42622
- "name": "TabList",
42623
- "cssProperties": [
42624
- {
42625
- "description": "Gap between tabs",
42626
- "name": "--mdc-tablist-gap"
42627
- },
42628
- {
42629
- "description": "Width of the tablist",
42630
- "name": "--mdc-tablist-width"
42631
- },
42632
- {
42633
- "description": "Margin value for the arrow button",
42634
- "name": "--mdc-tablist-arrow-button-margin"
42635
- }
42636
- ],
42637
- "cssParts": [
42638
- {
42639
- "description": "The tablist container.",
42640
- "name": "container"
42641
- }
42642
- ],
42643
- "slots": [
42644
- {
42645
- "description": "slot for mdc-tab elements.",
42646
- "name": "Default"
42647
- }
42648
- ],
42649
- "members": [
42650
- {
42651
- "kind": "field",
42652
- "name": "activeTabId",
42653
- "type": {
42654
- "text": "string | undefined"
42655
- },
42656
- "description": "ID of the active tab, defaults to the first tab if not provided",
42657
- "attribute": "active-tab-id",
42658
- "reflects": true
42659
- },
42660
- {
42661
- "kind": "field",
42662
- "name": "dataAriaLabel",
42663
- "type": {
42664
- "text": "string | undefined"
42665
- },
42666
- "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
42667
- "attribute": "data-aria-label"
42668
- }
42669
- ],
42670
- "events": [
42671
- {
42672
- "description": "(React: onChange) This event is dispatched when the tab is selected. Event that fires when user changes the active tab. The function sent as the argument will receive the fired event and the new tab id can be fetched from event.detail.tabId. `(event: CustomEvent) => handleTabChange(event.detail.tabId);`",
42673
- "name": "change",
42674
- "reactName": "onChange"
42675
- }
42676
- ],
42677
- "attributes": [
42678
- {
42679
- "name": "active-tab-id",
42680
- "type": {
42681
- "text": "string | undefined"
42682
- },
42683
- "description": "ID of the active tab, defaults to the first tab if not provided",
42684
- "fieldName": "activeTabId"
42685
- },
42686
- {
42687
- "name": "data-aria-label",
42688
- "type": {
42689
- "text": "string | undefined"
42690
- },
42691
- "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
42692
- "fieldName": "dataAriaLabel"
42693
- }
42694
- ],
42695
- "superclass": {
42696
- "name": "Component",
42697
- "module": "/src/models"
42698
- },
42699
- "tagName": "mdc-tablist",
42700
- "jsDoc": "/**\n * Tab list organizes tabs into a container.\n *\n * Children of the tab list are `mdc-tab` elements, sent to the default slot.\n *\n * The tabs can be navigated using the left/right arrow keys, and selected by clicking,\n * or pressing the Enter and Space keys.\n *\n * **Implicit accessibility rules**\n *\n * - The element that serves as the container for the set of tabs has role `tablist`.\n * - Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n * - The active tab element has the state `aria-selected` set to `true`\n * and all other tab elements have it set to `false`.\n *\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n * - The `tablist` element needs to have a label provided by `data-aria-label`.\n * - Each element with role `tab` has the property `aria-controls`\n * that should refer to its associated `tabpanel` element.\n * - Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n * - If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.\n *\n * @tagname mdc-tablist\n *\n * @dependency mdc-tab\n * @dependency mdc-button\n *\n * @event change - (React: onChange) This event is dispatched when the tab is selected.\n * Event that fires when user changes the active tab.\n * The function sent as the argument will receive the fired event\n * and the new tab id can be fetched from event.detail.tabId.\n *\n * `(event: CustomEvent) => handleTabChange(event.detail.tabId);`\n *\n * @slot Default slot for mdc-tab elements.\n *\n * @cssproperty --mdc-tablist-gap - Gap between tabs\n * @cssproperty --mdc-tablist-width - Width of the tablist\n * @cssproperty --mdc-tablist-arrow-button-margin - Margin value for the arrow button\n *\n * @csspart container - The tablist container.\n */",
42701
- "customElement": true
42702
- }
42703
- ],
42704
- "exports": [
42705
- {
42706
- "kind": "js",
42707
- "name": "default",
42708
- "declaration": {
42709
- "name": "TabList",
42710
- "module": "components/tablist/tablist.component.js"
42711
- }
42712
- }
42713
- ]
42714
- },
42715
43765
  {
42716
43766
  "kind": "javascript-module",
42717
43767
  "path": "components/toast/toast.component.js",
@@ -42778,6 +43828,10 @@
42778
43828
  {
42779
43829
  "description": "The close button for the toast.",
42780
43830
  "name": "toast-close-btn"
43831
+ },
43832
+ {
43833
+ "description": "Applied to the footer when it contains buttons or a toggle button.",
43834
+ "name": "has-footer-buttons"
42781
43835
  }
42782
43836
  ],
42783
43837
  "slots": [
@@ -43083,7 +44137,7 @@
43083
44137
  "module": "/src/models"
43084
44138
  },
43085
44139
  "tagName": "mdc-toast",
43086
- "jsDoc": "/**\n * `mdc-toast` is a lightweight, non-blocking alert used to inform users about application processes.\n * It supports success, warning, error, and custom messages, and is designed to be controlled externally.\n *\n * **Note**: When using `slot=\"toast-body-normal\"` and `slot=\"toast-body-detailed\"`, it's strongly recommended to wrap the content with `<mdc-text tagname=\"span\">`.\n * If not used, ensure your custom content is styled appropriately to match the design and alignment expectations of the toast component.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n *\n * @slot content-prefix - Slot for custom content before the icon (only for custom variant).\n * @slot toast-body-normal - Slot for the main body content of the toast.\n * @slot toast-body-detailed - Slot for additional detailed content, shown when expanded.\n * @slot footer - Slot for custom footer content. Prefer using footer-button-primary and footer-button-secondary slots.\n * @slot footer-button-primary - Slot for passing the primary variant of `mdc-button` in the footer.\n * @slot footer-button-secondary - Slot for passing the secondary variant of `mdc-button` in the footer.\n *\n * @tagname mdc-toast\n *\n * @event close - (React: onClose) Dispatched when the Close Button is clicked using mouse or keyboard.\n *\n * @csspart content-container - The container for the toast's main content, including icon, text, and close button.\n * @csspart toast-prefix-icon - The icon shown at the start of the toast, styled by variant.\n * @csspart toast-content - The container for the header and body content of the toast.\n * @csspart toast-header - The header text of the toast.\n * @csspart footer - The container for the toast's footer, including toggle and action buttons.\n * @csspart footer-button-toggle - The toggle button for showing/hiding detailed content.\n * @csspart toast-close-btn - The close button for the toast.\n *\n * @cssproperty --mdc-toast-background-color - Background color of the toast.\n * @cssproperty --mdc-toast-border-color - Border color of the toast.\n * @cssproperty --mdc-toast-header-text-color - Color of the header text in the toast.\n * @cssproperty --mdc-toast-icon-color - Color of the icon in the toast.\n * @cssproperty --mdc-toast-elevation-3 - Elevation effect applied to the toast.\n * @cssproperty --mdc-toast-width - Width of the toast.\n * @cssproperty --mdc-toast-padding - Padding inside the toast.\n */",
44140
+ "jsDoc": "/**\n * `mdc-toast` is a lightweight, non-blocking alert used to inform users about application processes.\n * It supports success, warning, error, and custom messages, and is designed to be controlled externally.\n *\n * **Note**: When using `slot=\"toast-body-normal\"` and `slot=\"toast-body-detailed\"`, it's strongly recommended to wrap the content with `<mdc-text tagname=\"span\">`.\n * If not used, ensure your custom content is styled appropriately to match the design and alignment expectations of the toast component.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n *\n * @slot content-prefix - Slot for custom content before the icon (only for custom variant).\n * @slot toast-body-normal - Slot for the main body content of the toast.\n * @slot toast-body-detailed - Slot for additional detailed content, shown when expanded.\n * @slot footer - Slot for custom footer content. Prefer using footer-button-primary and footer-button-secondary slots.\n * @slot footer-button-primary - Slot for passing the primary variant of `mdc-button` in the footer.\n * @slot footer-button-secondary - Slot for passing the secondary variant of `mdc-button` in the footer.\n *\n * @tagname mdc-toast\n *\n * @event close - (React: onClose) Dispatched when the Close Button is clicked using mouse or keyboard.\n *\n * @csspart content-container - The container for the toast's main content, including icon, text, and close button.\n * @csspart toast-prefix-icon - The icon shown at the start of the toast, styled by variant.\n * @csspart toast-content - The container for the header and body content of the toast.\n * @csspart toast-header - The header text of the toast.\n * @csspart footer - The container for the toast's footer, including toggle and action buttons.\n * @csspart footer-button-toggle - The toggle button for showing/hiding detailed content.\n * @csspart toast-close-btn - The close button for the toast.\n * @csspart has-footer-buttons - Applied to the footer when it contains buttons or a toggle button.\n *\n * @cssproperty --mdc-toast-background-color - Background color of the toast.\n * @cssproperty --mdc-toast-border-color - Border color of the toast.\n * @cssproperty --mdc-toast-header-text-color - Color of the header text in the toast.\n * @cssproperty --mdc-toast-icon-color - Color of the icon in the toast.\n * @cssproperty --mdc-toast-elevation-3 - Elevation effect applied to the toast.\n * @cssproperty --mdc-toast-width - Width of the toast.\n * @cssproperty --mdc-toast-padding - Padding inside the toast.\n */",
43087
44141
  "customElement": true
43088
44142
  }
43089
44143
  ],
@@ -43148,6 +44202,80 @@
43148
44202
  "name": "--mdc-toggle-inactive-pressed-color"
43149
44203
  }
43150
44204
  ],
44205
+ "cssParts": [
44206
+ {
44207
+ "description": "The label element.",
44208
+ "name": "label",
44209
+ "inheritedFrom": {
44210
+ "name": "FormfieldWrapper",
44211
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44212
+ }
44213
+ },
44214
+ {
44215
+ "description": "The container for the label and required indicator elements.",
44216
+ "name": "label-text",
44217
+ "inheritedFrom": {
44218
+ "name": "FormfieldWrapper",
44219
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44220
+ }
44221
+ },
44222
+ {
44223
+ "description": "The required indicator element that is displayed next to the label when the `required` property is set to true.",
44224
+ "name": "required-indicator",
44225
+ "inheritedFrom": {
44226
+ "name": "FormfieldWrapper",
44227
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44228
+ }
44229
+ },
44230
+ {
44231
+ "description": "The info icon button element that is displayed next to the label when the `toggletip-text` property is set.",
44232
+ "name": "info-icon-btn",
44233
+ "inheritedFrom": {
44234
+ "name": "FormfieldWrapper",
44235
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44236
+ }
44237
+ },
44238
+ {
44239
+ "description": "The toggletip element that is displayed when the info icon button is clicked.",
44240
+ "name": "label-toggletip",
44241
+ "inheritedFrom": {
44242
+ "name": "FormfieldWrapper",
44243
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44244
+ }
44245
+ },
44246
+ {
44247
+ "description": "The helper/validation text element.",
44248
+ "name": "help-text",
44249
+ "inheritedFrom": {
44250
+ "name": "FormfieldWrapper",
44251
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44252
+ }
44253
+ },
44254
+ {
44255
+ "description": "The helper/validation icon element that is displayed next to the helper/validation text.",
44256
+ "name": "helper-icon",
44257
+ "inheritedFrom": {
44258
+ "name": "FormfieldWrapper",
44259
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44260
+ }
44261
+ },
44262
+ {
44263
+ "description": "The container for the helper/validation icon and text elements.",
44264
+ "name": "help-text-container",
44265
+ "inheritedFrom": {
44266
+ "name": "FormfieldWrapper",
44267
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44268
+ }
44269
+ },
44270
+ {
44271
+ "description": "The container element that wraps the toggle input.",
44272
+ "name": "container"
44273
+ },
44274
+ {
44275
+ "description": "The native checkbox input element styled as a toggle switch.",
44276
+ "name": "toggle-input"
44277
+ }
44278
+ ],
43151
44279
  "members": [
43152
44280
  {
43153
44281
  "kind": "field",
@@ -43807,7 +44935,7 @@
43807
44935
  "module": "/src/components/formfieldwrapper"
43808
44936
  },
43809
44937
  "tagName": "mdc-toggle",
43810
- "jsDoc": "/**\n * Toggle Component is an interactive control used to switch between two mutually exclusive options,\n * such as On/Off, Active/Inactive. These are commonly used in settings panels, forms, and preference selections\n * where users need to enable or disable a feature.\n * It contains an optional label and an optional helper text.\n *\n * To create a group of toggles, use the FormFieldGroup component.\n *\n * Note: It internally renders a checkbox styled as a toggle switch.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-statictoggle\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-toggle\n *\n * @event change - (React: onChange) Event that gets dispatched when the toggle state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the toggle receives focus.\n *\n * @cssproperty --mdc-toggle-width - Width of the toggle\n * @cssproperty --mdc-toggle-height - Height of the toggle\n * @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state\n * @cssproperty --mdc-toggle-help-text-color - Color of the help text label\n * @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state\n * @cssproperty --mdc-toggle-active-pressed-color - Background color of the active toggle in pressed state\n * @cssproperty --mdc-toggle-inactive-hover-color - Background color of the inactive toggle in hover state\n * @cssproperty --mdc-toggle-inactive-pressed-color - Background color of the inactive toggle in pressed state\n */",
44938
+ "jsDoc": "/**\n * Toggle Component is an interactive control used to switch between two mutually exclusive options,\n * such as On/Off, Active/Inactive. These are commonly used in settings panels, forms, and preference selections\n * where users need to enable or disable a feature.\n * It contains an optional label and an optional helper text.\n *\n * To create a group of toggles, use the FormFieldGroup component.\n *\n * Note: It internally renders a checkbox styled as a toggle switch.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-statictoggle\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-toggle\n *\n * @event change - (React: onChange) Event that gets dispatched when the toggle state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the toggle receives focus.\n *\n * @cssproperty --mdc-toggle-width - Width of the toggle\n * @cssproperty --mdc-toggle-height - Height of the toggle\n * @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state\n * @cssproperty --mdc-toggle-help-text-color - Color of the help text label\n * @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state\n * @cssproperty --mdc-toggle-active-pressed-color - Background color of the active toggle in pressed state\n * @cssproperty --mdc-toggle-inactive-hover-color - Background color of the inactive toggle in hover state\n * @cssproperty --mdc-toggle-inactive-pressed-color - Background color of the inactive toggle in pressed state\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 * @csspart container - The container element that wraps the toggle input.\n * @csspart toggle-input - The native checkbox input element styled as a toggle switch.\n */",
43811
44939
  "customElement": true,
43812
44940
  "slots": [
43813
44941
  {