@momentum-design/components 0.120.32 → 0.120.34
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 +12 -2
- package/dist/browser/index.js.map +2 -2
- package/dist/components/avatar/avatar.styles.js +1 -0
- package/dist/components/inputchip/inputchip.component.d.ts +6 -3
- package/dist/components/inputchip/inputchip.component.js +14 -7
- package/dist/components/inputchip/inputchip.styles.js +5 -0
- package/dist/custom-elements.json +1416 -1410
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/dist/react/inputchip/index.d.ts +3 -0
- package/dist/react/inputchip/index.js +3 -0
- package/package.json +1 -1
|
@@ -20172,7 +20172,7 @@
|
|
|
20172
20172
|
"declarations": [
|
|
20173
20173
|
{
|
|
20174
20174
|
"kind": "class",
|
|
20175
|
-
"description": "mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n\n- It supports a leading icon along with label.\n- It supports an error state for validation.\n- It supports a close button to remove the chip.",
|
|
20175
|
+
"description": "mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n\n- It supports a leading icon along with label.\n- It supports a prefix slot for avatars (takes precedence over icon-name).\n- It supports an error state for validation.\n- It supports a close button to remove the chip.",
|
|
20176
20176
|
"name": "InputChip",
|
|
20177
20177
|
"cssProperties": [
|
|
20178
20178
|
{
|
|
@@ -20202,6 +20202,12 @@
|
|
|
20202
20202
|
"name": "close-icon"
|
|
20203
20203
|
}
|
|
20204
20204
|
],
|
|
20205
|
+
"slots": [
|
|
20206
|
+
{
|
|
20207
|
+
"description": "A slot for prefix content such as avatars.",
|
|
20208
|
+
"name": "prefix"
|
|
20209
|
+
}
|
|
20210
|
+
],
|
|
20205
20211
|
"members": [
|
|
20206
20212
|
{
|
|
20207
20213
|
"kind": "field",
|
|
@@ -20235,9 +20241,9 @@
|
|
|
20235
20241
|
},
|
|
20236
20242
|
{
|
|
20237
20243
|
"kind": "method",
|
|
20238
|
-
"name": "
|
|
20244
|
+
"name": "renderPrefix",
|
|
20239
20245
|
"privacy": "private",
|
|
20240
|
-
"description": "Renders the
|
|
20246
|
+
"description": "Renders the prefix content, supporting both icons and slot content.",
|
|
20241
20247
|
"return": {
|
|
20242
20248
|
"type": {
|
|
20243
20249
|
"text": ""
|
|
@@ -20364,7 +20370,7 @@
|
|
|
20364
20370
|
"module": "/src/models"
|
|
20365
20371
|
},
|
|
20366
20372
|
"tagName": "mdc-inputchip",
|
|
20367
|
-
"jsDoc": "/**\n * mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n *\n * - It supports a leading icon along with label.\n * - It supports an error state for validation.\n * - It supports a close button to remove the chip.\n *\n * @tagname mdc-inputchip\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event remove - This event is dispatched when the close button is activated. It bubbles and is composed.\n *\n * @csspart label - The label part of the chip.\n * @csspart icon - The icon part of the chip.\n * @csspart close-icon - The close icon part of the chip.\n *\n * @cssproperty --mdc-chip-color - The color of the chip.\n * @cssproperty --mdc-chip-border-color - The border color of the chip.\n * @cssproperty --mdc-chip-background-color - The background color of the chip.\n *\n */",
|
|
20373
|
+
"jsDoc": "/**\n * mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n *\n * - It supports a leading icon along with label.\n * - It supports a prefix slot for avatars (takes precedence over icon-name).\n * - It supports an error state for validation.\n * - It supports a close button to remove the chip.\n *\n * @tagname mdc-inputchip\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event remove - This event is dispatched when the close button is activated. It bubbles and is composed.\n *\n * @slot prefix - A slot for prefix content such as avatars.\n *\n * @csspart label - The label part of the chip.\n * @csspart icon - The icon part of the chip.\n * @csspart close-icon - The close icon part of the chip.\n *\n * @cssproperty --mdc-chip-color - The color of the chip.\n * @cssproperty --mdc-chip-border-color - The border color of the chip.\n * @cssproperty --mdc-chip-background-color - The background color of the chip.\n *\n */",
|
|
20368
20374
|
"customElement": true
|
|
20369
20375
|
}
|
|
20370
20376
|
],
|
|
@@ -21649,231 +21655,6 @@
|
|
|
21649
21655
|
}
|
|
21650
21656
|
]
|
|
21651
21657
|
},
|
|
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
|
-
},
|
|
21877
21658
|
{
|
|
21878
21659
|
"kind": "javascript-module",
|
|
21879
21660
|
"path": "components/linksimple/linksimple.component.js",
|
|
@@ -22259,36 +22040,261 @@
|
|
|
22259
22040
|
},
|
|
22260
22041
|
{
|
|
22261
22042
|
"kind": "javascript-module",
|
|
22262
|
-
"path": "components/
|
|
22043
|
+
"path": "components/list/list.component.js",
|
|
22263
22044
|
"declarations": [
|
|
22264
22045
|
{
|
|
22265
22046
|
"kind": "class",
|
|
22266
|
-
"description": "
|
|
22267
|
-
"name": "
|
|
22268
|
-
"cssProperties": [
|
|
22269
|
-
{
|
|
22270
|
-
"description": "max height of the listbox",
|
|
22271
|
-
"name": "--mdc-listbox-max-height"
|
|
22272
|
-
}
|
|
22273
|
-
],
|
|
22047
|
+
"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.",
|
|
22048
|
+
"name": "List",
|
|
22274
22049
|
"cssParts": [
|
|
22275
22050
|
{
|
|
22276
|
-
"description": "The container
|
|
22051
|
+
"description": "The container slot around the list items",
|
|
22277
22052
|
"name": "container"
|
|
22278
22053
|
}
|
|
22279
22054
|
],
|
|
22280
22055
|
"slots": [
|
|
22281
22056
|
{
|
|
22282
|
-
"description": "This is a default/unnamed slot, where
|
|
22057
|
+
"description": "This is a default/unnamed slot, where listitems can be placed.",
|
|
22283
22058
|
"name": "default"
|
|
22059
|
+
},
|
|
22060
|
+
{
|
|
22061
|
+
"description": "This slot is used to pass a header for the list, which can be a `mdc-listheader` component.",
|
|
22062
|
+
"name": "list-header"
|
|
22284
22063
|
}
|
|
22285
22064
|
],
|
|
22286
22065
|
"members": [
|
|
22287
22066
|
{
|
|
22288
22067
|
"kind": "field",
|
|
22289
|
-
"name": "
|
|
22068
|
+
"name": "loop",
|
|
22290
22069
|
"type": {
|
|
22291
|
-
"text": "
|
|
22070
|
+
"text": "'true' | 'false'"
|
|
22071
|
+
},
|
|
22072
|
+
"privacy": "public",
|
|
22073
|
+
"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.",
|
|
22074
|
+
"default": "''",
|
|
22075
|
+
"attribute": "loop",
|
|
22076
|
+
"reflects": true
|
|
22077
|
+
},
|
|
22078
|
+
{
|
|
22079
|
+
"kind": "field",
|
|
22080
|
+
"name": "initialFocus",
|
|
22081
|
+
"type": {
|
|
22082
|
+
"text": "number"
|
|
22083
|
+
},
|
|
22084
|
+
"privacy": "public",
|
|
22085
|
+
"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.",
|
|
22086
|
+
"default": "0",
|
|
22087
|
+
"attribute": "initial-focus",
|
|
22088
|
+
"reflects": true
|
|
22089
|
+
},
|
|
22090
|
+
{
|
|
22091
|
+
"kind": "field",
|
|
22092
|
+
"name": "itemsStore",
|
|
22093
|
+
"default": "new ElementStore<ListItem>(this, { isValidItem: this.isValidItem, })"
|
|
22094
|
+
},
|
|
22095
|
+
{
|
|
22096
|
+
"kind": "method",
|
|
22097
|
+
"name": "getCurrentIndex",
|
|
22098
|
+
"privacy": "private",
|
|
22099
|
+
"return": {
|
|
22100
|
+
"type": {
|
|
22101
|
+
"text": ""
|
|
22102
|
+
}
|
|
22103
|
+
},
|
|
22104
|
+
"parameters": [
|
|
22105
|
+
{
|
|
22106
|
+
"name": "target",
|
|
22107
|
+
"type": {
|
|
22108
|
+
"text": "HTMLElement | null"
|
|
22109
|
+
},
|
|
22110
|
+
"description": "The target element that triggered the event."
|
|
22111
|
+
}
|
|
22112
|
+
],
|
|
22113
|
+
"description": "Retrieves the current index of the item that triggered the event.",
|
|
22114
|
+
"inheritedFrom": {
|
|
22115
|
+
"name": "ListNavigationMixin",
|
|
22116
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22117
|
+
}
|
|
22118
|
+
},
|
|
22119
|
+
{
|
|
22120
|
+
"kind": "method",
|
|
22121
|
+
"name": "resetTabIndexes",
|
|
22122
|
+
"privacy": "protected",
|
|
22123
|
+
"parameters": [
|
|
22124
|
+
{
|
|
22125
|
+
"name": "index",
|
|
22126
|
+
"type": {
|
|
22127
|
+
"text": "number"
|
|
22128
|
+
},
|
|
22129
|
+
"description": "The index of the currently focused item."
|
|
22130
|
+
}
|
|
22131
|
+
],
|
|
22132
|
+
"description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
|
|
22133
|
+
"inheritedFrom": {
|
|
22134
|
+
"name": "ListNavigationMixin",
|
|
22135
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22136
|
+
}
|
|
22137
|
+
},
|
|
22138
|
+
{
|
|
22139
|
+
"kind": "method",
|
|
22140
|
+
"name": "resetTabIndexAndSetFocus",
|
|
22141
|
+
"privacy": "protected",
|
|
22142
|
+
"parameters": [
|
|
22143
|
+
{
|
|
22144
|
+
"name": "newIndex",
|
|
22145
|
+
"type": {
|
|
22146
|
+
"text": "number"
|
|
22147
|
+
},
|
|
22148
|
+
"description": "The index of the new item to focus."
|
|
22149
|
+
},
|
|
22150
|
+
{
|
|
22151
|
+
"name": "oldIndex",
|
|
22152
|
+
"optional": true,
|
|
22153
|
+
"type": {
|
|
22154
|
+
"text": "number"
|
|
22155
|
+
},
|
|
22156
|
+
"description": "The index of the currently focused item."
|
|
22157
|
+
},
|
|
22158
|
+
{
|
|
22159
|
+
"name": "focusNewItem",
|
|
22160
|
+
"default": "true",
|
|
22161
|
+
"description": "Call focus() on the new item or not. It should be false during firstUpdate"
|
|
22162
|
+
}
|
|
22163
|
+
],
|
|
22164
|
+
"description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
|
|
22165
|
+
"return": {
|
|
22166
|
+
"type": {
|
|
22167
|
+
"text": ""
|
|
22168
|
+
}
|
|
22169
|
+
},
|
|
22170
|
+
"inheritedFrom": {
|
|
22171
|
+
"name": "ListNavigationMixin",
|
|
22172
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22173
|
+
}
|
|
22174
|
+
},
|
|
22175
|
+
{
|
|
22176
|
+
"kind": "method",
|
|
22177
|
+
"name": "resolveDirectionKey",
|
|
22178
|
+
"privacy": "private",
|
|
22179
|
+
"parameters": [
|
|
22180
|
+
{
|
|
22181
|
+
"name": "key",
|
|
22182
|
+
"type": {
|
|
22183
|
+
"text": "string"
|
|
22184
|
+
},
|
|
22185
|
+
"description": "The key pressed by the user."
|
|
22186
|
+
},
|
|
22187
|
+
{
|
|
22188
|
+
"name": "isRtl",
|
|
22189
|
+
"type": {
|
|
22190
|
+
"text": "boolean"
|
|
22191
|
+
},
|
|
22192
|
+
"description": "A boolean indicating if the layout is right-to-left (RTL)."
|
|
22193
|
+
}
|
|
22194
|
+
],
|
|
22195
|
+
"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.",
|
|
22196
|
+
"return": {
|
|
22197
|
+
"type": {
|
|
22198
|
+
"text": ""
|
|
22199
|
+
}
|
|
22200
|
+
},
|
|
22201
|
+
"inheritedFrom": {
|
|
22202
|
+
"name": "ListNavigationMixin",
|
|
22203
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22204
|
+
}
|
|
22205
|
+
},
|
|
22206
|
+
{
|
|
22207
|
+
"kind": "method",
|
|
22208
|
+
"name": "shouldLoop",
|
|
22209
|
+
"privacy": "private",
|
|
22210
|
+
"inheritedFrom": {
|
|
22211
|
+
"name": "ListNavigationMixin",
|
|
22212
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
22213
|
+
}
|
|
22214
|
+
}
|
|
22215
|
+
],
|
|
22216
|
+
"attributes": [
|
|
22217
|
+
{
|
|
22218
|
+
"name": "loop",
|
|
22219
|
+
"type": {
|
|
22220
|
+
"text": "'true' | 'false'"
|
|
22221
|
+
},
|
|
22222
|
+
"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.",
|
|
22223
|
+
"default": "''",
|
|
22224
|
+
"fieldName": "loop"
|
|
22225
|
+
},
|
|
22226
|
+
{
|
|
22227
|
+
"name": "initial-focus",
|
|
22228
|
+
"type": {
|
|
22229
|
+
"text": "number"
|
|
22230
|
+
},
|
|
22231
|
+
"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.",
|
|
22232
|
+
"default": "0",
|
|
22233
|
+
"fieldName": "initialFocus"
|
|
22234
|
+
}
|
|
22235
|
+
],
|
|
22236
|
+
"mixins": [
|
|
22237
|
+
{
|
|
22238
|
+
"name": "ListNavigationMixin",
|
|
22239
|
+
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
22240
|
+
},
|
|
22241
|
+
{
|
|
22242
|
+
"name": "CaptureDestroyEventForChildElement",
|
|
22243
|
+
"module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
|
|
22244
|
+
}
|
|
22245
|
+
],
|
|
22246
|
+
"superclass": {
|
|
22247
|
+
"name": "Component",
|
|
22248
|
+
"module": "/src/models"
|
|
22249
|
+
},
|
|
22250
|
+
"tagName": "mdc-list",
|
|
22251
|
+
"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 */",
|
|
22252
|
+
"customElement": true
|
|
22253
|
+
}
|
|
22254
|
+
],
|
|
22255
|
+
"exports": [
|
|
22256
|
+
{
|
|
22257
|
+
"kind": "js",
|
|
22258
|
+
"name": "default",
|
|
22259
|
+
"declaration": {
|
|
22260
|
+
"name": "List",
|
|
22261
|
+
"module": "components/list/list.component.js"
|
|
22262
|
+
}
|
|
22263
|
+
}
|
|
22264
|
+
]
|
|
22265
|
+
},
|
|
22266
|
+
{
|
|
22267
|
+
"kind": "javascript-module",
|
|
22268
|
+
"path": "components/listbox/listbox.component.js",
|
|
22269
|
+
"declarations": [
|
|
22270
|
+
{
|
|
22271
|
+
"kind": "class",
|
|
22272
|
+
"description": "listbox component presents a list of options and allows a user to select one of them.\n\nNotes:\n- This is a standalone listbox component. Select has its own mdc-selectlistbox component.\n- this component has name and value attributes and also emits change event,\n but it is not a form control (yet).",
|
|
22273
|
+
"name": "ListBox",
|
|
22274
|
+
"cssProperties": [
|
|
22275
|
+
{
|
|
22276
|
+
"description": "max height of the listbox",
|
|
22277
|
+
"name": "--mdc-listbox-max-height"
|
|
22278
|
+
}
|
|
22279
|
+
],
|
|
22280
|
+
"cssParts": [
|
|
22281
|
+
{
|
|
22282
|
+
"description": "The container of the listbox",
|
|
22283
|
+
"name": "container"
|
|
22284
|
+
}
|
|
22285
|
+
],
|
|
22286
|
+
"slots": [
|
|
22287
|
+
{
|
|
22288
|
+
"description": "This is a default/unnamed slot, where options and optgroups are placed",
|
|
22289
|
+
"name": "default"
|
|
22290
|
+
}
|
|
22291
|
+
],
|
|
22292
|
+
"members": [
|
|
22293
|
+
{
|
|
22294
|
+
"kind": "field",
|
|
22295
|
+
"name": "name",
|
|
22296
|
+
"type": {
|
|
22297
|
+
"text": "undefined | string | undefined"
|
|
22292
22298
|
},
|
|
22293
22299
|
"default": "undefined",
|
|
22294
22300
|
"description": "The name attribute is used to identify the listbox",
|
|
@@ -37811,12 +37817,12 @@
|
|
|
37811
37817
|
},
|
|
37812
37818
|
{
|
|
37813
37819
|
"kind": "javascript-module",
|
|
37814
|
-
"path": "components/
|
|
37820
|
+
"path": "components/searchfield/searchfield.component.js",
|
|
37815
37821
|
"declarations": [
|
|
37816
37822
|
{
|
|
37817
37823
|
"kind": "class",
|
|
37818
|
-
"description": "
|
|
37819
|
-
"name": "
|
|
37824
|
+
"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.",
|
|
37825
|
+
"name": "Searchfield",
|
|
37820
37826
|
"cssProperties": [
|
|
37821
37827
|
{
|
|
37822
37828
|
"description": "Font size for the label text.",
|
|
@@ -37891,28 +37897,52 @@
|
|
|
37891
37897
|
}
|
|
37892
37898
|
},
|
|
37893
37899
|
{
|
|
37894
|
-
"description": "
|
|
37895
|
-
"name": "--mdc-
|
|
37896
|
-
|
|
37897
|
-
|
|
37898
|
-
|
|
37899
|
-
|
|
37900
|
+
"description": "Text color for the input field",
|
|
37901
|
+
"name": "--mdc-input-text-color",
|
|
37902
|
+
"inheritedFrom": {
|
|
37903
|
+
"name": "Input",
|
|
37904
|
+
"module": "src/components/input/input.component.ts"
|
|
37905
|
+
}
|
|
37900
37906
|
},
|
|
37901
37907
|
{
|
|
37902
|
-
"description": "
|
|
37903
|
-
"name": "--mdc-
|
|
37908
|
+
"description": "Border color for the input container",
|
|
37909
|
+
"name": "--mdc-input-border-color",
|
|
37910
|
+
"inheritedFrom": {
|
|
37911
|
+
"name": "Input",
|
|
37912
|
+
"module": "src/components/input/input.component.ts"
|
|
37913
|
+
}
|
|
37904
37914
|
},
|
|
37905
37915
|
{
|
|
37906
|
-
"description": "
|
|
37907
|
-
"name": "--mdc-
|
|
37908
|
-
|
|
37916
|
+
"description": "Background color for the input field",
|
|
37917
|
+
"name": "--mdc-input-background-color",
|
|
37918
|
+
"inheritedFrom": {
|
|
37919
|
+
"name": "Input",
|
|
37920
|
+
"module": "src/components/input/input.component.ts"
|
|
37921
|
+
}
|
|
37922
|
+
},
|
|
37909
37923
|
{
|
|
37910
|
-
"description": "
|
|
37911
|
-
"name": "--mdc-
|
|
37924
|
+
"description": "Text color for the help text",
|
|
37925
|
+
"name": "--mdc-input-support-text-color",
|
|
37926
|
+
"inheritedFrom": {
|
|
37927
|
+
"name": "Input",
|
|
37928
|
+
"module": "src/components/input/input.component.ts"
|
|
37929
|
+
}
|
|
37912
37930
|
},
|
|
37913
37931
|
{
|
|
37914
|
-
"description": "
|
|
37915
|
-
"name": "--mdc-
|
|
37932
|
+
"description": "Text color for the selected text",
|
|
37933
|
+
"name": "--mdc-input-selection-text-color",
|
|
37934
|
+
"inheritedFrom": {
|
|
37935
|
+
"name": "Input",
|
|
37936
|
+
"module": "src/components/input/input.component.ts"
|
|
37937
|
+
}
|
|
37938
|
+
},
|
|
37939
|
+
{
|
|
37940
|
+
"description": "Background color for the selected text",
|
|
37941
|
+
"name": "--mdc-input-selection-background-color",
|
|
37942
|
+
"inheritedFrom": {
|
|
37943
|
+
"name": "Input",
|
|
37944
|
+
"module": "src/components/input/input.component.ts"
|
|
37945
|
+
}
|
|
37916
37946
|
}
|
|
37917
37947
|
],
|
|
37918
37948
|
"cssParts": [
|
|
@@ -37979,12 +38009,60 @@
|
|
|
37979
38009
|
"name": "FormfieldWrapper",
|
|
37980
38010
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
37981
38011
|
}
|
|
38012
|
+
},
|
|
38013
|
+
{
|
|
38014
|
+
"description": "The leading icon element that is displayed before the input field.",
|
|
38015
|
+
"name": "leading-icon",
|
|
38016
|
+
"inheritedFrom": {
|
|
38017
|
+
"name": "Input",
|
|
38018
|
+
"module": "src/components/input/input.component.ts"
|
|
38019
|
+
}
|
|
38020
|
+
},
|
|
38021
|
+
{
|
|
38022
|
+
"description": "The prefix text element that is displayed before the input field.",
|
|
38023
|
+
"name": "prefix-text",
|
|
38024
|
+
"inheritedFrom": {
|
|
38025
|
+
"name": "Input",
|
|
38026
|
+
"module": "src/components/input/input.component.ts"
|
|
38027
|
+
}
|
|
38028
|
+
},
|
|
38029
|
+
{
|
|
38030
|
+
"description": "The container for the input field, leading icon, prefix text, and trailing button elements.",
|
|
38031
|
+
"name": "input-container",
|
|
38032
|
+
"inheritedFrom": {
|
|
38033
|
+
"name": "Input",
|
|
38034
|
+
"module": "src/components/input/input.component.ts"
|
|
38035
|
+
}
|
|
38036
|
+
},
|
|
38037
|
+
{
|
|
38038
|
+
"description": "The container for the input field, leading icon, and prefix text elements.",
|
|
38039
|
+
"name": "input-section",
|
|
38040
|
+
"inheritedFrom": {
|
|
38041
|
+
"name": "Input",
|
|
38042
|
+
"module": "src/components/input/input.component.ts"
|
|
38043
|
+
}
|
|
38044
|
+
},
|
|
38045
|
+
{
|
|
38046
|
+
"description": "The input field element.",
|
|
38047
|
+
"name": "input-text",
|
|
38048
|
+
"inheritedFrom": {
|
|
38049
|
+
"name": "Input",
|
|
38050
|
+
"module": "src/components/input/input.component.ts"
|
|
38051
|
+
}
|
|
38052
|
+
},
|
|
38053
|
+
{
|
|
38054
|
+
"description": "The trailing button element that is displayed to clear the input field when the `trailingButton` property is set to true.",
|
|
38055
|
+
"name": "trailing-button",
|
|
38056
|
+
"inheritedFrom": {
|
|
38057
|
+
"name": "Input",
|
|
38058
|
+
"module": "src/components/input/input.component.ts"
|
|
38059
|
+
}
|
|
37982
38060
|
}
|
|
37983
38061
|
],
|
|
37984
38062
|
"slots": [
|
|
37985
38063
|
{
|
|
37986
|
-
"description": "
|
|
37987
|
-
"name": "
|
|
38064
|
+
"description": "Slot for input chips",
|
|
38065
|
+
"name": "filters"
|
|
37988
38066
|
},
|
|
37989
38067
|
{
|
|
37990
38068
|
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
|
@@ -38017,467 +38095,511 @@
|
|
|
38017
38095
|
"name": "FormfieldWrapper",
|
|
38018
38096
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
38019
38097
|
}
|
|
38098
|
+
},
|
|
38099
|
+
{
|
|
38100
|
+
"description": "Slot for the input element. If not provided, the input field will be rendered.",
|
|
38101
|
+
"name": "input",
|
|
38102
|
+
"inheritedFrom": {
|
|
38103
|
+
"name": "Input",
|
|
38104
|
+
"module": "src/components/input/input.component.ts"
|
|
38105
|
+
}
|
|
38106
|
+
},
|
|
38107
|
+
{
|
|
38108
|
+
"description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
|
|
38109
|
+
"name": "input-leading-icon",
|
|
38110
|
+
"inheritedFrom": {
|
|
38111
|
+
"name": "Input",
|
|
38112
|
+
"module": "src/components/input/input.component.ts"
|
|
38113
|
+
}
|
|
38114
|
+
},
|
|
38115
|
+
{
|
|
38116
|
+
"description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
|
|
38117
|
+
"name": "input-prefix-text",
|
|
38118
|
+
"inheritedFrom": {
|
|
38119
|
+
"name": "Input",
|
|
38120
|
+
"module": "src/components/input/input.component.ts"
|
|
38121
|
+
}
|
|
38122
|
+
},
|
|
38123
|
+
{
|
|
38124
|
+
"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.",
|
|
38125
|
+
"name": "trailing-button",
|
|
38126
|
+
"inheritedFrom": {
|
|
38127
|
+
"name": "Input",
|
|
38128
|
+
"module": "src/components/input/input.component.ts"
|
|
38129
|
+
}
|
|
38020
38130
|
}
|
|
38021
38131
|
],
|
|
38022
38132
|
"members": [
|
|
38023
38133
|
{
|
|
38024
38134
|
"kind": "field",
|
|
38025
|
-
"name": "
|
|
38135
|
+
"name": "inputChips",
|
|
38026
38136
|
"type": {
|
|
38027
|
-
"text": "
|
|
38028
|
-
}
|
|
38029
|
-
|
|
38030
|
-
|
|
38137
|
+
"text": "Array<HTMLElement> | undefined"
|
|
38138
|
+
}
|
|
38139
|
+
},
|
|
38140
|
+
{
|
|
38141
|
+
"kind": "method",
|
|
38142
|
+
"name": "handleKeyDown",
|
|
38143
|
+
"privacy": "protected",
|
|
38144
|
+
"parameters": [
|
|
38145
|
+
{
|
|
38146
|
+
"name": "event",
|
|
38147
|
+
"type": {
|
|
38148
|
+
"text": "KeyboardEvent"
|
|
38149
|
+
},
|
|
38150
|
+
"description": "Keyboard event"
|
|
38151
|
+
}
|
|
38152
|
+
],
|
|
38153
|
+
"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.",
|
|
38154
|
+
"inheritedFrom": {
|
|
38155
|
+
"name": "Input",
|
|
38156
|
+
"module": "components/input/input.component.js"
|
|
38157
|
+
}
|
|
38158
|
+
},
|
|
38159
|
+
{
|
|
38160
|
+
"kind": "method",
|
|
38161
|
+
"name": "renderInputChips",
|
|
38162
|
+
"privacy": "private",
|
|
38163
|
+
"description": "This method is used to render the input chips inside filters slot.\nIt will remove any elements that are not input chips."
|
|
38164
|
+
},
|
|
38165
|
+
{
|
|
38166
|
+
"kind": "method",
|
|
38167
|
+
"name": "clearInputText",
|
|
38168
|
+
"privacy": "protected",
|
|
38169
|
+
"description": "Clears the input field.",
|
|
38170
|
+
"inheritedFrom": {
|
|
38171
|
+
"name": "Input",
|
|
38172
|
+
"module": "components/input/input.component.js"
|
|
38173
|
+
}
|
|
38031
38174
|
},
|
|
38032
38175
|
{
|
|
38033
38176
|
"kind": "field",
|
|
38034
|
-
"name": "
|
|
38177
|
+
"name": "autoFocusOnMount",
|
|
38035
38178
|
"type": {
|
|
38036
|
-
"text": "
|
|
38179
|
+
"text": "boolean"
|
|
38037
38180
|
},
|
|
38038
|
-
"
|
|
38039
|
-
"
|
|
38040
|
-
"attribute": "
|
|
38041
|
-
"reflects": true
|
|
38181
|
+
"default": "false",
|
|
38182
|
+
"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.",
|
|
38183
|
+
"attribute": "auto-focus-on-mount",
|
|
38184
|
+
"reflects": true,
|
|
38185
|
+
"inheritedFrom": {
|
|
38186
|
+
"name": "AutoFocusOnMountMixin",
|
|
38187
|
+
"module": "utils/mixins/AutoFocusOnMountMixin.js"
|
|
38188
|
+
}
|
|
38042
38189
|
},
|
|
38043
38190
|
{
|
|
38044
38191
|
"kind": "field",
|
|
38045
|
-
"name": "
|
|
38192
|
+
"name": "name",
|
|
38046
38193
|
"type": {
|
|
38047
|
-
"text": "
|
|
38194
|
+
"text": "string"
|
|
38048
38195
|
},
|
|
38049
|
-
"
|
|
38050
|
-
"
|
|
38051
|
-
"attribute": "
|
|
38052
|
-
"reflects": true
|
|
38196
|
+
"default": "''",
|
|
38197
|
+
"description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
|
|
38198
|
+
"attribute": "name",
|
|
38199
|
+
"reflects": true,
|
|
38200
|
+
"inheritedFrom": {
|
|
38201
|
+
"name": "FormInternalsMixin",
|
|
38202
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38203
|
+
}
|
|
38053
38204
|
},
|
|
38054
38205
|
{
|
|
38055
38206
|
"kind": "field",
|
|
38056
|
-
"name": "
|
|
38207
|
+
"name": "value",
|
|
38057
38208
|
"type": {
|
|
38058
|
-
"text": "
|
|
38209
|
+
"text": "string"
|
|
38059
38210
|
},
|
|
38060
|
-
"
|
|
38061
|
-
"
|
|
38062
|
-
"attribute": "
|
|
38063
|
-
"reflects": true
|
|
38211
|
+
"default": "''",
|
|
38212
|
+
"description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
|
|
38213
|
+
"attribute": "value",
|
|
38214
|
+
"reflects": true,
|
|
38215
|
+
"inheritedFrom": {
|
|
38216
|
+
"name": "FormInternalsMixin",
|
|
38217
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38218
|
+
}
|
|
38064
38219
|
},
|
|
38065
38220
|
{
|
|
38066
38221
|
"kind": "field",
|
|
38067
|
-
"name": "
|
|
38222
|
+
"name": "validationMessage",
|
|
38068
38223
|
"type": {
|
|
38069
|
-
"text": "
|
|
38224
|
+
"text": "string | undefined"
|
|
38070
38225
|
},
|
|
38071
|
-
"description": "
|
|
38072
|
-
"
|
|
38073
|
-
"
|
|
38074
|
-
"
|
|
38226
|
+
"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.",
|
|
38227
|
+
"attribute": "validation-message",
|
|
38228
|
+
"reflects": true,
|
|
38229
|
+
"inheritedFrom": {
|
|
38230
|
+
"name": "FormInternalsMixin",
|
|
38231
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38232
|
+
}
|
|
38075
38233
|
},
|
|
38076
38234
|
{
|
|
38077
38235
|
"kind": "field",
|
|
38078
|
-
"name": "
|
|
38236
|
+
"name": "validity",
|
|
38079
38237
|
"type": {
|
|
38080
|
-
"text": "
|
|
38238
|
+
"text": "ValidityState"
|
|
38081
38239
|
},
|
|
38082
|
-
"
|
|
38083
|
-
"
|
|
38084
|
-
|
|
38240
|
+
"readonly": true,
|
|
38241
|
+
"inheritedFrom": {
|
|
38242
|
+
"name": "FormInternalsMixin",
|
|
38243
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38244
|
+
}
|
|
38245
|
+
},
|
|
38246
|
+
{
|
|
38247
|
+
"kind": "field",
|
|
38248
|
+
"name": "willValidate",
|
|
38249
|
+
"readonly": true,
|
|
38250
|
+
"inheritedFrom": {
|
|
38251
|
+
"name": "FormInternalsMixin",
|
|
38252
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38253
|
+
}
|
|
38085
38254
|
},
|
|
38086
38255
|
{
|
|
38087
38256
|
"kind": "method",
|
|
38088
|
-
"name": "
|
|
38089
|
-
"
|
|
38257
|
+
"name": "setValidity",
|
|
38258
|
+
"description": "Sets the validity of the input field based on the input field's validity.",
|
|
38090
38259
|
"return": {
|
|
38091
38260
|
"type": {
|
|
38092
|
-
"text": "
|
|
38261
|
+
"text": ""
|
|
38093
38262
|
}
|
|
38094
38263
|
},
|
|
38095
|
-
"
|
|
38096
|
-
|
|
38097
|
-
|
|
38098
|
-
|
|
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."
|
|
38264
|
+
"inheritedFrom": {
|
|
38265
|
+
"name": "FormInternalsMixin",
|
|
38266
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38267
|
+
}
|
|
38105
38268
|
},
|
|
38106
38269
|
{
|
|
38107
38270
|
"kind": "method",
|
|
38108
|
-
"name": "
|
|
38109
|
-
"privacy": "private",
|
|
38271
|
+
"name": "checkValidity",
|
|
38110
38272
|
"return": {
|
|
38111
38273
|
"type": {
|
|
38112
|
-
"text": "
|
|
38274
|
+
"text": "boolean"
|
|
38113
38275
|
}
|
|
38114
38276
|
},
|
|
38115
|
-
"
|
|
38116
|
-
|
|
38117
|
-
|
|
38118
|
-
|
|
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."
|
|
38277
|
+
"inheritedFrom": {
|
|
38278
|
+
"name": "FormInternalsMixin",
|
|
38279
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38280
|
+
}
|
|
38125
38281
|
},
|
|
38126
38282
|
{
|
|
38127
38283
|
"kind": "method",
|
|
38128
|
-
"name": "
|
|
38129
|
-
"
|
|
38130
|
-
|
|
38131
|
-
"
|
|
38132
|
-
|
|
38133
|
-
|
|
38284
|
+
"name": "reportValidity",
|
|
38285
|
+
"inheritedFrom": {
|
|
38286
|
+
"name": "FormInternalsMixin",
|
|
38287
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
38288
|
+
}
|
|
38289
|
+
},
|
|
38290
|
+
{
|
|
38291
|
+
"kind": "field",
|
|
38292
|
+
"name": "dataAriaLabel",
|
|
38293
|
+
"type": {
|
|
38294
|
+
"text": "string | null"
|
|
38134
38295
|
},
|
|
38135
|
-
"
|
|
38136
|
-
|
|
38137
|
-
|
|
38138
|
-
|
|
38139
|
-
|
|
38140
|
-
|
|
38141
|
-
|
|
38142
|
-
|
|
38143
|
-
],
|
|
38144
|
-
"description": "Sets selected attribute on the selected option and removes it from all options"
|
|
38296
|
+
"default": "null",
|
|
38297
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
|
38298
|
+
"attribute": "data-aria-label",
|
|
38299
|
+
"reflects": true,
|
|
38300
|
+
"inheritedFrom": {
|
|
38301
|
+
"name": "DataAriaLabelMixin",
|
|
38302
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
|
38303
|
+
}
|
|
38145
38304
|
},
|
|
38146
38305
|
{
|
|
38147
|
-
"kind": "
|
|
38148
|
-
"name": "
|
|
38149
|
-
"
|
|
38150
|
-
|
|
38151
|
-
"type": {
|
|
38152
|
-
"text": "void"
|
|
38153
|
-
}
|
|
38306
|
+
"kind": "field",
|
|
38307
|
+
"name": "placeholder",
|
|
38308
|
+
"type": {
|
|
38309
|
+
"text": "string"
|
|
38154
38310
|
},
|
|
38155
|
-
"
|
|
38311
|
+
"default": "''",
|
|
38312
|
+
"description": "The placeholder text that is displayed when the input field is empty.",
|
|
38313
|
+
"attribute": "placeholder",
|
|
38314
|
+
"inheritedFrom": {
|
|
38315
|
+
"name": "Input",
|
|
38316
|
+
"module": "components/input/input.component.js"
|
|
38317
|
+
}
|
|
38156
38318
|
},
|
|
38157
38319
|
{
|
|
38158
|
-
"kind": "
|
|
38159
|
-
"name": "
|
|
38160
|
-
"
|
|
38161
|
-
|
|
38162
|
-
"type": {
|
|
38163
|
-
"text": "void"
|
|
38164
|
-
}
|
|
38320
|
+
"kind": "field",
|
|
38321
|
+
"name": "prefixText",
|
|
38322
|
+
"type": {
|
|
38323
|
+
"text": "string | undefined"
|
|
38165
38324
|
},
|
|
38166
|
-
"
|
|
38167
|
-
|
|
38168
|
-
|
|
38169
|
-
|
|
38170
|
-
|
|
38171
|
-
|
|
38172
|
-
}
|
|
38173
|
-
]
|
|
38325
|
+
"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.",
|
|
38326
|
+
"attribute": "prefix-text",
|
|
38327
|
+
"inheritedFrom": {
|
|
38328
|
+
"name": "Input",
|
|
38329
|
+
"module": "components/input/input.component.js"
|
|
38330
|
+
}
|
|
38174
38331
|
},
|
|
38175
38332
|
{
|
|
38176
|
-
"kind": "
|
|
38177
|
-
"name": "
|
|
38178
|
-
"
|
|
38179
|
-
|
|
38180
|
-
"type": {
|
|
38181
|
-
"text": "void"
|
|
38182
|
-
}
|
|
38333
|
+
"kind": "field",
|
|
38334
|
+
"name": "leadingIcon",
|
|
38335
|
+
"type": {
|
|
38336
|
+
"text": "IconNames | undefined"
|
|
38183
38337
|
},
|
|
38184
|
-
"
|
|
38185
|
-
|
|
38186
|
-
|
|
38187
|
-
|
|
38188
|
-
|
|
38189
|
-
|
|
38190
|
-
}
|
|
38191
|
-
]
|
|
38338
|
+
"description": "The leading icon that is displayed before the input field.",
|
|
38339
|
+
"attribute": "leading-icon",
|
|
38340
|
+
"inheritedFrom": {
|
|
38341
|
+
"name": "Input",
|
|
38342
|
+
"module": "components/input/input.component.js"
|
|
38343
|
+
}
|
|
38192
38344
|
},
|
|
38193
38345
|
{
|
|
38194
|
-
"kind": "
|
|
38195
|
-
"name": "
|
|
38196
|
-
"
|
|
38197
|
-
|
|
38198
|
-
"type": {
|
|
38199
|
-
"text": "void"
|
|
38200
|
-
}
|
|
38346
|
+
"kind": "field",
|
|
38347
|
+
"name": "trailingButton",
|
|
38348
|
+
"type": {
|
|
38349
|
+
"text": "boolean"
|
|
38201
38350
|
},
|
|
38202
|
-
"
|
|
38203
|
-
|
|
38204
|
-
|
|
38205
|
-
|
|
38206
|
-
|
|
38207
|
-
|
|
38208
|
-
|
|
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."
|
|
38351
|
+
"default": "false",
|
|
38352
|
+
"description": "The trailing button when set to true, shows a clear button that clears the input field.",
|
|
38353
|
+
"attribute": "trailing-button",
|
|
38354
|
+
"inheritedFrom": {
|
|
38355
|
+
"name": "Input",
|
|
38356
|
+
"module": "components/input/input.component.js"
|
|
38357
|
+
}
|
|
38212
38358
|
},
|
|
38213
38359
|
{
|
|
38214
|
-
"kind": "
|
|
38215
|
-
"name": "
|
|
38216
|
-
"
|
|
38217
|
-
|
|
38218
|
-
"type": {
|
|
38219
|
-
"text": "void"
|
|
38220
|
-
}
|
|
38360
|
+
"kind": "field",
|
|
38361
|
+
"name": "maxlength",
|
|
38362
|
+
"type": {
|
|
38363
|
+
"text": "number | undefined"
|
|
38221
38364
|
},
|
|
38222
|
-
"
|
|
38223
|
-
|
|
38224
|
-
|
|
38225
|
-
|
|
38226
|
-
|
|
38227
|
-
|
|
38228
|
-
"description": "The keyboard event."
|
|
38229
|
-
}
|
|
38230
|
-
],
|
|
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."
|
|
38365
|
+
"description": "The maximum number of characters that the input field can accept.",
|
|
38366
|
+
"attribute": "maxlength",
|
|
38367
|
+
"inheritedFrom": {
|
|
38368
|
+
"name": "Input",
|
|
38369
|
+
"module": "components/input/input.component.js"
|
|
38370
|
+
}
|
|
38232
38371
|
},
|
|
38233
38372
|
{
|
|
38234
|
-
"kind": "
|
|
38235
|
-
"name": "
|
|
38236
|
-
"
|
|
38237
|
-
|
|
38238
|
-
"type": {
|
|
38239
|
-
"text": ""
|
|
38240
|
-
}
|
|
38373
|
+
"kind": "field",
|
|
38374
|
+
"name": "minlength",
|
|
38375
|
+
"type": {
|
|
38376
|
+
"text": "number | undefined"
|
|
38241
38377
|
},
|
|
38242
|
-
"
|
|
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.",
|
|
38378
|
+
"description": "The minimum number of characters that the input field can accept.",
|
|
38379
|
+
"attribute": "minlength",
|
|
38252
38380
|
"inheritedFrom": {
|
|
38253
|
-
"name": "
|
|
38254
|
-
"module": "
|
|
38381
|
+
"name": "Input",
|
|
38382
|
+
"module": "components/input/input.component.js"
|
|
38255
38383
|
}
|
|
38256
38384
|
},
|
|
38257
38385
|
{
|
|
38258
|
-
"kind": "
|
|
38259
|
-
"name": "
|
|
38260
|
-
"
|
|
38261
|
-
|
|
38262
|
-
|
|
38263
|
-
|
|
38264
|
-
|
|
38265
|
-
|
|
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",
|
|
38386
|
+
"kind": "field",
|
|
38387
|
+
"name": "autocapitalize",
|
|
38388
|
+
"type": {
|
|
38389
|
+
"text": "AutoCapitalizeType"
|
|
38390
|
+
},
|
|
38391
|
+
"description": "The autocapitalize attribute of the input field.",
|
|
38392
|
+
"default": "'off'",
|
|
38393
|
+
"attribute": "autocapitalize",
|
|
38271
38394
|
"inheritedFrom": {
|
|
38272
|
-
"name": "
|
|
38273
|
-
"module": "
|
|
38395
|
+
"name": "Input",
|
|
38396
|
+
"module": "components/input/input.component.js"
|
|
38274
38397
|
}
|
|
38275
38398
|
},
|
|
38276
38399
|
{
|
|
38277
|
-
"kind": "
|
|
38278
|
-
"name": "
|
|
38279
|
-
"
|
|
38280
|
-
|
|
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
|
-
}
|
|
38400
|
+
"kind": "field",
|
|
38401
|
+
"name": "autocomplete",
|
|
38402
|
+
"type": {
|
|
38403
|
+
"text": "AutoCompleteType"
|
|
38307
38404
|
},
|
|
38405
|
+
"description": "The autocomplete attribute of the input field.",
|
|
38406
|
+
"default": "'off'",
|
|
38407
|
+
"attribute": "autocomplete",
|
|
38308
38408
|
"inheritedFrom": {
|
|
38309
|
-
"name": "
|
|
38310
|
-
"module": "
|
|
38409
|
+
"name": "Input",
|
|
38410
|
+
"module": "components/input/input.component.js"
|
|
38311
38411
|
}
|
|
38312
38412
|
},
|
|
38313
38413
|
{
|
|
38314
|
-
"kind": "
|
|
38315
|
-
"name": "
|
|
38316
|
-
"
|
|
38317
|
-
|
|
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
|
-
}
|
|
38414
|
+
"kind": "field",
|
|
38415
|
+
"name": "dirname",
|
|
38416
|
+
"type": {
|
|
38417
|
+
"text": "string | undefined"
|
|
38338
38418
|
},
|
|
38419
|
+
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
38420
|
+
"attribute": "dirname",
|
|
38339
38421
|
"inheritedFrom": {
|
|
38340
|
-
"name": "
|
|
38341
|
-
"module": "
|
|
38422
|
+
"name": "Input",
|
|
38423
|
+
"module": "components/input/input.component.js"
|
|
38342
38424
|
}
|
|
38343
38425
|
},
|
|
38344
38426
|
{
|
|
38345
|
-
"kind": "
|
|
38346
|
-
"name": "
|
|
38347
|
-
"
|
|
38427
|
+
"kind": "field",
|
|
38428
|
+
"name": "pattern",
|
|
38429
|
+
"type": {
|
|
38430
|
+
"text": "string | undefined"
|
|
38431
|
+
},
|
|
38432
|
+
"description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
|
|
38433
|
+
"attribute": "pattern",
|
|
38348
38434
|
"inheritedFrom": {
|
|
38349
|
-
"name": "
|
|
38350
|
-
"module": "
|
|
38435
|
+
"name": "Input",
|
|
38436
|
+
"module": "components/input/input.component.js"
|
|
38351
38437
|
}
|
|
38352
38438
|
},
|
|
38353
38439
|
{
|
|
38354
38440
|
"kind": "field",
|
|
38355
|
-
"name": "
|
|
38441
|
+
"name": "list",
|
|
38356
38442
|
"type": {
|
|
38357
|
-
"text": "
|
|
38443
|
+
"text": "string | undefined"
|
|
38358
38444
|
},
|
|
38359
|
-
"
|
|
38360
|
-
"
|
|
38361
|
-
"attribute": "auto-focus-on-mount",
|
|
38362
|
-
"reflects": true,
|
|
38445
|
+
"description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
|
|
38446
|
+
"attribute": "list",
|
|
38363
38447
|
"inheritedFrom": {
|
|
38364
|
-
"name": "
|
|
38365
|
-
"module": "
|
|
38448
|
+
"name": "Input",
|
|
38449
|
+
"module": "components/input/input.component.js"
|
|
38366
38450
|
}
|
|
38367
38451
|
},
|
|
38368
38452
|
{
|
|
38369
38453
|
"kind": "field",
|
|
38370
|
-
"name": "
|
|
38454
|
+
"name": "size",
|
|
38371
38455
|
"type": {
|
|
38372
|
-
"text": "
|
|
38456
|
+
"text": "number | undefined | undefined"
|
|
38373
38457
|
},
|
|
38374
|
-
"
|
|
38375
|
-
"
|
|
38376
|
-
"attribute": "
|
|
38377
|
-
"reflects": true,
|
|
38458
|
+
"description": "The size attribute of the input field.\nSpecifies the width of the input field.",
|
|
38459
|
+
"default": "undefined",
|
|
38460
|
+
"attribute": "size",
|
|
38378
38461
|
"inheritedFrom": {
|
|
38379
|
-
"name": "
|
|
38380
|
-
"module": "
|
|
38462
|
+
"name": "Input",
|
|
38463
|
+
"module": "components/input/input.component.js"
|
|
38381
38464
|
}
|
|
38382
38465
|
},
|
|
38383
38466
|
{
|
|
38384
38467
|
"kind": "field",
|
|
38385
|
-
"name": "
|
|
38468
|
+
"name": "clearAriaLabel",
|
|
38386
38469
|
"type": {
|
|
38387
38470
|
"text": "string"
|
|
38388
38471
|
},
|
|
38389
38472
|
"default": "''",
|
|
38390
|
-
"description": "
|
|
38391
|
-
"attribute": "
|
|
38392
|
-
"reflects": true,
|
|
38473
|
+
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
38474
|
+
"attribute": "clear-aria-label",
|
|
38393
38475
|
"inheritedFrom": {
|
|
38394
|
-
"name": "
|
|
38395
|
-
"module": "
|
|
38476
|
+
"name": "Input",
|
|
38477
|
+
"module": "components/input/input.component.js"
|
|
38396
38478
|
}
|
|
38397
38479
|
},
|
|
38398
38480
|
{
|
|
38399
|
-
"kind": "
|
|
38400
|
-
"name": "
|
|
38401
|
-
"
|
|
38402
|
-
"text": "string | undefined"
|
|
38403
|
-
},
|
|
38404
|
-
"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.",
|
|
38405
|
-
"attribute": "validation-message",
|
|
38406
|
-
"reflects": true,
|
|
38481
|
+
"kind": "method",
|
|
38482
|
+
"name": "setInputValidity",
|
|
38483
|
+
"privacy": "private",
|
|
38407
38484
|
"inheritedFrom": {
|
|
38408
|
-
"name": "
|
|
38409
|
-
"module": "
|
|
38485
|
+
"name": "Input",
|
|
38486
|
+
"module": "components/input/input.component.js"
|
|
38410
38487
|
}
|
|
38411
38488
|
},
|
|
38412
38489
|
{
|
|
38413
|
-
"kind": "
|
|
38414
|
-
"name": "
|
|
38415
|
-
"
|
|
38416
|
-
|
|
38490
|
+
"kind": "method",
|
|
38491
|
+
"name": "updateValue",
|
|
38492
|
+
"privacy": "private",
|
|
38493
|
+
"description": "Updates the value of the input field.\nSets the form value.",
|
|
38494
|
+
"return": {
|
|
38495
|
+
"type": {
|
|
38496
|
+
"text": ""
|
|
38497
|
+
}
|
|
38417
38498
|
},
|
|
38418
|
-
"readonly": true,
|
|
38419
38499
|
"inheritedFrom": {
|
|
38420
|
-
"name": "
|
|
38421
|
-
"module": "
|
|
38500
|
+
"name": "Input",
|
|
38501
|
+
"module": "components/input/input.component.js"
|
|
38422
38502
|
}
|
|
38423
38503
|
},
|
|
38424
38504
|
{
|
|
38425
|
-
"kind": "
|
|
38426
|
-
"name": "
|
|
38427
|
-
"
|
|
38505
|
+
"kind": "method",
|
|
38506
|
+
"name": "onInput",
|
|
38507
|
+
"privacy": "private",
|
|
38508
|
+
"description": "Handles the input event of the input field.\nUpdates the value and sets the validity of the input field.",
|
|
38428
38509
|
"inheritedFrom": {
|
|
38429
|
-
"name": "
|
|
38430
|
-
"module": "
|
|
38510
|
+
"name": "Input",
|
|
38511
|
+
"module": "components/input/input.component.js"
|
|
38431
38512
|
}
|
|
38432
38513
|
},
|
|
38433
38514
|
{
|
|
38434
38515
|
"kind": "method",
|
|
38435
|
-
"name": "
|
|
38436
|
-
"
|
|
38516
|
+
"name": "onChange",
|
|
38517
|
+
"privacy": "private",
|
|
38518
|
+
"parameters": [
|
|
38519
|
+
{
|
|
38520
|
+
"name": "event",
|
|
38521
|
+
"type": {
|
|
38522
|
+
"text": "Event"
|
|
38523
|
+
},
|
|
38524
|
+
"description": "Event which contains information about the value change."
|
|
38525
|
+
}
|
|
38526
|
+
],
|
|
38527
|
+
"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",
|
|
38528
|
+
"inheritedFrom": {
|
|
38529
|
+
"name": "Input",
|
|
38530
|
+
"module": "components/input/input.component.js"
|
|
38531
|
+
}
|
|
38532
|
+
},
|
|
38533
|
+
{
|
|
38534
|
+
"kind": "method",
|
|
38535
|
+
"name": "renderLeadingIcon",
|
|
38536
|
+
"privacy": "protected",
|
|
38537
|
+
"description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
|
|
38437
38538
|
"return": {
|
|
38438
38539
|
"type": {
|
|
38439
38540
|
"text": ""
|
|
38440
38541
|
}
|
|
38441
38542
|
},
|
|
38442
38543
|
"inheritedFrom": {
|
|
38443
|
-
"name": "
|
|
38444
|
-
"module": "
|
|
38544
|
+
"name": "Input",
|
|
38545
|
+
"module": "components/input/input.component.js"
|
|
38445
38546
|
}
|
|
38446
38547
|
},
|
|
38447
38548
|
{
|
|
38448
38549
|
"kind": "method",
|
|
38449
|
-
"name": "
|
|
38550
|
+
"name": "renderPrefixText",
|
|
38551
|
+
"privacy": "protected",
|
|
38552
|
+
"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.",
|
|
38450
38553
|
"return": {
|
|
38451
38554
|
"type": {
|
|
38452
|
-
"text": "
|
|
38555
|
+
"text": ""
|
|
38453
38556
|
}
|
|
38454
38557
|
},
|
|
38455
38558
|
"inheritedFrom": {
|
|
38456
|
-
"name": "
|
|
38457
|
-
"module": "
|
|
38559
|
+
"name": "Input",
|
|
38560
|
+
"module": "components/input/input.component.js"
|
|
38458
38561
|
}
|
|
38459
38562
|
},
|
|
38460
38563
|
{
|
|
38461
38564
|
"kind": "method",
|
|
38462
|
-
"name": "
|
|
38565
|
+
"name": "renderTrailingButton",
|
|
38566
|
+
"privacy": "protected",
|
|
38567
|
+
"parameters": [
|
|
38568
|
+
{
|
|
38569
|
+
"name": "show",
|
|
38570
|
+
"default": "false"
|
|
38571
|
+
}
|
|
38572
|
+
],
|
|
38573
|
+
"description": "Renders the trailing button to clear the input field if the trailingButton is set to true.",
|
|
38574
|
+
"return": {
|
|
38575
|
+
"type": {
|
|
38576
|
+
"text": ""
|
|
38577
|
+
}
|
|
38578
|
+
},
|
|
38463
38579
|
"inheritedFrom": {
|
|
38464
|
-
"name": "
|
|
38465
|
-
"module": "
|
|
38580
|
+
"name": "Input",
|
|
38581
|
+
"module": "components/input/input.component.js"
|
|
38466
38582
|
}
|
|
38467
38583
|
},
|
|
38468
38584
|
{
|
|
38469
|
-
"kind": "
|
|
38470
|
-
"name": "
|
|
38471
|
-
"
|
|
38472
|
-
|
|
38473
|
-
|
|
38474
|
-
|
|
38475
|
-
|
|
38476
|
-
|
|
38477
|
-
|
|
38585
|
+
"kind": "method",
|
|
38586
|
+
"name": "renderInputElement",
|
|
38587
|
+
"privacy": "protected",
|
|
38588
|
+
"parameters": [
|
|
38589
|
+
{
|
|
38590
|
+
"name": "type",
|
|
38591
|
+
"type": {
|
|
38592
|
+
"text": "InputType"
|
|
38593
|
+
}
|
|
38594
|
+
},
|
|
38595
|
+
{
|
|
38596
|
+
"name": "hidePlaceholder",
|
|
38597
|
+
"default": "false"
|
|
38598
|
+
}
|
|
38599
|
+
],
|
|
38478
38600
|
"inheritedFrom": {
|
|
38479
|
-
"name": "
|
|
38480
|
-
"module": "
|
|
38601
|
+
"name": "Input",
|
|
38602
|
+
"module": "components/input/input.component.js"
|
|
38481
38603
|
}
|
|
38482
38604
|
},
|
|
38483
38605
|
{
|
|
@@ -38716,90 +38838,71 @@
|
|
|
38716
38838
|
],
|
|
38717
38839
|
"events": [
|
|
38718
38840
|
{
|
|
38719
|
-
"
|
|
38720
|
-
"type": {
|
|
38721
|
-
"text": "CustomEvent"
|
|
38722
|
-
},
|
|
38723
|
-
"description": "(React: onChange) This event is dispatched when the select is changed.",
|
|
38724
|
-
"reactName": "onChange"
|
|
38725
|
-
},
|
|
38726
|
-
{
|
|
38841
|
+
"description": "(React: onInput) This event is dispatched when the value of the input field changes (every press).",
|
|
38727
38842
|
"name": "input",
|
|
38728
|
-
"
|
|
38729
|
-
|
|
38730
|
-
|
|
38731
|
-
|
|
38732
|
-
|
|
38843
|
+
"reactName": "onInput",
|
|
38844
|
+
"inheritedFrom": {
|
|
38845
|
+
"name": "Input",
|
|
38846
|
+
"module": "src/components/input/input.component.ts"
|
|
38847
|
+
}
|
|
38733
38848
|
},
|
|
38734
38849
|
{
|
|
38735
|
-
"description": "(React:
|
|
38736
|
-
"name": "
|
|
38737
|
-
"reactName": "
|
|
38738
|
-
|
|
38739
|
-
|
|
38740
|
-
|
|
38741
|
-
|
|
38742
|
-
"reactName": "onKeyDown"
|
|
38850
|
+
"description": "(React: onChange) This event is dispatched when the value of the input field changes (on blur).",
|
|
38851
|
+
"name": "change",
|
|
38852
|
+
"reactName": "onChange",
|
|
38853
|
+
"inheritedFrom": {
|
|
38854
|
+
"name": "Input",
|
|
38855
|
+
"module": "src/components/input/input.component.ts"
|
|
38856
|
+
}
|
|
38743
38857
|
},
|
|
38744
38858
|
{
|
|
38745
|
-
"description": "(React: onFocus) This event is dispatched when the
|
|
38859
|
+
"description": "(React: onFocus) This event is dispatched when the input receives focus.",
|
|
38746
38860
|
"name": "focus",
|
|
38747
|
-
"reactName": "onFocus"
|
|
38748
|
-
|
|
38749
|
-
|
|
38750
|
-
|
|
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"
|
|
38758
|
-
},
|
|
38759
|
-
{
|
|
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"
|
|
38767
|
-
},
|
|
38768
|
-
{
|
|
38769
|
-
"name": "boundary",
|
|
38770
|
-
"type": {
|
|
38771
|
-
"text": "'clippingAncestors' | string"
|
|
38772
|
-
},
|
|
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"
|
|
38861
|
+
"reactName": "onFocus",
|
|
38862
|
+
"inheritedFrom": {
|
|
38863
|
+
"name": "Input",
|
|
38864
|
+
"module": "src/components/input/input.component.ts"
|
|
38865
|
+
}
|
|
38776
38866
|
},
|
|
38777
38867
|
{
|
|
38778
|
-
"
|
|
38779
|
-
"
|
|
38780
|
-
|
|
38781
|
-
|
|
38782
|
-
|
|
38783
|
-
|
|
38784
|
-
|
|
38868
|
+
"description": "(React: onBlur) This event is dispatched when the input loses focus.",
|
|
38869
|
+
"name": "blur",
|
|
38870
|
+
"reactName": "onBlur",
|
|
38871
|
+
"inheritedFrom": {
|
|
38872
|
+
"name": "Input",
|
|
38873
|
+
"module": "src/components/input/input.component.ts"
|
|
38874
|
+
}
|
|
38785
38875
|
},
|
|
38786
38876
|
{
|
|
38787
|
-
"name": "
|
|
38877
|
+
"name": "clear",
|
|
38788
38878
|
"type": {
|
|
38789
|
-
"text": "
|
|
38879
|
+
"text": "CustomEvent"
|
|
38790
38880
|
},
|
|
38791
|
-
"description": "
|
|
38792
|
-
"
|
|
38793
|
-
"
|
|
38881
|
+
"description": "(React: onClear) This event is dispatched when the input text is cleared.",
|
|
38882
|
+
"reactName": "onClear",
|
|
38883
|
+
"inheritedFrom": {
|
|
38884
|
+
"name": "Input",
|
|
38885
|
+
"module": "src/components/input/input.component.ts"
|
|
38886
|
+
}
|
|
38794
38887
|
},
|
|
38795
38888
|
{
|
|
38796
|
-
"name": "backdrop-append-to",
|
|
38797
38889
|
"type": {
|
|
38798
|
-
"text": "
|
|
38890
|
+
"text": "EventConstructor"
|
|
38799
38891
|
},
|
|
38800
|
-
"
|
|
38801
|
-
|
|
38802
|
-
|
|
38892
|
+
"inheritedFrom": {
|
|
38893
|
+
"name": "Input",
|
|
38894
|
+
"module": "src/components/input/input.component.ts"
|
|
38895
|
+
}
|
|
38896
|
+
}
|
|
38897
|
+
],
|
|
38898
|
+
"superclass": {
|
|
38899
|
+
"name": "Input",
|
|
38900
|
+
"module": "/src/components/input/input.component"
|
|
38901
|
+
},
|
|
38902
|
+
"tagName": "mdc-searchfield",
|
|
38903
|
+
"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 */",
|
|
38904
|
+
"customElement": true,
|
|
38905
|
+
"attributes": [
|
|
38803
38906
|
{
|
|
38804
38907
|
"name": "auto-focus-on-mount",
|
|
38805
38908
|
"type": {
|
|
@@ -38865,171 +38968,304 @@
|
|
|
38865
38968
|
}
|
|
38866
38969
|
},
|
|
38867
38970
|
{
|
|
38868
|
-
"name": "
|
|
38971
|
+
"name": "placeholder",
|
|
38869
38972
|
"type": {
|
|
38870
|
-
"text": "
|
|
38973
|
+
"text": "string"
|
|
38871
38974
|
},
|
|
38872
|
-
"
|
|
38873
|
-
"
|
|
38874
|
-
"fieldName": "
|
|
38975
|
+
"default": "''",
|
|
38976
|
+
"description": "The placeholder text that is displayed when the input field is empty.",
|
|
38977
|
+
"fieldName": "placeholder",
|
|
38875
38978
|
"inheritedFrom": {
|
|
38876
|
-
"name": "
|
|
38877
|
-
"module": "src/components/
|
|
38979
|
+
"name": "Input",
|
|
38980
|
+
"module": "src/components/input/input.component.ts"
|
|
38878
38981
|
}
|
|
38879
38982
|
},
|
|
38880
38983
|
{
|
|
38881
|
-
"name": "
|
|
38984
|
+
"name": "prefix-text",
|
|
38882
38985
|
"type": {
|
|
38883
38986
|
"text": "string | undefined"
|
|
38884
38987
|
},
|
|
38885
|
-
"description": "The
|
|
38886
|
-
"fieldName": "
|
|
38988
|
+
"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.",
|
|
38989
|
+
"fieldName": "prefixText",
|
|
38887
38990
|
"inheritedFrom": {
|
|
38888
|
-
"name": "
|
|
38889
|
-
"module": "src/components/
|
|
38991
|
+
"name": "Input",
|
|
38992
|
+
"module": "src/components/input/input.component.ts"
|
|
38890
38993
|
}
|
|
38891
38994
|
},
|
|
38892
38995
|
{
|
|
38893
|
-
"name": "
|
|
38996
|
+
"name": "leading-icon",
|
|
38894
38997
|
"type": {
|
|
38895
|
-
"text": "
|
|
38998
|
+
"text": "IconNames | undefined"
|
|
38896
38999
|
},
|
|
38897
|
-
"
|
|
38898
|
-
"
|
|
38899
|
-
"fieldName": "required",
|
|
39000
|
+
"description": "The leading icon that is displayed before the input field.",
|
|
39001
|
+
"fieldName": "leadingIcon",
|
|
38900
39002
|
"inheritedFrom": {
|
|
38901
|
-
"name": "
|
|
38902
|
-
"module": "src/components/
|
|
39003
|
+
"name": "Input",
|
|
39004
|
+
"module": "src/components/input/input.component.ts"
|
|
38903
39005
|
}
|
|
38904
39006
|
},
|
|
38905
39007
|
{
|
|
38906
|
-
"name": "
|
|
39008
|
+
"name": "trailing-button",
|
|
38907
39009
|
"type": {
|
|
38908
|
-
"text": "
|
|
39010
|
+
"text": "boolean"
|
|
38909
39011
|
},
|
|
38910
|
-
"
|
|
38911
|
-
"
|
|
39012
|
+
"default": "false",
|
|
39013
|
+
"description": "The trailing button when set to true, shows a clear button that clears the input field.",
|
|
39014
|
+
"fieldName": "trailingButton",
|
|
38912
39015
|
"inheritedFrom": {
|
|
38913
|
-
"name": "
|
|
38914
|
-
"module": "src/components/
|
|
39016
|
+
"name": "Input",
|
|
39017
|
+
"module": "src/components/input/input.component.ts"
|
|
38915
39018
|
}
|
|
38916
39019
|
},
|
|
38917
39020
|
{
|
|
38918
|
-
"name": "
|
|
39021
|
+
"name": "maxlength",
|
|
38919
39022
|
"type": {
|
|
38920
|
-
"text": "
|
|
39023
|
+
"text": "number | undefined"
|
|
38921
39024
|
},
|
|
38922
|
-
"description": "The
|
|
38923
|
-
"fieldName": "
|
|
39025
|
+
"description": "The maximum number of characters that the input field can accept.",
|
|
39026
|
+
"fieldName": "maxlength",
|
|
38924
39027
|
"inheritedFrom": {
|
|
38925
|
-
"name": "
|
|
38926
|
-
"module": "src/components/
|
|
39028
|
+
"name": "Input",
|
|
39029
|
+
"module": "src/components/input/input.component.ts"
|
|
38927
39030
|
}
|
|
38928
39031
|
},
|
|
38929
39032
|
{
|
|
38930
|
-
"name": "
|
|
39033
|
+
"name": "minlength",
|
|
38931
39034
|
"type": {
|
|
38932
|
-
"text": "
|
|
39035
|
+
"text": "number | undefined"
|
|
38933
39036
|
},
|
|
38934
|
-
"description": "The
|
|
38935
|
-
"fieldName": "
|
|
39037
|
+
"description": "The minimum number of characters that the input field can accept.",
|
|
39038
|
+
"fieldName": "minlength",
|
|
38936
39039
|
"inheritedFrom": {
|
|
38937
|
-
"name": "
|
|
38938
|
-
"module": "src/components/
|
|
39040
|
+
"name": "Input",
|
|
39041
|
+
"module": "src/components/input/input.component.ts"
|
|
38939
39042
|
}
|
|
38940
39043
|
},
|
|
38941
39044
|
{
|
|
38942
|
-
"name": "
|
|
39045
|
+
"name": "autocapitalize",
|
|
38943
39046
|
"type": {
|
|
38944
|
-
"text": "
|
|
39047
|
+
"text": "AutoCapitalizeType"
|
|
38945
39048
|
},
|
|
38946
|
-
"description": "The
|
|
38947
|
-
"default": "'
|
|
38948
|
-
"fieldName": "
|
|
39049
|
+
"description": "The autocapitalize attribute of the input field.",
|
|
39050
|
+
"default": "'off'",
|
|
39051
|
+
"fieldName": "autocapitalize",
|
|
38949
39052
|
"inheritedFrom": {
|
|
38950
|
-
"name": "
|
|
38951
|
-
"module": "src/components/
|
|
39053
|
+
"name": "Input",
|
|
39054
|
+
"module": "src/components/input/input.component.ts"
|
|
38952
39055
|
}
|
|
38953
39056
|
},
|
|
38954
39057
|
{
|
|
38955
|
-
"name": "
|
|
39058
|
+
"name": "autocomplete",
|
|
38956
39059
|
"type": {
|
|
38957
|
-
"text": "
|
|
39060
|
+
"text": "AutoCompleteType"
|
|
38958
39061
|
},
|
|
38959
|
-
"
|
|
39062
|
+
"description": "The autocomplete attribute of the input field.",
|
|
39063
|
+
"default": "'off'",
|
|
39064
|
+
"fieldName": "autocomplete",
|
|
38960
39065
|
"inheritedFrom": {
|
|
38961
|
-
"name": "
|
|
38962
|
-
"module": "src/components/
|
|
39066
|
+
"name": "Input",
|
|
39067
|
+
"module": "src/components/input/input.component.ts"
|
|
38963
39068
|
}
|
|
38964
39069
|
},
|
|
38965
39070
|
{
|
|
38966
|
-
"name": "
|
|
39071
|
+
"name": "dirname",
|
|
38967
39072
|
"type": {
|
|
38968
39073
|
"text": "string | undefined"
|
|
38969
39074
|
},
|
|
38970
|
-
"description": "
|
|
38971
|
-
"fieldName": "
|
|
39075
|
+
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
39076
|
+
"fieldName": "dirname",
|
|
38972
39077
|
"inheritedFrom": {
|
|
38973
|
-
"name": "
|
|
38974
|
-
"module": "src/components/
|
|
39078
|
+
"name": "Input",
|
|
39079
|
+
"module": "src/components/input/input.component.ts"
|
|
38975
39080
|
}
|
|
38976
39081
|
},
|
|
38977
39082
|
{
|
|
38978
|
-
"name": "
|
|
39083
|
+
"name": "pattern",
|
|
38979
39084
|
"type": {
|
|
38980
|
-
"text": "
|
|
39085
|
+
"text": "string | undefined"
|
|
38981
39086
|
},
|
|
38982
|
-
"
|
|
38983
|
-
"
|
|
38984
|
-
"fieldName": "readonly",
|
|
39087
|
+
"description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
|
|
39088
|
+
"fieldName": "pattern",
|
|
38985
39089
|
"inheritedFrom": {
|
|
38986
|
-
"name": "
|
|
38987
|
-
"module": "src/components/
|
|
39090
|
+
"name": "Input",
|
|
39091
|
+
"module": "src/components/input/input.component.ts"
|
|
38988
39092
|
}
|
|
38989
39093
|
},
|
|
38990
39094
|
{
|
|
38991
|
-
"name": "
|
|
39095
|
+
"name": "list",
|
|
38992
39096
|
"type": {
|
|
38993
|
-
"text": "
|
|
39097
|
+
"text": "string | undefined"
|
|
38994
39098
|
},
|
|
38995
|
-
"
|
|
38996
|
-
"
|
|
38997
|
-
"fieldName": "softDisabled",
|
|
39099
|
+
"description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
|
|
39100
|
+
"fieldName": "list",
|
|
38998
39101
|
"inheritedFrom": {
|
|
38999
|
-
"name": "
|
|
39000
|
-
"module": "src/components/
|
|
39102
|
+
"name": "Input",
|
|
39103
|
+
"module": "src/components/input/input.component.ts"
|
|
39001
39104
|
}
|
|
39002
|
-
}
|
|
39003
|
-
],
|
|
39004
|
-
"mixins": [
|
|
39005
|
-
{
|
|
39006
|
-
"name": "ListNavigationMixin",
|
|
39007
|
-
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
39008
39105
|
},
|
|
39009
39106
|
{
|
|
39010
|
-
"name": "
|
|
39011
|
-
"
|
|
39107
|
+
"name": "size",
|
|
39108
|
+
"type": {
|
|
39109
|
+
"text": "number | undefined | undefined"
|
|
39110
|
+
},
|
|
39111
|
+
"description": "The size attribute of the input field.\nSpecifies the width of the input field.",
|
|
39112
|
+
"default": "undefined",
|
|
39113
|
+
"fieldName": "size",
|
|
39114
|
+
"inheritedFrom": {
|
|
39115
|
+
"name": "Input",
|
|
39116
|
+
"module": "src/components/input/input.component.ts"
|
|
39117
|
+
}
|
|
39012
39118
|
},
|
|
39013
39119
|
{
|
|
39014
|
-
"name": "
|
|
39015
|
-
"
|
|
39016
|
-
|
|
39120
|
+
"name": "clear-aria-label",
|
|
39121
|
+
"type": {
|
|
39122
|
+
"text": "string"
|
|
39123
|
+
},
|
|
39124
|
+
"default": "''",
|
|
39125
|
+
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
39126
|
+
"fieldName": "clearAriaLabel",
|
|
39127
|
+
"inheritedFrom": {
|
|
39128
|
+
"name": "Input",
|
|
39129
|
+
"module": "src/components/input/input.component.ts"
|
|
39130
|
+
}
|
|
39131
|
+
},
|
|
39017
39132
|
{
|
|
39018
|
-
"name": "
|
|
39019
|
-
"
|
|
39133
|
+
"name": "disabled",
|
|
39134
|
+
"type": {
|
|
39135
|
+
"text": "boolean | undefined"
|
|
39136
|
+
},
|
|
39137
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
|
39138
|
+
"default": "undefined",
|
|
39139
|
+
"fieldName": "disabled",
|
|
39140
|
+
"inheritedFrom": {
|
|
39141
|
+
"name": "FormfieldWrapper",
|
|
39142
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39143
|
+
}
|
|
39020
39144
|
},
|
|
39021
39145
|
{
|
|
39022
|
-
"name": "
|
|
39023
|
-
"
|
|
39146
|
+
"name": "label",
|
|
39147
|
+
"type": {
|
|
39148
|
+
"text": "string | undefined"
|
|
39149
|
+
},
|
|
39150
|
+
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
|
39151
|
+
"fieldName": "label",
|
|
39152
|
+
"inheritedFrom": {
|
|
39153
|
+
"name": "FormfieldWrapper",
|
|
39154
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39155
|
+
}
|
|
39156
|
+
},
|
|
39157
|
+
{
|
|
39158
|
+
"name": "required",
|
|
39159
|
+
"type": {
|
|
39160
|
+
"text": "boolean"
|
|
39161
|
+
},
|
|
39162
|
+
"default": "false",
|
|
39163
|
+
"description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
|
|
39164
|
+
"fieldName": "required",
|
|
39165
|
+
"inheritedFrom": {
|
|
39166
|
+
"name": "FormfieldWrapper",
|
|
39167
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39168
|
+
}
|
|
39169
|
+
},
|
|
39170
|
+
{
|
|
39171
|
+
"name": "help-text-type",
|
|
39172
|
+
"type": {
|
|
39173
|
+
"text": "ValidationType"
|
|
39174
|
+
},
|
|
39175
|
+
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
|
39176
|
+
"fieldName": "helpTextType",
|
|
39177
|
+
"inheritedFrom": {
|
|
39178
|
+
"name": "FormfieldWrapper",
|
|
39179
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39180
|
+
}
|
|
39181
|
+
},
|
|
39182
|
+
{
|
|
39183
|
+
"name": "help-text",
|
|
39184
|
+
"type": {
|
|
39185
|
+
"text": "string | undefined"
|
|
39186
|
+
},
|
|
39187
|
+
"description": "The help text that is displayed below the input field.",
|
|
39188
|
+
"fieldName": "helpText",
|
|
39189
|
+
"inheritedFrom": {
|
|
39190
|
+
"name": "FormfieldWrapper",
|
|
39191
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39192
|
+
}
|
|
39193
|
+
},
|
|
39194
|
+
{
|
|
39195
|
+
"name": "toggletip-text",
|
|
39196
|
+
"type": {
|
|
39197
|
+
"text": "string | undefined"
|
|
39198
|
+
},
|
|
39199
|
+
"description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
|
|
39200
|
+
"fieldName": "toggletipText",
|
|
39201
|
+
"inheritedFrom": {
|
|
39202
|
+
"name": "FormfieldWrapper",
|
|
39203
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39204
|
+
}
|
|
39205
|
+
},
|
|
39206
|
+
{
|
|
39207
|
+
"name": "toggletip-placement",
|
|
39208
|
+
"type": {
|
|
39209
|
+
"text": "PopoverPlacement"
|
|
39210
|
+
},
|
|
39211
|
+
"description": "The placement of the toggletip that is displayed when the info icon is hovered.",
|
|
39212
|
+
"default": "'top'",
|
|
39213
|
+
"fieldName": "toggletipPlacement",
|
|
39214
|
+
"inheritedFrom": {
|
|
39215
|
+
"name": "FormfieldWrapper",
|
|
39216
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39217
|
+
}
|
|
39218
|
+
},
|
|
39219
|
+
{
|
|
39220
|
+
"name": "toggletip-strategy",
|
|
39221
|
+
"type": {
|
|
39222
|
+
"text": "PopoverStrategy"
|
|
39223
|
+
},
|
|
39224
|
+
"fieldName": "toggletipStrategy",
|
|
39225
|
+
"inheritedFrom": {
|
|
39226
|
+
"name": "FormfieldWrapper",
|
|
39227
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39228
|
+
}
|
|
39229
|
+
},
|
|
39230
|
+
{
|
|
39231
|
+
"name": "info-icon-aria-label",
|
|
39232
|
+
"type": {
|
|
39233
|
+
"text": "string | undefined"
|
|
39234
|
+
},
|
|
39235
|
+
"description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
|
|
39236
|
+
"fieldName": "infoIconAriaLabel",
|
|
39237
|
+
"inheritedFrom": {
|
|
39238
|
+
"name": "FormfieldWrapper",
|
|
39239
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39240
|
+
}
|
|
39241
|
+
},
|
|
39242
|
+
{
|
|
39243
|
+
"name": "readonly",
|
|
39244
|
+
"type": {
|
|
39245
|
+
"text": "boolean"
|
|
39246
|
+
},
|
|
39247
|
+
"default": "false",
|
|
39248
|
+
"description": "Determines whether the form field is read-only.",
|
|
39249
|
+
"fieldName": "readonly",
|
|
39250
|
+
"inheritedFrom": {
|
|
39251
|
+
"name": "FormfieldWrapper",
|
|
39252
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39253
|
+
}
|
|
39254
|
+
},
|
|
39255
|
+
{
|
|
39256
|
+
"name": "soft-disabled",
|
|
39257
|
+
"type": {
|
|
39258
|
+
"text": "boolean"
|
|
39259
|
+
},
|
|
39260
|
+
"default": "false",
|
|
39261
|
+
"description": "Determines whether the form field is soft-disabled.",
|
|
39262
|
+
"fieldName": "softDisabled",
|
|
39263
|
+
"inheritedFrom": {
|
|
39264
|
+
"name": "FormfieldWrapper",
|
|
39265
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39266
|
+
}
|
|
39024
39267
|
}
|
|
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
|
|
39268
|
+
]
|
|
39033
39269
|
}
|
|
39034
39270
|
],
|
|
39035
39271
|
"exports": [
|
|
@@ -39037,20 +39273,20 @@
|
|
|
39037
39273
|
"kind": "js",
|
|
39038
39274
|
"name": "default",
|
|
39039
39275
|
"declaration": {
|
|
39040
|
-
"name": "
|
|
39041
|
-
"module": "components/
|
|
39276
|
+
"name": "Searchfield",
|
|
39277
|
+
"module": "components/searchfield/searchfield.component.js"
|
|
39042
39278
|
}
|
|
39043
39279
|
}
|
|
39044
39280
|
]
|
|
39045
39281
|
},
|
|
39046
39282
|
{
|
|
39047
39283
|
"kind": "javascript-module",
|
|
39048
|
-
"path": "components/
|
|
39284
|
+
"path": "components/select/select.component.js",
|
|
39049
39285
|
"declarations": [
|
|
39050
39286
|
{
|
|
39051
39287
|
"kind": "class",
|
|
39052
|
-
"description": "
|
|
39053
|
-
"name": "
|
|
39288
|
+
"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.",
|
|
39289
|
+
"name": "Select",
|
|
39054
39290
|
"cssProperties": [
|
|
39055
39291
|
{
|
|
39056
39292
|
"description": "Font size for the label text.",
|
|
@@ -39125,52 +39361,28 @@
|
|
|
39125
39361
|
}
|
|
39126
39362
|
},
|
|
39127
39363
|
{
|
|
39128
|
-
"description": "
|
|
39129
|
-
"name": "--mdc-
|
|
39130
|
-
"inheritedFrom": {
|
|
39131
|
-
"name": "Input",
|
|
39132
|
-
"module": "src/components/input/input.component.ts"
|
|
39133
|
-
}
|
|
39364
|
+
"description": "The background color of the combobox of select.",
|
|
39365
|
+
"name": "--mdc-select-background-color"
|
|
39134
39366
|
},
|
|
39135
39367
|
{
|
|
39136
|
-
"description": "
|
|
39137
|
-
"name": "--mdc-
|
|
39138
|
-
"inheritedFrom": {
|
|
39139
|
-
"name": "Input",
|
|
39140
|
-
"module": "src/components/input/input.component.ts"
|
|
39141
|
-
}
|
|
39368
|
+
"description": "The text color of the select.",
|
|
39369
|
+
"name": "--mdc-select-text-color"
|
|
39142
39370
|
},
|
|
39143
39371
|
{
|
|
39144
|
-
"description": "
|
|
39145
|
-
"name": "--mdc-
|
|
39146
|
-
"inheritedFrom": {
|
|
39147
|
-
"name": "Input",
|
|
39148
|
-
"module": "src/components/input/input.component.ts"
|
|
39149
|
-
}
|
|
39372
|
+
"description": "The border color of the select.",
|
|
39373
|
+
"name": "--mdc-select-border-color"
|
|
39150
39374
|
},
|
|
39151
39375
|
{
|
|
39152
|
-
"description": "
|
|
39153
|
-
"name": "--mdc-
|
|
39154
|
-
"inheritedFrom": {
|
|
39155
|
-
"name": "Input",
|
|
39156
|
-
"module": "src/components/input/input.component.ts"
|
|
39157
|
-
}
|
|
39376
|
+
"description": "The width of the select.",
|
|
39377
|
+
"name": "--mdc-select-width"
|
|
39158
39378
|
},
|
|
39159
39379
|
{
|
|
39160
|
-
"description": "
|
|
39161
|
-
"name": "--mdc-
|
|
39162
|
-
"inheritedFrom": {
|
|
39163
|
-
"name": "Input",
|
|
39164
|
-
"module": "src/components/input/input.component.ts"
|
|
39165
|
-
}
|
|
39380
|
+
"description": "The height of the listbox inside the select.",
|
|
39381
|
+
"name": "--mdc-select-listbox-height"
|
|
39166
39382
|
},
|
|
39167
39383
|
{
|
|
39168
|
-
"description": "
|
|
39169
|
-
"name": "--mdc-
|
|
39170
|
-
"inheritedFrom": {
|
|
39171
|
-
"name": "Input",
|
|
39172
|
-
"module": "src/components/input/input.component.ts"
|
|
39173
|
-
}
|
|
39384
|
+
"description": "The width of the listbox inside the select (default: `--mdc-select-width`).",
|
|
39385
|
+
"name": "--mdc-select-listbox-width"
|
|
39174
39386
|
}
|
|
39175
39387
|
],
|
|
39176
39388
|
"cssParts": [
|
|
@@ -39237,597 +39449,505 @@
|
|
|
39237
39449
|
"name": "FormfieldWrapper",
|
|
39238
39450
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39239
39451
|
}
|
|
39240
|
-
}
|
|
39452
|
+
}
|
|
39453
|
+
],
|
|
39454
|
+
"slots": [
|
|
39241
39455
|
{
|
|
39242
|
-
"description": "
|
|
39243
|
-
"name": "
|
|
39244
|
-
"inheritedFrom": {
|
|
39245
|
-
"name": "Input",
|
|
39246
|
-
"module": "src/components/input/input.component.ts"
|
|
39247
|
-
}
|
|
39456
|
+
"description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
|
|
39457
|
+
"name": "default"
|
|
39248
39458
|
},
|
|
39249
39459
|
{
|
|
39250
|
-
"description": "
|
|
39251
|
-
"name": "
|
|
39460
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
|
39461
|
+
"name": "label",
|
|
39252
39462
|
"inheritedFrom": {
|
|
39253
|
-
"name": "
|
|
39254
|
-
"module": "src/components/
|
|
39463
|
+
"name": "FormfieldWrapper",
|
|
39464
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39255
39465
|
}
|
|
39256
39466
|
},
|
|
39257
39467
|
{
|
|
39258
|
-
"description": "
|
|
39259
|
-
"name": "
|
|
39468
|
+
"description": "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.",
|
|
39469
|
+
"name": "toggletip",
|
|
39260
39470
|
"inheritedFrom": {
|
|
39261
|
-
"name": "
|
|
39262
|
-
"module": "src/components/
|
|
39471
|
+
"name": "FormfieldWrapper",
|
|
39472
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39263
39473
|
}
|
|
39264
39474
|
},
|
|
39265
39475
|
{
|
|
39266
|
-
"description": "
|
|
39267
|
-
"name": "
|
|
39476
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
|
39477
|
+
"name": "help-icon",
|
|
39268
39478
|
"inheritedFrom": {
|
|
39269
|
-
"name": "
|
|
39270
|
-
"module": "src/components/
|
|
39479
|
+
"name": "FormfieldWrapper",
|
|
39480
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39271
39481
|
}
|
|
39272
39482
|
},
|
|
39273
39483
|
{
|
|
39274
|
-
"description": "
|
|
39275
|
-
"name": "
|
|
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
|
-
}
|
|
39288
|
-
}
|
|
39289
|
-
],
|
|
39290
|
-
"slots": [
|
|
39291
|
-
{
|
|
39292
|
-
"description": "Slot for input chips",
|
|
39293
|
-
"name": "filters"
|
|
39294
|
-
},
|
|
39295
|
-
{
|
|
39296
|
-
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
|
39297
|
-
"name": "label",
|
|
39298
|
-
"inheritedFrom": {
|
|
39299
|
-
"name": "FormfieldWrapper",
|
|
39300
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39301
|
-
}
|
|
39302
|
-
},
|
|
39303
|
-
{
|
|
39304
|
-
"description": "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.",
|
|
39305
|
-
"name": "toggletip",
|
|
39306
|
-
"inheritedFrom": {
|
|
39307
|
-
"name": "FormfieldWrapper",
|
|
39308
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39309
|
-
}
|
|
39310
|
-
},
|
|
39311
|
-
{
|
|
39312
|
-
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
|
39313
|
-
"name": "help-icon",
|
|
39314
|
-
"inheritedFrom": {
|
|
39315
|
-
"name": "FormfieldWrapper",
|
|
39316
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39317
|
-
}
|
|
39318
|
-
},
|
|
39319
|
-
{
|
|
39320
|
-
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
|
39321
|
-
"name": "help-text",
|
|
39484
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
|
39485
|
+
"name": "help-text",
|
|
39322
39486
|
"inheritedFrom": {
|
|
39323
39487
|
"name": "FormfieldWrapper",
|
|
39324
39488
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
39325
39489
|
}
|
|
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
|
-
}
|
|
39358
39490
|
}
|
|
39359
39491
|
],
|
|
39360
39492
|
"members": [
|
|
39361
39493
|
{
|
|
39362
39494
|
"kind": "field",
|
|
39363
|
-
"name": "
|
|
39495
|
+
"name": "placeholder",
|
|
39364
39496
|
"type": {
|
|
39365
|
-
"text": "
|
|
39366
|
-
}
|
|
39367
|
-
|
|
39368
|
-
|
|
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
|
-
}
|
|
39497
|
+
"text": "string | undefined"
|
|
39498
|
+
},
|
|
39499
|
+
"description": "The placeholder text which will be shown on the text if provided.",
|
|
39500
|
+
"attribute": "placeholder"
|
|
39402
39501
|
},
|
|
39403
39502
|
{
|
|
39404
39503
|
"kind": "field",
|
|
39405
|
-
"name": "
|
|
39504
|
+
"name": "placement",
|
|
39406
39505
|
"type": {
|
|
39407
|
-
"text": "
|
|
39506
|
+
"text": "Placement"
|
|
39408
39507
|
},
|
|
39409
|
-
"
|
|
39410
|
-
"
|
|
39411
|
-
"attribute": "
|
|
39412
|
-
"reflects": true
|
|
39413
|
-
"inheritedFrom": {
|
|
39414
|
-
"name": "AutoFocusOnMountMixin",
|
|
39415
|
-
"module": "utils/mixins/AutoFocusOnMountMixin.js"
|
|
39416
|
-
}
|
|
39508
|
+
"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'",
|
|
39509
|
+
"default": "'bottom-start'",
|
|
39510
|
+
"attribute": "placement",
|
|
39511
|
+
"reflects": true
|
|
39417
39512
|
},
|
|
39418
39513
|
{
|
|
39419
39514
|
"kind": "field",
|
|
39420
|
-
"name": "
|
|
39515
|
+
"name": "boundary",
|
|
39421
39516
|
"type": {
|
|
39422
|
-
"text": "string"
|
|
39517
|
+
"text": "'clippingAncestors' | string"
|
|
39423
39518
|
},
|
|
39424
|
-
"
|
|
39425
|
-
"
|
|
39426
|
-
"attribute": "
|
|
39427
|
-
"reflects": true
|
|
39428
|
-
"inheritedFrom": {
|
|
39429
|
-
"name": "FormInternalsMixin",
|
|
39430
|
-
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39431
|
-
}
|
|
39519
|
+
"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",
|
|
39520
|
+
"default": "'clippingAncestors'",
|
|
39521
|
+
"attribute": "boundary",
|
|
39522
|
+
"reflects": true
|
|
39432
39523
|
},
|
|
39433
39524
|
{
|
|
39434
39525
|
"kind": "field",
|
|
39435
|
-
"name": "
|
|
39526
|
+
"name": "strategy",
|
|
39436
39527
|
"type": {
|
|
39437
|
-
"text": "
|
|
39528
|
+
"text": "PopoverStrategy"
|
|
39438
39529
|
},
|
|
39439
|
-
"
|
|
39440
|
-
"
|
|
39441
|
-
"attribute": "
|
|
39442
|
-
"reflects": true
|
|
39443
|
-
"inheritedFrom": {
|
|
39444
|
-
"name": "FormInternalsMixin",
|
|
39445
|
-
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39446
|
-
}
|
|
39530
|
+
"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.",
|
|
39531
|
+
"default": "absolute",
|
|
39532
|
+
"attribute": "strategy",
|
|
39533
|
+
"reflects": true
|
|
39447
39534
|
},
|
|
39448
39535
|
{
|
|
39449
39536
|
"kind": "field",
|
|
39450
|
-
"name": "
|
|
39537
|
+
"name": "popoverZIndex",
|
|
39451
39538
|
"type": {
|
|
39452
|
-
"text": "
|
|
39539
|
+
"text": "number"
|
|
39453
39540
|
},
|
|
39454
|
-
"description": "
|
|
39455
|
-
"
|
|
39456
|
-
"
|
|
39457
|
-
"
|
|
39458
|
-
"name": "FormInternalsMixin",
|
|
39459
|
-
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39460
|
-
}
|
|
39541
|
+
"description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
|
|
39542
|
+
"default": "1000",
|
|
39543
|
+
"attribute": "popover-z-index",
|
|
39544
|
+
"reflects": true
|
|
39461
39545
|
},
|
|
39462
39546
|
{
|
|
39463
39547
|
"kind": "field",
|
|
39464
|
-
"name": "
|
|
39548
|
+
"name": "backdropAppendTo",
|
|
39465
39549
|
"type": {
|
|
39466
|
-
"text": "
|
|
39550
|
+
"text": "string | undefined"
|
|
39467
39551
|
},
|
|
39468
|
-
"
|
|
39469
|
-
"
|
|
39470
|
-
|
|
39471
|
-
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39472
|
-
}
|
|
39473
|
-
},
|
|
39474
|
-
{
|
|
39475
|
-
"kind": "field",
|
|
39476
|
-
"name": "willValidate",
|
|
39477
|
-
"readonly": true,
|
|
39478
|
-
"inheritedFrom": {
|
|
39479
|
-
"name": "FormInternalsMixin",
|
|
39480
|
-
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39481
|
-
}
|
|
39552
|
+
"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.",
|
|
39553
|
+
"attribute": "backdrop-append-to",
|
|
39554
|
+
"reflects": true
|
|
39482
39555
|
},
|
|
39483
39556
|
{
|
|
39484
39557
|
"kind": "method",
|
|
39485
|
-
"name": "
|
|
39486
|
-
"
|
|
39558
|
+
"name": "handleOptionsClick",
|
|
39559
|
+
"privacy": "private",
|
|
39487
39560
|
"return": {
|
|
39488
39561
|
"type": {
|
|
39489
|
-
"text": ""
|
|
39562
|
+
"text": "void"
|
|
39490
39563
|
}
|
|
39491
39564
|
},
|
|
39492
|
-
"
|
|
39493
|
-
|
|
39494
|
-
|
|
39495
|
-
|
|
39565
|
+
"parameters": [
|
|
39566
|
+
{
|
|
39567
|
+
"name": "event",
|
|
39568
|
+
"type": {
|
|
39569
|
+
"text": "MouseEvent"
|
|
39570
|
+
},
|
|
39571
|
+
"description": "The event which triggered this function."
|
|
39572
|
+
}
|
|
39573
|
+
],
|
|
39574
|
+
"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."
|
|
39496
39575
|
},
|
|
39497
39576
|
{
|
|
39498
39577
|
"kind": "method",
|
|
39499
|
-
"name": "
|
|
39578
|
+
"name": "setSelectedOption",
|
|
39579
|
+
"privacy": "private",
|
|
39500
39580
|
"return": {
|
|
39501
39581
|
"type": {
|
|
39502
|
-
"text": "
|
|
39582
|
+
"text": "void"
|
|
39503
39583
|
}
|
|
39504
39584
|
},
|
|
39505
|
-
"
|
|
39506
|
-
|
|
39507
|
-
|
|
39508
|
-
|
|
39585
|
+
"parameters": [
|
|
39586
|
+
{
|
|
39587
|
+
"name": "option",
|
|
39588
|
+
"type": {
|
|
39589
|
+
"text": "Option | null"
|
|
39590
|
+
},
|
|
39591
|
+
"description": "The option element in DOM which gets selected."
|
|
39592
|
+
}
|
|
39593
|
+
],
|
|
39594
|
+
"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."
|
|
39509
39595
|
},
|
|
39510
39596
|
{
|
|
39511
39597
|
"kind": "method",
|
|
39512
|
-
"name": "
|
|
39513
|
-
"
|
|
39514
|
-
|
|
39515
|
-
"
|
|
39516
|
-
|
|
39517
|
-
|
|
39518
|
-
|
|
39519
|
-
"
|
|
39520
|
-
|
|
39521
|
-
|
|
39522
|
-
|
|
39523
|
-
|
|
39524
|
-
|
|
39525
|
-
|
|
39526
|
-
|
|
39527
|
-
|
|
39528
|
-
"
|
|
39529
|
-
"name": "DataAriaLabelMixin",
|
|
39530
|
-
"module": "utils/mixins/DataAriaLabelMixin.js"
|
|
39531
|
-
}
|
|
39598
|
+
"name": "updateSelectedInChildOptions",
|
|
39599
|
+
"privacy": "private",
|
|
39600
|
+
"return": {
|
|
39601
|
+
"type": {
|
|
39602
|
+
"text": "void"
|
|
39603
|
+
}
|
|
39604
|
+
},
|
|
39605
|
+
"parameters": [
|
|
39606
|
+
{
|
|
39607
|
+
"name": "selectedOption",
|
|
39608
|
+
"type": {
|
|
39609
|
+
"text": "Option | null"
|
|
39610
|
+
},
|
|
39611
|
+
"description": "The option which gets selected"
|
|
39612
|
+
}
|
|
39613
|
+
],
|
|
39614
|
+
"description": "Sets selected attribute on the selected option and removes it from all options"
|
|
39532
39615
|
},
|
|
39533
39616
|
{
|
|
39534
|
-
"kind": "
|
|
39535
|
-
"name": "
|
|
39536
|
-
"
|
|
39537
|
-
|
|
39617
|
+
"kind": "method",
|
|
39618
|
+
"name": "fireEvents",
|
|
39619
|
+
"privacy": "private",
|
|
39620
|
+
"return": {
|
|
39621
|
+
"type": {
|
|
39622
|
+
"text": "void"
|
|
39623
|
+
}
|
|
39538
39624
|
},
|
|
39539
|
-
"
|
|
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
|
-
}
|
|
39625
|
+
"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."
|
|
39546
39626
|
},
|
|
39547
39627
|
{
|
|
39548
|
-
"kind": "
|
|
39549
|
-
"name": "
|
|
39550
|
-
"
|
|
39551
|
-
|
|
39628
|
+
"kind": "method",
|
|
39629
|
+
"name": "dispatchChange",
|
|
39630
|
+
"privacy": "private",
|
|
39631
|
+
"return": {
|
|
39632
|
+
"type": {
|
|
39633
|
+
"text": "void"
|
|
39634
|
+
}
|
|
39552
39635
|
},
|
|
39553
|
-
"
|
|
39554
|
-
|
|
39555
|
-
|
|
39556
|
-
|
|
39557
|
-
|
|
39558
|
-
|
|
39636
|
+
"parameters": [
|
|
39637
|
+
{
|
|
39638
|
+
"name": "option",
|
|
39639
|
+
"type": {
|
|
39640
|
+
"text": "Option"
|
|
39641
|
+
}
|
|
39642
|
+
}
|
|
39643
|
+
]
|
|
39559
39644
|
},
|
|
39560
39645
|
{
|
|
39561
|
-
"kind": "
|
|
39562
|
-
"name": "
|
|
39563
|
-
"
|
|
39564
|
-
|
|
39646
|
+
"kind": "method",
|
|
39647
|
+
"name": "dispatchInput",
|
|
39648
|
+
"privacy": "private",
|
|
39649
|
+
"return": {
|
|
39650
|
+
"type": {
|
|
39651
|
+
"text": "void"
|
|
39652
|
+
}
|
|
39565
39653
|
},
|
|
39566
|
-
"
|
|
39567
|
-
|
|
39568
|
-
|
|
39569
|
-
|
|
39570
|
-
|
|
39571
|
-
|
|
39654
|
+
"parameters": [
|
|
39655
|
+
{
|
|
39656
|
+
"name": "option",
|
|
39657
|
+
"type": {
|
|
39658
|
+
"text": "Option"
|
|
39659
|
+
}
|
|
39660
|
+
}
|
|
39661
|
+
]
|
|
39572
39662
|
},
|
|
39573
39663
|
{
|
|
39574
|
-
"kind": "
|
|
39575
|
-
"name": "
|
|
39576
|
-
"
|
|
39577
|
-
|
|
39664
|
+
"kind": "method",
|
|
39665
|
+
"name": "handleClickCombobox",
|
|
39666
|
+
"privacy": "private",
|
|
39667
|
+
"return": {
|
|
39668
|
+
"type": {
|
|
39669
|
+
"text": "void"
|
|
39670
|
+
}
|
|
39578
39671
|
},
|
|
39579
|
-
"
|
|
39580
|
-
|
|
39581
|
-
|
|
39582
|
-
|
|
39583
|
-
|
|
39584
|
-
|
|
39585
|
-
|
|
39672
|
+
"parameters": [
|
|
39673
|
+
{
|
|
39674
|
+
"name": "event",
|
|
39675
|
+
"type": {
|
|
39676
|
+
"text": "MouseEvent"
|
|
39677
|
+
},
|
|
39678
|
+
"description": "The mouse event which triggered this function."
|
|
39679
|
+
}
|
|
39680
|
+
],
|
|
39681
|
+
"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."
|
|
39586
39682
|
},
|
|
39587
39683
|
{
|
|
39588
|
-
"kind": "
|
|
39589
|
-
"name": "
|
|
39590
|
-
"
|
|
39591
|
-
|
|
39684
|
+
"kind": "method",
|
|
39685
|
+
"name": "handleKeydownCombobox",
|
|
39686
|
+
"privacy": "private",
|
|
39687
|
+
"return": {
|
|
39688
|
+
"type": {
|
|
39689
|
+
"text": "void"
|
|
39690
|
+
}
|
|
39592
39691
|
},
|
|
39593
|
-
"
|
|
39594
|
-
|
|
39595
|
-
|
|
39596
|
-
|
|
39597
|
-
|
|
39598
|
-
|
|
39692
|
+
"parameters": [
|
|
39693
|
+
{
|
|
39694
|
+
"name": "event",
|
|
39695
|
+
"type": {
|
|
39696
|
+
"text": "KeyboardEvent"
|
|
39697
|
+
},
|
|
39698
|
+
"description": "The keyboard event."
|
|
39699
|
+
}
|
|
39700
|
+
],
|
|
39701
|
+
"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."
|
|
39599
39702
|
},
|
|
39600
39703
|
{
|
|
39601
|
-
"kind": "
|
|
39602
|
-
"name": "
|
|
39603
|
-
"
|
|
39604
|
-
|
|
39704
|
+
"kind": "method",
|
|
39705
|
+
"name": "getCurrentIndex",
|
|
39706
|
+
"privacy": "private",
|
|
39707
|
+
"return": {
|
|
39708
|
+
"type": {
|
|
39709
|
+
"text": ""
|
|
39710
|
+
}
|
|
39605
39711
|
},
|
|
39606
|
-
"
|
|
39607
|
-
|
|
39712
|
+
"parameters": [
|
|
39713
|
+
{
|
|
39714
|
+
"name": "target",
|
|
39715
|
+
"type": {
|
|
39716
|
+
"text": "HTMLElement | null"
|
|
39717
|
+
},
|
|
39718
|
+
"description": "The target element that triggered the event."
|
|
39719
|
+
}
|
|
39720
|
+
],
|
|
39721
|
+
"description": "Retrieves the current index of the item that triggered the event.",
|
|
39608
39722
|
"inheritedFrom": {
|
|
39609
|
-
"name": "
|
|
39610
|
-
"module": "
|
|
39723
|
+
"name": "ListNavigationMixin",
|
|
39724
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
39611
39725
|
}
|
|
39612
39726
|
},
|
|
39613
39727
|
{
|
|
39614
|
-
"kind": "
|
|
39615
|
-
"name": "
|
|
39616
|
-
"
|
|
39617
|
-
|
|
39618
|
-
|
|
39619
|
-
|
|
39620
|
-
|
|
39621
|
-
|
|
39728
|
+
"kind": "method",
|
|
39729
|
+
"name": "resetTabIndexes",
|
|
39730
|
+
"privacy": "protected",
|
|
39731
|
+
"parameters": [
|
|
39732
|
+
{
|
|
39733
|
+
"name": "index",
|
|
39734
|
+
"type": {
|
|
39735
|
+
"text": "number"
|
|
39736
|
+
},
|
|
39737
|
+
"description": "The index of the currently focused item."
|
|
39738
|
+
}
|
|
39739
|
+
],
|
|
39740
|
+
"description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
|
|
39622
39741
|
"inheritedFrom": {
|
|
39623
|
-
"name": "
|
|
39624
|
-
"module": "
|
|
39742
|
+
"name": "ListNavigationMixin",
|
|
39743
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
39625
39744
|
}
|
|
39626
39745
|
},
|
|
39627
39746
|
{
|
|
39628
|
-
"kind": "
|
|
39629
|
-
"name": "
|
|
39630
|
-
"
|
|
39631
|
-
|
|
39747
|
+
"kind": "method",
|
|
39748
|
+
"name": "resetTabIndexAndSetFocus",
|
|
39749
|
+
"privacy": "protected",
|
|
39750
|
+
"parameters": [
|
|
39751
|
+
{
|
|
39752
|
+
"name": "newIndex",
|
|
39753
|
+
"type": {
|
|
39754
|
+
"text": "number"
|
|
39755
|
+
},
|
|
39756
|
+
"description": "The index of the new item to focus."
|
|
39757
|
+
},
|
|
39758
|
+
{
|
|
39759
|
+
"name": "oldIndex",
|
|
39760
|
+
"optional": true,
|
|
39761
|
+
"type": {
|
|
39762
|
+
"text": "number"
|
|
39763
|
+
},
|
|
39764
|
+
"description": "The index of the currently focused item."
|
|
39765
|
+
},
|
|
39766
|
+
{
|
|
39767
|
+
"name": "focusNewItem",
|
|
39768
|
+
"default": "true",
|
|
39769
|
+
"description": "Call focus() on the new item or not. It should be false during firstUpdate"
|
|
39770
|
+
}
|
|
39771
|
+
],
|
|
39772
|
+
"description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
|
|
39773
|
+
"return": {
|
|
39774
|
+
"type": {
|
|
39775
|
+
"text": ""
|
|
39776
|
+
}
|
|
39632
39777
|
},
|
|
39633
|
-
"description": "The autocomplete attribute of the input field.",
|
|
39634
|
-
"default": "'off'",
|
|
39635
|
-
"attribute": "autocomplete",
|
|
39636
39778
|
"inheritedFrom": {
|
|
39637
|
-
"name": "
|
|
39638
|
-
"module": "
|
|
39779
|
+
"name": "ListNavigationMixin",
|
|
39780
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
39639
39781
|
}
|
|
39640
39782
|
},
|
|
39641
39783
|
{
|
|
39642
|
-
"kind": "
|
|
39643
|
-
"name": "
|
|
39644
|
-
"
|
|
39645
|
-
|
|
39784
|
+
"kind": "method",
|
|
39785
|
+
"name": "resolveDirectionKey",
|
|
39786
|
+
"privacy": "private",
|
|
39787
|
+
"parameters": [
|
|
39788
|
+
{
|
|
39789
|
+
"name": "key",
|
|
39790
|
+
"type": {
|
|
39791
|
+
"text": "string"
|
|
39792
|
+
},
|
|
39793
|
+
"description": "The key pressed by the user."
|
|
39794
|
+
},
|
|
39795
|
+
{
|
|
39796
|
+
"name": "isRtl",
|
|
39797
|
+
"type": {
|
|
39798
|
+
"text": "boolean"
|
|
39799
|
+
},
|
|
39800
|
+
"description": "A boolean indicating if the layout is right-to-left (RTL)."
|
|
39801
|
+
}
|
|
39802
|
+
],
|
|
39803
|
+
"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.",
|
|
39804
|
+
"return": {
|
|
39805
|
+
"type": {
|
|
39806
|
+
"text": ""
|
|
39807
|
+
}
|
|
39646
39808
|
},
|
|
39647
|
-
"description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
|
|
39648
|
-
"attribute": "dirname",
|
|
39649
39809
|
"inheritedFrom": {
|
|
39650
|
-
"name": "
|
|
39651
|
-
"module": "
|
|
39810
|
+
"name": "ListNavigationMixin",
|
|
39811
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
39652
39812
|
}
|
|
39653
39813
|
},
|
|
39654
39814
|
{
|
|
39655
|
-
"kind": "
|
|
39656
|
-
"name": "
|
|
39657
|
-
"
|
|
39658
|
-
"text": "string | undefined"
|
|
39659
|
-
},
|
|
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",
|
|
39815
|
+
"kind": "method",
|
|
39816
|
+
"name": "shouldLoop",
|
|
39817
|
+
"privacy": "private",
|
|
39662
39818
|
"inheritedFrom": {
|
|
39663
|
-
"name": "
|
|
39664
|
-
"module": "
|
|
39819
|
+
"name": "ListNavigationMixin",
|
|
39820
|
+
"module": "utils/mixins/ListNavigationMixin.js"
|
|
39665
39821
|
}
|
|
39666
39822
|
},
|
|
39667
39823
|
{
|
|
39668
39824
|
"kind": "field",
|
|
39669
|
-
"name": "
|
|
39825
|
+
"name": "autoFocusOnMount",
|
|
39670
39826
|
"type": {
|
|
39671
|
-
"text": "
|
|
39827
|
+
"text": "boolean"
|
|
39672
39828
|
},
|
|
39673
|
-
"
|
|
39674
|
-
"
|
|
39829
|
+
"default": "false",
|
|
39830
|
+
"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.",
|
|
39831
|
+
"attribute": "auto-focus-on-mount",
|
|
39832
|
+
"reflects": true,
|
|
39675
39833
|
"inheritedFrom": {
|
|
39676
|
-
"name": "
|
|
39677
|
-
"module": "
|
|
39834
|
+
"name": "AutoFocusOnMountMixin",
|
|
39835
|
+
"module": "utils/mixins/AutoFocusOnMountMixin.js"
|
|
39678
39836
|
}
|
|
39679
39837
|
},
|
|
39680
39838
|
{
|
|
39681
39839
|
"kind": "field",
|
|
39682
|
-
"name": "
|
|
39840
|
+
"name": "name",
|
|
39683
39841
|
"type": {
|
|
39684
|
-
"text": "
|
|
39842
|
+
"text": "string"
|
|
39685
39843
|
},
|
|
39686
|
-
"
|
|
39687
|
-
"
|
|
39688
|
-
"attribute": "
|
|
39844
|
+
"default": "''",
|
|
39845
|
+
"description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
|
|
39846
|
+
"attribute": "name",
|
|
39847
|
+
"reflects": true,
|
|
39689
39848
|
"inheritedFrom": {
|
|
39690
|
-
"name": "
|
|
39691
|
-
"module": "
|
|
39849
|
+
"name": "FormInternalsMixin",
|
|
39850
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39692
39851
|
}
|
|
39693
39852
|
},
|
|
39694
39853
|
{
|
|
39695
39854
|
"kind": "field",
|
|
39696
|
-
"name": "
|
|
39855
|
+
"name": "value",
|
|
39697
39856
|
"type": {
|
|
39698
39857
|
"text": "string"
|
|
39699
39858
|
},
|
|
39700
39859
|
"default": "''",
|
|
39701
|
-
"description": "
|
|
39702
|
-
"attribute": "
|
|
39703
|
-
"
|
|
39704
|
-
"name": "Input",
|
|
39705
|
-
"module": "components/input/input.component.js"
|
|
39706
|
-
}
|
|
39707
|
-
},
|
|
39708
|
-
{
|
|
39709
|
-
"kind": "method",
|
|
39710
|
-
"name": "setInputValidity",
|
|
39711
|
-
"privacy": "private",
|
|
39860
|
+
"description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
|
|
39861
|
+
"attribute": "value",
|
|
39862
|
+
"reflects": true,
|
|
39712
39863
|
"inheritedFrom": {
|
|
39713
|
-
"name": "
|
|
39714
|
-
"module": "
|
|
39864
|
+
"name": "FormInternalsMixin",
|
|
39865
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39715
39866
|
}
|
|
39716
39867
|
},
|
|
39717
39868
|
{
|
|
39718
|
-
"kind": "
|
|
39719
|
-
"name": "
|
|
39720
|
-
"
|
|
39721
|
-
|
|
39722
|
-
"return": {
|
|
39723
|
-
"type": {
|
|
39724
|
-
"text": ""
|
|
39725
|
-
}
|
|
39869
|
+
"kind": "field",
|
|
39870
|
+
"name": "validationMessage",
|
|
39871
|
+
"type": {
|
|
39872
|
+
"text": "string | undefined"
|
|
39726
39873
|
},
|
|
39874
|
+
"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.",
|
|
39875
|
+
"attribute": "validation-message",
|
|
39876
|
+
"reflects": true,
|
|
39727
39877
|
"inheritedFrom": {
|
|
39728
|
-
"name": "
|
|
39729
|
-
"module": "
|
|
39878
|
+
"name": "FormInternalsMixin",
|
|
39879
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39730
39880
|
}
|
|
39731
39881
|
},
|
|
39732
39882
|
{
|
|
39733
|
-
"kind": "
|
|
39734
|
-
"name": "
|
|
39735
|
-
"
|
|
39736
|
-
|
|
39883
|
+
"kind": "field",
|
|
39884
|
+
"name": "validity",
|
|
39885
|
+
"type": {
|
|
39886
|
+
"text": "ValidityState"
|
|
39887
|
+
},
|
|
39888
|
+
"readonly": true,
|
|
39737
39889
|
"inheritedFrom": {
|
|
39738
|
-
"name": "
|
|
39739
|
-
"module": "
|
|
39890
|
+
"name": "FormInternalsMixin",
|
|
39891
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39740
39892
|
}
|
|
39741
39893
|
},
|
|
39742
39894
|
{
|
|
39743
|
-
"kind": "
|
|
39744
|
-
"name": "
|
|
39745
|
-
"
|
|
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",
|
|
39895
|
+
"kind": "field",
|
|
39896
|
+
"name": "willValidate",
|
|
39897
|
+
"readonly": true,
|
|
39756
39898
|
"inheritedFrom": {
|
|
39757
|
-
"name": "
|
|
39758
|
-
"module": "
|
|
39899
|
+
"name": "FormInternalsMixin",
|
|
39900
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39759
39901
|
}
|
|
39760
39902
|
},
|
|
39761
39903
|
{
|
|
39762
39904
|
"kind": "method",
|
|
39763
|
-
"name": "
|
|
39764
|
-
"
|
|
39765
|
-
"description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
|
|
39905
|
+
"name": "setValidity",
|
|
39906
|
+
"description": "Sets the validity of the input field based on the input field's validity.",
|
|
39766
39907
|
"return": {
|
|
39767
39908
|
"type": {
|
|
39768
39909
|
"text": ""
|
|
39769
39910
|
}
|
|
39770
39911
|
},
|
|
39771
39912
|
"inheritedFrom": {
|
|
39772
|
-
"name": "
|
|
39773
|
-
"module": "
|
|
39913
|
+
"name": "FormInternalsMixin",
|
|
39914
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39774
39915
|
}
|
|
39775
39916
|
},
|
|
39776
39917
|
{
|
|
39777
39918
|
"kind": "method",
|
|
39778
|
-
"name": "
|
|
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.",
|
|
39919
|
+
"name": "checkValidity",
|
|
39781
39920
|
"return": {
|
|
39782
39921
|
"type": {
|
|
39783
|
-
"text": ""
|
|
39922
|
+
"text": "boolean"
|
|
39784
39923
|
}
|
|
39785
39924
|
},
|
|
39786
39925
|
"inheritedFrom": {
|
|
39787
|
-
"name": "
|
|
39788
|
-
"module": "
|
|
39926
|
+
"name": "FormInternalsMixin",
|
|
39927
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39789
39928
|
}
|
|
39790
39929
|
},
|
|
39791
39930
|
{
|
|
39792
39931
|
"kind": "method",
|
|
39793
|
-
"name": "
|
|
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
|
-
}
|
|
39806
|
-
},
|
|
39932
|
+
"name": "reportValidity",
|
|
39807
39933
|
"inheritedFrom": {
|
|
39808
|
-
"name": "
|
|
39809
|
-
"module": "
|
|
39934
|
+
"name": "FormInternalsMixin",
|
|
39935
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
|
39810
39936
|
}
|
|
39811
39937
|
},
|
|
39812
39938
|
{
|
|
39813
|
-
"kind": "
|
|
39814
|
-
"name": "
|
|
39815
|
-
"
|
|
39816
|
-
|
|
39817
|
-
|
|
39818
|
-
|
|
39819
|
-
|
|
39820
|
-
|
|
39821
|
-
|
|
39822
|
-
},
|
|
39823
|
-
{
|
|
39824
|
-
"name": "hidePlaceholder",
|
|
39825
|
-
"default": "false"
|
|
39826
|
-
}
|
|
39827
|
-
],
|
|
39939
|
+
"kind": "field",
|
|
39940
|
+
"name": "dataAriaLabel",
|
|
39941
|
+
"type": {
|
|
39942
|
+
"text": "string | null"
|
|
39943
|
+
},
|
|
39944
|
+
"default": "null",
|
|
39945
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
|
39946
|
+
"attribute": "data-aria-label",
|
|
39947
|
+
"reflects": true,
|
|
39828
39948
|
"inheritedFrom": {
|
|
39829
|
-
"name": "
|
|
39830
|
-
"module": "
|
|
39949
|
+
"name": "DataAriaLabelMixin",
|
|
39950
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
|
39831
39951
|
}
|
|
39832
39952
|
},
|
|
39833
39953
|
{
|
|
@@ -40066,71 +40186,90 @@
|
|
|
40066
40186
|
],
|
|
40067
40187
|
"events": [
|
|
40068
40188
|
{
|
|
40069
|
-
"
|
|
40189
|
+
"name": "change",
|
|
40190
|
+
"type": {
|
|
40191
|
+
"text": "CustomEvent"
|
|
40192
|
+
},
|
|
40193
|
+
"description": "(React: onChange) This event is dispatched when the select is changed.",
|
|
40194
|
+
"reactName": "onChange"
|
|
40195
|
+
},
|
|
40196
|
+
{
|
|
40070
40197
|
"name": "input",
|
|
40071
|
-
"
|
|
40072
|
-
|
|
40073
|
-
|
|
40074
|
-
|
|
40075
|
-
|
|
40198
|
+
"type": {
|
|
40199
|
+
"text": "CustomEvent"
|
|
40200
|
+
},
|
|
40201
|
+
"description": "(React: onInput) This event is dispatched when the select is changed.",
|
|
40202
|
+
"reactName": "onInput"
|
|
40076
40203
|
},
|
|
40077
40204
|
{
|
|
40078
|
-
"description": "(React:
|
|
40079
|
-
"name": "
|
|
40080
|
-
"reactName": "
|
|
40081
|
-
"inheritedFrom": {
|
|
40082
|
-
"name": "Input",
|
|
40083
|
-
"module": "src/components/input/input.component.ts"
|
|
40084
|
-
}
|
|
40205
|
+
"description": "(React: onClick) This event is dispatched when the select is clicked.",
|
|
40206
|
+
"name": "click",
|
|
40207
|
+
"reactName": "onClick"
|
|
40085
40208
|
},
|
|
40086
40209
|
{
|
|
40087
|
-
"description": "(React:
|
|
40210
|
+
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the select.",
|
|
40211
|
+
"name": "keydown",
|
|
40212
|
+
"reactName": "onKeyDown"
|
|
40213
|
+
},
|
|
40214
|
+
{
|
|
40215
|
+
"description": "(React: onFocus) This event is dispatched when the select receives focus.",
|
|
40088
40216
|
"name": "focus",
|
|
40089
|
-
"reactName": "onFocus"
|
|
40090
|
-
|
|
40091
|
-
|
|
40092
|
-
|
|
40093
|
-
|
|
40217
|
+
"reactName": "onFocus"
|
|
40218
|
+
}
|
|
40219
|
+
],
|
|
40220
|
+
"attributes": [
|
|
40221
|
+
{
|
|
40222
|
+
"name": "placeholder",
|
|
40223
|
+
"type": {
|
|
40224
|
+
"text": "string | undefined"
|
|
40225
|
+
},
|
|
40226
|
+
"description": "The placeholder text which will be shown on the text if provided.",
|
|
40227
|
+
"fieldName": "placeholder"
|
|
40228
|
+
},
|
|
40229
|
+
{
|
|
40230
|
+
"name": "placement",
|
|
40231
|
+
"type": {
|
|
40232
|
+
"text": "Placement"
|
|
40233
|
+
},
|
|
40234
|
+
"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'",
|
|
40235
|
+
"default": "'bottom-start'",
|
|
40236
|
+
"fieldName": "placement"
|
|
40094
40237
|
},
|
|
40095
40238
|
{
|
|
40096
|
-
"
|
|
40097
|
-
"
|
|
40098
|
-
|
|
40099
|
-
|
|
40100
|
-
|
|
40101
|
-
|
|
40102
|
-
|
|
40239
|
+
"name": "boundary",
|
|
40240
|
+
"type": {
|
|
40241
|
+
"text": "'clippingAncestors' | string"
|
|
40242
|
+
},
|
|
40243
|
+
"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",
|
|
40244
|
+
"default": "'clippingAncestors'",
|
|
40245
|
+
"fieldName": "boundary"
|
|
40103
40246
|
},
|
|
40104
40247
|
{
|
|
40105
|
-
"name": "
|
|
40248
|
+
"name": "strategy",
|
|
40106
40249
|
"type": {
|
|
40107
|
-
"text": "
|
|
40250
|
+
"text": "PopoverStrategy"
|
|
40108
40251
|
},
|
|
40109
|
-
"description": "
|
|
40110
|
-
"
|
|
40111
|
-
"
|
|
40112
|
-
"name": "Input",
|
|
40113
|
-
"module": "src/components/input/input.component.ts"
|
|
40114
|
-
}
|
|
40252
|
+
"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.",
|
|
40253
|
+
"default": "absolute",
|
|
40254
|
+
"fieldName": "strategy"
|
|
40115
40255
|
},
|
|
40116
40256
|
{
|
|
40257
|
+
"name": "popover-z-index",
|
|
40117
40258
|
"type": {
|
|
40118
|
-
"text": "
|
|
40259
|
+
"text": "number"
|
|
40119
40260
|
},
|
|
40120
|
-
"
|
|
40121
|
-
|
|
40122
|
-
|
|
40123
|
-
|
|
40124
|
-
|
|
40125
|
-
|
|
40126
|
-
|
|
40127
|
-
|
|
40128
|
-
|
|
40129
|
-
|
|
40130
|
-
|
|
40131
|
-
|
|
40132
|
-
"customElement": true,
|
|
40133
|
-
"attributes": [
|
|
40261
|
+
"description": "The z-index of the popover within Select.\n\nOverride this to make sure this stays on top of other components.",
|
|
40262
|
+
"default": "1000",
|
|
40263
|
+
"fieldName": "popoverZIndex"
|
|
40264
|
+
},
|
|
40265
|
+
{
|
|
40266
|
+
"name": "backdrop-append-to",
|
|
40267
|
+
"type": {
|
|
40268
|
+
"text": "string | undefined"
|
|
40269
|
+
},
|
|
40270
|
+
"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.",
|
|
40271
|
+
"fieldName": "backdropAppendTo"
|
|
40272
|
+
},
|
|
40134
40273
|
{
|
|
40135
40274
|
"name": "auto-focus-on-mount",
|
|
40136
40275
|
"type": {
|
|
@@ -40195,168 +40334,6 @@
|
|
|
40195
40334
|
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
|
40196
40335
|
}
|
|
40197
40336
|
},
|
|
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
|
-
},
|
|
40360
40337
|
{
|
|
40361
40338
|
"name": "disabled",
|
|
40362
40339
|
"type": {
|
|
@@ -40493,7 +40470,36 @@
|
|
|
40493
40470
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
|
40494
40471
|
}
|
|
40495
40472
|
}
|
|
40496
|
-
]
|
|
40473
|
+
],
|
|
40474
|
+
"mixins": [
|
|
40475
|
+
{
|
|
40476
|
+
"name": "ListNavigationMixin",
|
|
40477
|
+
"module": "/src/utils/mixins/ListNavigationMixin"
|
|
40478
|
+
},
|
|
40479
|
+
{
|
|
40480
|
+
"name": "CaptureDestroyEventForChildElement",
|
|
40481
|
+
"module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
|
|
40482
|
+
},
|
|
40483
|
+
{
|
|
40484
|
+
"name": "AutoFocusOnMountMixin",
|
|
40485
|
+
"module": "/src/utils/mixins/AutoFocusOnMountMixin"
|
|
40486
|
+
},
|
|
40487
|
+
{
|
|
40488
|
+
"name": "FormInternalsMixin",
|
|
40489
|
+
"module": "/src/utils/mixins/FormInternalsMixin"
|
|
40490
|
+
},
|
|
40491
|
+
{
|
|
40492
|
+
"name": "DataAriaLabelMixin",
|
|
40493
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
|
40494
|
+
}
|
|
40495
|
+
],
|
|
40496
|
+
"superclass": {
|
|
40497
|
+
"name": "FormfieldWrapper",
|
|
40498
|
+
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
|
40499
|
+
},
|
|
40500
|
+
"tagName": "mdc-select",
|
|
40501
|
+
"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 */",
|
|
40502
|
+
"customElement": true
|
|
40497
40503
|
}
|
|
40498
40504
|
],
|
|
40499
40505
|
"exports": [
|
|
@@ -40501,8 +40507,8 @@
|
|
|
40501
40507
|
"kind": "js",
|
|
40502
40508
|
"name": "default",
|
|
40503
40509
|
"declaration": {
|
|
40504
|
-
"name": "
|
|
40505
|
-
"module": "components/
|
|
40510
|
+
"name": "Select",
|
|
40511
|
+
"module": "components/select/select.component.js"
|
|
40506
40512
|
}
|
|
40507
40513
|
}
|
|
40508
40514
|
]
|