@momentum-design/components 0.120.30 → 0.120.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +239 -381
- package/dist/browser/index.js.map +2 -2
- package/dist/components/avatar/avatar.component.d.ts +1 -1
- package/dist/components/avatar/avatar.component.js +6 -5
- package/dist/components/avatar/avatar.styles.js +9 -9
- package/dist/components/checkbox/checkbox.component.d.ts +2 -0
- package/dist/components/checkbox/checkbox.component.js +3 -0
- package/dist/components/checkbox/checkbox.styles.js +14 -52
- package/dist/components/combobox/combobox.component.d.ts +1 -0
- package/dist/components/combobox/combobox.component.js +1 -0
- package/dist/components/formfieldgroup/formfieldgroup.component.d.ts +1 -0
- package/dist/components/formfieldgroup/formfieldgroup.component.js +1 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +1 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.component.js +1 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.styles.js +8 -4
- package/dist/components/input/input.component.d.ts +1 -0
- package/dist/components/input/input.component.js +1 -0
- package/dist/components/password/password.component.d.ts +1 -0
- package/dist/components/password/password.component.js +1 -0
- package/dist/components/progressbar/progressbar.component.d.ts +1 -0
- package/dist/components/progressbar/progressbar.component.js +1 -0
- package/dist/components/radio/radio.component.d.ts +5 -8
- package/dist/components/radio/radio.component.js +6 -8
- package/dist/components/radio/radio.styles.js +16 -74
- package/dist/components/searchfield/searchfield.component.d.ts +1 -0
- package/dist/components/searchfield/searchfield.component.js +1 -0
- package/dist/components/select/select.component.d.ts +1 -0
- package/dist/components/select/select.component.js +1 -0
- package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +4 -9
- package/dist/components/staticcheckbox/staticcheckbox.component.js +4 -9
- package/dist/components/staticcheckbox/staticcheckbox.styles.js +54 -56
- package/dist/components/staticradio/staticradio.component.d.ts +5 -12
- package/dist/components/staticradio/staticradio.component.js +5 -12
- package/dist/components/staticradio/staticradio.styles.js +65 -58
- package/dist/components/statictoggle/statictoggle.component.d.ts +7 -15
- package/dist/components/statictoggle/statictoggle.component.js +7 -15
- package/dist/components/statictoggle/statictoggle.styles.js +55 -64
- package/dist/components/textarea/textarea.component.d.ts +1 -0
- package/dist/components/textarea/textarea.component.js +1 -0
- package/dist/components/toggle/toggle.component.d.ts +8 -11
- package/dist/components/toggle/toggle.component.js +10 -13
- package/dist/components/toggle/toggle.styles.js +12 -58
- package/dist/custom-elements.json +1654 -1642
- package/dist/react/avatar/index.d.ts +0 -1
- package/dist/react/avatar/index.js +0 -1
- package/dist/react/checkbox/index.d.ts +2 -0
- package/dist/react/checkbox/index.js +2 -0
- package/dist/react/combobox/index.d.ts +1 -0
- package/dist/react/combobox/index.js +1 -0
- package/dist/react/formfieldgroup/index.d.ts +1 -0
- package/dist/react/formfieldgroup/index.js +1 -0
- package/dist/react/formfieldwrapper/index.d.ts +1 -0
- package/dist/react/formfieldwrapper/index.js +1 -0
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/dist/react/input/index.d.ts +1 -0
- package/dist/react/input/index.js +1 -0
- package/dist/react/password/index.d.ts +1 -0
- package/dist/react/password/index.js +1 -0
- package/dist/react/progressbar/index.d.ts +1 -0
- package/dist/react/progressbar/index.js +1 -0
- package/dist/react/radio/index.d.ts +5 -8
- package/dist/react/radio/index.js +5 -8
- package/dist/react/searchfield/index.d.ts +1 -0
- package/dist/react/searchfield/index.js +1 -0
- package/dist/react/select/index.d.ts +1 -0
- package/dist/react/select/index.js +1 -0
- package/dist/react/staticcheckbox/index.d.ts +4 -9
- package/dist/react/staticcheckbox/index.js +4 -9
- package/dist/react/staticradio/index.d.ts +5 -12
- package/dist/react/staticradio/index.js +5 -12
- package/dist/react/statictoggle/index.d.ts +7 -15
- package/dist/react/statictoggle/index.js +7 -15
- package/dist/react/textarea/index.d.ts +1 -0
- package/dist/react/textarea/index.js +1 -0
- package/dist/react/toggle/index.d.ts +8 -11
- package/dist/react/toggle/index.js +8 -11
- package/package.json +1 -1
|
@@ -3253,10 +3253,6 @@
|
|
|
3253
3253
|
}
|
|
3254
3254
|
],
|
|
3255
3255
|
"cssParts": [
|
|
3256
|
-
{
|
|
3257
|
-
"description": "The main content of the avatar.",
|
|
3258
|
-
"name": "content"
|
|
3259
|
-
},
|
|
3260
3256
|
{
|
|
3261
3257
|
"description": "The photo of the avatar.",
|
|
3262
3258
|
"name": "photo"
|
|
@@ -3385,7 +3381,7 @@
|
|
|
3385
3381
|
"module": "/src/models"
|
|
3386
3382
|
},
|
|
3387
3383
|
"tagName": "mdc-avatar",
|
|
3388
|
-
"jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart
|
|
3384
|
+
"jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
|
|
3389
3385
|
"customElement": true,
|
|
3390
3386
|
"attributes": [
|
|
3391
3387
|
{
|
|
@@ -10132,6 +10128,14 @@
|
|
|
10132
10128
|
"name": "FormfieldWrapper",
|
|
10133
10129
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
10134
10130
|
}
|
|
10131
|
+
},
|
|
10132
|
+
{
|
|
10133
|
+
"description": "Color for the required indicator text.",
|
|
10134
|
+
"name": "--mdc-required-indicator-color",
|
|
10135
|
+
"inheritedFrom": {
|
|
10136
|
+
"name": "FormfieldWrapper",
|
|
10137
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
10138
|
+
}
|
|
10135
10139
|
}
|
|
10136
10140
|
],
|
|
10137
10141
|
"cssParts": [
|
|
@@ -10206,6 +10210,10 @@
|
|
|
10206
10210
|
{
|
|
10207
10211
|
"description": "The container for the label and helper text elements.",
|
|
10208
10212
|
"name": "text-container"
|
|
10213
|
+
},
|
|
10214
|
+
{
|
|
10215
|
+
"description": "The static checkbox element.",
|
|
10216
|
+
"name": "static-checkbox"
|
|
10209
10217
|
}
|
|
10210
10218
|
],
|
|
10211
10219
|
"slots": [
|
|
@@ -10972,7 +10980,7 @@
|
|
|
10972
10980
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
10973
10981
|
},
|
|
10974
10982
|
"tagName": "mdc-checkbox",
|
|
10975
|
-
"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 * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n *\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 */",
|
|
10983
|
+
"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 * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n *\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 * @csspart static-checkbox - The static checkbox element.\n */",
|
|
10976
10984
|
"customElement": true
|
|
10977
10985
|
}
|
|
10978
10986
|
],
|
|
@@ -13706,6 +13714,14 @@
|
|
|
13706
13714
|
"name": "FormfieldWrapper",
|
|
13707
13715
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
13708
13716
|
}
|
|
13717
|
+
},
|
|
13718
|
+
{
|
|
13719
|
+
"description": "Color for the required indicator text.",
|
|
13720
|
+
"name": "--mdc-required-indicator-color",
|
|
13721
|
+
"inheritedFrom": {
|
|
13722
|
+
"name": "FormfieldWrapper",
|
|
13723
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
13724
|
+
}
|
|
13709
13725
|
}
|
|
13710
13726
|
],
|
|
13711
13727
|
"cssParts": [
|
|
@@ -14980,7 +14996,7 @@
|
|
|
14980
14996
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
14981
14997
|
},
|
|
14982
14998
|
"tagName": "mdc-combobox",
|
|
14983
|
-
"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-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n *\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 */",
|
|
14999
|
+
"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-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n *\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 */",
|
|
14984
15000
|
"customElement": true
|
|
14985
15001
|
}
|
|
14986
15002
|
],
|
|
@@ -17197,6 +17213,14 @@
|
|
|
17197
17213
|
"name": "FormfieldWrapper",
|
|
17198
17214
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
17199
17215
|
}
|
|
17216
|
+
},
|
|
17217
|
+
{
|
|
17218
|
+
"description": "Color for the required indicator text.",
|
|
17219
|
+
"name": "--mdc-required-indicator-color",
|
|
17220
|
+
"inheritedFrom": {
|
|
17221
|
+
"name": "FormfieldWrapper",
|
|
17222
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
17223
|
+
}
|
|
17200
17224
|
}
|
|
17201
17225
|
],
|
|
17202
17226
|
"cssParts": [
|
|
@@ -17572,7 +17596,7 @@
|
|
|
17572
17596
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
17573
17597
|
},
|
|
17574
17598
|
"tagName": "mdc-formfieldgroup",
|
|
17575
|
-
"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 *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n */",
|
|
17599
|
+
"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 *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n */",
|
|
17576
17600
|
"customElement": true,
|
|
17577
17601
|
"attributes": [
|
|
17578
17602
|
{
|
|
@@ -17778,6 +17802,10 @@
|
|
|
17778
17802
|
{
|
|
17779
17803
|
"description": "Color for the help text.",
|
|
17780
17804
|
"name": "--mdc-help-text-color"
|
|
17805
|
+
},
|
|
17806
|
+
{
|
|
17807
|
+
"description": "Color for the required indicator text.",
|
|
17808
|
+
"name": "--mdc-required-indicator-color"
|
|
17781
17809
|
}
|
|
17782
17810
|
],
|
|
17783
17811
|
"cssParts": [
|
|
@@ -18116,7 +18144,7 @@
|
|
|
18116
18144
|
"module": "/src/models"
|
|
18117
18145
|
},
|
|
18118
18146
|
"tagName": "mdc-formfieldwrapper",
|
|
18119
|
-
"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 *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n */",
|
|
18147
|
+
"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 *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n */",
|
|
18120
18148
|
"customElement": true
|
|
18121
18149
|
}
|
|
18122
18150
|
],
|
|
@@ -18982,6 +19010,14 @@
|
|
|
18982
19010
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
18983
19011
|
}
|
|
18984
19012
|
},
|
|
19013
|
+
{
|
|
19014
|
+
"description": "Color for the required indicator text.",
|
|
19015
|
+
"name": "--mdc-required-indicator-color",
|
|
19016
|
+
"inheritedFrom": {
|
|
19017
|
+
"name": "FormfieldWrapper",
|
|
19018
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
19019
|
+
}
|
|
19020
|
+
},
|
|
18985
19021
|
{
|
|
18986
19022
|
"description": "Text color for the input field",
|
|
18987
19023
|
"name": "--mdc-input-text-color"
|
|
@@ -20115,7 +20151,7 @@
|
|
|
20115
20151
|
"module": "/src/components/formfieldwrapper"
|
|
20116
20152
|
},
|
|
20117
20153
|
"tagName": "mdc-input",
|
|
20118
|
-
"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-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected 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 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 */",
|
|
20154
|
+
"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-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected 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 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 */",
|
|
20119
20155
|
"customElement": true
|
|
20120
20156
|
}
|
|
20121
20157
|
],
|
|
@@ -21613,6 +21649,231 @@
|
|
|
21613
21649
|
}
|
|
21614
21650
|
]
|
|
21615
21651
|
},
|
|
21652
|
+
{
|
|
21653
|
+
"kind": "javascript-module",
|
|
21654
|
+
"path": "components/list/list.component.js",
|
|
21655
|
+
"declarations": [
|
|
21656
|
+
{
|
|
21657
|
+
"kind": "class",
|
|
21658
|
+
"description": "mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n\nTo add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n`mdc-listitem` components can be placed in the default slot.",
|
|
21659
|
+
"name": "List",
|
|
21660
|
+
"cssParts": [
|
|
21661
|
+
{
|
|
21662
|
+
"description": "The container slot around the list items",
|
|
21663
|
+
"name": "container"
|
|
21664
|
+
}
|
|
21665
|
+
],
|
|
21666
|
+
"slots": [
|
|
21667
|
+
{
|
|
21668
|
+
"description": "This is a default/unnamed slot, where listitems can be placed.",
|
|
21669
|
+
"name": "default"
|
|
21670
|
+
},
|
|
21671
|
+
{
|
|
21672
|
+
"description": "This slot is used to pass a header for the list, which can be a `mdc-listheader` component.",
|
|
21673
|
+
"name": "list-header"
|
|
21674
|
+
}
|
|
21675
|
+
],
|
|
21676
|
+
"members": [
|
|
21677
|
+
{
|
|
21678
|
+
"kind": "field",
|
|
21679
|
+
"name": "loop",
|
|
21680
|
+
"type": {
|
|
21681
|
+
"text": "'true' | 'false'"
|
|
21682
|
+
},
|
|
21683
|
+
"privacy": "public",
|
|
21684
|
+
"description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
|
|
21685
|
+
"default": "''",
|
|
21686
|
+
"attribute": "loop",
|
|
21687
|
+
"reflects": true
|
|
21688
|
+
},
|
|
21689
|
+
{
|
|
21690
|
+
"kind": "field",
|
|
21691
|
+
"name": "initialFocus",
|
|
21692
|
+
"type": {
|
|
21693
|
+
"text": "number"
|
|
21694
|
+
},
|
|
21695
|
+
"privacy": "public",
|
|
21696
|
+
"description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
|
|
21697
|
+
"default": "0",
|
|
21698
|
+
"attribute": "initial-focus",
|
|
21699
|
+
"reflects": true
|
|
21700
|
+
},
|
|
21701
|
+
{
|
|
21702
|
+
"kind": "field",
|
|
21703
|
+
"name": "itemsStore",
|
|
21704
|
+
"default": "new ElementStore<ListItem>(this, { isValidItem: this.isValidItem, })"
|
|
21705
|
+
},
|
|
21706
|
+
{
|
|
21707
|
+
"kind": "method",
|
|
21708
|
+
"name": "getCurrentIndex",
|
|
21709
|
+
"privacy": "private",
|
|
21710
|
+
"return": {
|
|
21711
|
+
"type": {
|
|
21712
|
+
"text": ""
|
|
21713
|
+
}
|
|
21714
|
+
},
|
|
21715
|
+
"parameters": [
|
|
21716
|
+
{
|
|
21717
|
+
"name": "target",
|
|
21718
|
+
"type": {
|
|
21719
|
+
"text": "HTMLElement | null"
|
|
21720
|
+
},
|
|
21721
|
+
"description": "The target element that triggered the event."
|
|
21722
|
+
}
|
|
21723
|
+
],
|
|
21724
|
+
"description": "Retrieves the current index of the item that triggered the event.",
|
|
21725
|
+
"inheritedFrom": {
|
|
21726
|
+
"name": "ListNavigationMixin",
|
|
21727
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
21728
|
+
}
|
|
21729
|
+
},
|
|
21730
|
+
{
|
|
21731
|
+
"kind": "method",
|
|
21732
|
+
"name": "resetTabIndexes",
|
|
21733
|
+
"privacy": "protected",
|
|
21734
|
+
"parameters": [
|
|
21735
|
+
{
|
|
21736
|
+
"name": "index",
|
|
21737
|
+
"type": {
|
|
21738
|
+
"text": "number"
|
|
21739
|
+
},
|
|
21740
|
+
"description": "The index of the currently focused item."
|
|
21741
|
+
}
|
|
21742
|
+
],
|
|
21743
|
+
"description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
|
|
21744
|
+
"inheritedFrom": {
|
|
21745
|
+
"name": "ListNavigationMixin",
|
|
21746
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
21747
|
+
}
|
|
21748
|
+
},
|
|
21749
|
+
{
|
|
21750
|
+
"kind": "method",
|
|
21751
|
+
"name": "resetTabIndexAndSetFocus",
|
|
21752
|
+
"privacy": "protected",
|
|
21753
|
+
"parameters": [
|
|
21754
|
+
{
|
|
21755
|
+
"name": "newIndex",
|
|
21756
|
+
"type": {
|
|
21757
|
+
"text": "number"
|
|
21758
|
+
},
|
|
21759
|
+
"description": "The index of the new item to focus."
|
|
21760
|
+
},
|
|
21761
|
+
{
|
|
21762
|
+
"name": "oldIndex",
|
|
21763
|
+
"optional": true,
|
|
21764
|
+
"type": {
|
|
21765
|
+
"text": "number"
|
|
21766
|
+
},
|
|
21767
|
+
"description": "The index of the currently focused item."
|
|
21768
|
+
},
|
|
21769
|
+
{
|
|
21770
|
+
"name": "focusNewItem",
|
|
21771
|
+
"default": "true",
|
|
21772
|
+
"description": "Call focus() on the new item or not. It should be false during firstUpdate"
|
|
21773
|
+
}
|
|
21774
|
+
],
|
|
21775
|
+
"description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
|
|
21776
|
+
"return": {
|
|
21777
|
+
"type": {
|
|
21778
|
+
"text": ""
|
|
21779
|
+
}
|
|
21780
|
+
},
|
|
21781
|
+
"inheritedFrom": {
|
|
21782
|
+
"name": "ListNavigationMixin",
|
|
21783
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
21784
|
+
}
|
|
21785
|
+
},
|
|
21786
|
+
{
|
|
21787
|
+
"kind": "method",
|
|
21788
|
+
"name": "resolveDirectionKey",
|
|
21789
|
+
"privacy": "private",
|
|
21790
|
+
"parameters": [
|
|
21791
|
+
{
|
|
21792
|
+
"name": "key",
|
|
21793
|
+
"type": {
|
|
21794
|
+
"text": "string"
|
|
21795
|
+
},
|
|
21796
|
+
"description": "The key pressed by the user."
|
|
21797
|
+
},
|
|
21798
|
+
{
|
|
21799
|
+
"name": "isRtl",
|
|
21800
|
+
"type": {
|
|
21801
|
+
"text": "boolean"
|
|
21802
|
+
},
|
|
21803
|
+
"description": "A boolean indicating if the layout is right-to-left (RTL)."
|
|
21804
|
+
}
|
|
21805
|
+
],
|
|
21806
|
+
"description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
|
|
21807
|
+
"return": {
|
|
21808
|
+
"type": {
|
|
21809
|
+
"text": ""
|
|
21810
|
+
}
|
|
21811
|
+
},
|
|
21812
|
+
"inheritedFrom": {
|
|
21813
|
+
"name": "ListNavigationMixin",
|
|
21814
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
21815
|
+
}
|
|
21816
|
+
},
|
|
21817
|
+
{
|
|
21818
|
+
"kind": "method",
|
|
21819
|
+
"name": "shouldLoop",
|
|
21820
|
+
"privacy": "private",
|
|
21821
|
+
"inheritedFrom": {
|
|
21822
|
+
"name": "ListNavigationMixin",
|
|
21823
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
21824
|
+
}
|
|
21825
|
+
}
|
|
21826
|
+
],
|
|
21827
|
+
"attributes": [
|
|
21828
|
+
{
|
|
21829
|
+
"name": "loop",
|
|
21830
|
+
"type": {
|
|
21831
|
+
"text": "'true' | 'false'"
|
|
21832
|
+
},
|
|
21833
|
+
"description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
|
|
21834
|
+
"default": "''",
|
|
21835
|
+
"fieldName": "loop"
|
|
21836
|
+
},
|
|
21837
|
+
{
|
|
21838
|
+
"name": "initial-focus",
|
|
21839
|
+
"type": {
|
|
21840
|
+
"text": "number"
|
|
21841
|
+
},
|
|
21842
|
+
"description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
|
|
21843
|
+
"default": "0",
|
|
21844
|
+
"fieldName": "initialFocus"
|
|
21845
|
+
}
|
|
21846
|
+
],
|
|
21847
|
+
"mixins": [
|
|
21848
|
+
{
|
|
21849
|
+
"name": "ListNavigationMixin",
|
|
21850
|
+
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
21851
|
+
},
|
|
21852
|
+
{
|
|
21853
|
+
"name": "CaptureDestroyEventForChildElement",
|
|
21854
|
+
"module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
|
|
21855
|
+
}
|
|
21856
|
+
],
|
|
21857
|
+
"superclass": {
|
|
21858
|
+
"name": "Component",
|
|
21859
|
+
"module": "/src/models"
|
|
21860
|
+
},
|
|
21861
|
+
"tagName": "mdc-list",
|
|
21862
|
+
"jsDoc": "/**\n * mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n *\n * To add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n * `mdc-listitem` components can be placed in the default slot.\n *\n * @tagname mdc-list\n *\n * @slot default - This is a default/unnamed slot, where listitems can be placed.\n * @slot list-header - This slot is used to pass a header for the list, which can be a `mdc-listheader` component.\n *\n * @csspart container - The container slot around the list items\n */",
|
|
21863
|
+
"customElement": true
|
|
21864
|
+
}
|
|
21865
|
+
],
|
|
21866
|
+
"exports": [
|
|
21867
|
+
{
|
|
21868
|
+
"kind": "js",
|
|
21869
|
+
"name": "default",
|
|
21870
|
+
"declaration": {
|
|
21871
|
+
"name": "List",
|
|
21872
|
+
"module": "components/list/list.component.js"
|
|
21873
|
+
}
|
|
21874
|
+
}
|
|
21875
|
+
]
|
|
21876
|
+
},
|
|
21616
21877
|
{
|
|
21617
21878
|
"kind": "javascript-module",
|
|
21618
21879
|
"path": "components/linksimple/linksimple.component.js",
|
|
@@ -21996,231 +22257,6 @@
|
|
|
21996
22257
|
}
|
|
21997
22258
|
]
|
|
21998
22259
|
},
|
|
21999
|
-
{
|
|
22000
|
-
"kind": "javascript-module",
|
|
22001
|
-
"path": "components/list/list.component.js",
|
|
22002
|
-
"declarations": [
|
|
22003
|
-
{
|
|
22004
|
-
"kind": "class",
|
|
22005
|
-
"description": "mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n\nTo add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n`mdc-listitem` components can be placed in the default slot.",
|
|
22006
|
-
"name": "List",
|
|
22007
|
-
"cssParts": [
|
|
22008
|
-
{
|
|
22009
|
-
"description": "The container slot around the list items",
|
|
22010
|
-
"name": "container"
|
|
22011
|
-
}
|
|
22012
|
-
],
|
|
22013
|
-
"slots": [
|
|
22014
|
-
{
|
|
22015
|
-
"description": "This is a default/unnamed slot, where listitems can be placed.",
|
|
22016
|
-
"name": "default"
|
|
22017
|
-
},
|
|
22018
|
-
{
|
|
22019
|
-
"description": "This slot is used to pass a header for the list, which can be a `mdc-listheader` component.",
|
|
22020
|
-
"name": "list-header"
|
|
22021
|
-
}
|
|
22022
|
-
],
|
|
22023
|
-
"members": [
|
|
22024
|
-
{
|
|
22025
|
-
"kind": "field",
|
|
22026
|
-
"name": "loop",
|
|
22027
|
-
"type": {
|
|
22028
|
-
"text": "'true' | 'false'"
|
|
22029
|
-
},
|
|
22030
|
-
"privacy": "public",
|
|
22031
|
-
"description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
|
|
22032
|
-
"default": "''",
|
|
22033
|
-
"attribute": "loop",
|
|
22034
|
-
"reflects": true
|
|
22035
|
-
},
|
|
22036
|
-
{
|
|
22037
|
-
"kind": "field",
|
|
22038
|
-
"name": "initialFocus",
|
|
22039
|
-
"type": {
|
|
22040
|
-
"text": "number"
|
|
22041
|
-
},
|
|
22042
|
-
"privacy": "public",
|
|
22043
|
-
"description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
|
|
22044
|
-
"default": "0",
|
|
22045
|
-
"attribute": "initial-focus",
|
|
22046
|
-
"reflects": true
|
|
22047
|
-
},
|
|
22048
|
-
{
|
|
22049
|
-
"kind": "field",
|
|
22050
|
-
"name": "itemsStore",
|
|
22051
|
-
"default": "new ElementStore<ListItem>(this, { isValidItem: this.isValidItem, })"
|
|
22052
|
-
},
|
|
22053
|
-
{
|
|
22054
|
-
"kind": "method",
|
|
22055
|
-
"name": "getCurrentIndex",
|
|
22056
|
-
"privacy": "private",
|
|
22057
|
-
"return": {
|
|
22058
|
-
"type": {
|
|
22059
|
-
"text": ""
|
|
22060
|
-
}
|
|
22061
|
-
},
|
|
22062
|
-
"parameters": [
|
|
22063
|
-
{
|
|
22064
|
-
"name": "target",
|
|
22065
|
-
"type": {
|
|
22066
|
-
"text": "HTMLElement | null"
|
|
22067
|
-
},
|
|
22068
|
-
"description": "The target element that triggered the event."
|
|
22069
|
-
}
|
|
22070
|
-
],
|
|
22071
|
-
"description": "Retrieves the current index of the item that triggered the event.",
|
|
22072
|
-
"inheritedFrom": {
|
|
22073
|
-
"name": "ListNavigationMixin",
|
|
22074
|
-
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22075
|
-
}
|
|
22076
|
-
},
|
|
22077
|
-
{
|
|
22078
|
-
"kind": "method",
|
|
22079
|
-
"name": "resetTabIndexes",
|
|
22080
|
-
"privacy": "protected",
|
|
22081
|
-
"parameters": [
|
|
22082
|
-
{
|
|
22083
|
-
"name": "index",
|
|
22084
|
-
"type": {
|
|
22085
|
-
"text": "number"
|
|
22086
|
-
},
|
|
22087
|
-
"description": "The index of the currently focused item."
|
|
22088
|
-
}
|
|
22089
|
-
],
|
|
22090
|
-
"description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
|
|
22091
|
-
"inheritedFrom": {
|
|
22092
|
-
"name": "ListNavigationMixin",
|
|
22093
|
-
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22094
|
-
}
|
|
22095
|
-
},
|
|
22096
|
-
{
|
|
22097
|
-
"kind": "method",
|
|
22098
|
-
"name": "resetTabIndexAndSetFocus",
|
|
22099
|
-
"privacy": "protected",
|
|
22100
|
-
"parameters": [
|
|
22101
|
-
{
|
|
22102
|
-
"name": "newIndex",
|
|
22103
|
-
"type": {
|
|
22104
|
-
"text": "number"
|
|
22105
|
-
},
|
|
22106
|
-
"description": "The index of the new item to focus."
|
|
22107
|
-
},
|
|
22108
|
-
{
|
|
22109
|
-
"name": "oldIndex",
|
|
22110
|
-
"optional": true,
|
|
22111
|
-
"type": {
|
|
22112
|
-
"text": "number"
|
|
22113
|
-
},
|
|
22114
|
-
"description": "The index of the currently focused item."
|
|
22115
|
-
},
|
|
22116
|
-
{
|
|
22117
|
-
"name": "focusNewItem",
|
|
22118
|
-
"default": "true",
|
|
22119
|
-
"description": "Call focus() on the new item or not. It should be false during firstUpdate"
|
|
22120
|
-
}
|
|
22121
|
-
],
|
|
22122
|
-
"description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
|
|
22123
|
-
"return": {
|
|
22124
|
-
"type": {
|
|
22125
|
-
"text": ""
|
|
22126
|
-
}
|
|
22127
|
-
},
|
|
22128
|
-
"inheritedFrom": {
|
|
22129
|
-
"name": "ListNavigationMixin",
|
|
22130
|
-
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22131
|
-
}
|
|
22132
|
-
},
|
|
22133
|
-
{
|
|
22134
|
-
"kind": "method",
|
|
22135
|
-
"name": "resolveDirectionKey",
|
|
22136
|
-
"privacy": "private",
|
|
22137
|
-
"parameters": [
|
|
22138
|
-
{
|
|
22139
|
-
"name": "key",
|
|
22140
|
-
"type": {
|
|
22141
|
-
"text": "string"
|
|
22142
|
-
},
|
|
22143
|
-
"description": "The key pressed by the user."
|
|
22144
|
-
},
|
|
22145
|
-
{
|
|
22146
|
-
"name": "isRtl",
|
|
22147
|
-
"type": {
|
|
22148
|
-
"text": "boolean"
|
|
22149
|
-
},
|
|
22150
|
-
"description": "A boolean indicating if the layout is right-to-left (RTL)."
|
|
22151
|
-
}
|
|
22152
|
-
],
|
|
22153
|
-
"description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
|
|
22154
|
-
"return": {
|
|
22155
|
-
"type": {
|
|
22156
|
-
"text": ""
|
|
22157
|
-
}
|
|
22158
|
-
},
|
|
22159
|
-
"inheritedFrom": {
|
|
22160
|
-
"name": "ListNavigationMixin",
|
|
22161
|
-
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22162
|
-
}
|
|
22163
|
-
},
|
|
22164
|
-
{
|
|
22165
|
-
"kind": "method",
|
|
22166
|
-
"name": "shouldLoop",
|
|
22167
|
-
"privacy": "private",
|
|
22168
|
-
"inheritedFrom": {
|
|
22169
|
-
"name": "ListNavigationMixin",
|
|
22170
|
-
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22171
|
-
}
|
|
22172
|
-
}
|
|
22173
|
-
],
|
|
22174
|
-
"attributes": [
|
|
22175
|
-
{
|
|
22176
|
-
"name": "loop",
|
|
22177
|
-
"type": {
|
|
22178
|
-
"text": "'true' | 'false'"
|
|
22179
|
-
},
|
|
22180
|
-
"description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
|
|
22181
|
-
"default": "''",
|
|
22182
|
-
"fieldName": "loop"
|
|
22183
|
-
},
|
|
22184
|
-
{
|
|
22185
|
-
"name": "initial-focus",
|
|
22186
|
-
"type": {
|
|
22187
|
-
"text": "number"
|
|
22188
|
-
},
|
|
22189
|
-
"description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
|
|
22190
|
-
"default": "0",
|
|
22191
|
-
"fieldName": "initialFocus"
|
|
22192
|
-
}
|
|
22193
|
-
],
|
|
22194
|
-
"mixins": [
|
|
22195
|
-
{
|
|
22196
|
-
"name": "ListNavigationMixin",
|
|
22197
|
-
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
22198
|
-
},
|
|
22199
|
-
{
|
|
22200
|
-
"name": "CaptureDestroyEventForChildElement",
|
|
22201
|
-
"module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
|
|
22202
|
-
}
|
|
22203
|
-
],
|
|
22204
|
-
"superclass": {
|
|
22205
|
-
"name": "Component",
|
|
22206
|
-
"module": "/src/models"
|
|
22207
|
-
},
|
|
22208
|
-
"tagName": "mdc-list",
|
|
22209
|
-
"jsDoc": "/**\n * mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n *\n * To add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n * `mdc-listitem` components can be placed in the default slot.\n *\n * @tagname mdc-list\n *\n * @slot default - This is a default/unnamed slot, where listitems can be placed.\n * @slot list-header - This slot is used to pass a header for the list, which can be a `mdc-listheader` component.\n *\n * @csspart container - The container slot around the list items\n */",
|
|
22210
|
-
"customElement": true
|
|
22211
|
-
}
|
|
22212
|
-
],
|
|
22213
|
-
"exports": [
|
|
22214
|
-
{
|
|
22215
|
-
"kind": "js",
|
|
22216
|
-
"name": "default",
|
|
22217
|
-
"declaration": {
|
|
22218
|
-
"name": "List",
|
|
22219
|
-
"module": "components/list/list.component.js"
|
|
22220
|
-
}
|
|
22221
|
-
}
|
|
22222
|
-
]
|
|
22223
|
-
},
|
|
22224
22260
|
{
|
|
22225
22261
|
"kind": "javascript-module",
|
|
22226
22262
|
"path": "components/listbox/listbox.component.js",
|
|
@@ -31230,6 +31266,14 @@
|
|
|
31230
31266
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
31231
31267
|
}
|
|
31232
31268
|
},
|
|
31269
|
+
{
|
|
31270
|
+
"description": "Color for the required indicator text.",
|
|
31271
|
+
"name": "--mdc-required-indicator-color",
|
|
31272
|
+
"inheritedFrom": {
|
|
31273
|
+
"name": "FormfieldWrapper",
|
|
31274
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
31275
|
+
}
|
|
31276
|
+
},
|
|
31233
31277
|
{
|
|
31234
31278
|
"description": "Text color for the input field",
|
|
31235
31279
|
"name": "--mdc-input-text-color",
|
|
@@ -32632,7 +32676,7 @@
|
|
|
32632
32676
|
"module": "/src/components/input/input.component"
|
|
32633
32677
|
},
|
|
32634
32678
|
"tagName": "mdc-password",
|
|
32635
|
-
"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 * @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 * @csspart input-container - The container that wraps the input field, leading icon, prefix text, and trailing button.\n * @csspart input-section - The container that wraps the input field and prefix text.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element.\n * @csspart label - The label element.\n * @csspart helper-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element.\n * @csspart toggletip - The toggletip icon button element.\n * @csspart toggletip-text - The toggletip text element.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n *\n */",
|
|
32679
|
+
"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 * @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 * @csspart input-container - The container that wraps the input field, leading icon, prefix text, and trailing button.\n * @csspart input-section - The container that wraps the input field and prefix text.\n * @csspart input-text - The input field element.\n * @csspart trailing-button - The trailing button element.\n * @csspart label - The label element.\n * @csspart helper-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element.\n * @csspart toggletip - The toggletip icon button element.\n * @csspart toggletip-text - The toggletip text element.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n *\n */",
|
|
32636
32680
|
"customElement": true
|
|
32637
32681
|
}
|
|
32638
32682
|
],
|
|
@@ -34531,6 +34575,14 @@
|
|
|
34531
34575
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
34532
34576
|
}
|
|
34533
34577
|
},
|
|
34578
|
+
{
|
|
34579
|
+
"description": "Color for the required indicator text.",
|
|
34580
|
+
"name": "--mdc-required-indicator-color",
|
|
34581
|
+
"inheritedFrom": {
|
|
34582
|
+
"name": "FormfieldWrapper",
|
|
34583
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
34584
|
+
}
|
|
34585
|
+
},
|
|
34534
34586
|
{
|
|
34535
34587
|
"description": "Background color of the remaining progressbar portion.",
|
|
34536
34588
|
"name": "--mdc-progressbar-background-color"
|
|
@@ -35130,7 +35182,7 @@
|
|
|
35130
35182
|
"module": "/src/components/formfieldwrapper"
|
|
35131
35183
|
},
|
|
35132
35184
|
"tagName": "mdc-progressbar",
|
|
35133
|
-
"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 * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart help-text - The helper/validation text element.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-progressbar-background-color - Background color of the remaining progressbar portion.\n * @cssproperty --mdc-progressbar-progress-background-color - Background color of the elapsed progressbar portion.\n * @cssproperty --mdc-progressbar-height - The height of the progressbar.\n * @cssproperty --mdc-progressbar-border-radius - The border radius of the progressbar.\n */",
|
|
35185
|
+
"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 * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart help-text - The helper/validation text element.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-progressbar-background-color - Background color of the remaining progressbar portion.\n * @cssproperty --mdc-progressbar-progress-background-color - Background color of the elapsed progressbar portion.\n * @cssproperty --mdc-progressbar-height - The height of the progressbar.\n * @cssproperty --mdc-progressbar-border-radius - The border radius of the progressbar.\n */",
|
|
35134
35186
|
"customElement": true
|
|
35135
35187
|
}
|
|
35136
35188
|
],
|
|
@@ -35238,6 +35290,14 @@
|
|
|
35238
35290
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
35239
35291
|
}
|
|
35240
35292
|
},
|
|
35293
|
+
{
|
|
35294
|
+
"description": "Color for the required indicator text.",
|
|
35295
|
+
"name": "--mdc-required-indicator-color",
|
|
35296
|
+
"inheritedFrom": {
|
|
35297
|
+
"name": "FormfieldWrapper",
|
|
35298
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
35299
|
+
}
|
|
35300
|
+
},
|
|
35241
35301
|
{
|
|
35242
35302
|
"description": "Background color of the remaining progressbar portion.",
|
|
35243
35303
|
"name": "--mdc-progressbar-background-color",
|
|
@@ -35951,36 +36011,24 @@
|
|
|
35951
36011
|
"name": "Radio",
|
|
35952
36012
|
"cssProperties": [
|
|
35953
36013
|
{
|
|
35954
|
-
"description": "
|
|
35955
|
-
"name": "--mdc-radio-
|
|
35956
|
-
},
|
|
35957
|
-
{
|
|
35958
|
-
"description": "color of the radio button when inactive and hovered",
|
|
35959
|
-
"name": "--mdc-radio-control-inactive-hover"
|
|
35960
|
-
},
|
|
35961
|
-
{
|
|
35962
|
-
"description": "color of the radio button when inactive and pressed",
|
|
35963
|
-
"name": "--mdc-radio-control-inactive-pressed-color"
|
|
35964
|
-
},
|
|
35965
|
-
{
|
|
35966
|
-
"description": "color of the radio button when active and hovered",
|
|
35967
|
-
"name": "--mdc-radio-control-active-hover-color"
|
|
36014
|
+
"description": "size of the inner circle",
|
|
36015
|
+
"name": "--mdc-radio-inner-circle-size"
|
|
35968
36016
|
},
|
|
35969
36017
|
{
|
|
35970
|
-
"description": "
|
|
35971
|
-
"name": "--mdc-radio-
|
|
36018
|
+
"description": "size of the outer circle",
|
|
36019
|
+
"name": "--mdc-radio-outer-circle-size"
|
|
35972
36020
|
},
|
|
35973
36021
|
{
|
|
35974
|
-
"description": "color of the
|
|
35975
|
-
"name": "--mdc-radio-
|
|
36022
|
+
"description": "background color of the inner circle",
|
|
36023
|
+
"name": "--mdc-radio-inner-circle-background-color"
|
|
35976
36024
|
},
|
|
35977
36025
|
{
|
|
35978
|
-
"description": "color of the
|
|
35979
|
-
"name": "--mdc-radio-
|
|
36026
|
+
"description": "border color of the outer circle",
|
|
36027
|
+
"name": "--mdc-radio-outer-circle-border-color"
|
|
35980
36028
|
},
|
|
35981
36029
|
{
|
|
35982
|
-
"description": "color of the
|
|
35983
|
-
"name": "--mdc-radio-
|
|
36030
|
+
"description": "background color of the outer circle",
|
|
36031
|
+
"name": "--mdc-radio-outer-circle-background-color"
|
|
35984
36032
|
},
|
|
35985
36033
|
{
|
|
35986
36034
|
"description": "Font size for the label text.",
|
|
@@ -36045,6 +36093,14 @@
|
|
|
36045
36093
|
"name": "FormfieldWrapper",
|
|
36046
36094
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
36047
36095
|
}
|
|
36096
|
+
},
|
|
36097
|
+
{
|
|
36098
|
+
"description": "Color for the required indicator text.",
|
|
36099
|
+
"name": "--mdc-required-indicator-color",
|
|
36100
|
+
"inheritedFrom": {
|
|
36101
|
+
"name": "FormfieldWrapper",
|
|
36102
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
36103
|
+
}
|
|
36048
36104
|
}
|
|
36049
36105
|
],
|
|
36050
36106
|
"cssParts": [
|
|
@@ -36849,7 +36905,7 @@
|
|
|
36849
36905
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
36850
36906
|
},
|
|
36851
36907
|
"tagName": "mdc-radio",
|
|
36852
|
-
"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-
|
|
36908
|
+
"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-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-radio-outer-circle-size - size of the outer circle\n * @cssproperty --mdc-radio-inner-circle-background-color - background color of the inner circle\n * @cssproperty --mdc-radio-outer-circle-border-color - border color of the outer circle\n * @cssproperty --mdc-radio-outer-circle-background-color - background color of the outer circle\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 */",
|
|
36853
36909
|
"customElement": true,
|
|
36854
36910
|
"slots": [
|
|
36855
36911
|
{
|
|
@@ -36974,6 +37030,14 @@
|
|
|
36974
37030
|
"name": "FormfieldWrapper",
|
|
36975
37031
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
36976
37032
|
}
|
|
37033
|
+
},
|
|
37034
|
+
{
|
|
37035
|
+
"description": "Color for the required indicator text.",
|
|
37036
|
+
"name": "--mdc-required-indicator-color",
|
|
37037
|
+
"inheritedFrom": {
|
|
37038
|
+
"name": "FormfieldWrapper",
|
|
37039
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
37040
|
+
}
|
|
36977
37041
|
}
|
|
36978
37042
|
],
|
|
36979
37043
|
"members": [
|
|
@@ -37747,12 +37811,12 @@
|
|
|
37747
37811
|
},
|
|
37748
37812
|
{
|
|
37749
37813
|
"kind": "javascript-module",
|
|
37750
|
-
"path": "components/
|
|
37814
|
+
"path": "components/select/select.component.js",
|
|
37751
37815
|
"declarations": [
|
|
37752
37816
|
{
|
|
37753
37817
|
"kind": "class",
|
|
37754
|
-
"description": "
|
|
37755
|
-
"name": "
|
|
37818
|
+
"description": "The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\nIt is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n\nEvery mdc-option should have a `value` attribute set to ensure proper form submission.\n\nTo set a default option, use the `selected` attribute on the `mdc-option` element.\nYou 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\nIf you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-select` element.",
|
|
37819
|
+
"name": "Select",
|
|
37756
37820
|
"cssProperties": [
|
|
37757
37821
|
{
|
|
37758
37822
|
"description": "Font size for the label text.",
|
|
@@ -37819,52 +37883,36 @@
|
|
|
37819
37883
|
}
|
|
37820
37884
|
},
|
|
37821
37885
|
{
|
|
37822
|
-
"description": "
|
|
37823
|
-
"name": "--mdc-
|
|
37886
|
+
"description": "Color for the required indicator text.",
|
|
37887
|
+
"name": "--mdc-required-indicator-color",
|
|
37824
37888
|
"inheritedFrom": {
|
|
37825
|
-
"name": "
|
|
37826
|
-
"module": "src/components/
|
|
37889
|
+
"name": "FormfieldWrapper",
|
|
37890
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
37827
37891
|
}
|
|
37828
37892
|
},
|
|
37829
37893
|
{
|
|
37830
|
-
"description": "
|
|
37831
|
-
"name": "--mdc-
|
|
37832
|
-
"inheritedFrom": {
|
|
37833
|
-
"name": "Input",
|
|
37834
|
-
"module": "src/components/input/input.component.ts"
|
|
37835
|
-
}
|
|
37894
|
+
"description": "The background color of the combobox of select.",
|
|
37895
|
+
"name": "--mdc-select-background-color"
|
|
37836
37896
|
},
|
|
37837
37897
|
{
|
|
37838
|
-
"description": "
|
|
37839
|
-
"name": "--mdc-
|
|
37840
|
-
"inheritedFrom": {
|
|
37841
|
-
"name": "Input",
|
|
37842
|
-
"module": "src/components/input/input.component.ts"
|
|
37843
|
-
}
|
|
37898
|
+
"description": "The text color of the select.",
|
|
37899
|
+
"name": "--mdc-select-text-color"
|
|
37844
37900
|
},
|
|
37845
37901
|
{
|
|
37846
|
-
"description": "
|
|
37847
|
-
"name": "--mdc-
|
|
37848
|
-
"inheritedFrom": {
|
|
37849
|
-
"name": "Input",
|
|
37850
|
-
"module": "src/components/input/input.component.ts"
|
|
37851
|
-
}
|
|
37902
|
+
"description": "The border color of the select.",
|
|
37903
|
+
"name": "--mdc-select-border-color"
|
|
37852
37904
|
},
|
|
37853
37905
|
{
|
|
37854
|
-
"description": "
|
|
37855
|
-
"name": "--mdc-
|
|
37856
|
-
"inheritedFrom": {
|
|
37857
|
-
"name": "Input",
|
|
37858
|
-
"module": "src/components/input/input.component.ts"
|
|
37859
|
-
}
|
|
37906
|
+
"description": "The width of the select.",
|
|
37907
|
+
"name": "--mdc-select-width"
|
|
37860
37908
|
},
|
|
37861
37909
|
{
|
|
37862
|
-
"description": "
|
|
37863
|
-
"name": "--mdc-
|
|
37864
|
-
|
|
37865
|
-
|
|
37866
|
-
|
|
37867
|
-
|
|
37910
|
+
"description": "The height of the listbox inside the select.",
|
|
37911
|
+
"name": "--mdc-select-listbox-height"
|
|
37912
|
+
},
|
|
37913
|
+
{
|
|
37914
|
+
"description": "The width of the listbox inside the select (default: `--mdc-select-width`).",
|
|
37915
|
+
"name": "--mdc-select-listbox-width"
|
|
37868
37916
|
}
|
|
37869
37917
|
],
|
|
37870
37918
|
"cssParts": [
|
|
@@ -37931,60 +37979,12 @@
|
|
|
37931
37979
|
"name": "FormfieldWrapper",
|
|
37932
37980
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
37933
37981
|
}
|
|
37934
|
-
},
|
|
37935
|
-
{
|
|
37936
|
-
"description": "The leading icon element that is displayed before the input field.",
|
|
37937
|
-
"name": "leading-icon",
|
|
37938
|
-
"inheritedFrom": {
|
|
37939
|
-
"name": "Input",
|
|
37940
|
-
"module": "src/components/input/input.component.ts"
|
|
37941
|
-
}
|
|
37942
|
-
},
|
|
37943
|
-
{
|
|
37944
|
-
"description": "The prefix text element that is displayed before the input field.",
|
|
37945
|
-
"name": "prefix-text",
|
|
37946
|
-
"inheritedFrom": {
|
|
37947
|
-
"name": "Input",
|
|
37948
|
-
"module": "src/components/input/input.component.ts"
|
|
37949
|
-
}
|
|
37950
|
-
},
|
|
37951
|
-
{
|
|
37952
|
-
"description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
|
|
37953
|
-
"name": "input-container",
|
|
37954
|
-
"inheritedFrom": {
|
|
37955
|
-
"name": "Input",
|
|
37956
|
-
"module": "src/components/input/input.component.ts"
|
|
37957
|
-
}
|
|
37958
|
-
},
|
|
37959
|
-
{
|
|
37960
|
-
"description": "The container for the input field, leading icon, and prefix text elements.",
|
|
37961
|
-
"name": "input-section",
|
|
37962
|
-
"inheritedFrom": {
|
|
37963
|
-
"name": "Input",
|
|
37964
|
-
"module": "src/components/input/input.component.ts"
|
|
37965
|
-
}
|
|
37966
|
-
},
|
|
37967
|
-
{
|
|
37968
|
-
"description": "The input field element.",
|
|
37969
|
-
"name": "input-text",
|
|
37970
|
-
"inheritedFrom": {
|
|
37971
|
-
"name": "Input",
|
|
37972
|
-
"module": "src/components/input/input.component.ts"
|
|
37973
|
-
}
|
|
37974
|
-
},
|
|
37975
|
-
{
|
|
37976
|
-
"description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
|
|
37977
|
-
"name": "trailing-button",
|
|
37978
|
-
"inheritedFrom": {
|
|
37979
|
-
"name": "Input",
|
|
37980
|
-
"module": "src/components/input/input.component.ts"
|
|
37981
|
-
}
|
|
37982
37982
|
}
|
|
37983
37983
|
],
|
|
37984
37984
|
"slots": [
|
|
37985
37985
|
{
|
|
37986
|
-
"description": "
|
|
37987
|
-
"name": "
|
|
37986
|
+
"description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
|
|
37987
|
+
"name": "default"
|
|
37988
37988
|
},
|
|
37989
37989
|
{
|
|
37990
37990
|
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
|
@@ -38017,81 +38017,337 @@
|
|
|
38017
38017
|
"name": "FormfieldWrapper",
|
|
38018
38018
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38019
38019
|
}
|
|
38020
|
+
}
|
|
38021
|
+
],
|
|
38022
|
+
"members": [
|
|
38023
|
+
{
|
|
38024
|
+
"kind": "field",
|
|
38025
|
+
"name": "placeholder",
|
|
38026
|
+
"type": {
|
|
38027
|
+
"text": "string | undefined"
|
|
38028
|
+
},
|
|
38029
|
+
"description": "The placeholder text which will be shown on the text if provided.",
|
|
38030
|
+
"attribute": "placeholder"
|
|
38020
38031
|
},
|
|
38021
38032
|
{
|
|
38022
|
-
"
|
|
38023
|
-
"name": "
|
|
38024
|
-
"
|
|
38025
|
-
"
|
|
38026
|
-
|
|
38027
|
-
|
|
38033
|
+
"kind": "field",
|
|
38034
|
+
"name": "placement",
|
|
38035
|
+
"type": {
|
|
38036
|
+
"text": "Placement"
|
|
38037
|
+
},
|
|
38038
|
+
"description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
|
|
38039
|
+
"default": "'bottom-start'",
|
|
38040
|
+
"attribute": "placement",
|
|
38041
|
+
"reflects": true
|
|
38028
38042
|
},
|
|
38029
38043
|
{
|
|
38030
|
-
"
|
|
38031
|
-
"name": "
|
|
38032
|
-
"
|
|
38033
|
-
"
|
|
38034
|
-
|
|
38035
|
-
|
|
38044
|
+
"kind": "field",
|
|
38045
|
+
"name": "boundary",
|
|
38046
|
+
"type": {
|
|
38047
|
+
"text": "'clippingAncestors' | string"
|
|
38048
|
+
},
|
|
38049
|
+
"description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
|
|
38050
|
+
"default": "'clippingAncestors'",
|
|
38051
|
+
"attribute": "boundary",
|
|
38052
|
+
"reflects": true
|
|
38036
38053
|
},
|
|
38037
38054
|
{
|
|
38038
|
-
"
|
|
38039
|
-
"name": "
|
|
38040
|
-
"
|
|
38041
|
-
"
|
|
38042
|
-
|
|
38043
|
-
|
|
38055
|
+
"kind": "field",
|
|
38056
|
+
"name": "strategy",
|
|
38057
|
+
"type": {
|
|
38058
|
+
"text": "PopoverStrategy"
|
|
38059
|
+
},
|
|
38060
|
+
"description": "The strategy of the popover within Select.\nThis determines how the popover is positioned in the DOM.\n\nIn case `boundary` is set to something other than 'clippingAncestors',\nit might be necessary to set the `strategy` to 'fixed' to ensure that the popover\nis not getting clipped by scrollable containers enclosing the select.",
|
|
38061
|
+
"default": "absolute",
|
|
38062
|
+
"attribute": "strategy",
|
|
38063
|
+
"reflects": true
|
|
38044
38064
|
},
|
|
38045
38065
|
{
|
|
38046
|
-
"
|
|
38047
|
-
"name": "
|
|
38048
|
-
"
|
|
38049
|
-
"
|
|
38050
|
-
|
|
38051
|
-
|
|
38052
|
-
|
|
38053
|
-
|
|
38054
|
-
|
|
38066
|
+
"kind": "field",
|
|
38067
|
+
"name": "popoverZIndex",
|
|
38068
|
+
"type": {
|
|
38069
|
+
"text": "number"
|
|
38070
|
+
},
|
|
38071
|
+
"description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
|
|
38072
|
+
"default": "1000",
|
|
38073
|
+
"attribute": "popover-z-index",
|
|
38074
|
+
"reflects": true
|
|
38075
|
+
},
|
|
38055
38076
|
{
|
|
38056
38077
|
"kind": "field",
|
|
38057
|
-
"name": "
|
|
38078
|
+
"name": "backdropAppendTo",
|
|
38058
38079
|
"type": {
|
|
38059
|
-
"text": "
|
|
38060
|
-
}
|
|
38080
|
+
"text": "string | undefined"
|
|
38081
|
+
},
|
|
38082
|
+
"description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
|
|
38083
|
+
"attribute": "backdrop-append-to",
|
|
38084
|
+
"reflects": true
|
|
38061
38085
|
},
|
|
38062
38086
|
{
|
|
38063
38087
|
"kind": "method",
|
|
38064
|
-
"name": "
|
|
38065
|
-
"privacy": "
|
|
38088
|
+
"name": "handleOptionsClick",
|
|
38089
|
+
"privacy": "private",
|
|
38090
|
+
"return": {
|
|
38091
|
+
"type": {
|
|
38092
|
+
"text": "void"
|
|
38093
|
+
}
|
|
38094
|
+
},
|
|
38095
|
+
"parameters": [
|
|
38096
|
+
{
|
|
38097
|
+
"name": "event",
|
|
38098
|
+
"type": {
|
|
38099
|
+
"text": "MouseEvent"
|
|
38100
|
+
},
|
|
38101
|
+
"description": "The event which triggered this function."
|
|
38102
|
+
}
|
|
38103
|
+
],
|
|
38104
|
+
"description": "A private method which is called when an option is clicked.\nIt sets the selected option, removes selected from other options, updates the tabindex for all options,\ncloses the popover, and fires the change and input events."
|
|
38105
|
+
},
|
|
38106
|
+
{
|
|
38107
|
+
"kind": "method",
|
|
38108
|
+
"name": "setSelectedOption",
|
|
38109
|
+
"privacy": "private",
|
|
38110
|
+
"return": {
|
|
38111
|
+
"type": {
|
|
38112
|
+
"text": "void"
|
|
38113
|
+
}
|
|
38114
|
+
},
|
|
38115
|
+
"parameters": [
|
|
38116
|
+
{
|
|
38117
|
+
"name": "option",
|
|
38118
|
+
"type": {
|
|
38119
|
+
"text": "Option | null"
|
|
38120
|
+
},
|
|
38121
|
+
"description": "The option element in DOM which gets selected."
|
|
38122
|
+
}
|
|
38123
|
+
],
|
|
38124
|
+
"description": "Sets the selected option in the component state and updates the input element's value.\nThis method ensures that only the selected option is marked as selected in the DOM,\nand updates the tabindex for all options accordingly.\nIt also updates the validity of the input element based on the selected option.\nThis method is called when an option is selected."
|
|
38125
|
+
},
|
|
38126
|
+
{
|
|
38127
|
+
"kind": "method",
|
|
38128
|
+
"name": "updateSelectedInChildOptions",
|
|
38129
|
+
"privacy": "private",
|
|
38130
|
+
"return": {
|
|
38131
|
+
"type": {
|
|
38132
|
+
"text": "void"
|
|
38133
|
+
}
|
|
38134
|
+
},
|
|
38135
|
+
"parameters": [
|
|
38136
|
+
{
|
|
38137
|
+
"name": "selectedOption",
|
|
38138
|
+
"type": {
|
|
38139
|
+
"text": "Option | null"
|
|
38140
|
+
},
|
|
38141
|
+
"description": "The option which gets selected"
|
|
38142
|
+
}
|
|
38143
|
+
],
|
|
38144
|
+
"description": "Sets selected attribute on the selected option and removes it from all options"
|
|
38145
|
+
},
|
|
38146
|
+
{
|
|
38147
|
+
"kind": "method",
|
|
38148
|
+
"name": "fireEvents",
|
|
38149
|
+
"privacy": "private",
|
|
38150
|
+
"return": {
|
|
38151
|
+
"type": {
|
|
38152
|
+
"text": "void"
|
|
38153
|
+
}
|
|
38154
|
+
},
|
|
38155
|
+
"description": "A private method which is called to fire the change and input events.\nIt dispatches the input and change events with the selected option's value and label."
|
|
38156
|
+
},
|
|
38157
|
+
{
|
|
38158
|
+
"kind": "method",
|
|
38159
|
+
"name": "dispatchChange",
|
|
38160
|
+
"privacy": "private",
|
|
38161
|
+
"return": {
|
|
38162
|
+
"type": {
|
|
38163
|
+
"text": "void"
|
|
38164
|
+
}
|
|
38165
|
+
},
|
|
38166
|
+
"parameters": [
|
|
38167
|
+
{
|
|
38168
|
+
"name": "option",
|
|
38169
|
+
"type": {
|
|
38170
|
+
"text": "Option"
|
|
38171
|
+
}
|
|
38172
|
+
}
|
|
38173
|
+
]
|
|
38174
|
+
},
|
|
38175
|
+
{
|
|
38176
|
+
"kind": "method",
|
|
38177
|
+
"name": "dispatchInput",
|
|
38178
|
+
"privacy": "private",
|
|
38179
|
+
"return": {
|
|
38180
|
+
"type": {
|
|
38181
|
+
"text": "void"
|
|
38182
|
+
}
|
|
38183
|
+
},
|
|
38184
|
+
"parameters": [
|
|
38185
|
+
{
|
|
38186
|
+
"name": "option",
|
|
38187
|
+
"type": {
|
|
38188
|
+
"text": "Option"
|
|
38189
|
+
}
|
|
38190
|
+
}
|
|
38191
|
+
]
|
|
38192
|
+
},
|
|
38193
|
+
{
|
|
38194
|
+
"kind": "method",
|
|
38195
|
+
"name": "handleClickCombobox",
|
|
38196
|
+
"privacy": "private",
|
|
38197
|
+
"return": {
|
|
38198
|
+
"type": {
|
|
38199
|
+
"text": "void"
|
|
38200
|
+
}
|
|
38201
|
+
},
|
|
38202
|
+
"parameters": [
|
|
38203
|
+
{
|
|
38204
|
+
"name": "event",
|
|
38205
|
+
"type": {
|
|
38206
|
+
"text": "MouseEvent"
|
|
38207
|
+
},
|
|
38208
|
+
"description": "The mouse event which triggered this function."
|
|
38209
|
+
}
|
|
38210
|
+
],
|
|
38211
|
+
"description": "Handles the click event on the visual combobox.\nIf the select is disabled, soft-disabled or readonly, it does nothing.\nIf the popover is already open, it closes it.\nIf it is closed, it opens it."
|
|
38212
|
+
},
|
|
38213
|
+
{
|
|
38214
|
+
"kind": "method",
|
|
38215
|
+
"name": "handleKeydownCombobox",
|
|
38216
|
+
"privacy": "private",
|
|
38217
|
+
"return": {
|
|
38218
|
+
"type": {
|
|
38219
|
+
"text": "void"
|
|
38220
|
+
}
|
|
38221
|
+
},
|
|
38066
38222
|
"parameters": [
|
|
38067
38223
|
{
|
|
38068
38224
|
"name": "event",
|
|
38069
38225
|
"type": {
|
|
38070
38226
|
"text": "KeyboardEvent"
|
|
38071
38227
|
},
|
|
38072
|
-
"description": "
|
|
38228
|
+
"description": "The keyboard event."
|
|
38073
38229
|
}
|
|
38074
38230
|
],
|
|
38075
|
-
"description": "Handles the keydown event
|
|
38231
|
+
"description": "Handles the keydown event on the select element when the popover is closed.\nThe options are as follows:\n- ARROW_DOWN, ARROW_UP, SPACE: Opens the popover and prevents the default scrolling behavior.\n- ENTER: Opens the popover, prevents default scrolling, and submits the form if the popover is closed.\n- HOME: Opens the popover and sets focus and tabindex on the first option.\n- END: Opens the popover and sets focus and tabindex on the last option."
|
|
38232
|
+
},
|
|
38233
|
+
{
|
|
38234
|
+
"kind": "method",
|
|
38235
|
+
"name": "getCurrentIndex",
|
|
38236
|
+
"privacy": "private",
|
|
38237
|
+
"return": {
|
|
38238
|
+
"type": {
|
|
38239
|
+
"text": ""
|
|
38240
|
+
}
|
|
38241
|
+
},
|
|
38242
|
+
"parameters": [
|
|
38243
|
+
{
|
|
38244
|
+
"name": "target",
|
|
38245
|
+
"type": {
|
|
38246
|
+
"text": "HTMLElement | null"
|
|
38247
|
+
},
|
|
38248
|
+
"description": "The target element that triggered the event."
|
|
38249
|
+
}
|
|
38250
|
+
],
|
|
38251
|
+
"description": "Retrieves the current index of the item that triggered the event.",
|
|
38076
38252
|
"inheritedFrom": {
|
|
38077
|
-
"name": "
|
|
38078
|
-
"module": "
|
|
38253
|
+
"name": "ListNavigationMixin",
|
|
38254
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
38079
38255
|
}
|
|
38080
38256
|
},
|
|
38081
38257
|
{
|
|
38082
38258
|
"kind": "method",
|
|
38083
|
-
"name": "
|
|
38084
|
-
"privacy": "
|
|
38085
|
-
"
|
|
38259
|
+
"name": "resetTabIndexes",
|
|
38260
|
+
"privacy": "protected",
|
|
38261
|
+
"parameters": [
|
|
38262
|
+
{
|
|
38263
|
+
"name": "index",
|
|
38264
|
+
"type": {
|
|
38265
|
+
"text": "number"
|
|
38266
|
+
},
|
|
38267
|
+
"description": "The index of the currently focused item."
|
|
38268
|
+
}
|
|
38269
|
+
],
|
|
38270
|
+
"description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
|
|
38271
|
+
"inheritedFrom": {
|
|
38272
|
+
"name": "ListNavigationMixin",
|
|
38273
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
38274
|
+
}
|
|
38086
38275
|
},
|
|
38087
38276
|
{
|
|
38088
38277
|
"kind": "method",
|
|
38089
|
-
"name": "
|
|
38278
|
+
"name": "resetTabIndexAndSetFocus",
|
|
38090
38279
|
"privacy": "protected",
|
|
38091
|
-
"
|
|
38280
|
+
"parameters": [
|
|
38281
|
+
{
|
|
38282
|
+
"name": "newIndex",
|
|
38283
|
+
"type": {
|
|
38284
|
+
"text": "number"
|
|
38285
|
+
},
|
|
38286
|
+
"description": "The index of the new item to focus."
|
|
38287
|
+
},
|
|
38288
|
+
{
|
|
38289
|
+
"name": "oldIndex",
|
|
38290
|
+
"optional": true,
|
|
38291
|
+
"type": {
|
|
38292
|
+
"text": "number"
|
|
38293
|
+
},
|
|
38294
|
+
"description": "The index of the currently focused item."
|
|
38295
|
+
},
|
|
38296
|
+
{
|
|
38297
|
+
"name": "focusNewItem",
|
|
38298
|
+
"default": "true",
|
|
38299
|
+
"description": "Call focus() on the new item or not. It should be false during firstUpdate"
|
|
38300
|
+
}
|
|
38301
|
+
],
|
|
38302
|
+
"description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
|
|
38303
|
+
"return": {
|
|
38304
|
+
"type": {
|
|
38305
|
+
"text": ""
|
|
38306
|
+
}
|
|
38307
|
+
},
|
|
38092
38308
|
"inheritedFrom": {
|
|
38093
|
-
"name": "
|
|
38094
|
-
"module": "
|
|
38309
|
+
"name": "ListNavigationMixin",
|
|
38310
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
38311
|
+
}
|
|
38312
|
+
},
|
|
38313
|
+
{
|
|
38314
|
+
"kind": "method",
|
|
38315
|
+
"name": "resolveDirectionKey",
|
|
38316
|
+
"privacy": "private",
|
|
38317
|
+
"parameters": [
|
|
38318
|
+
{
|
|
38319
|
+
"name": "key",
|
|
38320
|
+
"type": {
|
|
38321
|
+
"text": "string"
|
|
38322
|
+
},
|
|
38323
|
+
"description": "The key pressed by the user."
|
|
38324
|
+
},
|
|
38325
|
+
{
|
|
38326
|
+
"name": "isRtl",
|
|
38327
|
+
"type": {
|
|
38328
|
+
"text": "boolean"
|
|
38329
|
+
},
|
|
38330
|
+
"description": "A boolean indicating if the layout is right-to-left (RTL)."
|
|
38331
|
+
}
|
|
38332
|
+
],
|
|
38333
|
+
"description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
|
|
38334
|
+
"return": {
|
|
38335
|
+
"type": {
|
|
38336
|
+
"text": ""
|
|
38337
|
+
}
|
|
38338
|
+
},
|
|
38339
|
+
"inheritedFrom": {
|
|
38340
|
+
"name": "ListNavigationMixin",
|
|
38341
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
38342
|
+
}
|
|
38343
|
+
},
|
|
38344
|
+
{
|
|
38345
|
+
"kind": "method",
|
|
38346
|
+
"name": "shouldLoop",
|
|
38347
|
+
"privacy": "private",
|
|
38348
|
+
"inheritedFrom": {
|
|
38349
|
+
"name": "ListNavigationMixin",
|
|
38350
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
38095
38351
|
}
|
|
38096
38352
|
},
|
|
38097
38353
|
{
|
|
@@ -38226,367 +38482,67 @@
|
|
|
38226
38482
|
},
|
|
38227
38483
|
{
|
|
38228
38484
|
"kind": "field",
|
|
38229
|
-
"name": "
|
|
38485
|
+
"name": "disabled",
|
|
38230
38486
|
"type": {
|
|
38231
|
-
"text": "
|
|
38487
|
+
"text": "boolean | undefined"
|
|
38232
38488
|
},
|
|
38233
|
-
"
|
|
38234
|
-
"
|
|
38235
|
-
"attribute": "
|
|
38489
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
|
38490
|
+
"default": "undefined",
|
|
38491
|
+
"attribute": "disabled",
|
|
38492
|
+
"reflects": true,
|
|
38236
38493
|
"inheritedFrom": {
|
|
38237
|
-
"name": "
|
|
38238
|
-
"module": "components/
|
|
38494
|
+
"name": "FormfieldWrapper",
|
|
38495
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38239
38496
|
}
|
|
38240
38497
|
},
|
|
38241
38498
|
{
|
|
38242
38499
|
"kind": "field",
|
|
38243
|
-
"name": "
|
|
38500
|
+
"name": "label",
|
|
38244
38501
|
"type": {
|
|
38245
38502
|
"text": "string | undefined"
|
|
38246
38503
|
},
|
|
38247
|
-
"description": "The
|
|
38248
|
-
"attribute": "
|
|
38504
|
+
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
|
38505
|
+
"attribute": "label",
|
|
38506
|
+
"reflects": true,
|
|
38249
38507
|
"inheritedFrom": {
|
|
38250
|
-
"name": "
|
|
38251
|
-
"module": "components/
|
|
38508
|
+
"name": "FormfieldWrapper",
|
|
38509
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38252
38510
|
}
|
|
38253
38511
|
},
|
|
38254
38512
|
{
|
|
38255
38513
|
"kind": "field",
|
|
38256
|
-
"name": "
|
|
38514
|
+
"name": "required",
|
|
38257
38515
|
"type": {
|
|
38258
|
-
"text": "
|
|
38516
|
+
"text": "boolean"
|
|
38259
38517
|
},
|
|
38260
|
-
"
|
|
38261
|
-
"
|
|
38518
|
+
"default": "false",
|
|
38519
|
+
"description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
|
|
38520
|
+
"attribute": "required",
|
|
38521
|
+
"reflects": true,
|
|
38262
38522
|
"inheritedFrom": {
|
|
38263
|
-
"name": "
|
|
38264
|
-
"module": "components/
|
|
38523
|
+
"name": "FormfieldWrapper",
|
|
38524
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38265
38525
|
}
|
|
38266
38526
|
},
|
|
38267
38527
|
{
|
|
38268
38528
|
"kind": "field",
|
|
38269
|
-
"name": "
|
|
38529
|
+
"name": "helpTextType",
|
|
38270
38530
|
"type": {
|
|
38271
|
-
"text": "
|
|
38531
|
+
"text": "ValidationType"
|
|
38272
38532
|
},
|
|
38273
|
-
"
|
|
38274
|
-
"
|
|
38275
|
-
"
|
|
38533
|
+
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
|
38534
|
+
"attribute": "help-text-type",
|
|
38535
|
+
"reflects": true,
|
|
38276
38536
|
"inheritedFrom": {
|
|
38277
|
-
"name": "
|
|
38278
|
-
"module": "components/
|
|
38537
|
+
"name": "FormfieldWrapper",
|
|
38538
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38279
38539
|
}
|
|
38280
38540
|
},
|
|
38281
38541
|
{
|
|
38282
38542
|
"kind": "field",
|
|
38283
|
-
"name": "
|
|
38543
|
+
"name": "helpText",
|
|
38284
38544
|
"type": {
|
|
38285
|
-
"text": "
|
|
38286
|
-
},
|
|
38287
|
-
"description": "The maximum number of characters that the input field can accept.",
|
|
38288
|
-
"attribute": "maxlength",
|
|
38289
|
-
"inheritedFrom": {
|
|
38290
|
-
"name": "Input",
|
|
38291
|
-
"module": "components/input/input.component.js"
|
|
38292
|
-
}
|
|
38293
|
-
},
|
|
38294
|
-
{
|
|
38295
|
-
"kind": "field",
|
|
38296
|
-
"name": "minlength",
|
|
38297
|
-
"type": {
|
|
38298
|
-
"text": "number | undefined"
|
|
38299
|
-
},
|
|
38300
|
-
"description": "The minimum number of characters that the input field can accept.",
|
|
38301
|
-
"attribute": "minlength",
|
|
38302
|
-
"inheritedFrom": {
|
|
38303
|
-
"name": "Input",
|
|
38304
|
-
"module": "components/input/input.component.js"
|
|
38305
|
-
}
|
|
38306
|
-
},
|
|
38307
|
-
{
|
|
38308
|
-
"kind": "field",
|
|
38309
|
-
"name": "autocapitalize",
|
|
38310
|
-
"type": {
|
|
38311
|
-
"text": "AutoCapitalizeType"
|
|
38312
|
-
},
|
|
38313
|
-
"description": "The autocapitalize attribute of the input field.",
|
|
38314
|
-
"default": "'off'",
|
|
38315
|
-
"attribute": "autocapitalize",
|
|
38316
|
-
"inheritedFrom": {
|
|
38317
|
-
"name": "Input",
|
|
38318
|
-
"module": "components/input/input.component.js"
|
|
38319
|
-
}
|
|
38320
|
-
},
|
|
38321
|
-
{
|
|
38322
|
-
"kind": "field",
|
|
38323
|
-
"name": "autocomplete",
|
|
38324
|
-
"type": {
|
|
38325
|
-
"text": "AutoCompleteType"
|
|
38326
|
-
},
|
|
38327
|
-
"description": "The autocomplete attribute of the input field.",
|
|
38328
|
-
"default": "'off'",
|
|
38329
|
-
"attribute": "autocomplete",
|
|
38330
|
-
"inheritedFrom": {
|
|
38331
|
-
"name": "Input",
|
|
38332
|
-
"module": "components/input/input.component.js"
|
|
38333
|
-
}
|
|
38334
|
-
},
|
|
38335
|
-
{
|
|
38336
|
-
"kind": "field",
|
|
38337
|
-
"name": "dirname",
|
|
38338
|
-
"type": {
|
|
38339
|
-
"text": "string | undefined"
|
|
38340
|
-
},
|
|
38341
|
-
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
38342
|
-
"attribute": "dirname",
|
|
38343
|
-
"inheritedFrom": {
|
|
38344
|
-
"name": "Input",
|
|
38345
|
-
"module": "components/input/input.component.js"
|
|
38346
|
-
}
|
|
38347
|
-
},
|
|
38348
|
-
{
|
|
38349
|
-
"kind": "field",
|
|
38350
|
-
"name": "pattern",
|
|
38351
|
-
"type": {
|
|
38352
|
-
"text": "string | undefined"
|
|
38353
|
-
},
|
|
38354
|
-
"description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
|
|
38355
|
-
"attribute": "pattern",
|
|
38356
|
-
"inheritedFrom": {
|
|
38357
|
-
"name": "Input",
|
|
38358
|
-
"module": "components/input/input.component.js"
|
|
38359
|
-
}
|
|
38360
|
-
},
|
|
38361
|
-
{
|
|
38362
|
-
"kind": "field",
|
|
38363
|
-
"name": "list",
|
|
38364
|
-
"type": {
|
|
38365
|
-
"text": "string | undefined"
|
|
38366
|
-
},
|
|
38367
|
-
"description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
|
|
38368
|
-
"attribute": "list",
|
|
38369
|
-
"inheritedFrom": {
|
|
38370
|
-
"name": "Input",
|
|
38371
|
-
"module": "components/input/input.component.js"
|
|
38372
|
-
}
|
|
38373
|
-
},
|
|
38374
|
-
{
|
|
38375
|
-
"kind": "field",
|
|
38376
|
-
"name": "size",
|
|
38377
|
-
"type": {
|
|
38378
|
-
"text": "number | undefined | undefined"
|
|
38379
|
-
},
|
|
38380
|
-
"description": "The size attribute of the input field.\nSpecifies the width of the input field.",
|
|
38381
|
-
"default": "undefined",
|
|
38382
|
-
"attribute": "size",
|
|
38383
|
-
"inheritedFrom": {
|
|
38384
|
-
"name": "Input",
|
|
38385
|
-
"module": "components/input/input.component.js"
|
|
38386
|
-
}
|
|
38387
|
-
},
|
|
38388
|
-
{
|
|
38389
|
-
"kind": "field",
|
|
38390
|
-
"name": "clearAriaLabel",
|
|
38391
|
-
"type": {
|
|
38392
|
-
"text": "string"
|
|
38393
|
-
},
|
|
38394
|
-
"default": "''",
|
|
38395
|
-
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
38396
|
-
"attribute": "clear-aria-label",
|
|
38397
|
-
"inheritedFrom": {
|
|
38398
|
-
"name": "Input",
|
|
38399
|
-
"module": "components/input/input.component.js"
|
|
38400
|
-
}
|
|
38401
|
-
},
|
|
38402
|
-
{
|
|
38403
|
-
"kind": "method",
|
|
38404
|
-
"name": "setInputValidity",
|
|
38405
|
-
"privacy": "private",
|
|
38406
|
-
"inheritedFrom": {
|
|
38407
|
-
"name": "Input",
|
|
38408
|
-
"module": "components/input/input.component.js"
|
|
38409
|
-
}
|
|
38410
|
-
},
|
|
38411
|
-
{
|
|
38412
|
-
"kind": "method",
|
|
38413
|
-
"name": "updateValue",
|
|
38414
|
-
"privacy": "private",
|
|
38415
|
-
"description": "Updates the value of the input field.\nSets the form value.",
|
|
38416
|
-
"return": {
|
|
38417
|
-
"type": {
|
|
38418
|
-
"text": ""
|
|
38419
|
-
}
|
|
38420
|
-
},
|
|
38421
|
-
"inheritedFrom": {
|
|
38422
|
-
"name": "Input",
|
|
38423
|
-
"module": "components/input/input.component.js"
|
|
38424
|
-
}
|
|
38425
|
-
},
|
|
38426
|
-
{
|
|
38427
|
-
"kind": "method",
|
|
38428
|
-
"name": "onInput",
|
|
38429
|
-
"privacy": "private",
|
|
38430
|
-
"description": "Handles the input event of the input field.\nUpdates the value and sets the validity of the input field.",
|
|
38431
|
-
"inheritedFrom": {
|
|
38432
|
-
"name": "Input",
|
|
38433
|
-
"module": "components/input/input.component.js"
|
|
38434
|
-
}
|
|
38435
|
-
},
|
|
38436
|
-
{
|
|
38437
|
-
"kind": "method",
|
|
38438
|
-
"name": "onChange",
|
|
38439
|
-
"privacy": "private",
|
|
38440
|
-
"parameters": [
|
|
38441
|
-
{
|
|
38442
|
-
"name": "event",
|
|
38443
|
-
"type": {
|
|
38444
|
-
"text": "Event"
|
|
38445
|
-
},
|
|
38446
|
-
"description": "Event which contains information about the value change."
|
|
38447
|
-
}
|
|
38448
|
-
],
|
|
38449
|
-
"description": "Handles the change event of the input field.\nUpdates the value and sets the validity of the input field.\n\nThe 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed",
|
|
38450
|
-
"inheritedFrom": {
|
|
38451
|
-
"name": "Input",
|
|
38452
|
-
"module": "components/input/input.component.js"
|
|
38453
|
-
}
|
|
38454
|
-
},
|
|
38455
|
-
{
|
|
38456
|
-
"kind": "method",
|
|
38457
|
-
"name": "renderLeadingIcon",
|
|
38458
|
-
"privacy": "protected",
|
|
38459
|
-
"description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
|
|
38460
|
-
"return": {
|
|
38461
|
-
"type": {
|
|
38462
|
-
"text": ""
|
|
38463
|
-
}
|
|
38464
|
-
},
|
|
38465
|
-
"inheritedFrom": {
|
|
38466
|
-
"name": "Input",
|
|
38467
|
-
"module": "components/input/input.component.js"
|
|
38468
|
-
}
|
|
38469
|
-
},
|
|
38470
|
-
{
|
|
38471
|
-
"kind": "method",
|
|
38472
|
-
"name": "renderPrefixText",
|
|
38473
|
-
"privacy": "protected",
|
|
38474
|
-
"description": "Renders the prefix text before the input field.\nIf the prefix text is more than 10 characters,\n- it will not be displayed.\n- the validation messsage will be displayed.\n\n Note: We are setting aria-hidden so that the screen reader does not read the prefix text.\n The consumers should set the appropriate aria-label for the input field using 'data-aria-label' attribute.",
|
|
38475
|
-
"return": {
|
|
38476
|
-
"type": {
|
|
38477
|
-
"text": ""
|
|
38478
|
-
}
|
|
38479
|
-
},
|
|
38480
|
-
"inheritedFrom": {
|
|
38481
|
-
"name": "Input",
|
|
38482
|
-
"module": "components/input/input.component.js"
|
|
38483
|
-
}
|
|
38484
|
-
},
|
|
38485
|
-
{
|
|
38486
|
-
"kind": "method",
|
|
38487
|
-
"name": "renderTrailingButton",
|
|
38488
|
-
"privacy": "protected",
|
|
38489
|
-
"parameters": [
|
|
38490
|
-
{
|
|
38491
|
-
"name": "show",
|
|
38492
|
-
"default": "false"
|
|
38493
|
-
}
|
|
38494
|
-
],
|
|
38495
|
-
"description": "Renders the trailing button to clear the input field if the trailingButton is set to true.",
|
|
38496
|
-
"return": {
|
|
38497
|
-
"type": {
|
|
38498
|
-
"text": ""
|
|
38499
|
-
}
|
|
38500
|
-
},
|
|
38501
|
-
"inheritedFrom": {
|
|
38502
|
-
"name": "Input",
|
|
38503
|
-
"module": "components/input/input.component.js"
|
|
38504
|
-
}
|
|
38505
|
-
},
|
|
38506
|
-
{
|
|
38507
|
-
"kind": "method",
|
|
38508
|
-
"name": "renderInputElement",
|
|
38509
|
-
"privacy": "protected",
|
|
38510
|
-
"parameters": [
|
|
38511
|
-
{
|
|
38512
|
-
"name": "type",
|
|
38513
|
-
"type": {
|
|
38514
|
-
"text": "InputType"
|
|
38515
|
-
}
|
|
38516
|
-
},
|
|
38517
|
-
{
|
|
38518
|
-
"name": "hidePlaceholder",
|
|
38519
|
-
"default": "false"
|
|
38520
|
-
}
|
|
38521
|
-
],
|
|
38522
|
-
"inheritedFrom": {
|
|
38523
|
-
"name": "Input",
|
|
38524
|
-
"module": "components/input/input.component.js"
|
|
38525
|
-
}
|
|
38526
|
-
},
|
|
38527
|
-
{
|
|
38528
|
-
"kind": "field",
|
|
38529
|
-
"name": "disabled",
|
|
38530
|
-
"type": {
|
|
38531
|
-
"text": "boolean | undefined"
|
|
38532
|
-
},
|
|
38533
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
|
38534
|
-
"default": "undefined",
|
|
38535
|
-
"attribute": "disabled",
|
|
38536
|
-
"reflects": true,
|
|
38537
|
-
"inheritedFrom": {
|
|
38538
|
-
"name": "FormfieldWrapper",
|
|
38539
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38540
|
-
}
|
|
38541
|
-
},
|
|
38542
|
-
{
|
|
38543
|
-
"kind": "field",
|
|
38544
|
-
"name": "label",
|
|
38545
|
-
"type": {
|
|
38546
|
-
"text": "string | undefined"
|
|
38547
|
-
},
|
|
38548
|
-
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
|
38549
|
-
"attribute": "label",
|
|
38550
|
-
"reflects": true,
|
|
38551
|
-
"inheritedFrom": {
|
|
38552
|
-
"name": "FormfieldWrapper",
|
|
38553
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38554
|
-
}
|
|
38555
|
-
},
|
|
38556
|
-
{
|
|
38557
|
-
"kind": "field",
|
|
38558
|
-
"name": "required",
|
|
38559
|
-
"type": {
|
|
38560
|
-
"text": "boolean"
|
|
38561
|
-
},
|
|
38562
|
-
"default": "false",
|
|
38563
|
-
"description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
|
|
38564
|
-
"attribute": "required",
|
|
38565
|
-
"reflects": true,
|
|
38566
|
-
"inheritedFrom": {
|
|
38567
|
-
"name": "FormfieldWrapper",
|
|
38568
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38569
|
-
}
|
|
38570
|
-
},
|
|
38571
|
-
{
|
|
38572
|
-
"kind": "field",
|
|
38573
|
-
"name": "helpTextType",
|
|
38574
|
-
"type": {
|
|
38575
|
-
"text": "ValidationType"
|
|
38576
|
-
},
|
|
38577
|
-
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
|
38578
|
-
"attribute": "help-text-type",
|
|
38579
|
-
"reflects": true,
|
|
38580
|
-
"inheritedFrom": {
|
|
38581
|
-
"name": "FormfieldWrapper",
|
|
38582
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
|
38583
|
-
}
|
|
38584
|
-
},
|
|
38585
|
-
{
|
|
38586
|
-
"kind": "field",
|
|
38587
|
-
"name": "helpText",
|
|
38588
|
-
"type": {
|
|
38589
|
-
"text": "string | undefined"
|
|
38545
|
+
"text": "string | undefined"
|
|
38590
38546
|
},
|
|
38591
38547
|
"description": "The help text that is displayed below the input field.",
|
|
38592
38548
|
"attribute": "help-text",
|
|
@@ -38760,71 +38716,90 @@
|
|
|
38760
38716
|
],
|
|
38761
38717
|
"events": [
|
|
38762
38718
|
{
|
|
38763
|
-
"
|
|
38719
|
+
"name": "change",
|
|
38720
|
+
"type": {
|
|
38721
|
+
"text": "CustomEvent"
|
|
38722
|
+
},
|
|
38723
|
+
"description": "(React: onChange) This event is dispatched when the select is changed.",
|
|
38724
|
+
"reactName": "onChange"
|
|
38725
|
+
},
|
|
38726
|
+
{
|
|
38764
38727
|
"name": "input",
|
|
38765
|
-
"
|
|
38766
|
-
|
|
38767
|
-
|
|
38768
|
-
|
|
38769
|
-
|
|
38728
|
+
"type": {
|
|
38729
|
+
"text": "CustomEvent"
|
|
38730
|
+
},
|
|
38731
|
+
"description": "(React: onInput) This event is dispatched when the select is changed.",
|
|
38732
|
+
"reactName": "onInput"
|
|
38770
38733
|
},
|
|
38771
38734
|
{
|
|
38772
|
-
"description": "(React:
|
|
38773
|
-
"name": "
|
|
38774
|
-
"reactName": "
|
|
38775
|
-
"inheritedFrom": {
|
|
38776
|
-
"name": "Input",
|
|
38777
|
-
"module": "src/components/input/input.component.ts"
|
|
38778
|
-
}
|
|
38735
|
+
"description": "(React: onClick) This event is dispatched when the select is clicked.",
|
|
38736
|
+
"name": "click",
|
|
38737
|
+
"reactName": "onClick"
|
|
38779
38738
|
},
|
|
38780
38739
|
{
|
|
38781
|
-
"description": "(React:
|
|
38740
|
+
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the select.",
|
|
38741
|
+
"name": "keydown",
|
|
38742
|
+
"reactName": "onKeyDown"
|
|
38743
|
+
},
|
|
38744
|
+
{
|
|
38745
|
+
"description": "(React: onFocus) This event is dispatched when the select receives focus.",
|
|
38782
38746
|
"name": "focus",
|
|
38783
|
-
"reactName": "onFocus"
|
|
38784
|
-
|
|
38785
|
-
|
|
38786
|
-
|
|
38787
|
-
|
|
38747
|
+
"reactName": "onFocus"
|
|
38748
|
+
}
|
|
38749
|
+
],
|
|
38750
|
+
"attributes": [
|
|
38751
|
+
{
|
|
38752
|
+
"name": "placeholder",
|
|
38753
|
+
"type": {
|
|
38754
|
+
"text": "string | undefined"
|
|
38755
|
+
},
|
|
38756
|
+
"description": "The placeholder text which will be shown on the text if provided.",
|
|
38757
|
+
"fieldName": "placeholder"
|
|
38788
38758
|
},
|
|
38789
38759
|
{
|
|
38790
|
-
"
|
|
38791
|
-
"
|
|
38792
|
-
|
|
38793
|
-
|
|
38794
|
-
|
|
38795
|
-
|
|
38796
|
-
|
|
38760
|
+
"name": "placement",
|
|
38761
|
+
"type": {
|
|
38762
|
+
"text": "Placement"
|
|
38763
|
+
},
|
|
38764
|
+
"description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
|
|
38765
|
+
"default": "'bottom-start'",
|
|
38766
|
+
"fieldName": "placement"
|
|
38797
38767
|
},
|
|
38798
38768
|
{
|
|
38799
|
-
"name": "
|
|
38769
|
+
"name": "boundary",
|
|
38800
38770
|
"type": {
|
|
38801
|
-
"text": "
|
|
38771
|
+
"text": "'clippingAncestors' | string"
|
|
38802
38772
|
},
|
|
38803
|
-
"description": "(
|
|
38804
|
-
"
|
|
38805
|
-
"
|
|
38806
|
-
"name": "Input",
|
|
38807
|
-
"module": "src/components/input/input.component.ts"
|
|
38808
|
-
}
|
|
38773
|
+
"description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
|
|
38774
|
+
"default": "'clippingAncestors'",
|
|
38775
|
+
"fieldName": "boundary"
|
|
38809
38776
|
},
|
|
38810
38777
|
{
|
|
38778
|
+
"name": "strategy",
|
|
38811
38779
|
"type": {
|
|
38812
|
-
"text": "
|
|
38780
|
+
"text": "PopoverStrategy"
|
|
38813
38781
|
},
|
|
38814
|
-
"
|
|
38815
|
-
|
|
38816
|
-
|
|
38817
|
-
|
|
38818
|
-
|
|
38819
|
-
|
|
38820
|
-
|
|
38821
|
-
|
|
38822
|
-
|
|
38823
|
-
|
|
38824
|
-
|
|
38825
|
-
|
|
38826
|
-
|
|
38827
|
-
|
|
38782
|
+
"description": "The strategy of the popover within Select.\nThis determines how the popover is positioned in the DOM.\n\nIn case `boundary` is set to something other than 'clippingAncestors',\nit might be necessary to set the `strategy` to 'fixed' to ensure that the popover\nis not getting clipped by scrollable containers enclosing the select.",
|
|
38783
|
+
"default": "absolute",
|
|
38784
|
+
"fieldName": "strategy"
|
|
38785
|
+
},
|
|
38786
|
+
{
|
|
38787
|
+
"name": "popover-z-index",
|
|
38788
|
+
"type": {
|
|
38789
|
+
"text": "number"
|
|
38790
|
+
},
|
|
38791
|
+
"description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
|
|
38792
|
+
"default": "1000",
|
|
38793
|
+
"fieldName": "popoverZIndex"
|
|
38794
|
+
},
|
|
38795
|
+
{
|
|
38796
|
+
"name": "backdrop-append-to",
|
|
38797
|
+
"type": {
|
|
38798
|
+
"text": "string | undefined"
|
|
38799
|
+
},
|
|
38800
|
+
"description": "ID of the element where the backdrop will be appended to.\nThis is useful to ensure that the backdrop is appended to the correct element in the DOM.\nIf not set, the backdrop will be appended to the parent element of the select.",
|
|
38801
|
+
"fieldName": "backdropAppendTo"
|
|
38802
|
+
},
|
|
38828
38803
|
{
|
|
38829
38804
|
"name": "auto-focus-on-mount",
|
|
38830
38805
|
"type": {
|
|
@@ -38890,260 +38865,98 @@
|
|
|
38890
38865
|
}
|
|
38891
38866
|
},
|
|
38892
38867
|
{
|
|
38893
|
-
"name": "
|
|
38868
|
+
"name": "disabled",
|
|
38894
38869
|
"type": {
|
|
38895
|
-
"text": "
|
|
38870
|
+
"text": "boolean | undefined"
|
|
38896
38871
|
},
|
|
38897
|
-
"
|
|
38898
|
-
"
|
|
38899
|
-
"fieldName": "
|
|
38872
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
|
38873
|
+
"default": "undefined",
|
|
38874
|
+
"fieldName": "disabled",
|
|
38900
38875
|
"inheritedFrom": {
|
|
38901
|
-
"name": "
|
|
38902
|
-
"module": "src/components/
|
|
38876
|
+
"name": "FormfieldWrapper",
|
|
38877
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38903
38878
|
}
|
|
38904
38879
|
},
|
|
38905
38880
|
{
|
|
38906
|
-
"name": "
|
|
38881
|
+
"name": "label",
|
|
38907
38882
|
"type": {
|
|
38908
38883
|
"text": "string | undefined"
|
|
38909
38884
|
},
|
|
38910
|
-
"description": "The
|
|
38911
|
-
"fieldName": "
|
|
38885
|
+
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
|
38886
|
+
"fieldName": "label",
|
|
38912
38887
|
"inheritedFrom": {
|
|
38913
|
-
"name": "
|
|
38914
|
-
"module": "src/components/
|
|
38888
|
+
"name": "FormfieldWrapper",
|
|
38889
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38915
38890
|
}
|
|
38916
38891
|
},
|
|
38917
38892
|
{
|
|
38918
|
-
"name": "
|
|
38893
|
+
"name": "required",
|
|
38919
38894
|
"type": {
|
|
38920
|
-
"text": "
|
|
38895
|
+
"text": "boolean"
|
|
38921
38896
|
},
|
|
38922
|
-
"
|
|
38923
|
-
"
|
|
38897
|
+
"default": "false",
|
|
38898
|
+
"description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
|
|
38899
|
+
"fieldName": "required",
|
|
38924
38900
|
"inheritedFrom": {
|
|
38925
|
-
"name": "
|
|
38926
|
-
"module": "src/components/
|
|
38901
|
+
"name": "FormfieldWrapper",
|
|
38902
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38927
38903
|
}
|
|
38928
38904
|
},
|
|
38929
38905
|
{
|
|
38930
|
-
"name": "
|
|
38906
|
+
"name": "help-text-type",
|
|
38931
38907
|
"type": {
|
|
38932
|
-
"text": "
|
|
38908
|
+
"text": "ValidationType"
|
|
38933
38909
|
},
|
|
38934
|
-
"
|
|
38935
|
-
"
|
|
38936
|
-
"fieldName": "trailingButton",
|
|
38910
|
+
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
|
38911
|
+
"fieldName": "helpTextType",
|
|
38937
38912
|
"inheritedFrom": {
|
|
38938
|
-
"name": "
|
|
38939
|
-
"module": "src/components/
|
|
38913
|
+
"name": "FormfieldWrapper",
|
|
38914
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38940
38915
|
}
|
|
38941
38916
|
},
|
|
38942
38917
|
{
|
|
38943
|
-
"name": "
|
|
38918
|
+
"name": "help-text",
|
|
38944
38919
|
"type": {
|
|
38945
|
-
"text": "
|
|
38920
|
+
"text": "string | undefined"
|
|
38946
38921
|
},
|
|
38947
|
-
"description": "The
|
|
38948
|
-
"fieldName": "
|
|
38922
|
+
"description": "The help text that is displayed below the input field.",
|
|
38923
|
+
"fieldName": "helpText",
|
|
38949
38924
|
"inheritedFrom": {
|
|
38950
|
-
"name": "
|
|
38951
|
-
"module": "src/components/
|
|
38925
|
+
"name": "FormfieldWrapper",
|
|
38926
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38952
38927
|
}
|
|
38953
38928
|
},
|
|
38954
38929
|
{
|
|
38955
|
-
"name": "
|
|
38930
|
+
"name": "toggletip-text",
|
|
38956
38931
|
"type": {
|
|
38957
|
-
"text": "
|
|
38932
|
+
"text": "string | undefined"
|
|
38958
38933
|
},
|
|
38959
|
-
"description": "The
|
|
38960
|
-
"fieldName": "
|
|
38934
|
+
"description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
|
|
38935
|
+
"fieldName": "toggletipText",
|
|
38961
38936
|
"inheritedFrom": {
|
|
38962
|
-
"name": "
|
|
38963
|
-
"module": "src/components/
|
|
38937
|
+
"name": "FormfieldWrapper",
|
|
38938
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38964
38939
|
}
|
|
38965
38940
|
},
|
|
38966
38941
|
{
|
|
38967
|
-
"name": "
|
|
38942
|
+
"name": "toggletip-placement",
|
|
38968
38943
|
"type": {
|
|
38969
|
-
"text": "
|
|
38944
|
+
"text": "PopoverPlacement"
|
|
38970
38945
|
},
|
|
38971
|
-
"description": "The
|
|
38972
|
-
"default": "'
|
|
38973
|
-
"fieldName": "
|
|
38946
|
+
"description": "The placement of the toggletip that is displayed when the info icon is hovered.",
|
|
38947
|
+
"default": "'top'",
|
|
38948
|
+
"fieldName": "toggletipPlacement",
|
|
38974
38949
|
"inheritedFrom": {
|
|
38975
|
-
"name": "
|
|
38976
|
-
"module": "src/components/
|
|
38950
|
+
"name": "FormfieldWrapper",
|
|
38951
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38977
38952
|
}
|
|
38978
38953
|
},
|
|
38979
38954
|
{
|
|
38980
|
-
"name": "
|
|
38955
|
+
"name": "toggletip-strategy",
|
|
38981
38956
|
"type": {
|
|
38982
|
-
"text": "
|
|
38957
|
+
"text": "PopoverStrategy"
|
|
38983
38958
|
},
|
|
38984
|
-
"
|
|
38985
|
-
"default": "'off'",
|
|
38986
|
-
"fieldName": "autocomplete",
|
|
38987
|
-
"inheritedFrom": {
|
|
38988
|
-
"name": "Input",
|
|
38989
|
-
"module": "src/components/input/input.component.ts"
|
|
38990
|
-
}
|
|
38991
|
-
},
|
|
38992
|
-
{
|
|
38993
|
-
"name": "dirname",
|
|
38994
|
-
"type": {
|
|
38995
|
-
"text": "string | undefined"
|
|
38996
|
-
},
|
|
38997
|
-
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
38998
|
-
"fieldName": "dirname",
|
|
38999
|
-
"inheritedFrom": {
|
|
39000
|
-
"name": "Input",
|
|
39001
|
-
"module": "src/components/input/input.component.ts"
|
|
39002
|
-
}
|
|
39003
|
-
},
|
|
39004
|
-
{
|
|
39005
|
-
"name": "pattern",
|
|
39006
|
-
"type": {
|
|
39007
|
-
"text": "string | undefined"
|
|
39008
|
-
},
|
|
39009
|
-
"description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
|
|
39010
|
-
"fieldName": "pattern",
|
|
39011
|
-
"inheritedFrom": {
|
|
39012
|
-
"name": "Input",
|
|
39013
|
-
"module": "src/components/input/input.component.ts"
|
|
39014
|
-
}
|
|
39015
|
-
},
|
|
39016
|
-
{
|
|
39017
|
-
"name": "list",
|
|
39018
|
-
"type": {
|
|
39019
|
-
"text": "string | undefined"
|
|
39020
|
-
},
|
|
39021
|
-
"description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
|
|
39022
|
-
"fieldName": "list",
|
|
39023
|
-
"inheritedFrom": {
|
|
39024
|
-
"name": "Input",
|
|
39025
|
-
"module": "src/components/input/input.component.ts"
|
|
39026
|
-
}
|
|
39027
|
-
},
|
|
39028
|
-
{
|
|
39029
|
-
"name": "size",
|
|
39030
|
-
"type": {
|
|
39031
|
-
"text": "number | undefined | undefined"
|
|
39032
|
-
},
|
|
39033
|
-
"description": "The size attribute of the input field.\nSpecifies the width of the input field.",
|
|
39034
|
-
"default": "undefined",
|
|
39035
|
-
"fieldName": "size",
|
|
39036
|
-
"inheritedFrom": {
|
|
39037
|
-
"name": "Input",
|
|
39038
|
-
"module": "src/components/input/input.component.ts"
|
|
39039
|
-
}
|
|
39040
|
-
},
|
|
39041
|
-
{
|
|
39042
|
-
"name": "clear-aria-label",
|
|
39043
|
-
"type": {
|
|
39044
|
-
"text": "string"
|
|
39045
|
-
},
|
|
39046
|
-
"default": "''",
|
|
39047
|
-
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
39048
|
-
"fieldName": "clearAriaLabel",
|
|
39049
|
-
"inheritedFrom": {
|
|
39050
|
-
"name": "Input",
|
|
39051
|
-
"module": "src/components/input/input.component.ts"
|
|
39052
|
-
}
|
|
39053
|
-
},
|
|
39054
|
-
{
|
|
39055
|
-
"name": "disabled",
|
|
39056
|
-
"type": {
|
|
39057
|
-
"text": "boolean | undefined"
|
|
39058
|
-
},
|
|
39059
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
|
39060
|
-
"default": "undefined",
|
|
39061
|
-
"fieldName": "disabled",
|
|
39062
|
-
"inheritedFrom": {
|
|
39063
|
-
"name": "FormfieldWrapper",
|
|
39064
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39065
|
-
}
|
|
39066
|
-
},
|
|
39067
|
-
{
|
|
39068
|
-
"name": "label",
|
|
39069
|
-
"type": {
|
|
39070
|
-
"text": "string | undefined"
|
|
39071
|
-
},
|
|
39072
|
-
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
|
39073
|
-
"fieldName": "label",
|
|
39074
|
-
"inheritedFrom": {
|
|
39075
|
-
"name": "FormfieldWrapper",
|
|
39076
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39077
|
-
}
|
|
39078
|
-
},
|
|
39079
|
-
{
|
|
39080
|
-
"name": "required",
|
|
39081
|
-
"type": {
|
|
39082
|
-
"text": "boolean"
|
|
39083
|
-
},
|
|
39084
|
-
"default": "false",
|
|
39085
|
-
"description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
|
|
39086
|
-
"fieldName": "required",
|
|
39087
|
-
"inheritedFrom": {
|
|
39088
|
-
"name": "FormfieldWrapper",
|
|
39089
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39090
|
-
}
|
|
39091
|
-
},
|
|
39092
|
-
{
|
|
39093
|
-
"name": "help-text-type",
|
|
39094
|
-
"type": {
|
|
39095
|
-
"text": "ValidationType"
|
|
39096
|
-
},
|
|
39097
|
-
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
|
39098
|
-
"fieldName": "helpTextType",
|
|
39099
|
-
"inheritedFrom": {
|
|
39100
|
-
"name": "FormfieldWrapper",
|
|
39101
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39102
|
-
}
|
|
39103
|
-
},
|
|
39104
|
-
{
|
|
39105
|
-
"name": "help-text",
|
|
39106
|
-
"type": {
|
|
39107
|
-
"text": "string | undefined"
|
|
39108
|
-
},
|
|
39109
|
-
"description": "The help text that is displayed below the input field.",
|
|
39110
|
-
"fieldName": "helpText",
|
|
39111
|
-
"inheritedFrom": {
|
|
39112
|
-
"name": "FormfieldWrapper",
|
|
39113
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39114
|
-
}
|
|
39115
|
-
},
|
|
39116
|
-
{
|
|
39117
|
-
"name": "toggletip-text",
|
|
39118
|
-
"type": {
|
|
39119
|
-
"text": "string | undefined"
|
|
39120
|
-
},
|
|
39121
|
-
"description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
|
|
39122
|
-
"fieldName": "toggletipText",
|
|
39123
|
-
"inheritedFrom": {
|
|
39124
|
-
"name": "FormfieldWrapper",
|
|
39125
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39126
|
-
}
|
|
39127
|
-
},
|
|
39128
|
-
{
|
|
39129
|
-
"name": "toggletip-placement",
|
|
39130
|
-
"type": {
|
|
39131
|
-
"text": "PopoverPlacement"
|
|
39132
|
-
},
|
|
39133
|
-
"description": "The placement of the toggletip that is displayed when the info icon is hovered.",
|
|
39134
|
-
"default": "'top'",
|
|
39135
|
-
"fieldName": "toggletipPlacement",
|
|
39136
|
-
"inheritedFrom": {
|
|
39137
|
-
"name": "FormfieldWrapper",
|
|
39138
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39139
|
-
}
|
|
39140
|
-
},
|
|
39141
|
-
{
|
|
39142
|
-
"name": "toggletip-strategy",
|
|
39143
|
-
"type": {
|
|
39144
|
-
"text": "PopoverStrategy"
|
|
39145
|
-
},
|
|
39146
|
-
"fieldName": "toggletipStrategy",
|
|
38959
|
+
"fieldName": "toggletipStrategy",
|
|
39147
38960
|
"inheritedFrom": {
|
|
39148
38961
|
"name": "FormfieldWrapper",
|
|
39149
38962
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
@@ -39187,7 +39000,36 @@
|
|
|
39187
39000
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39188
39001
|
}
|
|
39189
39002
|
}
|
|
39190
|
-
]
|
|
39003
|
+
],
|
|
39004
|
+
"mixins": [
|
|
39005
|
+
{
|
|
39006
|
+
"name": "ListNavigationMixin",
|
|
39007
|
+
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
39008
|
+
},
|
|
39009
|
+
{
|
|
39010
|
+
"name": "CaptureDestroyEventForChildElement",
|
|
39011
|
+
"module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
|
|
39012
|
+
},
|
|
39013
|
+
{
|
|
39014
|
+
"name": "AutoFocusOnMountMixin",
|
|
39015
|
+
"module": "/src/utils/mixins/AutoFocusOnMountMixin"
|
|
39016
|
+
},
|
|
39017
|
+
{
|
|
39018
|
+
"name": "FormInternalsMixin",
|
|
39019
|
+
"module": "/src/utils/mixins/FormInternalsMixin"
|
|
39020
|
+
},
|
|
39021
|
+
{
|
|
39022
|
+
"name": "DataAriaLabelMixin",
|
|
39023
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
|
39024
|
+
}
|
|
39025
|
+
],
|
|
39026
|
+
"superclass": {
|
|
39027
|
+
"name": "FormfieldWrapper",
|
|
39028
|
+
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
39029
|
+
},
|
|
39030
|
+
"tagName": "mdc-select",
|
|
39031
|
+
"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 * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-select-background-color - The background color of the combobox of select.\n * @cssproperty --mdc-select-text-color - The text color of the select.\n * @cssproperty --mdc-select-border-color - The border color of the select.\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 */",
|
|
39032
|
+
"customElement": true
|
|
39191
39033
|
}
|
|
39192
39034
|
],
|
|
39193
39035
|
"exports": [
|
|
@@ -39195,20 +39037,20 @@
|
|
|
39195
39037
|
"kind": "js",
|
|
39196
39038
|
"name": "default",
|
|
39197
39039
|
"declaration": {
|
|
39198
|
-
"name": "
|
|
39199
|
-
"module": "components/
|
|
39040
|
+
"name": "Select",
|
|
39041
|
+
"module": "components/select/select.component.js"
|
|
39200
39042
|
}
|
|
39201
39043
|
}
|
|
39202
39044
|
]
|
|
39203
39045
|
},
|
|
39204
39046
|
{
|
|
39205
39047
|
"kind": "javascript-module",
|
|
39206
|
-
"path": "components/
|
|
39048
|
+
"path": "components/searchfield/searchfield.component.js",
|
|
39207
39049
|
"declarations": [
|
|
39208
39050
|
{
|
|
39209
39051
|
"kind": "class",
|
|
39210
|
-
"description": "
|
|
39211
|
-
"name": "
|
|
39052
|
+
"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.",
|
|
39053
|
+
"name": "Searchfield",
|
|
39212
39054
|
"cssProperties": [
|
|
39213
39055
|
{
|
|
39214
39056
|
"description": "Font size for the label text.",
|
|
@@ -39275,28 +39117,60 @@
|
|
|
39275
39117
|
}
|
|
39276
39118
|
},
|
|
39277
39119
|
{
|
|
39278
|
-
"description": "
|
|
39279
|
-
"name": "--mdc-
|
|
39120
|
+
"description": "Color for the required indicator text.",
|
|
39121
|
+
"name": "--mdc-required-indicator-color",
|
|
39122
|
+
"inheritedFrom": {
|
|
39123
|
+
"name": "FormfieldWrapper",
|
|
39124
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39125
|
+
}
|
|
39280
39126
|
},
|
|
39281
39127
|
{
|
|
39282
|
-
"description": "
|
|
39283
|
-
"name": "--mdc-
|
|
39128
|
+
"description": "Text color for the input field",
|
|
39129
|
+
"name": "--mdc-input-text-color",
|
|
39130
|
+
"inheritedFrom": {
|
|
39131
|
+
"name": "Input",
|
|
39132
|
+
"module": "src/components/input/input.component.ts"
|
|
39133
|
+
}
|
|
39284
39134
|
},
|
|
39285
39135
|
{
|
|
39286
|
-
"description": "
|
|
39287
|
-
"name": "--mdc-
|
|
39136
|
+
"description": "Border color for the input container",
|
|
39137
|
+
"name": "--mdc-input-border-color",
|
|
39138
|
+
"inheritedFrom": {
|
|
39139
|
+
"name": "Input",
|
|
39140
|
+
"module": "src/components/input/input.component.ts"
|
|
39141
|
+
}
|
|
39288
39142
|
},
|
|
39289
39143
|
{
|
|
39290
|
-
"description": "
|
|
39291
|
-
"name": "--mdc-
|
|
39144
|
+
"description": "Background color for the input field",
|
|
39145
|
+
"name": "--mdc-input-background-color",
|
|
39146
|
+
"inheritedFrom": {
|
|
39147
|
+
"name": "Input",
|
|
39148
|
+
"module": "src/components/input/input.component.ts"
|
|
39149
|
+
}
|
|
39292
39150
|
},
|
|
39293
39151
|
{
|
|
39294
|
-
"description": "
|
|
39295
|
-
"name": "--mdc-
|
|
39152
|
+
"description": "Text color for the help text",
|
|
39153
|
+
"name": "--mdc-input-support-text-color",
|
|
39154
|
+
"inheritedFrom": {
|
|
39155
|
+
"name": "Input",
|
|
39156
|
+
"module": "src/components/input/input.component.ts"
|
|
39157
|
+
}
|
|
39296
39158
|
},
|
|
39297
39159
|
{
|
|
39298
|
-
"description": "
|
|
39299
|
-
"name": "--mdc-
|
|
39160
|
+
"description": "Text color for the selected text",
|
|
39161
|
+
"name": "--mdc-input-selection-text-color",
|
|
39162
|
+
"inheritedFrom": {
|
|
39163
|
+
"name": "Input",
|
|
39164
|
+
"module": "src/components/input/input.component.ts"
|
|
39165
|
+
}
|
|
39166
|
+
},
|
|
39167
|
+
{
|
|
39168
|
+
"description": "Background color for the selected text",
|
|
39169
|
+
"name": "--mdc-input-selection-background-color",
|
|
39170
|
+
"inheritedFrom": {
|
|
39171
|
+
"name": "Input",
|
|
39172
|
+
"module": "src/components/input/input.component.ts"
|
|
39173
|
+
}
|
|
39300
39174
|
}
|
|
39301
39175
|
],
|
|
39302
39176
|
"cssParts": [
|
|
@@ -39363,12 +39237,60 @@
|
|
|
39363
39237
|
"name": "FormfieldWrapper",
|
|
39364
39238
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39365
39239
|
}
|
|
39240
|
+
},
|
|
39241
|
+
{
|
|
39242
|
+
"description": "The leading icon element that is displayed before the input field.",
|
|
39243
|
+
"name": "leading-icon",
|
|
39244
|
+
"inheritedFrom": {
|
|
39245
|
+
"name": "Input",
|
|
39246
|
+
"module": "src/components/input/input.component.ts"
|
|
39247
|
+
}
|
|
39248
|
+
},
|
|
39249
|
+
{
|
|
39250
|
+
"description": "The prefix text element that is displayed before the input field.",
|
|
39251
|
+
"name": "prefix-text",
|
|
39252
|
+
"inheritedFrom": {
|
|
39253
|
+
"name": "Input",
|
|
39254
|
+
"module": "src/components/input/input.component.ts"
|
|
39255
|
+
}
|
|
39256
|
+
},
|
|
39257
|
+
{
|
|
39258
|
+
"description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
|
|
39259
|
+
"name": "input-container",
|
|
39260
|
+
"inheritedFrom": {
|
|
39261
|
+
"name": "Input",
|
|
39262
|
+
"module": "src/components/input/input.component.ts"
|
|
39263
|
+
}
|
|
39264
|
+
},
|
|
39265
|
+
{
|
|
39266
|
+
"description": "The container for the input field, leading icon, and prefix text elements.",
|
|
39267
|
+
"name": "input-section",
|
|
39268
|
+
"inheritedFrom": {
|
|
39269
|
+
"name": "Input",
|
|
39270
|
+
"module": "src/components/input/input.component.ts"
|
|
39271
|
+
}
|
|
39272
|
+
},
|
|
39273
|
+
{
|
|
39274
|
+
"description": "The input field element.",
|
|
39275
|
+
"name": "input-text",
|
|
39276
|
+
"inheritedFrom": {
|
|
39277
|
+
"name": "Input",
|
|
39278
|
+
"module": "src/components/input/input.component.ts"
|
|
39279
|
+
}
|
|
39280
|
+
},
|
|
39281
|
+
{
|
|
39282
|
+
"description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
|
|
39283
|
+
"name": "trailing-button",
|
|
39284
|
+
"inheritedFrom": {
|
|
39285
|
+
"name": "Input",
|
|
39286
|
+
"module": "src/components/input/input.component.ts"
|
|
39287
|
+
}
|
|
39366
39288
|
}
|
|
39367
39289
|
],
|
|
39368
39290
|
"slots": [
|
|
39369
39291
|
{
|
|
39370
|
-
"description": "
|
|
39371
|
-
"name": "
|
|
39292
|
+
"description": "Slot for input chips",
|
|
39293
|
+
"name": "filters"
|
|
39372
39294
|
},
|
|
39373
39295
|
{
|
|
39374
39296
|
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
|
@@ -39401,467 +39323,511 @@
|
|
|
39401
39323
|
"name": "FormfieldWrapper",
|
|
39402
39324
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39403
39325
|
}
|
|
39326
|
+
},
|
|
39327
|
+
{
|
|
39328
|
+
"description": "Slot for the input element. If not provided, the input field will be rendered.",
|
|
39329
|
+
"name": "input",
|
|
39330
|
+
"inheritedFrom": {
|
|
39331
|
+
"name": "Input",
|
|
39332
|
+
"module": "src/components/input/input.component.ts"
|
|
39333
|
+
}
|
|
39334
|
+
},
|
|
39335
|
+
{
|
|
39336
|
+
"description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
|
|
39337
|
+
"name": "input-leading-icon",
|
|
39338
|
+
"inheritedFrom": {
|
|
39339
|
+
"name": "Input",
|
|
39340
|
+
"module": "src/components/input/input.component.ts"
|
|
39341
|
+
}
|
|
39342
|
+
},
|
|
39343
|
+
{
|
|
39344
|
+
"description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
|
|
39345
|
+
"name": "input-prefix-text",
|
|
39346
|
+
"inheritedFrom": {
|
|
39347
|
+
"name": "Input",
|
|
39348
|
+
"module": "src/components/input/input.component.ts"
|
|
39349
|
+
}
|
|
39350
|
+
},
|
|
39351
|
+
{
|
|
39352
|
+
"description": "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.",
|
|
39353
|
+
"name": "trailing-button",
|
|
39354
|
+
"inheritedFrom": {
|
|
39355
|
+
"name": "Input",
|
|
39356
|
+
"module": "src/components/input/input.component.ts"
|
|
39357
|
+
}
|
|
39404
39358
|
}
|
|
39405
39359
|
],
|
|
39406
39360
|
"members": [
|
|
39407
39361
|
{
|
|
39408
39362
|
"kind": "field",
|
|
39409
|
-
"name": "
|
|
39363
|
+
"name": "inputChips",
|
|
39410
39364
|
"type": {
|
|
39411
|
-
"text": "
|
|
39412
|
-
}
|
|
39413
|
-
"description": "The placeholder text which will be shown on the text if provided.",
|
|
39414
|
-
"attribute": "placeholder"
|
|
39365
|
+
"text": "Array<HTMLElement> | undefined"
|
|
39366
|
+
}
|
|
39415
39367
|
},
|
|
39416
39368
|
{
|
|
39417
|
-
"kind": "
|
|
39418
|
-
"name": "
|
|
39419
|
-
"
|
|
39420
|
-
|
|
39421
|
-
|
|
39422
|
-
|
|
39423
|
-
|
|
39424
|
-
|
|
39425
|
-
|
|
39369
|
+
"kind": "method",
|
|
39370
|
+
"name": "handleKeyDown",
|
|
39371
|
+
"privacy": "protected",
|
|
39372
|
+
"parameters": [
|
|
39373
|
+
{
|
|
39374
|
+
"name": "event",
|
|
39375
|
+
"type": {
|
|
39376
|
+
"text": "KeyboardEvent"
|
|
39377
|
+
},
|
|
39378
|
+
"description": "Keyboard event"
|
|
39379
|
+
}
|
|
39380
|
+
],
|
|
39381
|
+
"description": "Handles the keydown event of the search field.\nIf the key pressed is 'Enter', it submits the form.\nIf the key pressed is 'Escape', it clears the input text.",
|
|
39382
|
+
"inheritedFrom": {
|
|
39383
|
+
"name": "Input",
|
|
39384
|
+
"module": "components/input/input.component.js"
|
|
39385
|
+
}
|
|
39386
|
+
},
|
|
39387
|
+
{
|
|
39388
|
+
"kind": "method",
|
|
39389
|
+
"name": "renderInputChips",
|
|
39390
|
+
"privacy": "private",
|
|
39391
|
+
"description": "This method is used to render the input chips inside filters slot.\nIt will remove any elements that are not input chips."
|
|
39392
|
+
},
|
|
39393
|
+
{
|
|
39394
|
+
"kind": "method",
|
|
39395
|
+
"name": "clearInputText",
|
|
39396
|
+
"privacy": "protected",
|
|
39397
|
+
"description": "Clears the input field.",
|
|
39398
|
+
"inheritedFrom": {
|
|
39399
|
+
"name": "Input",
|
|
39400
|
+
"module": "components/input/input.component.js"
|
|
39401
|
+
}
|
|
39426
39402
|
},
|
|
39427
39403
|
{
|
|
39428
39404
|
"kind": "field",
|
|
39429
|
-
"name": "
|
|
39405
|
+
"name": "autoFocusOnMount",
|
|
39430
39406
|
"type": {
|
|
39431
|
-
"text": "
|
|
39407
|
+
"text": "boolean"
|
|
39432
39408
|
},
|
|
39433
|
-
"
|
|
39434
|
-
"
|
|
39435
|
-
"attribute": "
|
|
39436
|
-
"reflects": true
|
|
39409
|
+
"default": "false",
|
|
39410
|
+
"description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
|
|
39411
|
+
"attribute": "auto-focus-on-mount",
|
|
39412
|
+
"reflects": true,
|
|
39413
|
+
"inheritedFrom": {
|
|
39414
|
+
"name": "AutoFocusOnMountMixin",
|
|
39415
|
+
"module": "utils/mixins/AutoFocusOnMountMixin.js"
|
|
39416
|
+
}
|
|
39437
39417
|
},
|
|
39438
39418
|
{
|
|
39439
39419
|
"kind": "field",
|
|
39440
|
-
"name": "
|
|
39420
|
+
"name": "name",
|
|
39441
39421
|
"type": {
|
|
39442
|
-
"text": "
|
|
39422
|
+
"text": "string"
|
|
39443
39423
|
},
|
|
39444
|
-
"
|
|
39445
|
-
"
|
|
39446
|
-
"attribute": "
|
|
39447
|
-
"reflects": true
|
|
39424
|
+
"default": "''",
|
|
39425
|
+
"description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
|
|
39426
|
+
"attribute": "name",
|
|
39427
|
+
"reflects": true,
|
|
39428
|
+
"inheritedFrom": {
|
|
39429
|
+
"name": "FormInternalsMixin",
|
|
39430
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39431
|
+
}
|
|
39448
39432
|
},
|
|
39449
39433
|
{
|
|
39450
39434
|
"kind": "field",
|
|
39451
|
-
"name": "
|
|
39435
|
+
"name": "value",
|
|
39452
39436
|
"type": {
|
|
39453
|
-
"text": "
|
|
39437
|
+
"text": "string"
|
|
39454
39438
|
},
|
|
39455
|
-
"
|
|
39456
|
-
"
|
|
39457
|
-
"attribute": "
|
|
39458
|
-
"reflects": true
|
|
39439
|
+
"default": "''",
|
|
39440
|
+
"description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
|
|
39441
|
+
"attribute": "value",
|
|
39442
|
+
"reflects": true,
|
|
39443
|
+
"inheritedFrom": {
|
|
39444
|
+
"name": "FormInternalsMixin",
|
|
39445
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39446
|
+
}
|
|
39459
39447
|
},
|
|
39460
39448
|
{
|
|
39461
39449
|
"kind": "field",
|
|
39462
|
-
"name": "
|
|
39450
|
+
"name": "validationMessage",
|
|
39463
39451
|
"type": {
|
|
39464
39452
|
"text": "string | undefined"
|
|
39465
39453
|
},
|
|
39466
|
-
"description": "
|
|
39467
|
-
"attribute": "
|
|
39468
|
-
"reflects": true
|
|
39454
|
+
"description": "Custom validation message that will override the default message and displayed when the input is invalid.\n\nTo display custom validation messages, you must listen for input events (or other relevant events)\non your component and update the `validationMessage` property with the desired message string.\nUpdating this property will ensure that new validation messages are shown to the user.\n- The `validationMessage` property overrides the default browser validation message when set.\n- Consumers are responsible for updating `validationMessage` in response to input or validation state changes.",
|
|
39455
|
+
"attribute": "validation-message",
|
|
39456
|
+
"reflects": true,
|
|
39457
|
+
"inheritedFrom": {
|
|
39458
|
+
"name": "FormInternalsMixin",
|
|
39459
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39460
|
+
}
|
|
39469
39461
|
},
|
|
39470
39462
|
{
|
|
39471
|
-
"kind": "
|
|
39472
|
-
"name": "
|
|
39473
|
-
"
|
|
39474
|
-
|
|
39475
|
-
"type": {
|
|
39476
|
-
"text": "void"
|
|
39477
|
-
}
|
|
39463
|
+
"kind": "field",
|
|
39464
|
+
"name": "validity",
|
|
39465
|
+
"type": {
|
|
39466
|
+
"text": "ValidityState"
|
|
39478
39467
|
},
|
|
39479
|
-
"
|
|
39480
|
-
|
|
39481
|
-
|
|
39482
|
-
|
|
39483
|
-
|
|
39484
|
-
},
|
|
39485
|
-
"description": "The event which triggered this function."
|
|
39486
|
-
}
|
|
39487
|
-
],
|
|
39488
|
-
"description": "A private method which is called when an option is clicked.\nIt sets the selected option, removes selected from other options, updates the tabindex for all options,\ncloses the popover, and fires the change and input events."
|
|
39468
|
+
"readonly": true,
|
|
39469
|
+
"inheritedFrom": {
|
|
39470
|
+
"name": "FormInternalsMixin",
|
|
39471
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39472
|
+
}
|
|
39489
39473
|
},
|
|
39490
39474
|
{
|
|
39491
|
-
"kind": "
|
|
39492
|
-
"name": "
|
|
39493
|
-
"
|
|
39494
|
-
"
|
|
39495
|
-
"
|
|
39496
|
-
|
|
39497
|
-
|
|
39498
|
-
},
|
|
39499
|
-
"parameters": [
|
|
39500
|
-
{
|
|
39501
|
-
"name": "option",
|
|
39502
|
-
"type": {
|
|
39503
|
-
"text": "Option | null"
|
|
39504
|
-
},
|
|
39505
|
-
"description": "The option element in DOM which gets selected."
|
|
39506
|
-
}
|
|
39507
|
-
],
|
|
39508
|
-
"description": "Sets the selected option in the component state and updates the input element's value.\nThis method ensures that only the selected option is marked as selected in the DOM,\nand updates the tabindex for all options accordingly.\nIt also updates the validity of the input element based on the selected option.\nThis method is called when an option is selected."
|
|
39475
|
+
"kind": "field",
|
|
39476
|
+
"name": "willValidate",
|
|
39477
|
+
"readonly": true,
|
|
39478
|
+
"inheritedFrom": {
|
|
39479
|
+
"name": "FormInternalsMixin",
|
|
39480
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39481
|
+
}
|
|
39509
39482
|
},
|
|
39510
39483
|
{
|
|
39511
39484
|
"kind": "method",
|
|
39512
|
-
"name": "
|
|
39513
|
-
"
|
|
39485
|
+
"name": "setValidity",
|
|
39486
|
+
"description": "Sets the validity of the input field based on the input field's validity.",
|
|
39514
39487
|
"return": {
|
|
39515
39488
|
"type": {
|
|
39516
|
-
"text": "
|
|
39489
|
+
"text": ""
|
|
39517
39490
|
}
|
|
39518
39491
|
},
|
|
39519
|
-
"
|
|
39520
|
-
|
|
39521
|
-
|
|
39522
|
-
|
|
39523
|
-
"text": "Option | null"
|
|
39524
|
-
},
|
|
39525
|
-
"description": "The option which gets selected"
|
|
39526
|
-
}
|
|
39527
|
-
],
|
|
39528
|
-
"description": "Sets selected attribute on the selected option and removes it from all options"
|
|
39492
|
+
"inheritedFrom": {
|
|
39493
|
+
"name": "FormInternalsMixin",
|
|
39494
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39495
|
+
}
|
|
39529
39496
|
},
|
|
39530
39497
|
{
|
|
39531
39498
|
"kind": "method",
|
|
39532
|
-
"name": "
|
|
39533
|
-
"privacy": "private",
|
|
39499
|
+
"name": "checkValidity",
|
|
39534
39500
|
"return": {
|
|
39535
39501
|
"type": {
|
|
39536
|
-
"text": "
|
|
39502
|
+
"text": "boolean"
|
|
39537
39503
|
}
|
|
39538
39504
|
},
|
|
39539
|
-
"
|
|
39505
|
+
"inheritedFrom": {
|
|
39506
|
+
"name": "FormInternalsMixin",
|
|
39507
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39508
|
+
}
|
|
39540
39509
|
},
|
|
39541
39510
|
{
|
|
39542
39511
|
"kind": "method",
|
|
39543
|
-
"name": "
|
|
39544
|
-
"
|
|
39545
|
-
|
|
39546
|
-
"
|
|
39547
|
-
|
|
39548
|
-
}
|
|
39549
|
-
},
|
|
39550
|
-
"parameters": [
|
|
39551
|
-
{
|
|
39552
|
-
"name": "option",
|
|
39553
|
-
"type": {
|
|
39554
|
-
"text": "Option"
|
|
39555
|
-
}
|
|
39556
|
-
}
|
|
39557
|
-
]
|
|
39512
|
+
"name": "reportValidity",
|
|
39513
|
+
"inheritedFrom": {
|
|
39514
|
+
"name": "FormInternalsMixin",
|
|
39515
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39516
|
+
}
|
|
39558
39517
|
},
|
|
39559
39518
|
{
|
|
39560
|
-
"kind": "
|
|
39561
|
-
"name": "
|
|
39562
|
-
"
|
|
39563
|
-
|
|
39564
|
-
"type": {
|
|
39565
|
-
"text": "void"
|
|
39566
|
-
}
|
|
39519
|
+
"kind": "field",
|
|
39520
|
+
"name": "dataAriaLabel",
|
|
39521
|
+
"type": {
|
|
39522
|
+
"text": "string | null"
|
|
39567
39523
|
},
|
|
39568
|
-
"
|
|
39569
|
-
|
|
39570
|
-
|
|
39571
|
-
|
|
39572
|
-
|
|
39573
|
-
|
|
39574
|
-
|
|
39575
|
-
|
|
39524
|
+
"default": "null",
|
|
39525
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
|
39526
|
+
"attribute": "data-aria-label",
|
|
39527
|
+
"reflects": true,
|
|
39528
|
+
"inheritedFrom": {
|
|
39529
|
+
"name": "DataAriaLabelMixin",
|
|
39530
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
|
39531
|
+
}
|
|
39576
39532
|
},
|
|
39577
39533
|
{
|
|
39578
|
-
"kind": "
|
|
39579
|
-
"name": "
|
|
39580
|
-
"
|
|
39581
|
-
|
|
39582
|
-
"type": {
|
|
39583
|
-
"text": "void"
|
|
39584
|
-
}
|
|
39534
|
+
"kind": "field",
|
|
39535
|
+
"name": "placeholder",
|
|
39536
|
+
"type": {
|
|
39537
|
+
"text": "string"
|
|
39585
39538
|
},
|
|
39586
|
-
"
|
|
39587
|
-
|
|
39588
|
-
|
|
39589
|
-
|
|
39590
|
-
|
|
39591
|
-
|
|
39592
|
-
|
|
39593
|
-
}
|
|
39594
|
-
],
|
|
39595
|
-
"description": "Handles the click event on the visual combobox.\nIf the select is disabled, soft-disabled or readonly, it does nothing.\nIf the popover is already open, it closes it.\nIf it is closed, it opens it."
|
|
39539
|
+
"default": "''",
|
|
39540
|
+
"description": "The placeholder text that is displayed when the input field is empty.",
|
|
39541
|
+
"attribute": "placeholder",
|
|
39542
|
+
"inheritedFrom": {
|
|
39543
|
+
"name": "Input",
|
|
39544
|
+
"module": "components/input/input.component.js"
|
|
39545
|
+
}
|
|
39596
39546
|
},
|
|
39597
39547
|
{
|
|
39598
|
-
"kind": "
|
|
39599
|
-
"name": "
|
|
39600
|
-
"
|
|
39601
|
-
|
|
39602
|
-
"type": {
|
|
39603
|
-
"text": "void"
|
|
39604
|
-
}
|
|
39548
|
+
"kind": "field",
|
|
39549
|
+
"name": "prefixText",
|
|
39550
|
+
"type": {
|
|
39551
|
+
"text": "string | undefined"
|
|
39605
39552
|
},
|
|
39606
|
-
"
|
|
39607
|
-
|
|
39608
|
-
|
|
39609
|
-
|
|
39610
|
-
|
|
39611
|
-
|
|
39612
|
-
"description": "The keyboard event."
|
|
39613
|
-
}
|
|
39614
|
-
],
|
|
39615
|
-
"description": "Handles the keydown event on the select element when the popover is closed.\nThe options are as follows:\n- ARROW_DOWN, ARROW_UP, SPACE: Opens the popover and prevents the default scrolling behavior.\n- ENTER: Opens the popover, prevents default scrolling, and submits the form if the popover is closed.\n- HOME: Opens the popover and sets focus and tabindex on the first option.\n- END: Opens the popover and sets focus and tabindex on the last option."
|
|
39553
|
+
"description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
|
|
39554
|
+
"attribute": "prefix-text",
|
|
39555
|
+
"inheritedFrom": {
|
|
39556
|
+
"name": "Input",
|
|
39557
|
+
"module": "components/input/input.component.js"
|
|
39558
|
+
}
|
|
39616
39559
|
},
|
|
39617
39560
|
{
|
|
39618
|
-
"kind": "
|
|
39619
|
-
"name": "
|
|
39620
|
-
"
|
|
39621
|
-
|
|
39622
|
-
"type": {
|
|
39623
|
-
"text": ""
|
|
39624
|
-
}
|
|
39561
|
+
"kind": "field",
|
|
39562
|
+
"name": "leadingIcon",
|
|
39563
|
+
"type": {
|
|
39564
|
+
"text": "IconNames | undefined"
|
|
39625
39565
|
},
|
|
39626
|
-
"
|
|
39627
|
-
|
|
39628
|
-
"name": "target",
|
|
39629
|
-
"type": {
|
|
39630
|
-
"text": "HTMLElement | null"
|
|
39631
|
-
},
|
|
39632
|
-
"description": "The target element that triggered the event."
|
|
39633
|
-
}
|
|
39634
|
-
],
|
|
39635
|
-
"description": "Retrieves the current index of the item that triggered the event.",
|
|
39566
|
+
"description": "The leading icon that is displayed before the input field.",
|
|
39567
|
+
"attribute": "leading-icon",
|
|
39636
39568
|
"inheritedFrom": {
|
|
39637
|
-
"name": "
|
|
39638
|
-
"module": "
|
|
39569
|
+
"name": "Input",
|
|
39570
|
+
"module": "components/input/input.component.js"
|
|
39639
39571
|
}
|
|
39640
39572
|
},
|
|
39641
39573
|
{
|
|
39642
|
-
"kind": "
|
|
39643
|
-
"name": "
|
|
39644
|
-
"
|
|
39645
|
-
|
|
39646
|
-
|
|
39647
|
-
|
|
39648
|
-
|
|
39649
|
-
|
|
39650
|
-
},
|
|
39651
|
-
"description": "The index of the currently focused item."
|
|
39652
|
-
}
|
|
39653
|
-
],
|
|
39654
|
-
"description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
|
|
39574
|
+
"kind": "field",
|
|
39575
|
+
"name": "trailingButton",
|
|
39576
|
+
"type": {
|
|
39577
|
+
"text": "boolean"
|
|
39578
|
+
},
|
|
39579
|
+
"default": "false",
|
|
39580
|
+
"description": "The trailing button when set to true, shows a clear button that clears the input field.",
|
|
39581
|
+
"attribute": "trailing-button",
|
|
39655
39582
|
"inheritedFrom": {
|
|
39656
|
-
"name": "
|
|
39657
|
-
"module": "
|
|
39583
|
+
"name": "Input",
|
|
39584
|
+
"module": "components/input/input.component.js"
|
|
39658
39585
|
}
|
|
39659
39586
|
},
|
|
39660
39587
|
{
|
|
39661
|
-
"kind": "
|
|
39662
|
-
"name": "
|
|
39663
|
-
"
|
|
39664
|
-
|
|
39665
|
-
{
|
|
39666
|
-
"name": "newIndex",
|
|
39667
|
-
"type": {
|
|
39668
|
-
"text": "number"
|
|
39669
|
-
},
|
|
39670
|
-
"description": "The index of the new item to focus."
|
|
39671
|
-
},
|
|
39672
|
-
{
|
|
39673
|
-
"name": "oldIndex",
|
|
39674
|
-
"optional": true,
|
|
39675
|
-
"type": {
|
|
39676
|
-
"text": "number"
|
|
39677
|
-
},
|
|
39678
|
-
"description": "The index of the currently focused item."
|
|
39679
|
-
},
|
|
39680
|
-
{
|
|
39681
|
-
"name": "focusNewItem",
|
|
39682
|
-
"default": "true",
|
|
39683
|
-
"description": "Call focus() on the new item or not. It should be false during firstUpdate"
|
|
39684
|
-
}
|
|
39685
|
-
],
|
|
39686
|
-
"description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
|
|
39687
|
-
"return": {
|
|
39688
|
-
"type": {
|
|
39689
|
-
"text": ""
|
|
39690
|
-
}
|
|
39588
|
+
"kind": "field",
|
|
39589
|
+
"name": "maxlength",
|
|
39590
|
+
"type": {
|
|
39591
|
+
"text": "number | undefined"
|
|
39691
39592
|
},
|
|
39593
|
+
"description": "The maximum number of characters that the input field can accept.",
|
|
39594
|
+
"attribute": "maxlength",
|
|
39692
39595
|
"inheritedFrom": {
|
|
39693
|
-
"name": "
|
|
39694
|
-
"module": "
|
|
39596
|
+
"name": "Input",
|
|
39597
|
+
"module": "components/input/input.component.js"
|
|
39695
39598
|
}
|
|
39696
39599
|
},
|
|
39697
39600
|
{
|
|
39698
|
-
"kind": "
|
|
39699
|
-
"name": "
|
|
39700
|
-
"
|
|
39701
|
-
|
|
39702
|
-
{
|
|
39703
|
-
"name": "key",
|
|
39704
|
-
"type": {
|
|
39705
|
-
"text": "string"
|
|
39706
|
-
},
|
|
39707
|
-
"description": "The key pressed by the user."
|
|
39708
|
-
},
|
|
39709
|
-
{
|
|
39710
|
-
"name": "isRtl",
|
|
39711
|
-
"type": {
|
|
39712
|
-
"text": "boolean"
|
|
39713
|
-
},
|
|
39714
|
-
"description": "A boolean indicating if the layout is right-to-left (RTL)."
|
|
39715
|
-
}
|
|
39716
|
-
],
|
|
39717
|
-
"description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
|
|
39718
|
-
"return": {
|
|
39719
|
-
"type": {
|
|
39720
|
-
"text": ""
|
|
39721
|
-
}
|
|
39601
|
+
"kind": "field",
|
|
39602
|
+
"name": "minlength",
|
|
39603
|
+
"type": {
|
|
39604
|
+
"text": "number | undefined"
|
|
39722
39605
|
},
|
|
39606
|
+
"description": "The minimum number of characters that the input field can accept.",
|
|
39607
|
+
"attribute": "minlength",
|
|
39723
39608
|
"inheritedFrom": {
|
|
39724
|
-
"name": "
|
|
39725
|
-
"module": "
|
|
39609
|
+
"name": "Input",
|
|
39610
|
+
"module": "components/input/input.component.js"
|
|
39726
39611
|
}
|
|
39727
39612
|
},
|
|
39728
39613
|
{
|
|
39729
|
-
"kind": "
|
|
39730
|
-
"name": "
|
|
39731
|
-
"
|
|
39614
|
+
"kind": "field",
|
|
39615
|
+
"name": "autocapitalize",
|
|
39616
|
+
"type": {
|
|
39617
|
+
"text": "AutoCapitalizeType"
|
|
39618
|
+
},
|
|
39619
|
+
"description": "The autocapitalize attribute of the input field.",
|
|
39620
|
+
"default": "'off'",
|
|
39621
|
+
"attribute": "autocapitalize",
|
|
39732
39622
|
"inheritedFrom": {
|
|
39733
|
-
"name": "
|
|
39734
|
-
"module": "
|
|
39623
|
+
"name": "Input",
|
|
39624
|
+
"module": "components/input/input.component.js"
|
|
39735
39625
|
}
|
|
39736
39626
|
},
|
|
39737
39627
|
{
|
|
39738
39628
|
"kind": "field",
|
|
39739
|
-
"name": "
|
|
39629
|
+
"name": "autocomplete",
|
|
39740
39630
|
"type": {
|
|
39741
|
-
"text": "
|
|
39631
|
+
"text": "AutoCompleteType"
|
|
39742
39632
|
},
|
|
39743
|
-
"
|
|
39744
|
-
"
|
|
39745
|
-
"attribute": "
|
|
39746
|
-
"reflects": true,
|
|
39633
|
+
"description": "The autocomplete attribute of the input field.",
|
|
39634
|
+
"default": "'off'",
|
|
39635
|
+
"attribute": "autocomplete",
|
|
39747
39636
|
"inheritedFrom": {
|
|
39748
|
-
"name": "
|
|
39749
|
-
"module": "
|
|
39637
|
+
"name": "Input",
|
|
39638
|
+
"module": "components/input/input.component.js"
|
|
39750
39639
|
}
|
|
39751
39640
|
},
|
|
39752
39641
|
{
|
|
39753
39642
|
"kind": "field",
|
|
39754
|
-
"name": "
|
|
39643
|
+
"name": "dirname",
|
|
39755
39644
|
"type": {
|
|
39756
|
-
"text": "string"
|
|
39645
|
+
"text": "string | undefined"
|
|
39757
39646
|
},
|
|
39758
|
-
"
|
|
39759
|
-
"
|
|
39760
|
-
"attribute": "name",
|
|
39761
|
-
"reflects": true,
|
|
39647
|
+
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
39648
|
+
"attribute": "dirname",
|
|
39762
39649
|
"inheritedFrom": {
|
|
39763
|
-
"name": "
|
|
39764
|
-
"module": "
|
|
39650
|
+
"name": "Input",
|
|
39651
|
+
"module": "components/input/input.component.js"
|
|
39765
39652
|
}
|
|
39766
39653
|
},
|
|
39767
39654
|
{
|
|
39768
39655
|
"kind": "field",
|
|
39769
|
-
"name": "
|
|
39656
|
+
"name": "pattern",
|
|
39770
39657
|
"type": {
|
|
39771
|
-
"text": "string"
|
|
39658
|
+
"text": "string | undefined"
|
|
39772
39659
|
},
|
|
39773
|
-
"
|
|
39774
|
-
"
|
|
39775
|
-
"attribute": "value",
|
|
39776
|
-
"reflects": true,
|
|
39660
|
+
"description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
|
|
39661
|
+
"attribute": "pattern",
|
|
39777
39662
|
"inheritedFrom": {
|
|
39778
|
-
"name": "
|
|
39779
|
-
"module": "
|
|
39663
|
+
"name": "Input",
|
|
39664
|
+
"module": "components/input/input.component.js"
|
|
39780
39665
|
}
|
|
39781
39666
|
},
|
|
39782
39667
|
{
|
|
39783
39668
|
"kind": "field",
|
|
39784
|
-
"name": "
|
|
39669
|
+
"name": "list",
|
|
39785
39670
|
"type": {
|
|
39786
39671
|
"text": "string | undefined"
|
|
39787
39672
|
},
|
|
39788
|
-
"description": "
|
|
39789
|
-
"attribute": "
|
|
39790
|
-
"reflects": true,
|
|
39673
|
+
"description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
|
|
39674
|
+
"attribute": "list",
|
|
39791
39675
|
"inheritedFrom": {
|
|
39792
|
-
"name": "
|
|
39793
|
-
"module": "
|
|
39676
|
+
"name": "Input",
|
|
39677
|
+
"module": "components/input/input.component.js"
|
|
39794
39678
|
}
|
|
39795
39679
|
},
|
|
39796
39680
|
{
|
|
39797
39681
|
"kind": "field",
|
|
39798
|
-
"name": "
|
|
39682
|
+
"name": "size",
|
|
39799
39683
|
"type": {
|
|
39800
|
-
"text": "
|
|
39684
|
+
"text": "number | undefined | undefined"
|
|
39801
39685
|
},
|
|
39802
|
-
"
|
|
39686
|
+
"description": "The size attribute of the input field.\nSpecifies the width of the input field.",
|
|
39687
|
+
"default": "undefined",
|
|
39688
|
+
"attribute": "size",
|
|
39803
39689
|
"inheritedFrom": {
|
|
39804
|
-
"name": "
|
|
39805
|
-
"module": "
|
|
39690
|
+
"name": "Input",
|
|
39691
|
+
"module": "components/input/input.component.js"
|
|
39806
39692
|
}
|
|
39807
39693
|
},
|
|
39808
39694
|
{
|
|
39809
39695
|
"kind": "field",
|
|
39810
|
-
"name": "
|
|
39811
|
-
"
|
|
39696
|
+
"name": "clearAriaLabel",
|
|
39697
|
+
"type": {
|
|
39698
|
+
"text": "string"
|
|
39699
|
+
},
|
|
39700
|
+
"default": "''",
|
|
39701
|
+
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
39702
|
+
"attribute": "clear-aria-label",
|
|
39812
39703
|
"inheritedFrom": {
|
|
39813
|
-
"name": "
|
|
39814
|
-
"module": "
|
|
39704
|
+
"name": "Input",
|
|
39705
|
+
"module": "components/input/input.component.js"
|
|
39815
39706
|
}
|
|
39816
39707
|
},
|
|
39817
39708
|
{
|
|
39818
39709
|
"kind": "method",
|
|
39819
|
-
"name": "
|
|
39820
|
-
"
|
|
39710
|
+
"name": "setInputValidity",
|
|
39711
|
+
"privacy": "private",
|
|
39712
|
+
"inheritedFrom": {
|
|
39713
|
+
"name": "Input",
|
|
39714
|
+
"module": "components/input/input.component.js"
|
|
39715
|
+
}
|
|
39716
|
+
},
|
|
39717
|
+
{
|
|
39718
|
+
"kind": "method",
|
|
39719
|
+
"name": "updateValue",
|
|
39720
|
+
"privacy": "private",
|
|
39721
|
+
"description": "Updates the value of the input field.\nSets the form value.",
|
|
39821
39722
|
"return": {
|
|
39822
39723
|
"type": {
|
|
39823
39724
|
"text": ""
|
|
39824
39725
|
}
|
|
39825
39726
|
},
|
|
39826
39727
|
"inheritedFrom": {
|
|
39827
|
-
"name": "
|
|
39828
|
-
"module": "
|
|
39728
|
+
"name": "Input",
|
|
39729
|
+
"module": "components/input/input.component.js"
|
|
39829
39730
|
}
|
|
39830
39731
|
},
|
|
39831
39732
|
{
|
|
39832
39733
|
"kind": "method",
|
|
39833
|
-
"name": "
|
|
39734
|
+
"name": "onInput",
|
|
39735
|
+
"privacy": "private",
|
|
39736
|
+
"description": "Handles the input event of the input field.\nUpdates the value and sets the validity of the input field.",
|
|
39737
|
+
"inheritedFrom": {
|
|
39738
|
+
"name": "Input",
|
|
39739
|
+
"module": "components/input/input.component.js"
|
|
39740
|
+
}
|
|
39741
|
+
},
|
|
39742
|
+
{
|
|
39743
|
+
"kind": "method",
|
|
39744
|
+
"name": "onChange",
|
|
39745
|
+
"privacy": "private",
|
|
39746
|
+
"parameters": [
|
|
39747
|
+
{
|
|
39748
|
+
"name": "event",
|
|
39749
|
+
"type": {
|
|
39750
|
+
"text": "Event"
|
|
39751
|
+
},
|
|
39752
|
+
"description": "Event which contains information about the value change."
|
|
39753
|
+
}
|
|
39754
|
+
],
|
|
39755
|
+
"description": "Handles the change event of the input field.\nUpdates the value and sets the validity of the input field.\n\nThe 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed",
|
|
39756
|
+
"inheritedFrom": {
|
|
39757
|
+
"name": "Input",
|
|
39758
|
+
"module": "components/input/input.component.js"
|
|
39759
|
+
}
|
|
39760
|
+
},
|
|
39761
|
+
{
|
|
39762
|
+
"kind": "method",
|
|
39763
|
+
"name": "renderLeadingIcon",
|
|
39764
|
+
"privacy": "protected",
|
|
39765
|
+
"description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
|
|
39834
39766
|
"return": {
|
|
39835
39767
|
"type": {
|
|
39836
|
-
"text": "
|
|
39768
|
+
"text": ""
|
|
39837
39769
|
}
|
|
39838
39770
|
},
|
|
39839
39771
|
"inheritedFrom": {
|
|
39840
|
-
"name": "
|
|
39841
|
-
"module": "
|
|
39772
|
+
"name": "Input",
|
|
39773
|
+
"module": "components/input/input.component.js"
|
|
39842
39774
|
}
|
|
39843
39775
|
},
|
|
39844
39776
|
{
|
|
39845
39777
|
"kind": "method",
|
|
39846
|
-
"name": "
|
|
39778
|
+
"name": "renderPrefixText",
|
|
39779
|
+
"privacy": "protected",
|
|
39780
|
+
"description": "Renders the prefix text before the input field.\nIf the prefix text is more than 10 characters,\n- it will not be displayed.\n- the validation messsage will be displayed.\n\n Note: We are setting aria-hidden so that the screen reader does not read the prefix text.\n The consumers should set the appropriate aria-label for the input field using 'data-aria-label' attribute.",
|
|
39781
|
+
"return": {
|
|
39782
|
+
"type": {
|
|
39783
|
+
"text": ""
|
|
39784
|
+
}
|
|
39785
|
+
},
|
|
39847
39786
|
"inheritedFrom": {
|
|
39848
|
-
"name": "
|
|
39849
|
-
"module": "
|
|
39787
|
+
"name": "Input",
|
|
39788
|
+
"module": "components/input/input.component.js"
|
|
39850
39789
|
}
|
|
39851
39790
|
},
|
|
39852
39791
|
{
|
|
39853
|
-
"kind": "
|
|
39854
|
-
"name": "
|
|
39855
|
-
"
|
|
39856
|
-
|
|
39792
|
+
"kind": "method",
|
|
39793
|
+
"name": "renderTrailingButton",
|
|
39794
|
+
"privacy": "protected",
|
|
39795
|
+
"parameters": [
|
|
39796
|
+
{
|
|
39797
|
+
"name": "show",
|
|
39798
|
+
"default": "false"
|
|
39799
|
+
}
|
|
39800
|
+
],
|
|
39801
|
+
"description": "Renders the trailing button to clear the input field if the trailingButton is set to true.",
|
|
39802
|
+
"return": {
|
|
39803
|
+
"type": {
|
|
39804
|
+
"text": ""
|
|
39805
|
+
}
|
|
39857
39806
|
},
|
|
39858
|
-
"default": "null",
|
|
39859
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
|
39860
|
-
"attribute": "data-aria-label",
|
|
39861
|
-
"reflects": true,
|
|
39862
39807
|
"inheritedFrom": {
|
|
39863
|
-
"name": "
|
|
39864
|
-
"module": "
|
|
39808
|
+
"name": "Input",
|
|
39809
|
+
"module": "components/input/input.component.js"
|
|
39810
|
+
}
|
|
39811
|
+
},
|
|
39812
|
+
{
|
|
39813
|
+
"kind": "method",
|
|
39814
|
+
"name": "renderInputElement",
|
|
39815
|
+
"privacy": "protected",
|
|
39816
|
+
"parameters": [
|
|
39817
|
+
{
|
|
39818
|
+
"name": "type",
|
|
39819
|
+
"type": {
|
|
39820
|
+
"text": "InputType"
|
|
39821
|
+
}
|
|
39822
|
+
},
|
|
39823
|
+
{
|
|
39824
|
+
"name": "hidePlaceholder",
|
|
39825
|
+
"default": "false"
|
|
39826
|
+
}
|
|
39827
|
+
],
|
|
39828
|
+
"inheritedFrom": {
|
|
39829
|
+
"name": "Input",
|
|
39830
|
+
"module": "components/input/input.component.js"
|
|
39865
39831
|
}
|
|
39866
39832
|
},
|
|
39867
39833
|
{
|
|
@@ -40100,90 +40066,71 @@
|
|
|
40100
40066
|
],
|
|
40101
40067
|
"events": [
|
|
40102
40068
|
{
|
|
40103
|
-
"
|
|
40104
|
-
"type": {
|
|
40105
|
-
"text": "CustomEvent"
|
|
40106
|
-
},
|
|
40107
|
-
"description": "(React: onChange) This event is dispatched when the select is changed.",
|
|
40108
|
-
"reactName": "onChange"
|
|
40109
|
-
},
|
|
40110
|
-
{
|
|
40069
|
+
"description": "(React: onInput) This event is dispatched when the value of the input field changes (every press).",
|
|
40111
40070
|
"name": "input",
|
|
40112
|
-
"
|
|
40113
|
-
|
|
40114
|
-
|
|
40115
|
-
|
|
40116
|
-
|
|
40117
|
-
},
|
|
40118
|
-
{
|
|
40119
|
-
"description": "(React: onClick) This event is dispatched when the select is clicked.",
|
|
40120
|
-
"name": "click",
|
|
40121
|
-
"reactName": "onClick"
|
|
40071
|
+
"reactName": "onInput",
|
|
40072
|
+
"inheritedFrom": {
|
|
40073
|
+
"name": "Input",
|
|
40074
|
+
"module": "src/components/input/input.component.ts"
|
|
40075
|
+
}
|
|
40122
40076
|
},
|
|
40123
40077
|
{
|
|
40124
|
-
"description": "(React:
|
|
40125
|
-
"name": "
|
|
40126
|
-
"reactName": "
|
|
40078
|
+
"description": "(React: onChange) This event is dispatched when the value of the input field changes (on blur).",
|
|
40079
|
+
"name": "change",
|
|
40080
|
+
"reactName": "onChange",
|
|
40081
|
+
"inheritedFrom": {
|
|
40082
|
+
"name": "Input",
|
|
40083
|
+
"module": "src/components/input/input.component.ts"
|
|
40084
|
+
}
|
|
40127
40085
|
},
|
|
40128
40086
|
{
|
|
40129
|
-
"description": "(React: onFocus) This event is dispatched when the
|
|
40087
|
+
"description": "(React: onFocus) This event is dispatched when the input receives focus.",
|
|
40130
40088
|
"name": "focus",
|
|
40131
|
-
"reactName": "onFocus"
|
|
40132
|
-
|
|
40133
|
-
|
|
40134
|
-
|
|
40135
|
-
|
|
40136
|
-
"name": "placeholder",
|
|
40137
|
-
"type": {
|
|
40138
|
-
"text": "string | undefined"
|
|
40139
|
-
},
|
|
40140
|
-
"description": "The placeholder text which will be shown on the text if provided.",
|
|
40141
|
-
"fieldName": "placeholder"
|
|
40142
|
-
},
|
|
40143
|
-
{
|
|
40144
|
-
"name": "placement",
|
|
40145
|
-
"type": {
|
|
40146
|
-
"text": "Placement"
|
|
40147
|
-
},
|
|
40148
|
-
"description": "The placement of the popover within Select component.\nThis defines the position of the popover relative to the select input field.\n\nPossible values:\n - 'top-start'\n - 'bottom-start'",
|
|
40149
|
-
"default": "'bottom-start'",
|
|
40150
|
-
"fieldName": "placement"
|
|
40151
|
-
},
|
|
40152
|
-
{
|
|
40153
|
-
"name": "boundary",
|
|
40154
|
-
"type": {
|
|
40155
|
-
"text": "'clippingAncestors' | string"
|
|
40156
|
-
},
|
|
40157
|
-
"description": "This describes the clipping element(s) or area that overflow of the used popover will be checked relative to.\nThe default is 'clippingAncestors', which are the overflow ancestors which will cause the\nelement to be clipped.\n\nPossible values:\n - 'clippingAncestors'\n - any css selector",
|
|
40158
|
-
"default": "'clippingAncestors'",
|
|
40159
|
-
"fieldName": "boundary"
|
|
40089
|
+
"reactName": "onFocus",
|
|
40090
|
+
"inheritedFrom": {
|
|
40091
|
+
"name": "Input",
|
|
40092
|
+
"module": "src/components/input/input.component.ts"
|
|
40093
|
+
}
|
|
40160
40094
|
},
|
|
40161
40095
|
{
|
|
40162
|
-
"
|
|
40163
|
-
"
|
|
40164
|
-
|
|
40165
|
-
|
|
40166
|
-
|
|
40167
|
-
|
|
40168
|
-
|
|
40096
|
+
"description": "(React: onBlur) This event is dispatched when the input loses focus.",
|
|
40097
|
+
"name": "blur",
|
|
40098
|
+
"reactName": "onBlur",
|
|
40099
|
+
"inheritedFrom": {
|
|
40100
|
+
"name": "Input",
|
|
40101
|
+
"module": "src/components/input/input.component.ts"
|
|
40102
|
+
}
|
|
40169
40103
|
},
|
|
40170
40104
|
{
|
|
40171
|
-
"name": "
|
|
40105
|
+
"name": "clear",
|
|
40172
40106
|
"type": {
|
|
40173
|
-
"text": "
|
|
40107
|
+
"text": "CustomEvent"
|
|
40174
40108
|
},
|
|
40175
|
-
"description": "
|
|
40176
|
-
"
|
|
40177
|
-
"
|
|
40109
|
+
"description": "(React: onClear) This event is dispatched when the input text is cleared.",
|
|
40110
|
+
"reactName": "onClear",
|
|
40111
|
+
"inheritedFrom": {
|
|
40112
|
+
"name": "Input",
|
|
40113
|
+
"module": "src/components/input/input.component.ts"
|
|
40114
|
+
}
|
|
40178
40115
|
},
|
|
40179
40116
|
{
|
|
40180
|
-
"name": "backdrop-append-to",
|
|
40181
40117
|
"type": {
|
|
40182
|
-
"text": "
|
|
40118
|
+
"text": "EventConstructor"
|
|
40183
40119
|
},
|
|
40184
|
-
"
|
|
40185
|
-
|
|
40186
|
-
|
|
40120
|
+
"inheritedFrom": {
|
|
40121
|
+
"name": "Input",
|
|
40122
|
+
"module": "src/components/input/input.component.ts"
|
|
40123
|
+
}
|
|
40124
|
+
}
|
|
40125
|
+
],
|
|
40126
|
+
"superclass": {
|
|
40127
|
+
"name": "Input",
|
|
40128
|
+
"module": "/src/components/input/input.component"
|
|
40129
|
+
},
|
|
40130
|
+
"tagName": "mdc-searchfield",
|
|
40131
|
+
"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 * @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-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected 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 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 */",
|
|
40132
|
+
"customElement": true,
|
|
40133
|
+
"attributes": [
|
|
40187
40134
|
{
|
|
40188
40135
|
"name": "auto-focus-on-mount",
|
|
40189
40136
|
"type": {
|
|
@@ -40248,6 +40195,168 @@
|
|
|
40248
40195
|
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
|
40249
40196
|
}
|
|
40250
40197
|
},
|
|
40198
|
+
{
|
|
40199
|
+
"name": "placeholder",
|
|
40200
|
+
"type": {
|
|
40201
|
+
"text": "string"
|
|
40202
|
+
},
|
|
40203
|
+
"default": "''",
|
|
40204
|
+
"description": "The placeholder text that is displayed when the input field is empty.",
|
|
40205
|
+
"fieldName": "placeholder",
|
|
40206
|
+
"inheritedFrom": {
|
|
40207
|
+
"name": "Input",
|
|
40208
|
+
"module": "src/components/input/input.component.ts"
|
|
40209
|
+
}
|
|
40210
|
+
},
|
|
40211
|
+
{
|
|
40212
|
+
"name": "prefix-text",
|
|
40213
|
+
"type": {
|
|
40214
|
+
"text": "string | undefined"
|
|
40215
|
+
},
|
|
40216
|
+
"description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
|
|
40217
|
+
"fieldName": "prefixText",
|
|
40218
|
+
"inheritedFrom": {
|
|
40219
|
+
"name": "Input",
|
|
40220
|
+
"module": "src/components/input/input.component.ts"
|
|
40221
|
+
}
|
|
40222
|
+
},
|
|
40223
|
+
{
|
|
40224
|
+
"name": "leading-icon",
|
|
40225
|
+
"type": {
|
|
40226
|
+
"text": "IconNames | undefined"
|
|
40227
|
+
},
|
|
40228
|
+
"description": "The leading icon that is displayed before the input field.",
|
|
40229
|
+
"fieldName": "leadingIcon",
|
|
40230
|
+
"inheritedFrom": {
|
|
40231
|
+
"name": "Input",
|
|
40232
|
+
"module": "src/components/input/input.component.ts"
|
|
40233
|
+
}
|
|
40234
|
+
},
|
|
40235
|
+
{
|
|
40236
|
+
"name": "trailing-button",
|
|
40237
|
+
"type": {
|
|
40238
|
+
"text": "boolean"
|
|
40239
|
+
},
|
|
40240
|
+
"default": "false",
|
|
40241
|
+
"description": "The trailing button when set to true, shows a clear button that clears the input field.",
|
|
40242
|
+
"fieldName": "trailingButton",
|
|
40243
|
+
"inheritedFrom": {
|
|
40244
|
+
"name": "Input",
|
|
40245
|
+
"module": "src/components/input/input.component.ts"
|
|
40246
|
+
}
|
|
40247
|
+
},
|
|
40248
|
+
{
|
|
40249
|
+
"name": "maxlength",
|
|
40250
|
+
"type": {
|
|
40251
|
+
"text": "number | undefined"
|
|
40252
|
+
},
|
|
40253
|
+
"description": "The maximum number of characters that the input field can accept.",
|
|
40254
|
+
"fieldName": "maxlength",
|
|
40255
|
+
"inheritedFrom": {
|
|
40256
|
+
"name": "Input",
|
|
40257
|
+
"module": "src/components/input/input.component.ts"
|
|
40258
|
+
}
|
|
40259
|
+
},
|
|
40260
|
+
{
|
|
40261
|
+
"name": "minlength",
|
|
40262
|
+
"type": {
|
|
40263
|
+
"text": "number | undefined"
|
|
40264
|
+
},
|
|
40265
|
+
"description": "The minimum number of characters that the input field can accept.",
|
|
40266
|
+
"fieldName": "minlength",
|
|
40267
|
+
"inheritedFrom": {
|
|
40268
|
+
"name": "Input",
|
|
40269
|
+
"module": "src/components/input/input.component.ts"
|
|
40270
|
+
}
|
|
40271
|
+
},
|
|
40272
|
+
{
|
|
40273
|
+
"name": "autocapitalize",
|
|
40274
|
+
"type": {
|
|
40275
|
+
"text": "AutoCapitalizeType"
|
|
40276
|
+
},
|
|
40277
|
+
"description": "The autocapitalize attribute of the input field.",
|
|
40278
|
+
"default": "'off'",
|
|
40279
|
+
"fieldName": "autocapitalize",
|
|
40280
|
+
"inheritedFrom": {
|
|
40281
|
+
"name": "Input",
|
|
40282
|
+
"module": "src/components/input/input.component.ts"
|
|
40283
|
+
}
|
|
40284
|
+
},
|
|
40285
|
+
{
|
|
40286
|
+
"name": "autocomplete",
|
|
40287
|
+
"type": {
|
|
40288
|
+
"text": "AutoCompleteType"
|
|
40289
|
+
},
|
|
40290
|
+
"description": "The autocomplete attribute of the input field.",
|
|
40291
|
+
"default": "'off'",
|
|
40292
|
+
"fieldName": "autocomplete",
|
|
40293
|
+
"inheritedFrom": {
|
|
40294
|
+
"name": "Input",
|
|
40295
|
+
"module": "src/components/input/input.component.ts"
|
|
40296
|
+
}
|
|
40297
|
+
},
|
|
40298
|
+
{
|
|
40299
|
+
"name": "dirname",
|
|
40300
|
+
"type": {
|
|
40301
|
+
"text": "string | undefined"
|
|
40302
|
+
},
|
|
40303
|
+
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
40304
|
+
"fieldName": "dirname",
|
|
40305
|
+
"inheritedFrom": {
|
|
40306
|
+
"name": "Input",
|
|
40307
|
+
"module": "src/components/input/input.component.ts"
|
|
40308
|
+
}
|
|
40309
|
+
},
|
|
40310
|
+
{
|
|
40311
|
+
"name": "pattern",
|
|
40312
|
+
"type": {
|
|
40313
|
+
"text": "string | undefined"
|
|
40314
|
+
},
|
|
40315
|
+
"description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
|
|
40316
|
+
"fieldName": "pattern",
|
|
40317
|
+
"inheritedFrom": {
|
|
40318
|
+
"name": "Input",
|
|
40319
|
+
"module": "src/components/input/input.component.ts"
|
|
40320
|
+
}
|
|
40321
|
+
},
|
|
40322
|
+
{
|
|
40323
|
+
"name": "list",
|
|
40324
|
+
"type": {
|
|
40325
|
+
"text": "string | undefined"
|
|
40326
|
+
},
|
|
40327
|
+
"description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
|
|
40328
|
+
"fieldName": "list",
|
|
40329
|
+
"inheritedFrom": {
|
|
40330
|
+
"name": "Input",
|
|
40331
|
+
"module": "src/components/input/input.component.ts"
|
|
40332
|
+
}
|
|
40333
|
+
},
|
|
40334
|
+
{
|
|
40335
|
+
"name": "size",
|
|
40336
|
+
"type": {
|
|
40337
|
+
"text": "number | undefined | undefined"
|
|
40338
|
+
},
|
|
40339
|
+
"description": "The size attribute of the input field.\nSpecifies the width of the input field.",
|
|
40340
|
+
"default": "undefined",
|
|
40341
|
+
"fieldName": "size",
|
|
40342
|
+
"inheritedFrom": {
|
|
40343
|
+
"name": "Input",
|
|
40344
|
+
"module": "src/components/input/input.component.ts"
|
|
40345
|
+
}
|
|
40346
|
+
},
|
|
40347
|
+
{
|
|
40348
|
+
"name": "clear-aria-label",
|
|
40349
|
+
"type": {
|
|
40350
|
+
"text": "string"
|
|
40351
|
+
},
|
|
40352
|
+
"default": "''",
|
|
40353
|
+
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
40354
|
+
"fieldName": "clearAriaLabel",
|
|
40355
|
+
"inheritedFrom": {
|
|
40356
|
+
"name": "Input",
|
|
40357
|
+
"module": "src/components/input/input.component.ts"
|
|
40358
|
+
}
|
|
40359
|
+
},
|
|
40251
40360
|
{
|
|
40252
40361
|
"name": "disabled",
|
|
40253
40362
|
"type": {
|
|
@@ -40384,36 +40493,7 @@
|
|
|
40384
40493
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
40385
40494
|
}
|
|
40386
40495
|
}
|
|
40387
|
-
]
|
|
40388
|
-
"mixins": [
|
|
40389
|
-
{
|
|
40390
|
-
"name": "ListNavigationMixin",
|
|
40391
|
-
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
40392
|
-
},
|
|
40393
|
-
{
|
|
40394
|
-
"name": "CaptureDestroyEventForChildElement",
|
|
40395
|
-
"module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
|
|
40396
|
-
},
|
|
40397
|
-
{
|
|
40398
|
-
"name": "AutoFocusOnMountMixin",
|
|
40399
|
-
"module": "/src/utils/mixins/AutoFocusOnMountMixin"
|
|
40400
|
-
},
|
|
40401
|
-
{
|
|
40402
|
-
"name": "FormInternalsMixin",
|
|
40403
|
-
"module": "/src/utils/mixins/FormInternalsMixin"
|
|
40404
|
-
},
|
|
40405
|
-
{
|
|
40406
|
-
"name": "DataAriaLabelMixin",
|
|
40407
|
-
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
|
40408
|
-
}
|
|
40409
|
-
],
|
|
40410
|
-
"superclass": {
|
|
40411
|
-
"name": "FormfieldWrapper",
|
|
40412
|
-
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
40413
|
-
},
|
|
40414
|
-
"tagName": "mdc-select",
|
|
40415
|
-
"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 * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-select-background-color - The background color of the combobox of select.\n * @cssproperty --mdc-select-text-color - The text color of the select.\n * @cssproperty --mdc-select-border-color - The border color of the select.\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 */",
|
|
40416
|
-
"customElement": true
|
|
40496
|
+
]
|
|
40417
40497
|
}
|
|
40418
40498
|
],
|
|
40419
40499
|
"exports": [
|
|
@@ -40421,8 +40501,8 @@
|
|
|
40421
40501
|
"kind": "js",
|
|
40422
40502
|
"name": "default",
|
|
40423
40503
|
"declaration": {
|
|
40424
|
-
"name": "
|
|
40425
|
-
"module": "components/
|
|
40504
|
+
"name": "Searchfield",
|
|
40505
|
+
"module": "components/searchfield/searchfield.component.js"
|
|
40426
40506
|
}
|
|
40427
40507
|
}
|
|
40428
40508
|
]
|
|
@@ -41697,40 +41777,20 @@
|
|
|
41697
41777
|
"name": "StaticCheckbox",
|
|
41698
41778
|
"cssProperties": [
|
|
41699
41779
|
{
|
|
41700
|
-
"description": "
|
|
41701
|
-
"name": "--mdc-
|
|
41780
|
+
"description": "Controls the border color of the checkbox.",
|
|
41781
|
+
"name": "--mdc-checkbox-border-color"
|
|
41702
41782
|
},
|
|
41703
41783
|
{
|
|
41704
|
-
"description": "
|
|
41705
|
-
"name": "--mdc-
|
|
41784
|
+
"description": "Controls the background color of the checkbox.",
|
|
41785
|
+
"name": "--mdc-checkbox-background-color"
|
|
41706
41786
|
},
|
|
41707
41787
|
{
|
|
41708
|
-
"description": "
|
|
41709
|
-
"name": "--mdc-
|
|
41788
|
+
"description": "Controls the icon color of the checkbox.",
|
|
41789
|
+
"name": "--mdc-checkbox-icon-color"
|
|
41710
41790
|
},
|
|
41711
41791
|
{
|
|
41712
|
-
"description": "
|
|
41713
|
-
"name": "--mdc-checkbox-
|
|
41714
|
-
},
|
|
41715
|
-
{
|
|
41716
|
-
"description": "Background color for a disabled, selected checkbox.",
|
|
41717
|
-
"name": "--mdc-checkbox-disabled-checked-icon-color"
|
|
41718
|
-
},
|
|
41719
|
-
{
|
|
41720
|
-
"description": "Icon color for a disabled checkbox.",
|
|
41721
|
-
"name": "--mdc-staticcheckbox-disabled-icon-color"
|
|
41722
|
-
},
|
|
41723
|
-
{
|
|
41724
|
-
"description": "Background color for an unselected checkbox.",
|
|
41725
|
-
"name": "--mdc-staticcheckbox-icon-background-color"
|
|
41726
|
-
},
|
|
41727
|
-
{
|
|
41728
|
-
"description": "Default background color for an unselected checkbox.",
|
|
41729
|
-
"name": "--mdc-staticcheckbox-icon-border-color"
|
|
41730
|
-
},
|
|
41731
|
-
{
|
|
41732
|
-
"description": "Icon color for an unselected checkbox.",
|
|
41733
|
-
"name": "--mdc-staticcheckbox-icon-color"
|
|
41792
|
+
"description": "Controls the size of the checkbox.",
|
|
41793
|
+
"name": "--mdc-checkbox-size"
|
|
41734
41794
|
}
|
|
41735
41795
|
],
|
|
41736
41796
|
"cssParts": [
|
|
@@ -41872,7 +41932,7 @@
|
|
|
41872
41932
|
"module": "/src/models"
|
|
41873
41933
|
},
|
|
41874
41934
|
"tagName": "mdc-staticcheckbox",
|
|
41875
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 5 properties - checked, indeterminate, disabled, readonly and soft-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-
|
|
41935
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 5 properties - checked, indeterminate, disabled, readonly and soft-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-checkbox-border-color - Controls the border color of the checkbox.\n * @cssproperty --mdc-checkbox-background-color - Controls the background color of the checkbox.\n * @cssproperty --mdc-checkbox-icon-color - Controls the icon color of the checkbox.\n * @cssproperty --mdc-checkbox-size - Controls the size of the 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 */",
|
|
41876
41936
|
"customElement": true
|
|
41877
41937
|
}
|
|
41878
41938
|
],
|
|
@@ -42031,43 +42091,23 @@
|
|
|
42031
42091
|
"cssProperties": [
|
|
42032
42092
|
{
|
|
42033
42093
|
"description": "size of the inner circle",
|
|
42034
|
-
"name": "--mdc-
|
|
42035
|
-
},
|
|
42036
|
-
{
|
|
42037
|
-
"description": "color of the label when disabled",
|
|
42038
|
-
"name": "--mdc-staticradio-text-disabled-color"
|
|
42039
|
-
},
|
|
42040
|
-
{
|
|
42041
|
-
"description": "color of the radio button border when normal",
|
|
42042
|
-
"name": "--mdc-staticradio-normal-border-color"
|
|
42043
|
-
},
|
|
42044
|
-
{
|
|
42045
|
-
"description": "color of the radio button border when disabled",
|
|
42046
|
-
"name": "--mdc-staticradio-disabled-border-color"
|
|
42094
|
+
"name": "--mdc-radio-inner-circle-size"
|
|
42047
42095
|
},
|
|
42048
42096
|
{
|
|
42049
|
-
"description": "
|
|
42050
|
-
"name": "--mdc-
|
|
42097
|
+
"description": "size of the outer circle",
|
|
42098
|
+
"name": "--mdc-radio-outer-circle-size"
|
|
42051
42099
|
},
|
|
42052
42100
|
{
|
|
42053
|
-
"description": "background color of the inner circle
|
|
42054
|
-
"name": "--mdc-
|
|
42101
|
+
"description": "background color of the inner circle",
|
|
42102
|
+
"name": "--mdc-radio-inner-circle-background-color"
|
|
42055
42103
|
},
|
|
42056
42104
|
{
|
|
42057
|
-
"description": "color of the
|
|
42058
|
-
"name": "--mdc-
|
|
42105
|
+
"description": "border color of the outer circle",
|
|
42106
|
+
"name": "--mdc-radio-outer-circle-border-color"
|
|
42059
42107
|
},
|
|
42060
42108
|
{
|
|
42061
|
-
"description": "background color of the
|
|
42062
|
-
"name": "--mdc-
|
|
42063
|
-
},
|
|
42064
|
-
{
|
|
42065
|
-
"description": "color of the radio button when active",
|
|
42066
|
-
"name": "--mdc-staticradio-control-active-color"
|
|
42067
|
-
},
|
|
42068
|
-
{
|
|
42069
|
-
"description": "background color of the radio button when active and disabled",
|
|
42070
|
-
"name": "--mdc-staticradio-control-active-disabled-background"
|
|
42109
|
+
"description": "background color of the outer circle",
|
|
42110
|
+
"name": "--mdc-radio-outer-circle-background-color"
|
|
42071
42111
|
}
|
|
42072
42112
|
],
|
|
42073
42113
|
"cssParts": [
|
|
@@ -42185,7 +42225,7 @@
|
|
|
42185
42225
|
"module": "/src/models"
|
|
42186
42226
|
},
|
|
42187
42227
|
"tagName": "mdc-staticradio",
|
|
42188
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 4 properties - checked, disabled, readonly and soft-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-
|
|
42228
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 4 properties - checked, disabled, readonly and soft-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-radio-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-radio-outer-circle-size - size of the outer circle\n * @cssproperty --mdc-radio-inner-circle-background-color - background color of the inner circle\n * @cssproperty --mdc-radio-outer-circle-border-color - border color of the outer circle\n * @cssproperty --mdc-radio-outer-circle-background-color - background color of the outer circle\n *\n * @csspart radio-icon - The radio icon.\n *\n * @slot - Default slot for the label of the radio.\n */",
|
|
42189
42229
|
"customElement": true
|
|
42190
42230
|
}
|
|
42191
42231
|
],
|
|
@@ -42210,64 +42250,32 @@
|
|
|
42210
42250
|
"name": "StaticToggle",
|
|
42211
42251
|
"cssProperties": [
|
|
42212
42252
|
{
|
|
42213
|
-
"description": "
|
|
42214
|
-
"name": "--mdc-
|
|
42215
|
-
},
|
|
42216
|
-
{
|
|
42217
|
-
"description": "Height of the toggle",
|
|
42218
|
-
"name": "--mdc-statictoggle-height"
|
|
42219
|
-
},
|
|
42220
|
-
{
|
|
42221
|
-
"description": "Width of the toggle when it's size is compact",
|
|
42222
|
-
"name": "--mdc-statictoggle-width-compact"
|
|
42223
|
-
},
|
|
42224
|
-
{
|
|
42225
|
-
"description": "Height of the toggle when it's size is compact",
|
|
42226
|
-
"name": "--mdc-statictoggle-height-compact"
|
|
42227
|
-
},
|
|
42228
|
-
{
|
|
42229
|
-
"description": "Border radius of the toggle",
|
|
42230
|
-
"name": "--mdc-statictoggle-border-radius"
|
|
42231
|
-
},
|
|
42232
|
-
{
|
|
42233
|
-
"description": "Border radius of the toggle when it's size is compact",
|
|
42234
|
-
"name": "--mdc-statictoggle-border-radius-compact"
|
|
42235
|
-
},
|
|
42236
|
-
{
|
|
42237
|
-
"description": "Border of the toggle",
|
|
42238
|
-
"name": "--mdc-statictoggle-border"
|
|
42239
|
-
},
|
|
42240
|
-
{
|
|
42241
|
-
"description": "Background color of the inactive toggle in rest state",
|
|
42242
|
-
"name": "--mdc-statictoggle-inactive-rest-color"
|
|
42243
|
-
},
|
|
42244
|
-
{
|
|
42245
|
-
"description": "Background color of the inactive toggle in disabled state",
|
|
42246
|
-
"name": "--mdc-statictoggle-inactive-disabled-color"
|
|
42253
|
+
"description": "The width of the toggle",
|
|
42254
|
+
"name": "--mdc-toggle-width"
|
|
42247
42255
|
},
|
|
42248
42256
|
{
|
|
42249
|
-
"description": "
|
|
42250
|
-
"name": "--mdc-
|
|
42257
|
+
"description": "The height of the toggle",
|
|
42258
|
+
"name": "--mdc-toggle-height"
|
|
42251
42259
|
},
|
|
42252
42260
|
{
|
|
42253
|
-
"description": "
|
|
42254
|
-
"name": "--mdc-
|
|
42261
|
+
"description": "The border radius of the toggle",
|
|
42262
|
+
"name": "--mdc-toggle-border-radius"
|
|
42255
42263
|
},
|
|
42256
42264
|
{
|
|
42257
|
-
"description": "
|
|
42258
|
-
"name": "--mdc-
|
|
42265
|
+
"description": "The border color of the toggle",
|
|
42266
|
+
"name": "--mdc-toggle-border-color"
|
|
42259
42267
|
},
|
|
42260
42268
|
{
|
|
42261
|
-
"description": "
|
|
42262
|
-
"name": "--mdc-
|
|
42269
|
+
"description": "The background color of the toggle",
|
|
42270
|
+
"name": "--mdc-toggle-background-color"
|
|
42263
42271
|
},
|
|
42264
42272
|
{
|
|
42265
|
-
"description": "
|
|
42266
|
-
"name": "--mdc-
|
|
42273
|
+
"description": "The icon color of the toggle",
|
|
42274
|
+
"name": "--mdc-toggle-icon-color"
|
|
42267
42275
|
},
|
|
42268
42276
|
{
|
|
42269
|
-
"description": "
|
|
42270
|
-
"name": "--mdc-
|
|
42277
|
+
"description": "The icon background color of the toggle",
|
|
42278
|
+
"name": "--mdc-toggle-icon-background-color"
|
|
42271
42279
|
}
|
|
42272
42280
|
],
|
|
42273
42281
|
"cssParts": [
|
|
@@ -42413,7 +42421,7 @@
|
|
|
42413
42421
|
"module": "/src/models"
|
|
42414
42422
|
},
|
|
42415
42423
|
"tagName": "mdc-statictoggle",
|
|
42416
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 5 properties - checked, size, disabled, readonly and soft-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-
|
|
42424
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 5 properties - checked, size, disabled, readonly and soft-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-toggle-width - The width of the toggle\n * @cssproperty --mdc-toggle-height - The height of the toggle\n * @cssproperty --mdc-toggle-border-radius - The border radius of the toggle\n * @cssproperty --mdc-toggle-border-color - The border color of the toggle\n * @cssproperty --mdc-toggle-background-color - The background color of the toggle\n * @cssproperty --mdc-toggle-icon-color - The icon color of the toggle\n * @cssproperty --mdc-toggle-icon-background-color - The icon background color of the toggle\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 */",
|
|
42417
42425
|
"customElement": true
|
|
42418
42426
|
}
|
|
42419
42427
|
],
|
|
@@ -42910,106 +42918,6 @@
|
|
|
42910
42918
|
}
|
|
42911
42919
|
]
|
|
42912
42920
|
},
|
|
42913
|
-
{
|
|
42914
|
-
"kind": "javascript-module",
|
|
42915
|
-
"path": "components/tablist/tablist.component.js",
|
|
42916
|
-
"declarations": [
|
|
42917
|
-
{
|
|
42918
|
-
"kind": "class",
|
|
42919
|
-
"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`.",
|
|
42920
|
-
"name": "TabList",
|
|
42921
|
-
"cssProperties": [
|
|
42922
|
-
{
|
|
42923
|
-
"description": "Gap between tabs",
|
|
42924
|
-
"name": "--mdc-tablist-gap"
|
|
42925
|
-
},
|
|
42926
|
-
{
|
|
42927
|
-
"description": "Width of the tablist",
|
|
42928
|
-
"name": "--mdc-tablist-width"
|
|
42929
|
-
},
|
|
42930
|
-
{
|
|
42931
|
-
"description": "Margin value for the arrow button",
|
|
42932
|
-
"name": "--mdc-tablist-arrow-button-margin"
|
|
42933
|
-
}
|
|
42934
|
-
],
|
|
42935
|
-
"cssParts": [
|
|
42936
|
-
{
|
|
42937
|
-
"description": "The tablist container.",
|
|
42938
|
-
"name": "container"
|
|
42939
|
-
}
|
|
42940
|
-
],
|
|
42941
|
-
"slots": [
|
|
42942
|
-
{
|
|
42943
|
-
"description": "slot for mdc-tab elements.",
|
|
42944
|
-
"name": "Default"
|
|
42945
|
-
}
|
|
42946
|
-
],
|
|
42947
|
-
"members": [
|
|
42948
|
-
{
|
|
42949
|
-
"kind": "field",
|
|
42950
|
-
"name": "activeTabId",
|
|
42951
|
-
"type": {
|
|
42952
|
-
"text": "string | undefined"
|
|
42953
|
-
},
|
|
42954
|
-
"description": "ID of the active tab, defaults to the first tab if not provided",
|
|
42955
|
-
"attribute": "active-tab-id",
|
|
42956
|
-
"reflects": true
|
|
42957
|
-
},
|
|
42958
|
-
{
|
|
42959
|
-
"kind": "field",
|
|
42960
|
-
"name": "dataAriaLabel",
|
|
42961
|
-
"type": {
|
|
42962
|
-
"text": "string | undefined"
|
|
42963
|
-
},
|
|
42964
|
-
"description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
|
|
42965
|
-
"attribute": "data-aria-label"
|
|
42966
|
-
}
|
|
42967
|
-
],
|
|
42968
|
-
"events": [
|
|
42969
|
-
{
|
|
42970
|
-
"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);`",
|
|
42971
|
-
"name": "change",
|
|
42972
|
-
"reactName": "onChange"
|
|
42973
|
-
}
|
|
42974
|
-
],
|
|
42975
|
-
"attributes": [
|
|
42976
|
-
{
|
|
42977
|
-
"name": "active-tab-id",
|
|
42978
|
-
"type": {
|
|
42979
|
-
"text": "string | undefined"
|
|
42980
|
-
},
|
|
42981
|
-
"description": "ID of the active tab, defaults to the first tab if not provided",
|
|
42982
|
-
"fieldName": "activeTabId"
|
|
42983
|
-
},
|
|
42984
|
-
{
|
|
42985
|
-
"name": "data-aria-label",
|
|
42986
|
-
"type": {
|
|
42987
|
-
"text": "string | undefined"
|
|
42988
|
-
},
|
|
42989
|
-
"description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
|
|
42990
|
-
"fieldName": "dataAriaLabel"
|
|
42991
|
-
}
|
|
42992
|
-
],
|
|
42993
|
-
"superclass": {
|
|
42994
|
-
"name": "Component",
|
|
42995
|
-
"module": "/src/models"
|
|
42996
|
-
},
|
|
42997
|
-
"tagName": "mdc-tablist",
|
|
42998
|
-
"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 */",
|
|
42999
|
-
"customElement": true
|
|
43000
|
-
}
|
|
43001
|
-
],
|
|
43002
|
-
"exports": [
|
|
43003
|
-
{
|
|
43004
|
-
"kind": "js",
|
|
43005
|
-
"name": "default",
|
|
43006
|
-
"declaration": {
|
|
43007
|
-
"name": "TabList",
|
|
43008
|
-
"module": "components/tablist/tablist.component.js"
|
|
43009
|
-
}
|
|
43010
|
-
}
|
|
43011
|
-
]
|
|
43012
|
-
},
|
|
43013
42921
|
{
|
|
43014
42922
|
"kind": "javascript-module",
|
|
43015
42923
|
"path": "components/tab/tab.component.js",
|
|
@@ -43927,6 +43835,106 @@
|
|
|
43927
43835
|
}
|
|
43928
43836
|
]
|
|
43929
43837
|
},
|
|
43838
|
+
{
|
|
43839
|
+
"kind": "javascript-module",
|
|
43840
|
+
"path": "components/tablist/tablist.component.js",
|
|
43841
|
+
"declarations": [
|
|
43842
|
+
{
|
|
43843
|
+
"kind": "class",
|
|
43844
|
+
"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`.",
|
|
43845
|
+
"name": "TabList",
|
|
43846
|
+
"cssProperties": [
|
|
43847
|
+
{
|
|
43848
|
+
"description": "Gap between tabs",
|
|
43849
|
+
"name": "--mdc-tablist-gap"
|
|
43850
|
+
},
|
|
43851
|
+
{
|
|
43852
|
+
"description": "Width of the tablist",
|
|
43853
|
+
"name": "--mdc-tablist-width"
|
|
43854
|
+
},
|
|
43855
|
+
{
|
|
43856
|
+
"description": "Margin value for the arrow button",
|
|
43857
|
+
"name": "--mdc-tablist-arrow-button-margin"
|
|
43858
|
+
}
|
|
43859
|
+
],
|
|
43860
|
+
"cssParts": [
|
|
43861
|
+
{
|
|
43862
|
+
"description": "The tablist container.",
|
|
43863
|
+
"name": "container"
|
|
43864
|
+
}
|
|
43865
|
+
],
|
|
43866
|
+
"slots": [
|
|
43867
|
+
{
|
|
43868
|
+
"description": "slot for mdc-tab elements.",
|
|
43869
|
+
"name": "Default"
|
|
43870
|
+
}
|
|
43871
|
+
],
|
|
43872
|
+
"members": [
|
|
43873
|
+
{
|
|
43874
|
+
"kind": "field",
|
|
43875
|
+
"name": "activeTabId",
|
|
43876
|
+
"type": {
|
|
43877
|
+
"text": "string | undefined"
|
|
43878
|
+
},
|
|
43879
|
+
"description": "ID of the active tab, defaults to the first tab if not provided",
|
|
43880
|
+
"attribute": "active-tab-id",
|
|
43881
|
+
"reflects": true
|
|
43882
|
+
},
|
|
43883
|
+
{
|
|
43884
|
+
"kind": "field",
|
|
43885
|
+
"name": "dataAriaLabel",
|
|
43886
|
+
"type": {
|
|
43887
|
+
"text": "string | undefined"
|
|
43888
|
+
},
|
|
43889
|
+
"description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
|
|
43890
|
+
"attribute": "data-aria-label"
|
|
43891
|
+
}
|
|
43892
|
+
],
|
|
43893
|
+
"events": [
|
|
43894
|
+
{
|
|
43895
|
+
"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);`",
|
|
43896
|
+
"name": "change",
|
|
43897
|
+
"reactName": "onChange"
|
|
43898
|
+
}
|
|
43899
|
+
],
|
|
43900
|
+
"attributes": [
|
|
43901
|
+
{
|
|
43902
|
+
"name": "active-tab-id",
|
|
43903
|
+
"type": {
|
|
43904
|
+
"text": "string | undefined"
|
|
43905
|
+
},
|
|
43906
|
+
"description": "ID of the active tab, defaults to the first tab if not provided",
|
|
43907
|
+
"fieldName": "activeTabId"
|
|
43908
|
+
},
|
|
43909
|
+
{
|
|
43910
|
+
"name": "data-aria-label",
|
|
43911
|
+
"type": {
|
|
43912
|
+
"text": "string | undefined"
|
|
43913
|
+
},
|
|
43914
|
+
"description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
|
|
43915
|
+
"fieldName": "dataAriaLabel"
|
|
43916
|
+
}
|
|
43917
|
+
],
|
|
43918
|
+
"superclass": {
|
|
43919
|
+
"name": "Component",
|
|
43920
|
+
"module": "/src/models"
|
|
43921
|
+
},
|
|
43922
|
+
"tagName": "mdc-tablist",
|
|
43923
|
+
"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 */",
|
|
43924
|
+
"customElement": true
|
|
43925
|
+
}
|
|
43926
|
+
],
|
|
43927
|
+
"exports": [
|
|
43928
|
+
{
|
|
43929
|
+
"kind": "js",
|
|
43930
|
+
"name": "default",
|
|
43931
|
+
"declaration": {
|
|
43932
|
+
"name": "TabList",
|
|
43933
|
+
"module": "components/tablist/tablist.component.js"
|
|
43934
|
+
}
|
|
43935
|
+
}
|
|
43936
|
+
]
|
|
43937
|
+
},
|
|
43930
43938
|
{
|
|
43931
43939
|
"kind": "javascript-module",
|
|
43932
43940
|
"path": "components/text/text.component.js",
|
|
@@ -44084,6 +44092,14 @@
|
|
|
44084
44092
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
44085
44093
|
}
|
|
44086
44094
|
},
|
|
44095
|
+
{
|
|
44096
|
+
"description": "Color for the required indicator text.",
|
|
44097
|
+
"name": "--mdc-required-indicator-color",
|
|
44098
|
+
"inheritedFrom": {
|
|
44099
|
+
"name": "FormfieldWrapper",
|
|
44100
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
44101
|
+
}
|
|
44102
|
+
},
|
|
44087
44103
|
{
|
|
44088
44104
|
"description": "Text color for the textarea field",
|
|
44089
44105
|
"name": "--mdc-textarea-text-color"
|
|
@@ -45119,7 +45135,7 @@
|
|
|
45119
45135
|
"module": "/src/components/formfieldwrapper"
|
|
45120
45136
|
},
|
|
45121
45137
|
"tagName": "mdc-textarea",
|
|
45122
|
-
"jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-text-font-size - Font size for the textarea field\n * @cssproperty --mdc-textarea-text-line-height - Line height for the textarea field\n * @cssproperty --mdc-textarea-container-background-color - Background color for the textarea container\n */",
|
|
45138
|
+
"jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-text-font-size - Font size for the textarea field\n * @cssproperty --mdc-textarea-text-line-height - Line height for the textarea field\n * @cssproperty --mdc-textarea-container-background-color - Background color for the textarea container\n */",
|
|
45123
45139
|
"customElement": true
|
|
45124
45140
|
}
|
|
45125
45141
|
],
|
|
@@ -45644,44 +45660,32 @@
|
|
|
45644
45660
|
"name": "Toggle",
|
|
45645
45661
|
"cssProperties": [
|
|
45646
45662
|
{
|
|
45647
|
-
"description": "
|
|
45663
|
+
"description": "The width of the toggle",
|
|
45648
45664
|
"name": "--mdc-toggle-width"
|
|
45649
45665
|
},
|
|
45650
45666
|
{
|
|
45651
|
-
"description": "
|
|
45667
|
+
"description": "The height of the toggle",
|
|
45652
45668
|
"name": "--mdc-toggle-height"
|
|
45653
45669
|
},
|
|
45654
45670
|
{
|
|
45655
|
-
"description": "
|
|
45656
|
-
"name": "--mdc-toggle-
|
|
45657
|
-
},
|
|
45658
|
-
{
|
|
45659
|
-
"description": "Height of the toggle when it's size is compact",
|
|
45660
|
-
"name": "--mdc-toggle-height-compact"
|
|
45661
|
-
},
|
|
45662
|
-
{
|
|
45663
|
-
"description": "Color of the toggle label and help text in disabled state",
|
|
45664
|
-
"name": "--mdc-toggle-label-color-disabled"
|
|
45665
|
-
},
|
|
45666
|
-
{
|
|
45667
|
-
"description": "Color of the help text label",
|
|
45668
|
-
"name": "--mdc-toggle-help-text-color"
|
|
45671
|
+
"description": "The border radius of the toggle",
|
|
45672
|
+
"name": "--mdc-toggle-border-radius"
|
|
45669
45673
|
},
|
|
45670
45674
|
{
|
|
45671
|
-
"description": "
|
|
45672
|
-
"name": "--mdc-toggle-
|
|
45675
|
+
"description": "The border color of the toggle",
|
|
45676
|
+
"name": "--mdc-toggle-border-color"
|
|
45673
45677
|
},
|
|
45674
45678
|
{
|
|
45675
|
-
"description": "
|
|
45676
|
-
"name": "--mdc-toggle-
|
|
45679
|
+
"description": "The background color of the toggle",
|
|
45680
|
+
"name": "--mdc-toggle-background-color"
|
|
45677
45681
|
},
|
|
45678
45682
|
{
|
|
45679
|
-
"description": "
|
|
45680
|
-
"name": "--mdc-toggle-
|
|
45683
|
+
"description": "The icon color of the toggle",
|
|
45684
|
+
"name": "--mdc-toggle-icon-color"
|
|
45681
45685
|
},
|
|
45682
45686
|
{
|
|
45683
|
-
"description": "
|
|
45684
|
-
"name": "--mdc-toggle-
|
|
45687
|
+
"description": "The icon background color of the toggle",
|
|
45688
|
+
"name": "--mdc-toggle-icon-background-color"
|
|
45685
45689
|
},
|
|
45686
45690
|
{
|
|
45687
45691
|
"description": "Font size for the label text.",
|
|
@@ -45746,6 +45750,14 @@
|
|
|
45746
45750
|
"name": "FormfieldWrapper",
|
|
45747
45751
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
45748
45752
|
}
|
|
45753
|
+
},
|
|
45754
|
+
{
|
|
45755
|
+
"description": "Color for the required indicator text.",
|
|
45756
|
+
"name": "--mdc-required-indicator-color",
|
|
45757
|
+
"inheritedFrom": {
|
|
45758
|
+
"name": "FormfieldWrapper",
|
|
45759
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
45760
|
+
}
|
|
45749
45761
|
}
|
|
45750
45762
|
],
|
|
45751
45763
|
"cssParts": [
|
|
@@ -45814,8 +45826,8 @@
|
|
|
45814
45826
|
}
|
|
45815
45827
|
},
|
|
45816
45828
|
{
|
|
45817
|
-
"description": "The
|
|
45818
|
-
"name": "
|
|
45829
|
+
"description": "The static-toggle element that wraps the toggle input.",
|
|
45830
|
+
"name": "static-toggle"
|
|
45819
45831
|
},
|
|
45820
45832
|
{
|
|
45821
45833
|
"description": "The native checkbox input element styled as a toggle switch.",
|
|
@@ -46537,7 +46549,7 @@
|
|
|
46537
46549
|
"module": "/src/components/formfieldwrapper"
|
|
46538
46550
|
},
|
|
46539
46551
|
"tagName": "mdc-toggle",
|
|
46540
|
-
"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 -
|
|
46552
|
+
"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 - The width of the toggle\n * @cssproperty --mdc-toggle-height - The height of the toggle\n * @cssproperty --mdc-toggle-border-radius - The border radius of the toggle\n * @cssproperty --mdc-toggle-border-color - The border color of the toggle\n * @cssproperty --mdc-toggle-background-color - The background color of the toggle\n * @cssproperty --mdc-toggle-icon-color - The icon color of the toggle\n * @cssproperty --mdc-toggle-icon-background-color - The icon background color of the toggle\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 static-toggle - The static-toggle element that wraps the toggle input.\n * @csspart toggle-input - The native checkbox input element styled as a toggle switch.\n */",
|
|
46541
46553
|
"customElement": true,
|
|
46542
46554
|
"slots": [
|
|
46543
46555
|
{
|