@momentum-design/components 0.117.3 → 0.117.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +216 -211
- package/dist/browser/index.js.map +3 -3
- package/dist/components/checkbox/checkbox.component.d.ts +5 -0
- package/dist/components/checkbox/checkbox.component.js +5 -0
- package/dist/components/combobox/combobox.component.d.ts +4 -0
- package/dist/components/combobox/combobox.component.js +4 -0
- package/dist/components/formfieldgroup/formfieldgroup.component.d.ts +4 -0
- package/dist/components/formfieldgroup/formfieldgroup.component.js +4 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +10 -6
- package/dist/components/formfieldwrapper/formfieldwrapper.component.js +37 -23
- package/dist/components/formfieldwrapper/formfieldwrapper.constants.d.ts +1 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.constants.js +1 -0
- package/dist/components/input/input.component.d.ts +9 -0
- package/dist/components/input/input.component.js +9 -0
- package/dist/components/popover/popover.constants.d.ts +1 -1
- package/dist/components/popover/popover.constants.js +1 -1
- package/dist/custom-elements.json +1878 -1020
- package/dist/react/checkbox/index.d.ts +5 -0
- package/dist/react/checkbox/index.js +5 -0
- package/dist/react/combobox/index.d.ts +4 -0
- package/dist/react/combobox/index.js +4 -0
- package/dist/react/formfieldgroup/index.d.ts +4 -0
- package/dist/react/formfieldgroup/index.js +4 -0
- package/dist/react/formfieldwrapper/index.d.ts +4 -1
- package/dist/react/formfieldwrapper/index.js +4 -1
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/dist/react/input/index.d.ts +9 -0
- package/dist/react/input/index.js +9 -0
- package/package.json +1 -1
@@ -2,481 +2,6 @@
|
|
2
2
|
"schemaVersion": "1.0.0",
|
3
3
|
"readme": "",
|
4
4
|
"modules": [
|
5
|
-
{
|
6
|
-
"kind": "javascript-module",
|
7
|
-
"path": "components/accordion/accordion.component.js",
|
8
|
-
"declarations": [
|
9
|
-
{
|
10
|
-
"kind": "class",
|
11
|
-
"description": "An accordion contains a header and body section with a focusable heading that can be expanded or collapsed.\n\nThe header section contains:\n- Prefix Icon\n- Header Text\n- Leading Slot - Contains the leading controls of the accordion on the header section. This will be placed on the leading side, after the header text.\n- Trailing Slot - Contains the trailing controls of the accordion on the header section. This will be placed on the trailing side, before the expand/collapse button.\n\nThe body section contains:\n- Default slot - User can place any content inside the body section.\n\nThe accordion can be expanded or collapsed. The visibility of the body section can be controlled by `expanded` attribute. <br/>\nThere are two types of variants based on that the border styling of the accordion gets reflected. <br/>\nThere are two sizes of accordion, one is small and the other is large.\nSmall size has a padding of 1rem (16px) and large size has a padding of 1.5rem (24px) for the body section of accordion.\n\nBy default, the header text in the accordion heading is of H3 with an aria-level of '3'.\nIf this accordion is placed on any other level in the entire webpage, then do adjust the aria-level number based on that.\n\nAn accordion can be disabled, and when it's disabled, the header section will not be clickable.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf an accordion is expanded by default, then the screen reader might loose focus when toggling the visibilty of the accordion.",
|
12
|
-
"name": "Accordion",
|
13
|
-
"cssProperties": [
|
14
|
-
{
|
15
|
-
"description": "The border color of the accordion.",
|
16
|
-
"name": "--mdc-accordionbutton-border-color",
|
17
|
-
"inheritedFrom": {
|
18
|
-
"name": "AccordionButton",
|
19
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
20
|
-
}
|
21
|
-
},
|
22
|
-
{
|
23
|
-
"description": "The hover color of the accordion.",
|
24
|
-
"name": "--mdc-accordionbutton-hover-color",
|
25
|
-
"inheritedFrom": {
|
26
|
-
"name": "AccordionButton",
|
27
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
28
|
-
}
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"description": "The active color of the accordion.",
|
32
|
-
"name": "--mdc-accordionbutton-active-color",
|
33
|
-
"inheritedFrom": {
|
34
|
-
"name": "AccordionButton",
|
35
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
36
|
-
}
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"description": "The disabled color of the accordion.",
|
40
|
-
"name": "--mdc-accordionbutton-disabled-color",
|
41
|
-
"inheritedFrom": {
|
42
|
-
"name": "AccordionButton",
|
43
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
44
|
-
}
|
45
|
-
}
|
46
|
-
],
|
47
|
-
"cssParts": [
|
48
|
-
{
|
49
|
-
"description": "The header section of the accordion.",
|
50
|
-
"name": "header-section",
|
51
|
-
"inheritedFrom": {
|
52
|
-
"name": "AccordionButton",
|
53
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
54
|
-
}
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"description": "The leading header of the accordion.",
|
58
|
-
"name": "leading-header",
|
59
|
-
"inheritedFrom": {
|
60
|
-
"name": "AccordionButton",
|
61
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
62
|
-
}
|
63
|
-
},
|
64
|
-
{
|
65
|
-
"description": "The trailing header of the accordion.",
|
66
|
-
"name": "trailing-header",
|
67
|
-
"inheritedFrom": {
|
68
|
-
"name": "AccordionButton",
|
69
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
70
|
-
}
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"description": "The trailing header button of the accordion.",
|
74
|
-
"name": "trailing-header__button"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"description": "The body section of the accordion.",
|
78
|
-
"name": "body-section",
|
79
|
-
"inheritedFrom": {
|
80
|
-
"name": "AccordionButton",
|
81
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
82
|
-
}
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"description": "The header button section of the accordion button.",
|
86
|
-
"name": "header-button-section",
|
87
|
-
"inheritedFrom": {
|
88
|
-
"name": "AccordionButton",
|
89
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
90
|
-
}
|
91
|
-
},
|
92
|
-
{
|
93
|
-
"description": "The trailing header icon of the accordion button.",
|
94
|
-
"name": "trailing-header__icon",
|
95
|
-
"inheritedFrom": {
|
96
|
-
"name": "AccordionButton",
|
97
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
98
|
-
}
|
99
|
-
}
|
100
|
-
],
|
101
|
-
"slots": [
|
102
|
-
{
|
103
|
-
"description": "The leading controls slot of the accordion on the header section.",
|
104
|
-
"name": "leading-controls"
|
105
|
-
},
|
106
|
-
{
|
107
|
-
"description": "The trailing controls slot of the accordion on the header section.",
|
108
|
-
"name": "trailing-controls"
|
109
|
-
},
|
110
|
-
{
|
111
|
-
"description": "The default slot contains the body section of the accordion. User can place anything inside this body slot.",
|
112
|
-
"name": "default",
|
113
|
-
"inheritedFrom": {
|
114
|
-
"name": "AccordionButton",
|
115
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
116
|
-
}
|
117
|
-
}
|
118
|
-
],
|
119
|
-
"members": [
|
120
|
-
{
|
121
|
-
"kind": "method",
|
122
|
-
"name": "renderHeader",
|
123
|
-
"privacy": "protected",
|
124
|
-
"return": {
|
125
|
-
"type": {
|
126
|
-
"text": ""
|
127
|
-
}
|
128
|
-
},
|
129
|
-
"description": "Renders the header section of the accordion.\nThis includes the leading icon, text and controls, and the trailing controls.\nThe trailing controls include the expand/collapse button.\nThe button is disabled if the accordion is disabled.\nThe button is also given the aria-controls attribute set to the id of the body section.\nThe button is also given the aria-expanded attribute set to the expanded state of the accordion.\nThe prefix icon of the button is set to the expanded state of the accordion.",
|
130
|
-
"inheritedFrom": {
|
131
|
-
"name": "AccordionButton",
|
132
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
133
|
-
}
|
134
|
-
},
|
135
|
-
{
|
136
|
-
"kind": "field",
|
137
|
-
"name": "disabled",
|
138
|
-
"type": {
|
139
|
-
"text": "boolean | undefined"
|
140
|
-
},
|
141
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
142
|
-
"default": "undefined",
|
143
|
-
"attribute": "disabled",
|
144
|
-
"reflects": true,
|
145
|
-
"inheritedFrom": {
|
146
|
-
"name": "DisabledMixin",
|
147
|
-
"module": "utils/mixins/DisabledMixin.js"
|
148
|
-
}
|
149
|
-
},
|
150
|
-
{
|
151
|
-
"kind": "field",
|
152
|
-
"name": "size",
|
153
|
-
"type": {
|
154
|
-
"text": "Size"
|
155
|
-
},
|
156
|
-
"description": "The size of the accordion item.",
|
157
|
-
"default": "'small'",
|
158
|
-
"attribute": "size",
|
159
|
-
"reflects": true,
|
160
|
-
"inheritedFrom": {
|
161
|
-
"name": "AccordionButton",
|
162
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
163
|
-
}
|
164
|
-
},
|
165
|
-
{
|
166
|
-
"kind": "field",
|
167
|
-
"name": "variant",
|
168
|
-
"type": {
|
169
|
-
"text": "Variant"
|
170
|
-
},
|
171
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
172
|
-
"default": "'default'",
|
173
|
-
"attribute": "variant",
|
174
|
-
"reflects": true,
|
175
|
-
"inheritedFrom": {
|
176
|
-
"name": "AccordionButton",
|
177
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
178
|
-
}
|
179
|
-
},
|
180
|
-
{
|
181
|
-
"kind": "field",
|
182
|
-
"name": "dataAriaLevel",
|
183
|
-
"type": {
|
184
|
-
"text": "number"
|
185
|
-
},
|
186
|
-
"description": "The aria level of the accordion component.",
|
187
|
-
"default": "3",
|
188
|
-
"attribute": "data-aria-level",
|
189
|
-
"reflects": true,
|
190
|
-
"inheritedFrom": {
|
191
|
-
"name": "AccordionButton",
|
192
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
193
|
-
}
|
194
|
-
},
|
195
|
-
{
|
196
|
-
"kind": "field",
|
197
|
-
"name": "expanded",
|
198
|
-
"type": {
|
199
|
-
"text": "boolean"
|
200
|
-
},
|
201
|
-
"description": "The visibility of the accordion button.",
|
202
|
-
"default": "false",
|
203
|
-
"attribute": "expanded",
|
204
|
-
"reflects": true,
|
205
|
-
"inheritedFrom": {
|
206
|
-
"name": "AccordionButton",
|
207
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
208
|
-
}
|
209
|
-
},
|
210
|
-
{
|
211
|
-
"kind": "field",
|
212
|
-
"name": "headerText",
|
213
|
-
"type": {
|
214
|
-
"text": "string | undefined"
|
215
|
-
},
|
216
|
-
"description": "The header text of the accordion item.",
|
217
|
-
"attribute": "header-text",
|
218
|
-
"reflects": true,
|
219
|
-
"inheritedFrom": {
|
220
|
-
"name": "AccordionButton",
|
221
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
222
|
-
}
|
223
|
-
},
|
224
|
-
{
|
225
|
-
"kind": "field",
|
226
|
-
"name": "prefixIcon",
|
227
|
-
"type": {
|
228
|
-
"text": "IconNames | undefined"
|
229
|
-
},
|
230
|
-
"description": "The leading icon that is displayed before the header text.",
|
231
|
-
"attribute": "prefix-icon",
|
232
|
-
"inheritedFrom": {
|
233
|
-
"name": "AccordionButton",
|
234
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
235
|
-
}
|
236
|
-
},
|
237
|
-
{
|
238
|
-
"kind": "method",
|
239
|
-
"name": "handleHeaderClick",
|
240
|
-
"privacy": "protected",
|
241
|
-
"return": {
|
242
|
-
"type": {
|
243
|
-
"text": "void"
|
244
|
-
}
|
245
|
-
},
|
246
|
-
"description": "Handles the click event of the header section.\nIf the accordion is disabled, it will not toggle the expanded state.\nIt will dispatch the `shown` event with the current expanded state.",
|
247
|
-
"inheritedFrom": {
|
248
|
-
"name": "AccordionButton",
|
249
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
250
|
-
}
|
251
|
-
},
|
252
|
-
{
|
253
|
-
"kind": "method",
|
254
|
-
"name": "dispatchHeaderClickEvent",
|
255
|
-
"privacy": "private",
|
256
|
-
"return": {
|
257
|
-
"type": {
|
258
|
-
"text": "void"
|
259
|
-
}
|
260
|
-
},
|
261
|
-
"description": "Dispatches the `shown` event with the current expanded state.\nThe event is cancelable and bubbles.\nThe event detail contains the current expanded state.",
|
262
|
-
"inheritedFrom": {
|
263
|
-
"name": "AccordionButton",
|
264
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
265
|
-
}
|
266
|
-
},
|
267
|
-
{
|
268
|
-
"kind": "method",
|
269
|
-
"name": "handleKeyDown",
|
270
|
-
"privacy": "private",
|
271
|
-
"return": {
|
272
|
-
"type": {
|
273
|
-
"text": "void"
|
274
|
-
}
|
275
|
-
},
|
276
|
-
"parameters": [
|
277
|
-
{
|
278
|
-
"name": "event",
|
279
|
-
"type": {
|
280
|
-
"text": "KeyboardEvent"
|
281
|
-
},
|
282
|
-
"description": "The KeyboardEvent fired."
|
283
|
-
}
|
284
|
-
],
|
285
|
-
"description": "Handles the keydown event of the component.\nIf the key pressed is either Enter or Space, it calls the handleHeaderClick method.\nThis allows keyboard users to toggle the accordion button using these keys.",
|
286
|
-
"inheritedFrom": {
|
287
|
-
"name": "AccordionButton",
|
288
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
289
|
-
}
|
290
|
-
},
|
291
|
-
{
|
292
|
-
"kind": "method",
|
293
|
-
"name": "renderIcon",
|
294
|
-
"privacy": "protected",
|
295
|
-
"return": {
|
296
|
-
"type": {
|
297
|
-
"text": "TemplateResult | typeof nothing"
|
298
|
-
}
|
299
|
-
},
|
300
|
-
"parameters": [
|
301
|
-
{
|
302
|
-
"name": "iconName",
|
303
|
-
"optional": true,
|
304
|
-
"type": {
|
305
|
-
"text": "IconNames"
|
306
|
-
}
|
307
|
-
}
|
308
|
-
],
|
309
|
-
"inheritedFrom": {
|
310
|
-
"name": "AccordionButton",
|
311
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
312
|
-
}
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"kind": "method",
|
316
|
-
"name": "renderHeadingText",
|
317
|
-
"privacy": "protected",
|
318
|
-
"return": {
|
319
|
-
"type": {
|
320
|
-
"text": "TemplateResult | typeof nothing"
|
321
|
-
}
|
322
|
-
},
|
323
|
-
"inheritedFrom": {
|
324
|
-
"name": "AccordionButton",
|
325
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
326
|
-
}
|
327
|
-
},
|
328
|
-
{
|
329
|
-
"kind": "method",
|
330
|
-
"name": "getArrowIconName",
|
331
|
-
"privacy": "protected",
|
332
|
-
"return": {
|
333
|
-
"type": {
|
334
|
-
"text": ""
|
335
|
-
}
|
336
|
-
},
|
337
|
-
"description": "Returns the icon name based on the expanded state.\nIf the accordion button is disabled, it always returns the arrow down icon.\nOtherwise, it returns the arrow up icon if the accordion button is expanded, otherwise the arrow down icon.",
|
338
|
-
"inheritedFrom": {
|
339
|
-
"name": "AccordionButton",
|
340
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
341
|
-
}
|
342
|
-
},
|
343
|
-
{
|
344
|
-
"kind": "method",
|
345
|
-
"name": "renderBody",
|
346
|
-
"privacy": "protected",
|
347
|
-
"return": {
|
348
|
-
"type": {
|
349
|
-
"text": "TemplateResult | typeof nothing"
|
350
|
-
}
|
351
|
-
},
|
352
|
-
"inheritedFrom": {
|
353
|
-
"name": "AccordionButton",
|
354
|
-
"module": "components/accordionbutton/accordionbutton.component.js"
|
355
|
-
}
|
356
|
-
}
|
357
|
-
],
|
358
|
-
"events": [
|
359
|
-
{
|
360
|
-
"description": "(React: onShown) This event is triggered when the accordion is expanded.",
|
361
|
-
"name": "shown",
|
362
|
-
"reactName": "onShown",
|
363
|
-
"inheritedFrom": {
|
364
|
-
"name": "AccordionButton",
|
365
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
366
|
-
}
|
367
|
-
}
|
368
|
-
],
|
369
|
-
"superclass": {
|
370
|
-
"name": "AccordionButton",
|
371
|
-
"module": "/src/components/accordionbutton/accordionbutton.component"
|
372
|
-
},
|
373
|
-
"tagName": "mdc-accordion",
|
374
|
-
"jsDoc": "/**\n * An accordion contains a header and body section with a focusable heading that can be expanded or collapsed.\n *\n * The header section contains:\n * - Prefix Icon\n * - Header Text\n * - Leading Slot - Contains the leading controls of the accordion on the header section. This will be placed on the leading side, after the header text.\n * - Trailing Slot - Contains the trailing controls of the accordion on the header section. This will be placed on the trailing side, before the expand/collapse button.\n *\n * The body section contains:\n * - Default slot - User can place any content inside the body section.\n *\n * The accordion can be expanded or collapsed. The visibility of the body section can be controlled by `expanded` attribute. <br/>\n * There are two types of variants based on that the border styling of the accordion gets reflected. <br/>\n * There are two sizes of accordion, one is small and the other is large.\n * Small size has a padding of 1rem (16px) and large size has a padding of 1.5rem (24px) for the body section of accordion.\n *\n * By default, the header text in the accordion heading is of H3 with an aria-level of '3'.\n * If this accordion is placed on any other level in the entire webpage, then do adjust the aria-level number based on that.\n *\n * An accordion can be disabled, and when it's disabled, the header section will not be clickable.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If an accordion is expanded by default, then the screen reader might loose focus when toggling the visibilty of the accordion.\n *\n * @tagname mdc-accordion\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @slot leading-controls - The leading controls slot of the accordion on the header section.\n * @slot trailing-controls - The trailing controls slot of the accordion on the header section.\n * @slot default - The default slot contains the body section of the accordion. User can place anything inside this body slot.\n *\n * @event shown - (React: onShown) This event is triggered when the accordion is expanded.\n *\n * @cssproperty --mdc-accordionbutton-border-color - The border color of the accordion.\n * @cssproperty --mdc-accordionbutton-hover-color - The hover color of the accordion.\n * @cssproperty --mdc-accordionbutton-active-color - The active color of the accordion.\n * @cssproperty --mdc-accordionbutton-disabled-color - The disabled color of the accordion.\n *\n * @csspart header-section - The header section of the accordion.\n * @csspart leading-header - The leading header of the accordion.\n * @csspart trailing-header - The trailing header of the accordion.\n * @csspart trailing-header__button - The trailing header button of the accordion.\n * @csspart body-section - The body section of the accordion.\n */",
|
375
|
-
"customElement": true,
|
376
|
-
"attributes": [
|
377
|
-
{
|
378
|
-
"name": "disabled",
|
379
|
-
"type": {
|
380
|
-
"text": "boolean | undefined"
|
381
|
-
},
|
382
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
383
|
-
"default": "undefined",
|
384
|
-
"fieldName": "disabled",
|
385
|
-
"inheritedFrom": {
|
386
|
-
"name": "DisabledMixin",
|
387
|
-
"module": "src/utils/mixins/DisabledMixin.ts"
|
388
|
-
}
|
389
|
-
},
|
390
|
-
{
|
391
|
-
"name": "size",
|
392
|
-
"type": {
|
393
|
-
"text": "Size"
|
394
|
-
},
|
395
|
-
"description": "The size of the accordion item.",
|
396
|
-
"default": "'small'",
|
397
|
-
"fieldName": "size",
|
398
|
-
"inheritedFrom": {
|
399
|
-
"name": "AccordionButton",
|
400
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
401
|
-
}
|
402
|
-
},
|
403
|
-
{
|
404
|
-
"name": "variant",
|
405
|
-
"type": {
|
406
|
-
"text": "Variant"
|
407
|
-
},
|
408
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
409
|
-
"default": "'default'",
|
410
|
-
"fieldName": "variant",
|
411
|
-
"inheritedFrom": {
|
412
|
-
"name": "AccordionButton",
|
413
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
414
|
-
}
|
415
|
-
},
|
416
|
-
{
|
417
|
-
"name": "data-aria-level",
|
418
|
-
"type": {
|
419
|
-
"text": "number"
|
420
|
-
},
|
421
|
-
"description": "The aria level of the accordion component.",
|
422
|
-
"default": "3",
|
423
|
-
"fieldName": "dataAriaLevel",
|
424
|
-
"inheritedFrom": {
|
425
|
-
"name": "AccordionButton",
|
426
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
427
|
-
}
|
428
|
-
},
|
429
|
-
{
|
430
|
-
"name": "expanded",
|
431
|
-
"type": {
|
432
|
-
"text": "boolean"
|
433
|
-
},
|
434
|
-
"description": "The visibility of the accordion button.",
|
435
|
-
"default": "false",
|
436
|
-
"fieldName": "expanded",
|
437
|
-
"inheritedFrom": {
|
438
|
-
"name": "AccordionButton",
|
439
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
440
|
-
}
|
441
|
-
},
|
442
|
-
{
|
443
|
-
"name": "header-text",
|
444
|
-
"type": {
|
445
|
-
"text": "string | undefined"
|
446
|
-
},
|
447
|
-
"description": "The header text of the accordion item.",
|
448
|
-
"fieldName": "headerText",
|
449
|
-
"inheritedFrom": {
|
450
|
-
"name": "AccordionButton",
|
451
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
452
|
-
}
|
453
|
-
},
|
454
|
-
{
|
455
|
-
"name": "prefix-icon",
|
456
|
-
"type": {
|
457
|
-
"text": "IconNames | undefined"
|
458
|
-
},
|
459
|
-
"description": "The leading icon that is displayed before the header text.",
|
460
|
-
"fieldName": "prefixIcon",
|
461
|
-
"inheritedFrom": {
|
462
|
-
"name": "AccordionButton",
|
463
|
-
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
464
|
-
}
|
465
|
-
}
|
466
|
-
]
|
467
|
-
}
|
468
|
-
],
|
469
|
-
"exports": [
|
470
|
-
{
|
471
|
-
"kind": "js",
|
472
|
-
"name": "default",
|
473
|
-
"declaration": {
|
474
|
-
"name": "Accordion",
|
475
|
-
"module": "components/accordion/accordion.component.js"
|
476
|
-
}
|
477
|
-
}
|
478
|
-
]
|
479
|
-
},
|
480
5
|
{
|
481
6
|
"kind": "javascript-module",
|
482
7
|
"path": "components/accordionbutton/accordionbutton.component.js",
|
@@ -970,33 +495,508 @@
|
|
970
495
|
},
|
971
496
|
{
|
972
497
|
"kind": "javascript-module",
|
973
|
-
"path": "components/
|
498
|
+
"path": "components/accordion/accordion.component.js",
|
974
499
|
"declarations": [
|
975
500
|
{
|
976
501
|
"kind": "class",
|
977
|
-
"description": "
|
978
|
-
"name": "
|
502
|
+
"description": "An accordion contains a header and body section with a focusable heading that can be expanded or collapsed.\n\nThe header section contains:\n- Prefix Icon\n- Header Text\n- Leading Slot - Contains the leading controls of the accordion on the header section. This will be placed on the leading side, after the header text.\n- Trailing Slot - Contains the trailing controls of the accordion on the header section. This will be placed on the trailing side, before the expand/collapse button.\n\nThe body section contains:\n- Default slot - User can place any content inside the body section.\n\nThe accordion can be expanded or collapsed. The visibility of the body section can be controlled by `expanded` attribute. <br/>\nThere are two types of variants based on that the border styling of the accordion gets reflected. <br/>\nThere are two sizes of accordion, one is small and the other is large.\nSmall size has a padding of 1rem (16px) and large size has a padding of 1.5rem (24px) for the body section of accordion.\n\nBy default, the header text in the accordion heading is of H3 with an aria-level of '3'.\nIf this accordion is placed on any other level in the entire webpage, then do adjust the aria-level number based on that.\n\nAn accordion can be disabled, and when it's disabled, the header section will not be clickable.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf an accordion is expanded by default, then the screen reader might loose focus when toggling the visibilty of the accordion.",
|
503
|
+
"name": "Accordion",
|
979
504
|
"cssProperties": [
|
980
505
|
{
|
981
|
-
"description": "The color of the
|
982
|
-
"name": "--mdc-
|
506
|
+
"description": "The border color of the accordion.",
|
507
|
+
"name": "--mdc-accordionbutton-border-color",
|
508
|
+
"inheritedFrom": {
|
509
|
+
"name": "AccordionButton",
|
510
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
511
|
+
}
|
983
512
|
},
|
984
513
|
{
|
985
|
-
"description": "The color of the
|
986
|
-
"name": "--mdc-
|
514
|
+
"description": "The hover color of the accordion.",
|
515
|
+
"name": "--mdc-accordionbutton-hover-color",
|
516
|
+
"inheritedFrom": {
|
517
|
+
"name": "AccordionButton",
|
518
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
519
|
+
}
|
987
520
|
},
|
988
521
|
{
|
989
|
-
"description": "The
|
990
|
-
"name": "--mdc-
|
522
|
+
"description": "The active color of the accordion.",
|
523
|
+
"name": "--mdc-accordionbutton-active-color",
|
524
|
+
"inheritedFrom": {
|
525
|
+
"name": "AccordionButton",
|
526
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
527
|
+
}
|
991
528
|
},
|
992
529
|
{
|
993
|
-
"description": "The
|
994
|
-
"name": "--mdc-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
530
|
+
"description": "The disabled color of the accordion.",
|
531
|
+
"name": "--mdc-accordionbutton-disabled-color",
|
532
|
+
"inheritedFrom": {
|
533
|
+
"name": "AccordionButton",
|
534
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
535
|
+
}
|
536
|
+
}
|
537
|
+
],
|
538
|
+
"cssParts": [
|
539
|
+
{
|
540
|
+
"description": "The header section of the accordion.",
|
541
|
+
"name": "header-section",
|
542
|
+
"inheritedFrom": {
|
543
|
+
"name": "AccordionButton",
|
544
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
545
|
+
}
|
546
|
+
},
|
547
|
+
{
|
548
|
+
"description": "The leading header of the accordion.",
|
549
|
+
"name": "leading-header",
|
550
|
+
"inheritedFrom": {
|
551
|
+
"name": "AccordionButton",
|
552
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
553
|
+
}
|
554
|
+
},
|
555
|
+
{
|
556
|
+
"description": "The trailing header of the accordion.",
|
557
|
+
"name": "trailing-header",
|
558
|
+
"inheritedFrom": {
|
559
|
+
"name": "AccordionButton",
|
560
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
561
|
+
}
|
562
|
+
},
|
563
|
+
{
|
564
|
+
"description": "The trailing header button of the accordion.",
|
565
|
+
"name": "trailing-header__button"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"description": "The body section of the accordion.",
|
569
|
+
"name": "body-section",
|
570
|
+
"inheritedFrom": {
|
571
|
+
"name": "AccordionButton",
|
572
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
573
|
+
}
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"description": "The header button section of the accordion button.",
|
577
|
+
"name": "header-button-section",
|
578
|
+
"inheritedFrom": {
|
579
|
+
"name": "AccordionButton",
|
580
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
581
|
+
}
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"description": "The trailing header icon of the accordion button.",
|
585
|
+
"name": "trailing-header__icon",
|
586
|
+
"inheritedFrom": {
|
587
|
+
"name": "AccordionButton",
|
588
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
589
|
+
}
|
590
|
+
}
|
591
|
+
],
|
592
|
+
"slots": [
|
593
|
+
{
|
594
|
+
"description": "The leading controls slot of the accordion on the header section.",
|
595
|
+
"name": "leading-controls"
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"description": "The trailing controls slot of the accordion on the header section.",
|
599
|
+
"name": "trailing-controls"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"description": "The default slot contains the body section of the accordion. User can place anything inside this body slot.",
|
603
|
+
"name": "default",
|
604
|
+
"inheritedFrom": {
|
605
|
+
"name": "AccordionButton",
|
606
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
607
|
+
}
|
608
|
+
}
|
609
|
+
],
|
610
|
+
"members": [
|
611
|
+
{
|
612
|
+
"kind": "method",
|
613
|
+
"name": "renderHeader",
|
614
|
+
"privacy": "protected",
|
615
|
+
"return": {
|
616
|
+
"type": {
|
617
|
+
"text": ""
|
618
|
+
}
|
619
|
+
},
|
620
|
+
"description": "Renders the header section of the accordion.\nThis includes the leading icon, text and controls, and the trailing controls.\nThe trailing controls include the expand/collapse button.\nThe button is disabled if the accordion is disabled.\nThe button is also given the aria-controls attribute set to the id of the body section.\nThe button is also given the aria-expanded attribute set to the expanded state of the accordion.\nThe prefix icon of the button is set to the expanded state of the accordion.",
|
621
|
+
"inheritedFrom": {
|
622
|
+
"name": "AccordionButton",
|
623
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
624
|
+
}
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"kind": "field",
|
628
|
+
"name": "disabled",
|
629
|
+
"type": {
|
630
|
+
"text": "boolean | undefined"
|
631
|
+
},
|
632
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
633
|
+
"default": "undefined",
|
634
|
+
"attribute": "disabled",
|
635
|
+
"reflects": true,
|
636
|
+
"inheritedFrom": {
|
637
|
+
"name": "AccordionButton",
|
638
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
639
|
+
}
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"kind": "field",
|
643
|
+
"name": "size",
|
644
|
+
"type": {
|
645
|
+
"text": "Size"
|
646
|
+
},
|
647
|
+
"description": "The size of the accordion item.",
|
648
|
+
"default": "'small'",
|
649
|
+
"attribute": "size",
|
650
|
+
"reflects": true,
|
651
|
+
"inheritedFrom": {
|
652
|
+
"name": "AccordionButton",
|
653
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
654
|
+
}
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"kind": "field",
|
658
|
+
"name": "variant",
|
659
|
+
"type": {
|
660
|
+
"text": "Variant"
|
661
|
+
},
|
662
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
663
|
+
"default": "'default'",
|
664
|
+
"attribute": "variant",
|
665
|
+
"reflects": true,
|
666
|
+
"inheritedFrom": {
|
667
|
+
"name": "AccordionButton",
|
668
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
669
|
+
}
|
670
|
+
},
|
671
|
+
{
|
672
|
+
"kind": "field",
|
673
|
+
"name": "dataAriaLevel",
|
674
|
+
"type": {
|
675
|
+
"text": "number"
|
676
|
+
},
|
677
|
+
"description": "The aria level of the accordion component.",
|
678
|
+
"default": "3",
|
679
|
+
"attribute": "data-aria-level",
|
680
|
+
"reflects": true,
|
681
|
+
"inheritedFrom": {
|
682
|
+
"name": "AccordionButton",
|
683
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
684
|
+
}
|
685
|
+
},
|
686
|
+
{
|
687
|
+
"kind": "field",
|
688
|
+
"name": "expanded",
|
689
|
+
"type": {
|
690
|
+
"text": "boolean"
|
691
|
+
},
|
692
|
+
"description": "The visibility of the accordion button.",
|
693
|
+
"default": "false",
|
694
|
+
"attribute": "expanded",
|
695
|
+
"reflects": true,
|
696
|
+
"inheritedFrom": {
|
697
|
+
"name": "AccordionButton",
|
698
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
699
|
+
}
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"kind": "field",
|
703
|
+
"name": "headerText",
|
704
|
+
"type": {
|
705
|
+
"text": "string | undefined"
|
706
|
+
},
|
707
|
+
"description": "The header text of the accordion item.",
|
708
|
+
"attribute": "header-text",
|
709
|
+
"reflects": true,
|
710
|
+
"inheritedFrom": {
|
711
|
+
"name": "AccordionButton",
|
712
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
713
|
+
}
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"kind": "field",
|
717
|
+
"name": "prefixIcon",
|
718
|
+
"type": {
|
719
|
+
"text": "IconNames | undefined"
|
720
|
+
},
|
721
|
+
"description": "The leading icon that is displayed before the header text.",
|
722
|
+
"attribute": "prefix-icon",
|
723
|
+
"inheritedFrom": {
|
724
|
+
"name": "AccordionButton",
|
725
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
726
|
+
}
|
727
|
+
},
|
728
|
+
{
|
729
|
+
"kind": "method",
|
730
|
+
"name": "handleHeaderClick",
|
731
|
+
"privacy": "protected",
|
732
|
+
"return": {
|
733
|
+
"type": {
|
734
|
+
"text": "void"
|
735
|
+
}
|
736
|
+
},
|
737
|
+
"description": "Handles the click event of the header section.\nIf the accordion is disabled, it will not toggle the expanded state.\nIt will dispatch the `shown` event with the current expanded state.",
|
738
|
+
"inheritedFrom": {
|
739
|
+
"name": "AccordionButton",
|
740
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
741
|
+
}
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"kind": "method",
|
745
|
+
"name": "dispatchHeaderClickEvent",
|
746
|
+
"privacy": "private",
|
747
|
+
"return": {
|
748
|
+
"type": {
|
749
|
+
"text": "void"
|
750
|
+
}
|
751
|
+
},
|
752
|
+
"description": "Dispatches the `shown` event with the current expanded state.\nThe event is cancelable and bubbles.\nThe event detail contains the current expanded state.",
|
753
|
+
"inheritedFrom": {
|
754
|
+
"name": "AccordionButton",
|
755
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
756
|
+
}
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"kind": "method",
|
760
|
+
"name": "handleKeyDown",
|
761
|
+
"privacy": "private",
|
762
|
+
"return": {
|
763
|
+
"type": {
|
764
|
+
"text": "void"
|
765
|
+
}
|
766
|
+
},
|
767
|
+
"parameters": [
|
768
|
+
{
|
769
|
+
"name": "event",
|
770
|
+
"type": {
|
771
|
+
"text": "KeyboardEvent"
|
772
|
+
},
|
773
|
+
"description": "The KeyboardEvent fired."
|
774
|
+
}
|
775
|
+
],
|
776
|
+
"description": "Handles the keydown event of the component.\nIf the key pressed is either Enter or Space, it calls the handleHeaderClick method.\nThis allows keyboard users to toggle the accordion button using these keys.",
|
777
|
+
"inheritedFrom": {
|
778
|
+
"name": "AccordionButton",
|
779
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
780
|
+
}
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"kind": "method",
|
784
|
+
"name": "renderIcon",
|
785
|
+
"privacy": "protected",
|
786
|
+
"return": {
|
787
|
+
"type": {
|
788
|
+
"text": "TemplateResult | typeof nothing"
|
789
|
+
}
|
790
|
+
},
|
791
|
+
"parameters": [
|
792
|
+
{
|
793
|
+
"name": "iconName",
|
794
|
+
"optional": true,
|
795
|
+
"type": {
|
796
|
+
"text": "IconNames"
|
797
|
+
}
|
798
|
+
}
|
799
|
+
],
|
800
|
+
"inheritedFrom": {
|
801
|
+
"name": "AccordionButton",
|
802
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
803
|
+
}
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"kind": "method",
|
807
|
+
"name": "renderHeadingText",
|
808
|
+
"privacy": "protected",
|
809
|
+
"return": {
|
810
|
+
"type": {
|
811
|
+
"text": "TemplateResult | typeof nothing"
|
812
|
+
}
|
813
|
+
},
|
814
|
+
"inheritedFrom": {
|
815
|
+
"name": "AccordionButton",
|
816
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
817
|
+
}
|
818
|
+
},
|
819
|
+
{
|
820
|
+
"kind": "method",
|
821
|
+
"name": "getArrowIconName",
|
822
|
+
"privacy": "protected",
|
823
|
+
"return": {
|
824
|
+
"type": {
|
825
|
+
"text": ""
|
826
|
+
}
|
827
|
+
},
|
828
|
+
"description": "Returns the icon name based on the expanded state.\nIf the accordion button is disabled, it always returns the arrow down icon.\nOtherwise, it returns the arrow up icon if the accordion button is expanded, otherwise the arrow down icon.",
|
829
|
+
"inheritedFrom": {
|
830
|
+
"name": "AccordionButton",
|
831
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
832
|
+
}
|
833
|
+
},
|
834
|
+
{
|
835
|
+
"kind": "method",
|
836
|
+
"name": "renderBody",
|
837
|
+
"privacy": "protected",
|
838
|
+
"return": {
|
839
|
+
"type": {
|
840
|
+
"text": "TemplateResult | typeof nothing"
|
841
|
+
}
|
842
|
+
},
|
843
|
+
"inheritedFrom": {
|
844
|
+
"name": "AccordionButton",
|
845
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
846
|
+
}
|
847
|
+
}
|
848
|
+
],
|
849
|
+
"events": [
|
850
|
+
{
|
851
|
+
"description": "(React: onShown) This event is triggered when the accordion is expanded.",
|
852
|
+
"name": "shown",
|
853
|
+
"reactName": "onShown",
|
854
|
+
"inheritedFrom": {
|
855
|
+
"name": "AccordionButton",
|
856
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
857
|
+
}
|
858
|
+
}
|
859
|
+
],
|
860
|
+
"superclass": {
|
861
|
+
"name": "AccordionButton",
|
862
|
+
"module": "/src/components/accordionbutton/accordionbutton.component"
|
863
|
+
},
|
864
|
+
"tagName": "mdc-accordion",
|
865
|
+
"jsDoc": "/**\n * An accordion contains a header and body section with a focusable heading that can be expanded or collapsed.\n *\n * The header section contains:\n * - Prefix Icon\n * - Header Text\n * - Leading Slot - Contains the leading controls of the accordion on the header section. This will be placed on the leading side, after the header text.\n * - Trailing Slot - Contains the trailing controls of the accordion on the header section. This will be placed on the trailing side, before the expand/collapse button.\n *\n * The body section contains:\n * - Default slot - User can place any content inside the body section.\n *\n * The accordion can be expanded or collapsed. The visibility of the body section can be controlled by `expanded` attribute. <br/>\n * There are two types of variants based on that the border styling of the accordion gets reflected. <br/>\n * There are two sizes of accordion, one is small and the other is large.\n * Small size has a padding of 1rem (16px) and large size has a padding of 1.5rem (24px) for the body section of accordion.\n *\n * By default, the header text in the accordion heading is of H3 with an aria-level of '3'.\n * If this accordion is placed on any other level in the entire webpage, then do adjust the aria-level number based on that.\n *\n * An accordion can be disabled, and when it's disabled, the header section will not be clickable.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If an accordion is expanded by default, then the screen reader might loose focus when toggling the visibilty of the accordion.\n *\n * @tagname mdc-accordion\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @slot leading-controls - The leading controls slot of the accordion on the header section.\n * @slot trailing-controls - The trailing controls slot of the accordion on the header section.\n * @slot default - The default slot contains the body section of the accordion. User can place anything inside this body slot.\n *\n * @event shown - (React: onShown) This event is triggered when the accordion is expanded.\n *\n * @cssproperty --mdc-accordionbutton-border-color - The border color of the accordion.\n * @cssproperty --mdc-accordionbutton-hover-color - The hover color of the accordion.\n * @cssproperty --mdc-accordionbutton-active-color - The active color of the accordion.\n * @cssproperty --mdc-accordionbutton-disabled-color - The disabled color of the accordion.\n *\n * @csspart header-section - The header section of the accordion.\n * @csspart leading-header - The leading header of the accordion.\n * @csspart trailing-header - The trailing header of the accordion.\n * @csspart trailing-header__button - The trailing header button of the accordion.\n * @csspart body-section - The body section of the accordion.\n */",
|
866
|
+
"customElement": true,
|
867
|
+
"attributes": [
|
868
|
+
{
|
869
|
+
"name": "disabled",
|
870
|
+
"type": {
|
871
|
+
"text": "boolean | undefined"
|
872
|
+
},
|
873
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
874
|
+
"default": "undefined",
|
875
|
+
"fieldName": "disabled",
|
876
|
+
"inheritedFrom": {
|
877
|
+
"name": "AccordionButton",
|
878
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
879
|
+
}
|
880
|
+
},
|
881
|
+
{
|
882
|
+
"name": "size",
|
883
|
+
"type": {
|
884
|
+
"text": "Size"
|
885
|
+
},
|
886
|
+
"description": "The size of the accordion item.",
|
887
|
+
"default": "'small'",
|
888
|
+
"fieldName": "size",
|
889
|
+
"inheritedFrom": {
|
890
|
+
"name": "AccordionButton",
|
891
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
892
|
+
}
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"name": "variant",
|
896
|
+
"type": {
|
897
|
+
"text": "Variant"
|
898
|
+
},
|
899
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
900
|
+
"default": "'default'",
|
901
|
+
"fieldName": "variant",
|
902
|
+
"inheritedFrom": {
|
903
|
+
"name": "AccordionButton",
|
904
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
905
|
+
}
|
906
|
+
},
|
907
|
+
{
|
908
|
+
"name": "data-aria-level",
|
909
|
+
"type": {
|
910
|
+
"text": "number"
|
911
|
+
},
|
912
|
+
"description": "The aria level of the accordion component.",
|
913
|
+
"default": "3",
|
914
|
+
"fieldName": "dataAriaLevel",
|
915
|
+
"inheritedFrom": {
|
916
|
+
"name": "AccordionButton",
|
917
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
918
|
+
}
|
919
|
+
},
|
920
|
+
{
|
921
|
+
"name": "expanded",
|
922
|
+
"type": {
|
923
|
+
"text": "boolean"
|
924
|
+
},
|
925
|
+
"description": "The visibility of the accordion button.",
|
926
|
+
"default": "false",
|
927
|
+
"fieldName": "expanded",
|
928
|
+
"inheritedFrom": {
|
929
|
+
"name": "AccordionButton",
|
930
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
931
|
+
}
|
932
|
+
},
|
933
|
+
{
|
934
|
+
"name": "header-text",
|
935
|
+
"type": {
|
936
|
+
"text": "string | undefined"
|
937
|
+
},
|
938
|
+
"description": "The header text of the accordion item.",
|
939
|
+
"fieldName": "headerText",
|
940
|
+
"inheritedFrom": {
|
941
|
+
"name": "AccordionButton",
|
942
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
943
|
+
}
|
944
|
+
},
|
945
|
+
{
|
946
|
+
"name": "prefix-icon",
|
947
|
+
"type": {
|
948
|
+
"text": "IconNames | undefined"
|
949
|
+
},
|
950
|
+
"description": "The leading icon that is displayed before the header text.",
|
951
|
+
"fieldName": "prefixIcon",
|
952
|
+
"inheritedFrom": {
|
953
|
+
"name": "AccordionButton",
|
954
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
955
|
+
}
|
956
|
+
}
|
957
|
+
]
|
958
|
+
}
|
959
|
+
],
|
960
|
+
"exports": [
|
961
|
+
{
|
962
|
+
"kind": "js",
|
963
|
+
"name": "default",
|
964
|
+
"declaration": {
|
965
|
+
"name": "Accordion",
|
966
|
+
"module": "components/accordion/accordion.component.js"
|
967
|
+
}
|
968
|
+
}
|
969
|
+
]
|
970
|
+
},
|
971
|
+
{
|
972
|
+
"kind": "javascript-module",
|
973
|
+
"path": "components/alertchip/alertchip.component.js",
|
974
|
+
"declarations": [
|
975
|
+
{
|
976
|
+
"kind": "class",
|
977
|
+
"description": "mdc-alertchip component is an interactive chip that consumers can use to represent an alert.\n\n- It supports a leading icon along with label.\n- It supports 5 variants of alerts - neutral, warning, error, success, and informational\n\nThis component is built by extending Buttonsimple.",
|
978
|
+
"name": "AlertChip",
|
979
|
+
"cssProperties": [
|
980
|
+
{
|
981
|
+
"description": "The color of the label text",
|
982
|
+
"name": "--mdc-chip-color"
|
983
|
+
},
|
984
|
+
{
|
985
|
+
"description": "The color of the icon",
|
986
|
+
"name": "--mdc-chip-icon-color"
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"description": "The border color of the alertchip",
|
990
|
+
"name": "--mdc-chip-border-color"
|
991
|
+
},
|
992
|
+
{
|
993
|
+
"description": "The background color of the alertchip",
|
994
|
+
"name": "--mdc-chip-background-color"
|
995
|
+
}
|
996
|
+
],
|
997
|
+
"cssParts": [
|
998
|
+
{
|
999
|
+
"description": "The alert icon",
|
1000
1000
|
"name": "icon"
|
1001
1001
|
},
|
1002
1002
|
{
|
@@ -5682,12 +5682,12 @@
|
|
5682
5682
|
},
|
5683
5683
|
{
|
5684
5684
|
"kind": "javascript-module",
|
5685
|
-
"path": "components/
|
5685
|
+
"path": "components/cardbutton/cardbutton.component.js",
|
5686
5686
|
"declarations": [
|
5687
5687
|
{
|
5688
5688
|
"kind": "class",
|
5689
|
-
"description": "
|
5690
|
-
"name": "
|
5689
|
+
"description": "cardbutton component looks like a card and behaves as a button component.\n\n**Note**: This is a single selection card i.e. interacting anywhere on the card would trigger the click event.\nMake sure to pass only non-interactable elements within the slots.",
|
5690
|
+
"name": "CardButton",
|
5691
5691
|
"cssProperties": [
|
5692
5692
|
{
|
5693
5693
|
"description": "The width of the card",
|
@@ -5756,14 +5756,6 @@
|
|
5756
5756
|
{
|
5757
5757
|
"description": "This slot is for passing primary variant of `mdc-button` component within the footer section.",
|
5758
5758
|
"name": "footer-button-primary"
|
5759
|
-
},
|
5760
|
-
{
|
5761
|
-
"description": "This slot is for passing secondary variant of `mdc-button` component within the footer section.",
|
5762
|
-
"name": "footer-button-secondary"
|
5763
|
-
},
|
5764
|
-
{
|
5765
|
-
"description": " This slot is for passing custom footer content. Only use this if really needed, using the footer-link and footer-button slots is preferred.",
|
5766
|
-
"name": "footer"
|
5767
5759
|
}
|
5768
5760
|
],
|
5769
5761
|
"members": [
|
@@ -5957,19 +5949,351 @@
|
|
5957
5949
|
"module": "utils/mixins/CardComponentMixin.js"
|
5958
5950
|
}
|
5959
5951
|
},
|
5952
|
+
{
|
5953
|
+
"kind": "field",
|
5954
|
+
"name": "autoFocusOnMount",
|
5955
|
+
"type": {
|
5956
|
+
"text": "boolean"
|
5957
|
+
},
|
5958
|
+
"default": "false",
|
5959
|
+
"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.",
|
5960
|
+
"attribute": "auto-focus-on-mount",
|
5961
|
+
"reflects": true,
|
5962
|
+
"inheritedFrom": {
|
5963
|
+
"name": "Buttonsimple",
|
5964
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
5965
|
+
}
|
5966
|
+
},
|
5967
|
+
{
|
5968
|
+
"kind": "field",
|
5969
|
+
"name": "tabIndex",
|
5970
|
+
"type": {
|
5971
|
+
"text": "number"
|
5972
|
+
},
|
5973
|
+
"default": "0",
|
5974
|
+
"description": "This property specifies the tab order of the element.",
|
5975
|
+
"attribute": "tabIndex",
|
5976
|
+
"reflects": true,
|
5977
|
+
"inheritedFrom": {
|
5978
|
+
"name": "Buttonsimple",
|
5979
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
5980
|
+
}
|
5981
|
+
},
|
5982
|
+
{
|
5983
|
+
"kind": "field",
|
5984
|
+
"name": "disabled",
|
5985
|
+
"type": {
|
5986
|
+
"text": "boolean | undefined"
|
5987
|
+
},
|
5988
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
5989
|
+
"default": "undefined",
|
5990
|
+
"attribute": "disabled",
|
5991
|
+
"reflects": true,
|
5992
|
+
"inheritedFrom": {
|
5993
|
+
"name": "Buttonsimple",
|
5994
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
5995
|
+
}
|
5996
|
+
},
|
5997
|
+
{
|
5998
|
+
"kind": "field",
|
5999
|
+
"name": "active",
|
6000
|
+
"type": {
|
6001
|
+
"text": "boolean | undefined"
|
6002
|
+
},
|
6003
|
+
"description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
|
6004
|
+
"default": "undefined",
|
6005
|
+
"attribute": "active",
|
6006
|
+
"reflects": true,
|
6007
|
+
"inheritedFrom": {
|
6008
|
+
"name": "Buttonsimple",
|
6009
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6010
|
+
}
|
6011
|
+
},
|
6012
|
+
{
|
6013
|
+
"kind": "field",
|
6014
|
+
"name": "softDisabled",
|
6015
|
+
"type": {
|
6016
|
+
"text": "boolean | undefined"
|
6017
|
+
},
|
6018
|
+
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
6019
|
+
"default": "undefined",
|
6020
|
+
"attribute": "soft-disabled",
|
6021
|
+
"reflects": true,
|
6022
|
+
"inheritedFrom": {
|
6023
|
+
"name": "Buttonsimple",
|
6024
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6025
|
+
}
|
6026
|
+
},
|
6027
|
+
{
|
6028
|
+
"kind": "field",
|
6029
|
+
"name": "size",
|
6030
|
+
"type": {
|
6031
|
+
"text": "ButtonSize"
|
6032
|
+
},
|
6033
|
+
"description": "Simplebutton size is a super set of all the sizes supported by children components.",
|
6034
|
+
"default": "32",
|
6035
|
+
"attribute": "size",
|
6036
|
+
"reflects": true,
|
6037
|
+
"inheritedFrom": {
|
6038
|
+
"name": "Buttonsimple",
|
6039
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6040
|
+
}
|
6041
|
+
},
|
6042
|
+
{
|
6043
|
+
"kind": "field",
|
6044
|
+
"name": "role",
|
6045
|
+
"type": {
|
6046
|
+
"text": "RoleType"
|
6047
|
+
},
|
6048
|
+
"description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
|
6049
|
+
"default": "button",
|
6050
|
+
"attribute": "role",
|
6051
|
+
"reflects": true,
|
6052
|
+
"inheritedFrom": {
|
6053
|
+
"name": "Buttonsimple",
|
6054
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6055
|
+
}
|
6056
|
+
},
|
6057
|
+
{
|
6058
|
+
"kind": "field",
|
6059
|
+
"name": "ariaStateKey",
|
6060
|
+
"type": {
|
6061
|
+
"text": "string | undefined"
|
6062
|
+
},
|
6063
|
+
"description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
|
6064
|
+
"default": "'aria-pressed' (when)",
|
6065
|
+
"attribute": "ariaStateKey",
|
6066
|
+
"reflects": true,
|
6067
|
+
"inheritedFrom": {
|
6068
|
+
"name": "Buttonsimple",
|
6069
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6070
|
+
}
|
6071
|
+
},
|
6072
|
+
{
|
6073
|
+
"kind": "field",
|
6074
|
+
"name": "type",
|
6075
|
+
"type": {
|
6076
|
+
"text": "ButtonType"
|
6077
|
+
},
|
6078
|
+
"description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
|
6079
|
+
"default": "button",
|
6080
|
+
"attribute": "type",
|
6081
|
+
"reflects": true,
|
6082
|
+
"inheritedFrom": {
|
6083
|
+
"name": "Buttonsimple",
|
6084
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6085
|
+
}
|
6086
|
+
},
|
6087
|
+
{
|
6088
|
+
"kind": "field",
|
6089
|
+
"name": "name",
|
6090
|
+
"type": {
|
6091
|
+
"text": "string | undefined"
|
6092
|
+
},
|
6093
|
+
"description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
|
6094
|
+
"attribute": "name",
|
6095
|
+
"reflects": true,
|
6096
|
+
"inheritedFrom": {
|
6097
|
+
"name": "Buttonsimple",
|
6098
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6099
|
+
}
|
6100
|
+
},
|
6101
|
+
{
|
6102
|
+
"kind": "field",
|
6103
|
+
"name": "value",
|
6104
|
+
"type": {
|
6105
|
+
"text": "string | undefined"
|
6106
|
+
},
|
6107
|
+
"description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
|
6108
|
+
"attribute": "value",
|
6109
|
+
"reflects": true,
|
6110
|
+
"inheritedFrom": {
|
6111
|
+
"name": "Buttonsimple",
|
6112
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6113
|
+
}
|
6114
|
+
},
|
5960
6115
|
{
|
5961
6116
|
"kind": "method",
|
5962
|
-
"name": "
|
6117
|
+
"name": "executeAction",
|
5963
6118
|
"privacy": "protected",
|
5964
|
-
"
|
5965
|
-
|
5966
|
-
"
|
5967
|
-
|
6119
|
+
"inheritedFrom": {
|
6120
|
+
"name": "Buttonsimple",
|
6121
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6122
|
+
}
|
6123
|
+
},
|
6124
|
+
{
|
6125
|
+
"kind": "method",
|
6126
|
+
"name": "setActive",
|
6127
|
+
"privacy": "protected",
|
6128
|
+
"parameters": [
|
6129
|
+
{
|
6130
|
+
"name": "element",
|
6131
|
+
"type": {
|
6132
|
+
"text": "HTMLElement"
|
6133
|
+
},
|
6134
|
+
"description": "The button element"
|
6135
|
+
},
|
6136
|
+
{
|
6137
|
+
"name": "active",
|
6138
|
+
"optional": true,
|
6139
|
+
"type": {
|
6140
|
+
"text": "boolean"
|
6141
|
+
},
|
6142
|
+
"description": "The active state of the element"
|
5968
6143
|
}
|
5969
|
-
|
6144
|
+
],
|
6145
|
+
"description": "Sets the ariaStateKey attributes based on the active state of the button.",
|
5970
6146
|
"inheritedFrom": {
|
5971
|
-
"name": "
|
5972
|
-
"module": "
|
6147
|
+
"name": "Buttonsimple",
|
6148
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6149
|
+
}
|
6150
|
+
},
|
6151
|
+
{
|
6152
|
+
"kind": "method",
|
6153
|
+
"name": "setSoftDisabled",
|
6154
|
+
"privacy": "private",
|
6155
|
+
"parameters": [
|
6156
|
+
{
|
6157
|
+
"name": "element",
|
6158
|
+
"type": {
|
6159
|
+
"text": "HTMLElement"
|
6160
|
+
},
|
6161
|
+
"description": "The button element."
|
6162
|
+
},
|
6163
|
+
{
|
6164
|
+
"name": "softDisabled",
|
6165
|
+
"optional": true,
|
6166
|
+
"type": {
|
6167
|
+
"text": "boolean"
|
6168
|
+
},
|
6169
|
+
"description": "The soft-disabled state."
|
6170
|
+
}
|
6171
|
+
],
|
6172
|
+
"description": "Sets the soft-disabled attribute for the button.\nWhen soft-disabled, the button looks to be disabled but remains focusable and clickable.\nAlso sets/removes aria-disabled attribute.",
|
6173
|
+
"inheritedFrom": {
|
6174
|
+
"name": "Buttonsimple",
|
6175
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6176
|
+
}
|
6177
|
+
},
|
6178
|
+
{
|
6179
|
+
"kind": "method",
|
6180
|
+
"name": "setDisabled",
|
6181
|
+
"privacy": "private",
|
6182
|
+
"parameters": [
|
6183
|
+
{
|
6184
|
+
"name": "element",
|
6185
|
+
"type": {
|
6186
|
+
"text": "HTMLElement"
|
6187
|
+
},
|
6188
|
+
"description": "The button element."
|
6189
|
+
},
|
6190
|
+
{
|
6191
|
+
"name": "disabled",
|
6192
|
+
"type": {
|
6193
|
+
"text": "boolean"
|
6194
|
+
},
|
6195
|
+
"description": "The disabled state."
|
6196
|
+
}
|
6197
|
+
],
|
6198
|
+
"description": "Sets the disabled attribute for the button.\nWhen disabled, the button is not focusable or clickable, and tabindex is set to -1.\nThe previous tabindex is stored and restored when enabled.\nAlso sets/removes aria-disabled attribute.",
|
6199
|
+
"inheritedFrom": {
|
6200
|
+
"name": "Buttonsimple",
|
6201
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6202
|
+
}
|
6203
|
+
},
|
6204
|
+
{
|
6205
|
+
"kind": "method",
|
6206
|
+
"name": "triggerClickEvent",
|
6207
|
+
"privacy": "private",
|
6208
|
+
"inheritedFrom": {
|
6209
|
+
"name": "Buttonsimple",
|
6210
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6211
|
+
}
|
6212
|
+
},
|
6213
|
+
{
|
6214
|
+
"kind": "method",
|
6215
|
+
"name": "handleBlur",
|
6216
|
+
"privacy": "private",
|
6217
|
+
"description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
|
6218
|
+
"inheritedFrom": {
|
6219
|
+
"name": "Buttonsimple",
|
6220
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6221
|
+
}
|
6222
|
+
},
|
6223
|
+
{
|
6224
|
+
"kind": "method",
|
6225
|
+
"name": "handleKeyDown",
|
6226
|
+
"privacy": "private",
|
6227
|
+
"parameters": [
|
6228
|
+
{
|
6229
|
+
"name": "event",
|
6230
|
+
"type": {
|
6231
|
+
"text": "KeyboardEvent"
|
6232
|
+
},
|
6233
|
+
"description": "The keyboard event."
|
6234
|
+
}
|
6235
|
+
],
|
6236
|
+
"description": "Handles the keydown event on the button.\nIf the key is 'Enter' or 'Space', the button is pressed.\nIf the key is 'Enter', the button is pressed. The native HTML button works in the same way.\nIf the key is 'Space', the button's default is prevent to avoid scrolling etc in the host application.",
|
6237
|
+
"inheritedFrom": {
|
6238
|
+
"name": "Buttonsimple",
|
6239
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6240
|
+
}
|
6241
|
+
},
|
6242
|
+
{
|
6243
|
+
"kind": "method",
|
6244
|
+
"name": "handleKeyUp",
|
6245
|
+
"privacy": "private",
|
6246
|
+
"parameters": [
|
6247
|
+
{
|
6248
|
+
"name": "event",
|
6249
|
+
"type": {
|
6250
|
+
"text": "KeyboardEvent"
|
6251
|
+
},
|
6252
|
+
"description": "The keyboard event."
|
6253
|
+
}
|
6254
|
+
],
|
6255
|
+
"description": "Handles the keyup event on the button.\nIf the key is 'Enter' or 'Space', the button is clicked.\nIf the key is 'Space', the button is pressed. The native HTML button works in the same way.",
|
6256
|
+
"inheritedFrom": {
|
6257
|
+
"name": "Buttonsimple",
|
6258
|
+
"module": "components/buttonsimple/buttonsimple.component.js"
|
6259
|
+
}
|
6260
|
+
}
|
6261
|
+
],
|
6262
|
+
"events": [
|
6263
|
+
{
|
6264
|
+
"description": "(React: onClick) Event that gets dispatched when the card is clicked.",
|
6265
|
+
"name": "click",
|
6266
|
+
"reactName": "onClick",
|
6267
|
+
"inheritedFrom": {
|
6268
|
+
"name": "Buttonsimple",
|
6269
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6270
|
+
}
|
6271
|
+
},
|
6272
|
+
{
|
6273
|
+
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the card. It fires the click event when enter key is used.",
|
6274
|
+
"name": "keydown",
|
6275
|
+
"reactName": "onKeyDown",
|
6276
|
+
"inheritedFrom": {
|
6277
|
+
"name": "Buttonsimple",
|
6278
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6279
|
+
}
|
6280
|
+
},
|
6281
|
+
{
|
6282
|
+
"description": "(React: onKeyUp) This event is dispatched when a key is released on the card. It fires the click event when space key is used.",
|
6283
|
+
"name": "keyup",
|
6284
|
+
"reactName": "onKeyUp",
|
6285
|
+
"inheritedFrom": {
|
6286
|
+
"name": "Buttonsimple",
|
6287
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6288
|
+
}
|
6289
|
+
},
|
6290
|
+
{
|
6291
|
+
"description": "(React: onFocus) Event that gets dispatched when the card receives focus.",
|
6292
|
+
"name": "focus",
|
6293
|
+
"reactName": "onFocus",
|
6294
|
+
"inheritedFrom": {
|
6295
|
+
"name": "Buttonsimple",
|
6296
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
5973
6297
|
}
|
5974
6298
|
}
|
5975
6299
|
],
|
@@ -5977,18 +6301,14 @@
|
|
5977
6301
|
{
|
5978
6302
|
"name": "CardComponentMixin",
|
5979
6303
|
"module": "/src/utils/mixins/CardComponentMixin"
|
5980
|
-
},
|
5981
|
-
{
|
5982
|
-
"name": "FooterMixin",
|
5983
|
-
"module": "/src/utils/mixins/FooterMixin"
|
5984
6304
|
}
|
5985
6305
|
],
|
5986
6306
|
"superclass": {
|
5987
|
-
"name": "
|
5988
|
-
"module": "/src/
|
6307
|
+
"name": "Buttonsimple",
|
6308
|
+
"module": "/src/components/buttonsimple/buttonsimple.component"
|
5989
6309
|
},
|
5990
|
-
"tagName": "mdc-
|
5991
|
-
"jsDoc": "/**\n *
|
6310
|
+
"tagName": "mdc-cardbutton",
|
6311
|
+
"jsDoc": "/**\n * cardbutton component looks like a card and behaves as a button component.\n *\n * **Note**: This is a single selection card i.e. interacting anywhere on the card would trigger the click event.\n * Make sure to pass only non-interactable elements within the slots.\n *\n * @tagname mdc-cardbutton\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) Event that gets dispatched when the card is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the card.\n * It fires the click event when enter key is used.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the card.\n * It fires the click event when space key is used.\n * @event focus - (React: onFocus) Event that gets dispatched when the card receives focus.\n *\n * @slot before-body - This slot is for passing the content before the body\n * @slot body - This slot is for passing the text content for the card\n * @slot after-body - This slot is for passing the content after the body\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of `mdc-button` component within the footer section.\n *\n * @csspart header - The header part of the card\n * @csspart icon - The icon part of the card header\n * @csspart body - The body part of the card\n * @csspart image - The image part of the card\n * @csspart footer - The footer part of the card\n * @csspart footer-link - The link part of the card footer\n * @csspart footer-button-primary - The primary button part of the card footer\n * @csspart footer-button-secondary - The secondary button part of the card footer\n * @csspart icon-button - The icon button part of the card header\n * @csspart text - The text part of the card\n *\n * @cssproperty --mdc-card-width - The width of the card\n */",
|
5992
6312
|
"customElement": true,
|
5993
6313
|
"attributes": [
|
5994
6314
|
{
|
@@ -6106,6 +6426,147 @@
|
|
6106
6426
|
"name": "CardComponentMixin",
|
6107
6427
|
"module": "src/utils/mixins/CardComponentMixin.ts"
|
6108
6428
|
}
|
6429
|
+
},
|
6430
|
+
{
|
6431
|
+
"name": "auto-focus-on-mount",
|
6432
|
+
"type": {
|
6433
|
+
"text": "boolean"
|
6434
|
+
},
|
6435
|
+
"default": "false",
|
6436
|
+
"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.",
|
6437
|
+
"fieldName": "autoFocusOnMount",
|
6438
|
+
"inheritedFrom": {
|
6439
|
+
"name": "Buttonsimple",
|
6440
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6441
|
+
}
|
6442
|
+
},
|
6443
|
+
{
|
6444
|
+
"name": "tabIndex",
|
6445
|
+
"type": {
|
6446
|
+
"text": "number"
|
6447
|
+
},
|
6448
|
+
"default": "0",
|
6449
|
+
"description": "This property specifies the tab order of the element.",
|
6450
|
+
"fieldName": "tabIndex",
|
6451
|
+
"inheritedFrom": {
|
6452
|
+
"name": "Buttonsimple",
|
6453
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6454
|
+
}
|
6455
|
+
},
|
6456
|
+
{
|
6457
|
+
"name": "disabled",
|
6458
|
+
"type": {
|
6459
|
+
"text": "boolean | undefined"
|
6460
|
+
},
|
6461
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
6462
|
+
"default": "undefined",
|
6463
|
+
"fieldName": "disabled",
|
6464
|
+
"inheritedFrom": {
|
6465
|
+
"name": "Buttonsimple",
|
6466
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6467
|
+
}
|
6468
|
+
},
|
6469
|
+
{
|
6470
|
+
"name": "active",
|
6471
|
+
"type": {
|
6472
|
+
"text": "boolean | undefined"
|
6473
|
+
},
|
6474
|
+
"description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
|
6475
|
+
"default": "undefined",
|
6476
|
+
"fieldName": "active",
|
6477
|
+
"inheritedFrom": {
|
6478
|
+
"name": "Buttonsimple",
|
6479
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6480
|
+
}
|
6481
|
+
},
|
6482
|
+
{
|
6483
|
+
"name": "soft-disabled",
|
6484
|
+
"type": {
|
6485
|
+
"text": "boolean | undefined"
|
6486
|
+
},
|
6487
|
+
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
6488
|
+
"default": "undefined",
|
6489
|
+
"fieldName": "softDisabled",
|
6490
|
+
"inheritedFrom": {
|
6491
|
+
"name": "Buttonsimple",
|
6492
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6493
|
+
}
|
6494
|
+
},
|
6495
|
+
{
|
6496
|
+
"name": "size",
|
6497
|
+
"type": {
|
6498
|
+
"text": "ButtonSize"
|
6499
|
+
},
|
6500
|
+
"description": "Simplebutton size is a super set of all the sizes supported by children components.",
|
6501
|
+
"default": "32",
|
6502
|
+
"fieldName": "size",
|
6503
|
+
"inheritedFrom": {
|
6504
|
+
"name": "Buttonsimple",
|
6505
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6506
|
+
}
|
6507
|
+
},
|
6508
|
+
{
|
6509
|
+
"name": "role",
|
6510
|
+
"type": {
|
6511
|
+
"text": "RoleType"
|
6512
|
+
},
|
6513
|
+
"description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
|
6514
|
+
"default": "button",
|
6515
|
+
"fieldName": "role",
|
6516
|
+
"inheritedFrom": {
|
6517
|
+
"name": "Buttonsimple",
|
6518
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6519
|
+
}
|
6520
|
+
},
|
6521
|
+
{
|
6522
|
+
"name": "ariaStateKey",
|
6523
|
+
"type": {
|
6524
|
+
"text": "string | undefined"
|
6525
|
+
},
|
6526
|
+
"description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
|
6527
|
+
"default": "'aria-pressed' (when)",
|
6528
|
+
"fieldName": "ariaStateKey",
|
6529
|
+
"inheritedFrom": {
|
6530
|
+
"name": "Buttonsimple",
|
6531
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6532
|
+
}
|
6533
|
+
},
|
6534
|
+
{
|
6535
|
+
"name": "type",
|
6536
|
+
"type": {
|
6537
|
+
"text": "ButtonType"
|
6538
|
+
},
|
6539
|
+
"description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
|
6540
|
+
"default": "button",
|
6541
|
+
"fieldName": "type",
|
6542
|
+
"inheritedFrom": {
|
6543
|
+
"name": "Buttonsimple",
|
6544
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6545
|
+
}
|
6546
|
+
},
|
6547
|
+
{
|
6548
|
+
"name": "name",
|
6549
|
+
"type": {
|
6550
|
+
"text": "string | undefined"
|
6551
|
+
},
|
6552
|
+
"description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
|
6553
|
+
"fieldName": "name",
|
6554
|
+
"inheritedFrom": {
|
6555
|
+
"name": "Buttonsimple",
|
6556
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6557
|
+
}
|
6558
|
+
},
|
6559
|
+
{
|
6560
|
+
"name": "value",
|
6561
|
+
"type": {
|
6562
|
+
"text": "string | undefined"
|
6563
|
+
},
|
6564
|
+
"description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
|
6565
|
+
"fieldName": "value",
|
6566
|
+
"inheritedFrom": {
|
6567
|
+
"name": "Buttonsimple",
|
6568
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6569
|
+
}
|
6109
6570
|
}
|
6110
6571
|
]
|
6111
6572
|
}
|
@@ -6115,20 +6576,20 @@
|
|
6115
6576
|
"kind": "js",
|
6116
6577
|
"name": "default",
|
6117
6578
|
"declaration": {
|
6118
|
-
"name": "
|
6119
|
-
"module": "components/
|
6579
|
+
"name": "CardButton",
|
6580
|
+
"module": "components/cardbutton/cardbutton.component.js"
|
6120
6581
|
}
|
6121
6582
|
}
|
6122
6583
|
]
|
6123
6584
|
},
|
6124
6585
|
{
|
6125
6586
|
"kind": "javascript-module",
|
6126
|
-
"path": "components/
|
6587
|
+
"path": "components/card/card.component.js",
|
6127
6588
|
"declarations": [
|
6128
6589
|
{
|
6129
6590
|
"kind": "class",
|
6130
|
-
"description": "
|
6131
|
-
"name": "
|
6591
|
+
"description": "The card component allows users to organize information in a structured and tangible\nformat that is visually appealing. `mdc-card` is a static component that supports\nthe following features:\n- Image\n- Header\n - Icon\n - Title\n - Subtitle\n- Body\n\nThe card can either be vertically or horizontally oriented. The vertical card has a min-width of 20rem and the horizontal card has a min-width of 40rem.\n\nThere are 2 variants for the card that represent the border styling - 'border' and 'ghost'.\n\nTo make this card interactive, use the following slots:\n- `icon-button`: This slot supports action icon buttons in the header section (maximum of 3 buttons).\n- `footer-link`: This slot is for passing `mdc-link` component within the footer section.\n- `footer-button-primary`: This slot is for passing primary variant of `mdc-button` component within the footer section.\n- `footer-button-secondary`: This slot is for passing secondary variant of `mdc-button` component\nwithin the footer section.\n\nInteractive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.",
|
6592
|
+
"name": "Card",
|
6132
6593
|
"cssProperties": [
|
6133
6594
|
{
|
6134
6595
|
"description": "The width of the card",
|
@@ -6197,6 +6658,14 @@
|
|
6197
6658
|
{
|
6198
6659
|
"description": "This slot is for passing primary variant of `mdc-button` component within the footer section.",
|
6199
6660
|
"name": "footer-button-primary"
|
6661
|
+
},
|
6662
|
+
{
|
6663
|
+
"description": "This slot is for passing secondary variant of `mdc-button` component within the footer section.",
|
6664
|
+
"name": "footer-button-secondary"
|
6665
|
+
},
|
6666
|
+
{
|
6667
|
+
"description": " This slot is for passing custom footer content. Only use this if really needed, using the footer-link and footer-button slots is preferred.",
|
6668
|
+
"name": "footer"
|
6200
6669
|
}
|
6201
6670
|
],
|
6202
6671
|
"members": [
|
@@ -6390,351 +6859,19 @@
|
|
6390
6859
|
"module": "utils/mixins/CardComponentMixin.js"
|
6391
6860
|
}
|
6392
6861
|
},
|
6393
|
-
{
|
6394
|
-
"kind": "field",
|
6395
|
-
"name": "autoFocusOnMount",
|
6396
|
-
"type": {
|
6397
|
-
"text": "boolean"
|
6398
|
-
},
|
6399
|
-
"default": "false",
|
6400
|
-
"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.",
|
6401
|
-
"attribute": "auto-focus-on-mount",
|
6402
|
-
"reflects": true,
|
6403
|
-
"inheritedFrom": {
|
6404
|
-
"name": "Buttonsimple",
|
6405
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6406
|
-
}
|
6407
|
-
},
|
6408
|
-
{
|
6409
|
-
"kind": "field",
|
6410
|
-
"name": "tabIndex",
|
6411
|
-
"type": {
|
6412
|
-
"text": "number"
|
6413
|
-
},
|
6414
|
-
"default": "0",
|
6415
|
-
"description": "This property specifies the tab order of the element.",
|
6416
|
-
"attribute": "tabIndex",
|
6417
|
-
"reflects": true,
|
6418
|
-
"inheritedFrom": {
|
6419
|
-
"name": "Buttonsimple",
|
6420
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6421
|
-
}
|
6422
|
-
},
|
6423
|
-
{
|
6424
|
-
"kind": "field",
|
6425
|
-
"name": "disabled",
|
6426
|
-
"type": {
|
6427
|
-
"text": "boolean | undefined"
|
6428
|
-
},
|
6429
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
6430
|
-
"default": "undefined",
|
6431
|
-
"attribute": "disabled",
|
6432
|
-
"reflects": true,
|
6433
|
-
"inheritedFrom": {
|
6434
|
-
"name": "Buttonsimple",
|
6435
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6436
|
-
}
|
6437
|
-
},
|
6438
|
-
{
|
6439
|
-
"kind": "field",
|
6440
|
-
"name": "active",
|
6441
|
-
"type": {
|
6442
|
-
"text": "boolean | undefined"
|
6443
|
-
},
|
6444
|
-
"description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
|
6445
|
-
"default": "undefined",
|
6446
|
-
"attribute": "active",
|
6447
|
-
"reflects": true,
|
6448
|
-
"inheritedFrom": {
|
6449
|
-
"name": "Buttonsimple",
|
6450
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6451
|
-
}
|
6452
|
-
},
|
6453
|
-
{
|
6454
|
-
"kind": "field",
|
6455
|
-
"name": "softDisabled",
|
6456
|
-
"type": {
|
6457
|
-
"text": "boolean | undefined"
|
6458
|
-
},
|
6459
|
-
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
6460
|
-
"default": "undefined",
|
6461
|
-
"attribute": "soft-disabled",
|
6462
|
-
"reflects": true,
|
6463
|
-
"inheritedFrom": {
|
6464
|
-
"name": "Buttonsimple",
|
6465
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6466
|
-
}
|
6467
|
-
},
|
6468
|
-
{
|
6469
|
-
"kind": "field",
|
6470
|
-
"name": "size",
|
6471
|
-
"type": {
|
6472
|
-
"text": "ButtonSize"
|
6473
|
-
},
|
6474
|
-
"description": "Simplebutton size is a super set of all the sizes supported by children components.",
|
6475
|
-
"default": "32",
|
6476
|
-
"attribute": "size",
|
6477
|
-
"reflects": true,
|
6478
|
-
"inheritedFrom": {
|
6479
|
-
"name": "Buttonsimple",
|
6480
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6481
|
-
}
|
6482
|
-
},
|
6483
|
-
{
|
6484
|
-
"kind": "field",
|
6485
|
-
"name": "role",
|
6486
|
-
"type": {
|
6487
|
-
"text": "RoleType"
|
6488
|
-
},
|
6489
|
-
"description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
|
6490
|
-
"default": "button",
|
6491
|
-
"attribute": "role",
|
6492
|
-
"reflects": true,
|
6493
|
-
"inheritedFrom": {
|
6494
|
-
"name": "Buttonsimple",
|
6495
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6496
|
-
}
|
6497
|
-
},
|
6498
|
-
{
|
6499
|
-
"kind": "field",
|
6500
|
-
"name": "ariaStateKey",
|
6501
|
-
"type": {
|
6502
|
-
"text": "string | undefined"
|
6503
|
-
},
|
6504
|
-
"description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
|
6505
|
-
"default": "'aria-pressed' (when)",
|
6506
|
-
"attribute": "ariaStateKey",
|
6507
|
-
"reflects": true,
|
6508
|
-
"inheritedFrom": {
|
6509
|
-
"name": "Buttonsimple",
|
6510
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6511
|
-
}
|
6512
|
-
},
|
6513
|
-
{
|
6514
|
-
"kind": "field",
|
6515
|
-
"name": "type",
|
6516
|
-
"type": {
|
6517
|
-
"text": "ButtonType"
|
6518
|
-
},
|
6519
|
-
"description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
|
6520
|
-
"default": "button",
|
6521
|
-
"attribute": "type",
|
6522
|
-
"reflects": true,
|
6523
|
-
"inheritedFrom": {
|
6524
|
-
"name": "Buttonsimple",
|
6525
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6526
|
-
}
|
6527
|
-
},
|
6528
|
-
{
|
6529
|
-
"kind": "field",
|
6530
|
-
"name": "name",
|
6531
|
-
"type": {
|
6532
|
-
"text": "string | undefined"
|
6533
|
-
},
|
6534
|
-
"description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
|
6535
|
-
"attribute": "name",
|
6536
|
-
"reflects": true,
|
6537
|
-
"inheritedFrom": {
|
6538
|
-
"name": "Buttonsimple",
|
6539
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6540
|
-
}
|
6541
|
-
},
|
6542
|
-
{
|
6543
|
-
"kind": "field",
|
6544
|
-
"name": "value",
|
6545
|
-
"type": {
|
6546
|
-
"text": "string | undefined"
|
6547
|
-
},
|
6548
|
-
"description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
|
6549
|
-
"attribute": "value",
|
6550
|
-
"reflects": true,
|
6551
|
-
"inheritedFrom": {
|
6552
|
-
"name": "Buttonsimple",
|
6553
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6554
|
-
}
|
6555
|
-
},
|
6556
|
-
{
|
6557
|
-
"kind": "method",
|
6558
|
-
"name": "executeAction",
|
6559
|
-
"privacy": "protected",
|
6560
|
-
"inheritedFrom": {
|
6561
|
-
"name": "Buttonsimple",
|
6562
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6563
|
-
}
|
6564
|
-
},
|
6565
6862
|
{
|
6566
6863
|
"kind": "method",
|
6567
|
-
"name": "
|
6864
|
+
"name": "renderFooter",
|
6568
6865
|
"privacy": "protected",
|
6569
|
-
"
|
6570
|
-
|
6571
|
-
|
6572
|
-
"
|
6573
|
-
"text": "HTMLElement"
|
6574
|
-
},
|
6575
|
-
"description": "The button element"
|
6576
|
-
},
|
6577
|
-
{
|
6578
|
-
"name": "active",
|
6579
|
-
"optional": true,
|
6580
|
-
"type": {
|
6581
|
-
"text": "boolean"
|
6582
|
-
},
|
6583
|
-
"description": "The active state of the element"
|
6584
|
-
}
|
6585
|
-
],
|
6586
|
-
"description": "Sets the ariaStateKey attributes based on the active state of the button.",
|
6587
|
-
"inheritedFrom": {
|
6588
|
-
"name": "Buttonsimple",
|
6589
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6590
|
-
}
|
6591
|
-
},
|
6592
|
-
{
|
6593
|
-
"kind": "method",
|
6594
|
-
"name": "setSoftDisabled",
|
6595
|
-
"privacy": "private",
|
6596
|
-
"parameters": [
|
6597
|
-
{
|
6598
|
-
"name": "element",
|
6599
|
-
"type": {
|
6600
|
-
"text": "HTMLElement"
|
6601
|
-
},
|
6602
|
-
"description": "The button element."
|
6603
|
-
},
|
6604
|
-
{
|
6605
|
-
"name": "softDisabled",
|
6606
|
-
"optional": true,
|
6607
|
-
"type": {
|
6608
|
-
"text": "boolean"
|
6609
|
-
},
|
6610
|
-
"description": "The soft-disabled state."
|
6611
|
-
}
|
6612
|
-
],
|
6613
|
-
"description": "Sets the soft-disabled attribute for the button.\nWhen soft-disabled, the button looks to be disabled but remains focusable and clickable.\nAlso sets/removes aria-disabled attribute.",
|
6614
|
-
"inheritedFrom": {
|
6615
|
-
"name": "Buttonsimple",
|
6616
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6617
|
-
}
|
6618
|
-
},
|
6619
|
-
{
|
6620
|
-
"kind": "method",
|
6621
|
-
"name": "setDisabled",
|
6622
|
-
"privacy": "private",
|
6623
|
-
"parameters": [
|
6624
|
-
{
|
6625
|
-
"name": "element",
|
6626
|
-
"type": {
|
6627
|
-
"text": "HTMLElement"
|
6628
|
-
},
|
6629
|
-
"description": "The button element."
|
6630
|
-
},
|
6631
|
-
{
|
6632
|
-
"name": "disabled",
|
6633
|
-
"type": {
|
6634
|
-
"text": "boolean"
|
6635
|
-
},
|
6636
|
-
"description": "The disabled state."
|
6637
|
-
}
|
6638
|
-
],
|
6639
|
-
"description": "Sets the disabled attribute for the button.\nWhen disabled, the button is not focusable or clickable, and tabindex is set to -1.\nThe previous tabindex is stored and restored when enabled.\nAlso sets/removes aria-disabled attribute.",
|
6640
|
-
"inheritedFrom": {
|
6641
|
-
"name": "Buttonsimple",
|
6642
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6643
|
-
}
|
6644
|
-
},
|
6645
|
-
{
|
6646
|
-
"kind": "method",
|
6647
|
-
"name": "triggerClickEvent",
|
6648
|
-
"privacy": "private",
|
6649
|
-
"inheritedFrom": {
|
6650
|
-
"name": "Buttonsimple",
|
6651
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6652
|
-
}
|
6653
|
-
},
|
6654
|
-
{
|
6655
|
-
"kind": "method",
|
6656
|
-
"name": "handleBlur",
|
6657
|
-
"privacy": "private",
|
6658
|
-
"description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
|
6659
|
-
"inheritedFrom": {
|
6660
|
-
"name": "Buttonsimple",
|
6661
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6662
|
-
}
|
6663
|
-
},
|
6664
|
-
{
|
6665
|
-
"kind": "method",
|
6666
|
-
"name": "handleKeyDown",
|
6667
|
-
"privacy": "private",
|
6668
|
-
"parameters": [
|
6669
|
-
{
|
6670
|
-
"name": "event",
|
6671
|
-
"type": {
|
6672
|
-
"text": "KeyboardEvent"
|
6673
|
-
},
|
6674
|
-
"description": "The keyboard event."
|
6675
|
-
}
|
6676
|
-
],
|
6677
|
-
"description": "Handles the keydown event on the button.\nIf the key is 'Enter' or 'Space', the button is pressed.\nIf the key is 'Enter', the button is pressed. The native HTML button works in the same way.\nIf the key is 'Space', the button's default is prevent to avoid scrolling etc in the host application.",
|
6678
|
-
"inheritedFrom": {
|
6679
|
-
"name": "Buttonsimple",
|
6680
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6681
|
-
}
|
6682
|
-
},
|
6683
|
-
{
|
6684
|
-
"kind": "method",
|
6685
|
-
"name": "handleKeyUp",
|
6686
|
-
"privacy": "private",
|
6687
|
-
"parameters": [
|
6688
|
-
{
|
6689
|
-
"name": "event",
|
6690
|
-
"type": {
|
6691
|
-
"text": "KeyboardEvent"
|
6692
|
-
},
|
6693
|
-
"description": "The keyboard event."
|
6866
|
+
"description": "Renders the footer of the card if footer-link,\nfooter-button-primary, or footer-button-secondary slots are provided",
|
6867
|
+
"return": {
|
6868
|
+
"type": {
|
6869
|
+
"text": ""
|
6694
6870
|
}
|
6695
|
-
|
6696
|
-
"description": "Handles the keyup event on the button.\nIf the key is 'Enter' or 'Space', the button is clicked.\nIf the key is 'Space', the button is pressed. The native HTML button works in the same way.",
|
6697
|
-
"inheritedFrom": {
|
6698
|
-
"name": "Buttonsimple",
|
6699
|
-
"module": "components/buttonsimple/buttonsimple.component.js"
|
6700
|
-
}
|
6701
|
-
}
|
6702
|
-
],
|
6703
|
-
"events": [
|
6704
|
-
{
|
6705
|
-
"description": "(React: onClick) Event that gets dispatched when the card is clicked.",
|
6706
|
-
"name": "click",
|
6707
|
-
"reactName": "onClick",
|
6708
|
-
"inheritedFrom": {
|
6709
|
-
"name": "Buttonsimple",
|
6710
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6711
|
-
}
|
6712
|
-
},
|
6713
|
-
{
|
6714
|
-
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the card. It fires the click event when enter key is used.",
|
6715
|
-
"name": "keydown",
|
6716
|
-
"reactName": "onKeyDown",
|
6717
|
-
"inheritedFrom": {
|
6718
|
-
"name": "Buttonsimple",
|
6719
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6720
|
-
}
|
6721
|
-
},
|
6722
|
-
{
|
6723
|
-
"description": "(React: onKeyUp) This event is dispatched when a key is released on the card. It fires the click event when space key is used.",
|
6724
|
-
"name": "keyup",
|
6725
|
-
"reactName": "onKeyUp",
|
6726
|
-
"inheritedFrom": {
|
6727
|
-
"name": "Buttonsimple",
|
6728
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6729
|
-
}
|
6730
|
-
},
|
6731
|
-
{
|
6732
|
-
"description": "(React: onFocus) Event that gets dispatched when the card receives focus.",
|
6733
|
-
"name": "focus",
|
6734
|
-
"reactName": "onFocus",
|
6871
|
+
},
|
6735
6872
|
"inheritedFrom": {
|
6736
|
-
"name": "
|
6737
|
-
"module": "
|
6873
|
+
"name": "FooterMixin",
|
6874
|
+
"module": "utils/mixins/FooterMixin.js"
|
6738
6875
|
}
|
6739
6876
|
}
|
6740
6877
|
],
|
@@ -6742,14 +6879,18 @@
|
|
6742
6879
|
{
|
6743
6880
|
"name": "CardComponentMixin",
|
6744
6881
|
"module": "/src/utils/mixins/CardComponentMixin"
|
6882
|
+
},
|
6883
|
+
{
|
6884
|
+
"name": "FooterMixin",
|
6885
|
+
"module": "/src/utils/mixins/FooterMixin"
|
6745
6886
|
}
|
6746
6887
|
],
|
6747
6888
|
"superclass": {
|
6748
|
-
"name": "
|
6749
|
-
"module": "/src/
|
6889
|
+
"name": "Component",
|
6890
|
+
"module": "/src/models"
|
6750
6891
|
},
|
6751
|
-
"tagName": "mdc-
|
6752
|
-
"jsDoc": "/**\n *
|
6892
|
+
"tagName": "mdc-card",
|
6893
|
+
"jsDoc": "/**\n * The card component allows users to organize information in a structured and tangible\n * format that is visually appealing. `mdc-card` is a static component that supports\n * the following features:\n * - Image\n * - Header\n * - Icon\n * - Title\n * - Subtitle\n * - Body\n *\n * The card can either be vertically or horizontally oriented. The vertical card has a min-width of 20rem and the horizontal card has a min-width of 40rem.\n *\n * There are 2 variants for the card that represent the border styling - 'border' and 'ghost'.\n *\n * To make this card interactive, use the following slots:\n * - `icon-button`: This slot supports action icon buttons in the header section (maximum of 3 buttons).\n * - `footer-link`: This slot is for passing `mdc-link` component within the footer section.\n * - `footer-button-primary`: This slot is for passing primary variant of `mdc-button` component within the footer section.\n * - `footer-button-secondary`: This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n *\n * Interactive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.\n *\n * @slot before-body - This slot is for passing the content before the body\n * @slot body - This slot is for passing the text content for the card\n * @slot after-body - This slot is for passing the content after the body\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer - This slot is for passing custom footer content. Only use this if really needed,\n * using the footer-link and footer-button slots is preferred.\n *\n * @csspart header - The header part of the card\n * @csspart icon - The icon part of the card header\n * @csspart body - The body part of the card\n * @csspart image - The image part of the card\n * @csspart footer - The footer part of the card\n * @csspart footer-link - The link part of the card footer\n * @csspart footer-button-primary - The primary button part of the card footer\n * @csspart footer-button-secondary - The secondary button part of the card footer\n * @csspart icon-button - The icon button part of the card header\n * @csspart text - The text part of the card\n *\n * @tagname mdc-card\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-card-width - The width of the card\n *\n */",
|
6753
6894
|
"customElement": true,
|
6754
6895
|
"attributes": [
|
6755
6896
|
{
|
@@ -6867,147 +7008,6 @@
|
|
6867
7008
|
"name": "CardComponentMixin",
|
6868
7009
|
"module": "src/utils/mixins/CardComponentMixin.ts"
|
6869
7010
|
}
|
6870
|
-
},
|
6871
|
-
{
|
6872
|
-
"name": "auto-focus-on-mount",
|
6873
|
-
"type": {
|
6874
|
-
"text": "boolean"
|
6875
|
-
},
|
6876
|
-
"default": "false",
|
6877
|
-
"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.",
|
6878
|
-
"fieldName": "autoFocusOnMount",
|
6879
|
-
"inheritedFrom": {
|
6880
|
-
"name": "Buttonsimple",
|
6881
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6882
|
-
}
|
6883
|
-
},
|
6884
|
-
{
|
6885
|
-
"name": "tabIndex",
|
6886
|
-
"type": {
|
6887
|
-
"text": "number"
|
6888
|
-
},
|
6889
|
-
"default": "0",
|
6890
|
-
"description": "This property specifies the tab order of the element.",
|
6891
|
-
"fieldName": "tabIndex",
|
6892
|
-
"inheritedFrom": {
|
6893
|
-
"name": "Buttonsimple",
|
6894
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6895
|
-
}
|
6896
|
-
},
|
6897
|
-
{
|
6898
|
-
"name": "disabled",
|
6899
|
-
"type": {
|
6900
|
-
"text": "boolean | undefined"
|
6901
|
-
},
|
6902
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
6903
|
-
"default": "undefined",
|
6904
|
-
"fieldName": "disabled",
|
6905
|
-
"inheritedFrom": {
|
6906
|
-
"name": "Buttonsimple",
|
6907
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6908
|
-
}
|
6909
|
-
},
|
6910
|
-
{
|
6911
|
-
"name": "active",
|
6912
|
-
"type": {
|
6913
|
-
"text": "boolean | undefined"
|
6914
|
-
},
|
6915
|
-
"description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
|
6916
|
-
"default": "undefined",
|
6917
|
-
"fieldName": "active",
|
6918
|
-
"inheritedFrom": {
|
6919
|
-
"name": "Buttonsimple",
|
6920
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6921
|
-
}
|
6922
|
-
},
|
6923
|
-
{
|
6924
|
-
"name": "soft-disabled",
|
6925
|
-
"type": {
|
6926
|
-
"text": "boolean | undefined"
|
6927
|
-
},
|
6928
|
-
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
6929
|
-
"default": "undefined",
|
6930
|
-
"fieldName": "softDisabled",
|
6931
|
-
"inheritedFrom": {
|
6932
|
-
"name": "Buttonsimple",
|
6933
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6934
|
-
}
|
6935
|
-
},
|
6936
|
-
{
|
6937
|
-
"name": "size",
|
6938
|
-
"type": {
|
6939
|
-
"text": "ButtonSize"
|
6940
|
-
},
|
6941
|
-
"description": "Simplebutton size is a super set of all the sizes supported by children components.",
|
6942
|
-
"default": "32",
|
6943
|
-
"fieldName": "size",
|
6944
|
-
"inheritedFrom": {
|
6945
|
-
"name": "Buttonsimple",
|
6946
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6947
|
-
}
|
6948
|
-
},
|
6949
|
-
{
|
6950
|
-
"name": "role",
|
6951
|
-
"type": {
|
6952
|
-
"text": "RoleType"
|
6953
|
-
},
|
6954
|
-
"description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
|
6955
|
-
"default": "button",
|
6956
|
-
"fieldName": "role",
|
6957
|
-
"inheritedFrom": {
|
6958
|
-
"name": "Buttonsimple",
|
6959
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6960
|
-
}
|
6961
|
-
},
|
6962
|
-
{
|
6963
|
-
"name": "ariaStateKey",
|
6964
|
-
"type": {
|
6965
|
-
"text": "string | undefined"
|
6966
|
-
},
|
6967
|
-
"description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
|
6968
|
-
"default": "'aria-pressed' (when)",
|
6969
|
-
"fieldName": "ariaStateKey",
|
6970
|
-
"inheritedFrom": {
|
6971
|
-
"name": "Buttonsimple",
|
6972
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6973
|
-
}
|
6974
|
-
},
|
6975
|
-
{
|
6976
|
-
"name": "type",
|
6977
|
-
"type": {
|
6978
|
-
"text": "ButtonType"
|
6979
|
-
},
|
6980
|
-
"description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
|
6981
|
-
"default": "button",
|
6982
|
-
"fieldName": "type",
|
6983
|
-
"inheritedFrom": {
|
6984
|
-
"name": "Buttonsimple",
|
6985
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6986
|
-
}
|
6987
|
-
},
|
6988
|
-
{
|
6989
|
-
"name": "name",
|
6990
|
-
"type": {
|
6991
|
-
"text": "string | undefined"
|
6992
|
-
},
|
6993
|
-
"description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
|
6994
|
-
"fieldName": "name",
|
6995
|
-
"inheritedFrom": {
|
6996
|
-
"name": "Buttonsimple",
|
6997
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
6998
|
-
}
|
6999
|
-
},
|
7000
|
-
{
|
7001
|
-
"name": "value",
|
7002
|
-
"type": {
|
7003
|
-
"text": "string | undefined"
|
7004
|
-
},
|
7005
|
-
"description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
|
7006
|
-
"fieldName": "value",
|
7007
|
-
"inheritedFrom": {
|
7008
|
-
"name": "Buttonsimple",
|
7009
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
7010
|
-
}
|
7011
7011
|
}
|
7012
7012
|
]
|
7013
7013
|
}
|
@@ -7017,8 +7017,8 @@
|
|
7017
7017
|
"kind": "js",
|
7018
7018
|
"name": "default",
|
7019
7019
|
"declaration": {
|
7020
|
-
"name": "
|
7021
|
-
"module": "components/
|
7020
|
+
"name": "Card",
|
7021
|
+
"module": "components/card/card.component.js"
|
7022
7022
|
}
|
7023
7023
|
}
|
7024
7024
|
]
|
@@ -8502,6 +8502,40 @@
|
|
8502
8502
|
"name": "--mdc-checkbox-disabled-checked-icon-color"
|
8503
8503
|
}
|
8504
8504
|
],
|
8505
|
+
"slots": [
|
8506
|
+
{
|
8507
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
8508
|
+
"name": "label",
|
8509
|
+
"inheritedFrom": {
|
8510
|
+
"name": "FormfieldWrapper",
|
8511
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
8512
|
+
}
|
8513
|
+
},
|
8514
|
+
{
|
8515
|
+
"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.",
|
8516
|
+
"name": "toggletip",
|
8517
|
+
"inheritedFrom": {
|
8518
|
+
"name": "FormfieldWrapper",
|
8519
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
8520
|
+
}
|
8521
|
+
},
|
8522
|
+
{
|
8523
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
8524
|
+
"name": "help-icon",
|
8525
|
+
"inheritedFrom": {
|
8526
|
+
"name": "FormfieldWrapper",
|
8527
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
8528
|
+
}
|
8529
|
+
},
|
8530
|
+
{
|
8531
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
8532
|
+
"name": "help-text",
|
8533
|
+
"inheritedFrom": {
|
8534
|
+
"name": "FormfieldWrapper",
|
8535
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
8536
|
+
}
|
8537
|
+
}
|
8538
|
+
],
|
8505
8539
|
"members": [
|
8506
8540
|
{
|
8507
8541
|
"kind": "field",
|
@@ -8834,6 +8868,19 @@
|
|
8834
8868
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
8835
8869
|
}
|
8836
8870
|
},
|
8871
|
+
{
|
8872
|
+
"kind": "field",
|
8873
|
+
"name": "toggletipStrategy",
|
8874
|
+
"type": {
|
8875
|
+
"text": "PopoverStrategy"
|
8876
|
+
},
|
8877
|
+
"attribute": "toggletip-strategy",
|
8878
|
+
"reflects": true,
|
8879
|
+
"inheritedFrom": {
|
8880
|
+
"name": "FormfieldWrapper",
|
8881
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
8882
|
+
}
|
8883
|
+
},
|
8837
8884
|
{
|
8838
8885
|
"kind": "field",
|
8839
8886
|
"name": "infoIconAriaLabel",
|
@@ -9120,6 +9167,17 @@
|
|
9120
9167
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
9121
9168
|
}
|
9122
9169
|
},
|
9170
|
+
{
|
9171
|
+
"name": "toggletip-strategy",
|
9172
|
+
"type": {
|
9173
|
+
"text": "PopoverStrategy"
|
9174
|
+
},
|
9175
|
+
"fieldName": "toggletipStrategy",
|
9176
|
+
"inheritedFrom": {
|
9177
|
+
"name": "FormfieldWrapper",
|
9178
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
9179
|
+
}
|
9180
|
+
},
|
9123
9181
|
{
|
9124
9182
|
"name": "info-icon-aria-label",
|
9125
9183
|
"type": {
|
@@ -9152,7 +9210,7 @@
|
|
9152
9210
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
9153
9211
|
},
|
9154
9212
|
"tagName": "mdc-checkbox",
|
9155
|
-
"jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * To create a group of checkboxes, use the FormFieldGroup component.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-staticcheckbox\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-checkbox\n *\n * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.\n */",
|
9213
|
+
"jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * To create a group of checkboxes, use the FormFieldGroup component.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-staticcheckbox\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-checkbox\n *\n * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n */",
|
9156
9214
|
"customElement": true
|
9157
9215
|
}
|
9158
9216
|
],
|
@@ -11821,6 +11879,38 @@
|
|
11821
11879
|
{
|
11822
11880
|
"description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
|
11823
11881
|
"name": "default"
|
11882
|
+
},
|
11883
|
+
{
|
11884
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
11885
|
+
"name": "label",
|
11886
|
+
"inheritedFrom": {
|
11887
|
+
"name": "FormfieldWrapper",
|
11888
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
11889
|
+
}
|
11890
|
+
},
|
11891
|
+
{
|
11892
|
+
"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.",
|
11893
|
+
"name": "toggletip",
|
11894
|
+
"inheritedFrom": {
|
11895
|
+
"name": "FormfieldWrapper",
|
11896
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
11897
|
+
}
|
11898
|
+
},
|
11899
|
+
{
|
11900
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
11901
|
+
"name": "help-icon",
|
11902
|
+
"inheritedFrom": {
|
11903
|
+
"name": "FormfieldWrapper",
|
11904
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
11905
|
+
}
|
11906
|
+
},
|
11907
|
+
{
|
11908
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
11909
|
+
"name": "help-text",
|
11910
|
+
"inheritedFrom": {
|
11911
|
+
"name": "FormfieldWrapper",
|
11912
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
11913
|
+
}
|
11824
11914
|
}
|
11825
11915
|
],
|
11826
11916
|
"members": [
|
@@ -12522,6 +12612,19 @@
|
|
12522
12612
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
12523
12613
|
}
|
12524
12614
|
},
|
12615
|
+
{
|
12616
|
+
"kind": "field",
|
12617
|
+
"name": "toggletipStrategy",
|
12618
|
+
"type": {
|
12619
|
+
"text": "PopoverStrategy"
|
12620
|
+
},
|
12621
|
+
"attribute": "toggletip-strategy",
|
12622
|
+
"reflects": true,
|
12623
|
+
"inheritedFrom": {
|
12624
|
+
"name": "FormfieldWrapper",
|
12625
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
12626
|
+
}
|
12627
|
+
},
|
12525
12628
|
{
|
12526
12629
|
"kind": "field",
|
12527
12630
|
"name": "infoIconAriaLabel",
|
@@ -12870,6 +12973,17 @@
|
|
12870
12973
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
12871
12974
|
}
|
12872
12975
|
},
|
12976
|
+
{
|
12977
|
+
"name": "toggletip-strategy",
|
12978
|
+
"type": {
|
12979
|
+
"text": "PopoverStrategy"
|
12980
|
+
},
|
12981
|
+
"fieldName": "toggletipStrategy",
|
12982
|
+
"inheritedFrom": {
|
12983
|
+
"name": "FormfieldWrapper",
|
12984
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
12985
|
+
}
|
12986
|
+
},
|
12873
12987
|
{
|
12874
12988
|
"name": "info-icon-aria-label",
|
12875
12989
|
"type": {
|
@@ -12906,7 +13020,7 @@
|
|
12906
13020
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
12907
13021
|
},
|
12908
13022
|
"tagName": "mdc-combobox",
|
12909
|
-
"jsDoc": "/**\n * The Combobox component is a text-based dropdown control that allows users to select an option from a predefined list.\n * Users can type text to filter the options and select their desired choice.\n *\n * When the user starts typing, the filter uses a \"starts with\" search and displays options based on the text entered by the user.\n * If the user entered text that doesn't match with any of the options, then the text in the `no-result-text` attribute will be displayed.\n *\n * If there is no text in the `no-result-text` attribute then nothing will be shown.\n *\n * Combobox is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases, including long text truncation with tooltip support.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-combobox` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-selectlistbox` element. Read more about it in Options documentation.\n *\n * To understand more about combobox and its patterns, refer to this [WCAG example](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/).\n *\n * @dependency mdc-buttonsimple\n * @dependency mdc-icon\n * @dependency mdc-input\n * @dependency mdc-listitem\n * @dependency mdc-popover\n *\n * @tagname mdc-combobox\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the combobox is clicked.\n * @event change - (React: onChange) This event is dispatched when the combobox is changed.\n * @event input - (React: onInput) This event is dispatched when the combobox is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the combobox.\n * @event focus - (React: onFocus) This event is dispatched when the combobox receives focus.\n *\n * @cssproperty --mdc-combobox-border-color - The border color of the combobox\n * @cssproperty --mdc-combobox-icon-color - The icon color of the combobox\n * @cssproperty --mdc-combobox-listbox-height - The height of the listbox inside the combobox\n * @cssproperty --mdc-combobox-listbox-width - The width of the listbox inside the combobox\n * @cssproperty --mdc-combobox-width - The width of the combobox\n * @cssproperty --mdc-combobox-hover-background-color - The background color of the combobox when hovered\n * @cssproperty --mdc-combobox-focused-background-color - The background color of the combobox when focused\n * @cssproperty --mdc-combobox-error-border-color - The border color of the combobox when in error state\n * @cssproperty --mdc-combobox-warning-border-color - The border color of the combobox when in warning state\n * @cssproperty --mdc-combobox-success-border-color - The border color of the combobox when in success state\n * @cssproperty --mdc-combobox-primary-border-color - The border color of the combobox when in primary state\n * @cssproperty --mdc-combobox-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-combobox-focused-border-color - The border color of the combobox when focused\n *\n * @csspart internal-native-input - The internal native input element of the combobox.\n * @csspart mdc-input - The input element of the combobox.\n * @csspart no-result-text - The no result text element of the combobox.\n * @csspart combobox__base - The base container element of the combobox.\n * @csspart combobox__button - The button element of the combobox.\n * @csspart combobox__button-icon - The icon element of the button of the combobox.\n */",
|
13023
|
+
"jsDoc": "/**\n * The Combobox component is a text-based dropdown control that allows users to select an option from a predefined list.\n * Users can type text to filter the options and select their desired choice.\n *\n * When the user starts typing, the filter uses a \"starts with\" search and displays options based on the text entered by the user.\n * If the user entered text that doesn't match with any of the options, then the text in the `no-result-text` attribute will be displayed.\n *\n * If there is no text in the `no-result-text` attribute then nothing will be shown.\n *\n * Combobox is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases, including long text truncation with tooltip support.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-combobox` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-selectlistbox` element. Read more about it in Options documentation.\n *\n * To understand more about combobox and its patterns, refer to this [WCAG example](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/).\n *\n * @dependency mdc-buttonsimple\n * @dependency mdc-icon\n * @dependency mdc-input\n * @dependency mdc-listitem\n * @dependency mdc-popover\n *\n * @tagname mdc-combobox\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @event click - (React: onClick) This event is dispatched when the combobox is clicked.\n * @event change - (React: onChange) This event is dispatched when the combobox is changed.\n * @event input - (React: onInput) This event is dispatched when the combobox is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the combobox.\n * @event focus - (React: onFocus) This event is dispatched when the combobox receives focus.\n *\n * @cssproperty --mdc-combobox-border-color - The border color of the combobox\n * @cssproperty --mdc-combobox-icon-color - The icon color of the combobox\n * @cssproperty --mdc-combobox-listbox-height - The height of the listbox inside the combobox\n * @cssproperty --mdc-combobox-listbox-width - The width of the listbox inside the combobox\n * @cssproperty --mdc-combobox-width - The width of the combobox\n * @cssproperty --mdc-combobox-hover-background-color - The background color of the combobox when hovered\n * @cssproperty --mdc-combobox-focused-background-color - The background color of the combobox when focused\n * @cssproperty --mdc-combobox-error-border-color - The border color of the combobox when in error state\n * @cssproperty --mdc-combobox-warning-border-color - The border color of the combobox when in warning state\n * @cssproperty --mdc-combobox-success-border-color - The border color of the combobox when in success state\n * @cssproperty --mdc-combobox-primary-border-color - The border color of the combobox when in primary state\n * @cssproperty --mdc-combobox-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-combobox-focused-border-color - The border color of the combobox when focused\n *\n * @csspart internal-native-input - The internal native input element of the combobox.\n * @csspart mdc-input - The input element of the combobox.\n * @csspart no-result-text - The no result text element of the combobox.\n * @csspart combobox__base - The base container element of the combobox.\n * @csspart combobox__button - The button element of the combobox.\n * @csspart combobox__button-icon - The icon element of the button of the combobox.\n */",
|
12910
13024
|
"customElement": true
|
12911
13025
|
}
|
12912
13026
|
],
|
@@ -14942,6 +15056,38 @@
|
|
14942
15056
|
{
|
14943
15057
|
"description": "This is a default slot for checkbox or toggle components.",
|
14944
15058
|
"name": "default"
|
15059
|
+
},
|
15060
|
+
{
|
15061
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
15062
|
+
"name": "label",
|
15063
|
+
"inheritedFrom": {
|
15064
|
+
"name": "FormfieldWrapper",
|
15065
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
15066
|
+
}
|
15067
|
+
},
|
15068
|
+
{
|
15069
|
+
"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.",
|
15070
|
+
"name": "toggletip",
|
15071
|
+
"inheritedFrom": {
|
15072
|
+
"name": "FormfieldWrapper",
|
15073
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
15074
|
+
}
|
15075
|
+
},
|
15076
|
+
{
|
15077
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
15078
|
+
"name": "help-icon",
|
15079
|
+
"inheritedFrom": {
|
15080
|
+
"name": "FormfieldWrapper",
|
15081
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
15082
|
+
}
|
15083
|
+
},
|
15084
|
+
{
|
15085
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
15086
|
+
"name": "help-text",
|
15087
|
+
"inheritedFrom": {
|
15088
|
+
"name": "FormfieldWrapper",
|
15089
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
15090
|
+
}
|
14945
15091
|
}
|
14946
15092
|
],
|
14947
15093
|
"members": [
|
@@ -15061,6 +15207,19 @@
|
|
15061
15207
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
15062
15208
|
}
|
15063
15209
|
},
|
15210
|
+
{
|
15211
|
+
"kind": "field",
|
15212
|
+
"name": "toggletipStrategy",
|
15213
|
+
"type": {
|
15214
|
+
"text": "PopoverStrategy"
|
15215
|
+
},
|
15216
|
+
"attribute": "toggletip-strategy",
|
15217
|
+
"reflects": true,
|
15218
|
+
"inheritedFrom": {
|
15219
|
+
"name": "FormfieldWrapper",
|
15220
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
15221
|
+
}
|
15222
|
+
},
|
15064
15223
|
{
|
15065
15224
|
"kind": "field",
|
15066
15225
|
"name": "infoIconAriaLabel",
|
@@ -15162,7 +15321,7 @@
|
|
15162
15321
|
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
15163
15322
|
},
|
15164
15323
|
"tagName": "mdc-formfieldgroup",
|
15165
|
-
"jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\n */",
|
15324
|
+
"jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n */",
|
15166
15325
|
"customElement": true,
|
15167
15326
|
"attributes": [
|
15168
15327
|
{
|
@@ -15265,6 +15424,17 @@
|
|
15265
15424
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
15266
15425
|
}
|
15267
15426
|
},
|
15427
|
+
{
|
15428
|
+
"name": "toggletip-strategy",
|
15429
|
+
"type": {
|
15430
|
+
"text": "PopoverStrategy"
|
15431
|
+
},
|
15432
|
+
"fieldName": "toggletipStrategy",
|
15433
|
+
"inheritedFrom": {
|
15434
|
+
"name": "FormfieldWrapper",
|
15435
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
15436
|
+
}
|
15437
|
+
},
|
15268
15438
|
{
|
15269
15439
|
"name": "info-icon-aria-label",
|
15270
15440
|
"type": {
|
@@ -15299,6 +15469,24 @@
|
|
15299
15469
|
"kind": "class",
|
15300
15470
|
"description": "formfieldwrapper is a component that contains the label and helper/validation text\n that can be configured in various ways to suit different use cases (most of the input related components).\nIt is used as an internal component and is not intended to be used directly by consumers.",
|
15301
15471
|
"name": "FormfieldWrapper",
|
15472
|
+
"slots": [
|
15473
|
+
{
|
15474
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
15475
|
+
"name": "label"
|
15476
|
+
},
|
15477
|
+
{
|
15478
|
+
"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.",
|
15479
|
+
"name": "toggletip"
|
15480
|
+
},
|
15481
|
+
{
|
15482
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
15483
|
+
"name": "help-icon"
|
15484
|
+
},
|
15485
|
+
{
|
15486
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
15487
|
+
"name": "help-text"
|
15488
|
+
}
|
15489
|
+
],
|
15302
15490
|
"members": [
|
15303
15491
|
{
|
15304
15492
|
"kind": "field",
|
@@ -15362,6 +15550,15 @@
|
|
15362
15550
|
"attribute": "toggletip-placement",
|
15363
15551
|
"reflects": true
|
15364
15552
|
},
|
15553
|
+
{
|
15554
|
+
"kind": "field",
|
15555
|
+
"name": "toggletipStrategy",
|
15556
|
+
"type": {
|
15557
|
+
"text": "PopoverStrategy"
|
15558
|
+
},
|
15559
|
+
"attribute": "toggletip-strategy",
|
15560
|
+
"reflects": true
|
15561
|
+
},
|
15365
15562
|
{
|
15366
15563
|
"kind": "field",
|
15367
15564
|
"name": "infoIconAriaLabel",
|
@@ -15494,6 +15691,13 @@
|
|
15494
15691
|
"default": "'top'",
|
15495
15692
|
"fieldName": "toggletipPlacement"
|
15496
15693
|
},
|
15694
|
+
{
|
15695
|
+
"name": "toggletip-strategy",
|
15696
|
+
"type": {
|
15697
|
+
"text": "PopoverStrategy"
|
15698
|
+
},
|
15699
|
+
"fieldName": "toggletipStrategy"
|
15700
|
+
},
|
15497
15701
|
{
|
15498
15702
|
"name": "info-icon-aria-label",
|
15499
15703
|
"type": {
|
@@ -15527,7 +15731,7 @@
|
|
15527
15731
|
"module": "/src/models"
|
15528
15732
|
},
|
15529
15733
|
"tagName": "mdc-formfieldwrapper",
|
15530
|
-
"jsDoc": "/**\n * formfieldwrapper is a component that contains the label and helper/validation text\n * that can be configured in various ways to suit different use cases (most of the input related components).\n * It is used as an internal component and is not intended to be used directly by consumers.\n *\n * @tagname mdc-formfieldwrapper\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n
|
15734
|
+
"jsDoc": "/**\n * formfieldwrapper is a component that contains the label and helper/validation text\n * that can be configured in various ways to suit different use cases (most of the input related components).\n * It is used as an internal component and is not intended to be used directly by consumers.\n *\n * @tagname mdc-formfieldwrapper\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n */",
|
15531
15735
|
"customElement": true
|
15532
15736
|
}
|
15533
15737
|
],
|
@@ -16394,6 +16598,56 @@
|
|
16394
16598
|
"name": "--mdc-input-primary-border-color"
|
16395
16599
|
}
|
16396
16600
|
],
|
16601
|
+
"slots": [
|
16602
|
+
{
|
16603
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
16604
|
+
"name": "label",
|
16605
|
+
"inheritedFrom": {
|
16606
|
+
"name": "FormfieldWrapper",
|
16607
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
16608
|
+
}
|
16609
|
+
},
|
16610
|
+
{
|
16611
|
+
"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.",
|
16612
|
+
"name": "toggletip",
|
16613
|
+
"inheritedFrom": {
|
16614
|
+
"name": "FormfieldWrapper",
|
16615
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
16616
|
+
}
|
16617
|
+
},
|
16618
|
+
{
|
16619
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
16620
|
+
"name": "help-icon",
|
16621
|
+
"inheritedFrom": {
|
16622
|
+
"name": "FormfieldWrapper",
|
16623
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
16624
|
+
}
|
16625
|
+
},
|
16626
|
+
{
|
16627
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
16628
|
+
"name": "help-text",
|
16629
|
+
"inheritedFrom": {
|
16630
|
+
"name": "FormfieldWrapper",
|
16631
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
16632
|
+
}
|
16633
|
+
},
|
16634
|
+
{
|
16635
|
+
"description": "Slot for the input element. If not provided, the input field will be rendered.",
|
16636
|
+
"name": "input"
|
16637
|
+
},
|
16638
|
+
{
|
16639
|
+
"description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
|
16640
|
+
"name": "input-leading-icon"
|
16641
|
+
},
|
16642
|
+
{
|
16643
|
+
"description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
|
16644
|
+
"name": "input-prefix-text"
|
16645
|
+
},
|
16646
|
+
{
|
16647
|
+
"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.",
|
16648
|
+
"name": "trailing-button"
|
16649
|
+
}
|
16650
|
+
],
|
16397
16651
|
"members": [
|
16398
16652
|
{
|
16399
16653
|
"kind": "field",
|
@@ -16873,6 +17127,19 @@
|
|
16873
17127
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
16874
17128
|
}
|
16875
17129
|
},
|
17130
|
+
{
|
17131
|
+
"kind": "field",
|
17132
|
+
"name": "toggletipStrategy",
|
17133
|
+
"type": {
|
17134
|
+
"text": "PopoverStrategy"
|
17135
|
+
},
|
17136
|
+
"attribute": "toggletip-strategy",
|
17137
|
+
"reflects": true,
|
17138
|
+
"inheritedFrom": {
|
17139
|
+
"name": "FormfieldWrapper",
|
17140
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
17141
|
+
}
|
17142
|
+
},
|
16876
17143
|
{
|
16877
17144
|
"kind": "field",
|
16878
17145
|
"name": "infoIconAriaLabel",
|
@@ -17269,6 +17536,17 @@
|
|
17269
17536
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17270
17537
|
}
|
17271
17538
|
},
|
17539
|
+
{
|
17540
|
+
"name": "toggletip-strategy",
|
17541
|
+
"type": {
|
17542
|
+
"text": "PopoverStrategy"
|
17543
|
+
},
|
17544
|
+
"fieldName": "toggletipStrategy",
|
17545
|
+
"inheritedFrom": {
|
17546
|
+
"name": "FormfieldWrapper",
|
17547
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17548
|
+
}
|
17549
|
+
},
|
17272
17550
|
{
|
17273
17551
|
"name": "info-icon-aria-label",
|
17274
17552
|
"type": {
|
@@ -17301,7 +17579,7 @@
|
|
17301
17579
|
"module": "/src/components/formfieldwrapper"
|
17302
17580
|
},
|
17303
17581
|
"tagName": "mdc-input",
|
17304
|
-
"jsDoc": "/**\n * mdc-input is a component that allows users to input text.\n * It contains:\n * - label field - describe the input field.\n * - input field - contains the value\n * - help text or validation message - displayed below the input field.\n * - trailing button - it displays a clear the input field.\n * - prefix text - displayed before the input field.\n * - leading icon - displayed before the input field.\n * - clear-aria-label - aria label for the trailing button.\n * - all the attributes of the input field.\n *\n * @tagname mdc-input\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the input container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the input field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the input field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the input field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the input field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the input container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the input container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the input container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the input container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the input container when primary\n *\n */",
|
17582
|
+
"jsDoc": "/**\n * mdc-input is a component that allows users to input text.\n * It contains:\n * - label field - describe the input field.\n * - input field - contains the value\n * - help text or validation message - displayed below the input field.\n * - trailing button - it displays a clear the input field.\n * - prefix text - displayed before the input field.\n * - leading icon - displayed before the input field.\n * - clear-aria-label - aria label for the trailing button.\n * - all the attributes of the input field.\n *\n * @tagname mdc-input\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n * @slot input - Slot for the input element. If not provided, the input field will be rendered.\n * @slot input-leading-icon - Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.\n * @slot input-prefix-text - Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.\n * @slot trailing-button - Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the input container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the input field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the input field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the input field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the input field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the input container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the input container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the input container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the input container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the input container when primary\n *\n */",
|
17305
17583
|
"customElement": true
|
17306
17584
|
}
|
17307
17585
|
],
|
@@ -28592,6 +28870,19 @@
|
|
28592
28870
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
28593
28871
|
}
|
28594
28872
|
},
|
28873
|
+
{
|
28874
|
+
"kind": "field",
|
28875
|
+
"name": "toggletipStrategy",
|
28876
|
+
"type": {
|
28877
|
+
"text": "PopoverStrategy"
|
28878
|
+
},
|
28879
|
+
"attribute": "toggletip-strategy",
|
28880
|
+
"reflects": true,
|
28881
|
+
"inheritedFrom": {
|
28882
|
+
"name": "FormfieldWrapper",
|
28883
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
28884
|
+
}
|
28885
|
+
},
|
28595
28886
|
{
|
28596
28887
|
"kind": "field",
|
28597
28888
|
"name": "infoIconAriaLabel",
|
@@ -29077,6 +29368,17 @@
|
|
29077
29368
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
29078
29369
|
}
|
29079
29370
|
},
|
29371
|
+
{
|
29372
|
+
"name": "toggletip-strategy",
|
29373
|
+
"type": {
|
29374
|
+
"text": "PopoverStrategy"
|
29375
|
+
},
|
29376
|
+
"fieldName": "toggletipStrategy",
|
29377
|
+
"inheritedFrom": {
|
29378
|
+
"name": "FormfieldWrapper",
|
29379
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
29380
|
+
}
|
29381
|
+
},
|
29080
29382
|
{
|
29081
29383
|
"name": "info-icon-aria-label",
|
29082
29384
|
"type": {
|
@@ -29096,7 +29398,73 @@
|
|
29096
29398
|
},
|
29097
29399
|
"tagName": "mdc-password",
|
29098
29400
|
"jsDoc": "/**\n * `mdc-password` is a component that allows users to input their password.\n * It extends the `mdc-input` component and provides additional features specific to password fields.\n * It contains:\n * - `label` field - describe the password field.\n * - `password` field - contains the value\n * - `help-text` or `validation-message` - displayed below the password field.\n * - `help-text-type` - type of the help text, can be 'default', 'error', 'warning', 'success', 'priority'.\n * - `show-hide-button-aria-label` - aria label for the trailing show/hide button.\n * - all the attributes of the native password field.\n *\n * @tagname mdc-password\n *\n * @event input - (React: onInput) This event is dispatched when the value of the password field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the password field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the password receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the password loses focus.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the password container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the password field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the password field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the password container\n * @cssproperty --mdc-input-text-color - Text color for the password field\n * @cssproperty --mdc-input-background-color - Background color for the password field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the password field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the password field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the password container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the password container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the password container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the password container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the password container when primary\n *\n */",
|
29099
|
-
"customElement": true
|
29401
|
+
"customElement": true,
|
29402
|
+
"slots": [
|
29403
|
+
{
|
29404
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
29405
|
+
"name": "label",
|
29406
|
+
"inheritedFrom": {
|
29407
|
+
"name": "FormfieldWrapper",
|
29408
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
29409
|
+
}
|
29410
|
+
},
|
29411
|
+
{
|
29412
|
+
"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.",
|
29413
|
+
"name": "toggletip",
|
29414
|
+
"inheritedFrom": {
|
29415
|
+
"name": "FormfieldWrapper",
|
29416
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
29417
|
+
}
|
29418
|
+
},
|
29419
|
+
{
|
29420
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
29421
|
+
"name": "help-icon",
|
29422
|
+
"inheritedFrom": {
|
29423
|
+
"name": "FormfieldWrapper",
|
29424
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
29425
|
+
}
|
29426
|
+
},
|
29427
|
+
{
|
29428
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
29429
|
+
"name": "help-text",
|
29430
|
+
"inheritedFrom": {
|
29431
|
+
"name": "FormfieldWrapper",
|
29432
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
29433
|
+
}
|
29434
|
+
},
|
29435
|
+
{
|
29436
|
+
"description": "Slot for the input element. If not provided, the input field will be rendered.",
|
29437
|
+
"name": "input",
|
29438
|
+
"inheritedFrom": {
|
29439
|
+
"name": "Input",
|
29440
|
+
"module": "src/components/input/input.component.ts"
|
29441
|
+
}
|
29442
|
+
},
|
29443
|
+
{
|
29444
|
+
"description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
|
29445
|
+
"name": "input-leading-icon",
|
29446
|
+
"inheritedFrom": {
|
29447
|
+
"name": "Input",
|
29448
|
+
"module": "src/components/input/input.component.ts"
|
29449
|
+
}
|
29450
|
+
},
|
29451
|
+
{
|
29452
|
+
"description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
|
29453
|
+
"name": "input-prefix-text",
|
29454
|
+
"inheritedFrom": {
|
29455
|
+
"name": "Input",
|
29456
|
+
"module": "src/components/input/input.component.ts"
|
29457
|
+
}
|
29458
|
+
},
|
29459
|
+
{
|
29460
|
+
"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.",
|
29461
|
+
"name": "trailing-button",
|
29462
|
+
"inheritedFrom": {
|
29463
|
+
"name": "Input",
|
29464
|
+
"module": "src/components/input/input.component.ts"
|
29465
|
+
}
|
29466
|
+
}
|
29467
|
+
]
|
29100
29468
|
}
|
29101
29469
|
],
|
29102
29470
|
"exports": [
|
@@ -31040,6 +31408,19 @@
|
|
31040
31408
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
31041
31409
|
}
|
31042
31410
|
},
|
31411
|
+
{
|
31412
|
+
"kind": "field",
|
31413
|
+
"name": "toggletipStrategy",
|
31414
|
+
"type": {
|
31415
|
+
"text": "PopoverStrategy"
|
31416
|
+
},
|
31417
|
+
"attribute": "toggletip-strategy",
|
31418
|
+
"reflects": true,
|
31419
|
+
"inheritedFrom": {
|
31420
|
+
"name": "FormfieldWrapper",
|
31421
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
31422
|
+
}
|
31423
|
+
},
|
31043
31424
|
{
|
31044
31425
|
"kind": "field",
|
31045
31426
|
"name": "infoIconAriaLabel",
|
@@ -31258,6 +31639,17 @@
|
|
31258
31639
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31259
31640
|
}
|
31260
31641
|
},
|
31642
|
+
{
|
31643
|
+
"name": "toggletip-strategy",
|
31644
|
+
"type": {
|
31645
|
+
"text": "PopoverStrategy"
|
31646
|
+
},
|
31647
|
+
"fieldName": "toggletipStrategy",
|
31648
|
+
"inheritedFrom": {
|
31649
|
+
"name": "FormfieldWrapper",
|
31650
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31651
|
+
}
|
31652
|
+
},
|
31261
31653
|
{
|
31262
31654
|
"name": "info-icon-aria-label",
|
31263
31655
|
"type": {
|
@@ -31283,7 +31675,41 @@
|
|
31283
31675
|
},
|
31284
31676
|
"tagName": "mdc-progressbar",
|
31285
31677
|
"jsDoc": "/**\n * mdc-progressbar component visually represents a progress indicator, typically used to show\n * the completion state of an ongoing process (e.g., loading, file upload, etc.).\n * It contains an optional label and an optional helper text.\n *\n * - It supports mainly two types: Default and Inline\n * - It supports three validation variants: Default, Success and Error.\n *\n * This component is created by extending FormfieldWrapper.\n *\n * @tagname mdc-progressbar\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-progressbar-background-color - Background color of the remaining progressbar portion.\n * @cssproperty --mdc-progressbar-active-background-color - Background color of the elapsed progressbar portion.\n * @cssproperty --mdc-progressbar-success-color - Background color of the progressbar when in success state.\n * @cssproperty --mdc-progressbar-error-color - Background color of the progressbar when in error state.\n * @cssproperty --mdc-progressbar-height - The height of the progressbar.\n * @cssproperty --mdc-progressbar-border-radius - The border radius of the progressbar.\n * @cssproperty --mdc-progressbar-label-color - Color of the progressbar label text.\n * @cssproperty --mdc-progressbar-label-line-height - Line height of the label text.\n * @cssproperty --mdc-progressbar-label-font-size - Font size of the label text.\n * @cssproperty --mdc-progressbar-label-font-weight - Font weight of the label text.\n * @cssproperty --mdc-progressbar-help-text-color - Color of the help text.\n */",
|
31286
|
-
"customElement": true
|
31678
|
+
"customElement": true,
|
31679
|
+
"slots": [
|
31680
|
+
{
|
31681
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
31682
|
+
"name": "label",
|
31683
|
+
"inheritedFrom": {
|
31684
|
+
"name": "FormfieldWrapper",
|
31685
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31686
|
+
}
|
31687
|
+
},
|
31688
|
+
{
|
31689
|
+
"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.",
|
31690
|
+
"name": "toggletip",
|
31691
|
+
"inheritedFrom": {
|
31692
|
+
"name": "FormfieldWrapper",
|
31693
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31694
|
+
}
|
31695
|
+
},
|
31696
|
+
{
|
31697
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
31698
|
+
"name": "help-icon",
|
31699
|
+
"inheritedFrom": {
|
31700
|
+
"name": "FormfieldWrapper",
|
31701
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31702
|
+
}
|
31703
|
+
},
|
31704
|
+
{
|
31705
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
31706
|
+
"name": "help-text",
|
31707
|
+
"inheritedFrom": {
|
31708
|
+
"name": "FormfieldWrapper",
|
31709
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31710
|
+
}
|
31711
|
+
}
|
31712
|
+
]
|
31287
31713
|
}
|
31288
31714
|
],
|
31289
31715
|
"exports": [
|
@@ -31618,6 +32044,19 @@
|
|
31618
32044
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
31619
32045
|
}
|
31620
32046
|
},
|
32047
|
+
{
|
32048
|
+
"kind": "field",
|
32049
|
+
"name": "toggletipStrategy",
|
32050
|
+
"type": {
|
32051
|
+
"text": "PopoverStrategy"
|
32052
|
+
},
|
32053
|
+
"attribute": "toggletip-strategy",
|
32054
|
+
"reflects": true,
|
32055
|
+
"inheritedFrom": {
|
32056
|
+
"name": "FormfieldWrapper",
|
32057
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
32058
|
+
}
|
32059
|
+
},
|
31621
32060
|
{
|
31622
32061
|
"kind": "field",
|
31623
32062
|
"name": "infoIconAriaLabel",
|
@@ -31855,6 +32294,17 @@
|
|
31855
32294
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31856
32295
|
}
|
31857
32296
|
},
|
32297
|
+
{
|
32298
|
+
"name": "toggletip-strategy",
|
32299
|
+
"type": {
|
32300
|
+
"text": "PopoverStrategy"
|
32301
|
+
},
|
32302
|
+
"fieldName": "toggletipStrategy",
|
32303
|
+
"inheritedFrom": {
|
32304
|
+
"name": "FormfieldWrapper",
|
32305
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32306
|
+
}
|
32307
|
+
},
|
31858
32308
|
{
|
31859
32309
|
"name": "info-icon-aria-label",
|
31860
32310
|
"type": {
|
@@ -31867,6 +32317,40 @@
|
|
31867
32317
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31868
32318
|
}
|
31869
32319
|
}
|
32320
|
+
],
|
32321
|
+
"slots": [
|
32322
|
+
{
|
32323
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
32324
|
+
"name": "label",
|
32325
|
+
"inheritedFrom": {
|
32326
|
+
"name": "FormfieldWrapper",
|
32327
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32328
|
+
}
|
32329
|
+
},
|
32330
|
+
{
|
32331
|
+
"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.",
|
32332
|
+
"name": "toggletip",
|
32333
|
+
"inheritedFrom": {
|
32334
|
+
"name": "FormfieldWrapper",
|
32335
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32336
|
+
}
|
32337
|
+
},
|
32338
|
+
{
|
32339
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
32340
|
+
"name": "help-icon",
|
32341
|
+
"inheritedFrom": {
|
32342
|
+
"name": "FormfieldWrapper",
|
32343
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32344
|
+
}
|
32345
|
+
},
|
32346
|
+
{
|
32347
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
32348
|
+
"name": "help-text",
|
32349
|
+
"inheritedFrom": {
|
32350
|
+
"name": "FormfieldWrapper",
|
32351
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32352
|
+
}
|
32353
|
+
}
|
31870
32354
|
]
|
31871
32355
|
}
|
31872
32356
|
],
|
@@ -32284,6 +32768,19 @@
|
|
32284
32768
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
32285
32769
|
}
|
32286
32770
|
},
|
32771
|
+
{
|
32772
|
+
"kind": "field",
|
32773
|
+
"name": "toggletipStrategy",
|
32774
|
+
"type": {
|
32775
|
+
"text": "PopoverStrategy"
|
32776
|
+
},
|
32777
|
+
"attribute": "toggletip-strategy",
|
32778
|
+
"reflects": true,
|
32779
|
+
"inheritedFrom": {
|
32780
|
+
"name": "FormfieldWrapper",
|
32781
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
32782
|
+
}
|
32783
|
+
},
|
32287
32784
|
{
|
32288
32785
|
"kind": "field",
|
32289
32786
|
"name": "infoIconAriaLabel",
|
@@ -32559,6 +33056,17 @@
|
|
32559
33056
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32560
33057
|
}
|
32561
33058
|
},
|
33059
|
+
{
|
33060
|
+
"name": "toggletip-strategy",
|
33061
|
+
"type": {
|
33062
|
+
"text": "PopoverStrategy"
|
33063
|
+
},
|
33064
|
+
"fieldName": "toggletipStrategy",
|
33065
|
+
"inheritedFrom": {
|
33066
|
+
"name": "FormfieldWrapper",
|
33067
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33068
|
+
}
|
33069
|
+
},
|
32562
33070
|
{
|
32563
33071
|
"name": "info-icon-aria-label",
|
32564
33072
|
"type": {
|
@@ -32592,7 +33100,41 @@
|
|
32592
33100
|
},
|
32593
33101
|
"tagName": "mdc-radio",
|
32594
33102
|
"jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-staticradio\n * @dependency mdc-toggletip\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\n *\n */",
|
32595
|
-
"customElement": true
|
33103
|
+
"customElement": true,
|
33104
|
+
"slots": [
|
33105
|
+
{
|
33106
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
33107
|
+
"name": "label",
|
33108
|
+
"inheritedFrom": {
|
33109
|
+
"name": "FormfieldWrapper",
|
33110
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33111
|
+
}
|
33112
|
+
},
|
33113
|
+
{
|
33114
|
+
"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.",
|
33115
|
+
"name": "toggletip",
|
33116
|
+
"inheritedFrom": {
|
33117
|
+
"name": "FormfieldWrapper",
|
33118
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33119
|
+
}
|
33120
|
+
},
|
33121
|
+
{
|
33122
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
33123
|
+
"name": "help-icon",
|
33124
|
+
"inheritedFrom": {
|
33125
|
+
"name": "FormfieldWrapper",
|
33126
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33127
|
+
}
|
33128
|
+
},
|
33129
|
+
{
|
33130
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
33131
|
+
"name": "help-text",
|
33132
|
+
"inheritedFrom": {
|
33133
|
+
"name": "FormfieldWrapper",
|
33134
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33135
|
+
}
|
33136
|
+
}
|
33137
|
+
]
|
32596
33138
|
}
|
32597
33139
|
],
|
32598
33140
|
"exports": [
|
@@ -32747,6 +33289,19 @@
|
|
32747
33289
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
32748
33290
|
}
|
32749
33291
|
},
|
33292
|
+
{
|
33293
|
+
"kind": "field",
|
33294
|
+
"name": "toggletipStrategy",
|
33295
|
+
"type": {
|
33296
|
+
"text": "PopoverStrategy"
|
33297
|
+
},
|
33298
|
+
"attribute": "toggletip-strategy",
|
33299
|
+
"reflects": true,
|
33300
|
+
"inheritedFrom": {
|
33301
|
+
"name": "FormfieldWrapper",
|
33302
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
33303
|
+
}
|
33304
|
+
},
|
32750
33305
|
{
|
32751
33306
|
"kind": "field",
|
32752
33307
|
"name": "infoIconAriaLabel",
|
@@ -32947,6 +33502,17 @@
|
|
32947
33502
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32948
33503
|
}
|
32949
33504
|
},
|
33505
|
+
{
|
33506
|
+
"name": "toggletip-strategy",
|
33507
|
+
"type": {
|
33508
|
+
"text": "PopoverStrategy"
|
33509
|
+
},
|
33510
|
+
"fieldName": "toggletipStrategy",
|
33511
|
+
"inheritedFrom": {
|
33512
|
+
"name": "FormfieldWrapper",
|
33513
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33514
|
+
}
|
33515
|
+
},
|
32950
33516
|
{
|
32951
33517
|
"name": "info-icon-aria-label",
|
32952
33518
|
"type": {
|
@@ -32975,6 +33541,38 @@
|
|
32975
33541
|
"name": "FormfieldGroup",
|
32976
33542
|
"module": "src/components/formfieldgroup/formfieldgroup.component.ts"
|
32977
33543
|
}
|
33544
|
+
},
|
33545
|
+
{
|
33546
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
33547
|
+
"name": "label",
|
33548
|
+
"inheritedFrom": {
|
33549
|
+
"name": "FormfieldWrapper",
|
33550
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33551
|
+
}
|
33552
|
+
},
|
33553
|
+
{
|
33554
|
+
"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.",
|
33555
|
+
"name": "toggletip",
|
33556
|
+
"inheritedFrom": {
|
33557
|
+
"name": "FormfieldWrapper",
|
33558
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33559
|
+
}
|
33560
|
+
},
|
33561
|
+
{
|
33562
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
33563
|
+
"name": "help-icon",
|
33564
|
+
"inheritedFrom": {
|
33565
|
+
"name": "FormfieldWrapper",
|
33566
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33567
|
+
}
|
33568
|
+
},
|
33569
|
+
{
|
33570
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
33571
|
+
"name": "help-text",
|
33572
|
+
"inheritedFrom": {
|
33573
|
+
"name": "FormfieldWrapper",
|
33574
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33575
|
+
}
|
32978
33576
|
}
|
32979
33577
|
]
|
32980
33578
|
}
|
@@ -33181,6 +33779,70 @@
|
|
33181
33779
|
{
|
33182
33780
|
"description": "Slot for input chips",
|
33183
33781
|
"name": "filters"
|
33782
|
+
},
|
33783
|
+
{
|
33784
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
33785
|
+
"name": "label",
|
33786
|
+
"inheritedFrom": {
|
33787
|
+
"name": "FormfieldWrapper",
|
33788
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33789
|
+
}
|
33790
|
+
},
|
33791
|
+
{
|
33792
|
+
"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.",
|
33793
|
+
"name": "toggletip",
|
33794
|
+
"inheritedFrom": {
|
33795
|
+
"name": "FormfieldWrapper",
|
33796
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33797
|
+
}
|
33798
|
+
},
|
33799
|
+
{
|
33800
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
33801
|
+
"name": "help-icon",
|
33802
|
+
"inheritedFrom": {
|
33803
|
+
"name": "FormfieldWrapper",
|
33804
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33805
|
+
}
|
33806
|
+
},
|
33807
|
+
{
|
33808
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
33809
|
+
"name": "help-text",
|
33810
|
+
"inheritedFrom": {
|
33811
|
+
"name": "FormfieldWrapper",
|
33812
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
33813
|
+
}
|
33814
|
+
},
|
33815
|
+
{
|
33816
|
+
"description": "Slot for the input element. If not provided, the input field will be rendered.",
|
33817
|
+
"name": "input",
|
33818
|
+
"inheritedFrom": {
|
33819
|
+
"name": "Input",
|
33820
|
+
"module": "src/components/input/input.component.ts"
|
33821
|
+
}
|
33822
|
+
},
|
33823
|
+
{
|
33824
|
+
"description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
|
33825
|
+
"name": "input-leading-icon",
|
33826
|
+
"inheritedFrom": {
|
33827
|
+
"name": "Input",
|
33828
|
+
"module": "src/components/input/input.component.ts"
|
33829
|
+
}
|
33830
|
+
},
|
33831
|
+
{
|
33832
|
+
"description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
|
33833
|
+
"name": "input-prefix-text",
|
33834
|
+
"inheritedFrom": {
|
33835
|
+
"name": "Input",
|
33836
|
+
"module": "src/components/input/input.component.ts"
|
33837
|
+
}
|
33838
|
+
},
|
33839
|
+
{
|
33840
|
+
"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.",
|
33841
|
+
"name": "trailing-button",
|
33842
|
+
"inheritedFrom": {
|
33843
|
+
"name": "Input",
|
33844
|
+
"module": "src/components/input/input.component.ts"
|
33845
|
+
}
|
33184
33846
|
}
|
33185
33847
|
],
|
33186
33848
|
"members": [
|
@@ -33771,6 +34433,19 @@
|
|
33771
34433
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
33772
34434
|
}
|
33773
34435
|
},
|
34436
|
+
{
|
34437
|
+
"kind": "field",
|
34438
|
+
"name": "toggletipStrategy",
|
34439
|
+
"type": {
|
34440
|
+
"text": "PopoverStrategy"
|
34441
|
+
},
|
34442
|
+
"attribute": "toggletip-strategy",
|
34443
|
+
"reflects": true,
|
34444
|
+
"inheritedFrom": {
|
34445
|
+
"name": "FormfieldWrapper",
|
34446
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
34447
|
+
}
|
34448
|
+
},
|
33774
34449
|
{
|
33775
34450
|
"kind": "field",
|
33776
34451
|
"name": "infoIconAriaLabel",
|
@@ -34254,6 +34929,17 @@
|
|
34254
34929
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
34255
34930
|
}
|
34256
34931
|
},
|
34932
|
+
{
|
34933
|
+
"name": "toggletip-strategy",
|
34934
|
+
"type": {
|
34935
|
+
"text": "PopoverStrategy"
|
34936
|
+
},
|
34937
|
+
"fieldName": "toggletipStrategy",
|
34938
|
+
"inheritedFrom": {
|
34939
|
+
"name": "FormfieldWrapper",
|
34940
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
34941
|
+
}
|
34942
|
+
},
|
34257
34943
|
{
|
34258
34944
|
"name": "info-icon-aria-label",
|
34259
34945
|
"type": {
|
@@ -34484,6 +35170,38 @@
|
|
34484
35170
|
{
|
34485
35171
|
"description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
|
34486
35172
|
"name": "default"
|
35173
|
+
},
|
35174
|
+
{
|
35175
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
35176
|
+
"name": "label",
|
35177
|
+
"inheritedFrom": {
|
35178
|
+
"name": "FormfieldWrapper",
|
35179
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35180
|
+
}
|
35181
|
+
},
|
35182
|
+
{
|
35183
|
+
"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.",
|
35184
|
+
"name": "toggletip",
|
35185
|
+
"inheritedFrom": {
|
35186
|
+
"name": "FormfieldWrapper",
|
35187
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35188
|
+
}
|
35189
|
+
},
|
35190
|
+
{
|
35191
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
35192
|
+
"name": "help-icon",
|
35193
|
+
"inheritedFrom": {
|
35194
|
+
"name": "FormfieldWrapper",
|
35195
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35196
|
+
}
|
35197
|
+
},
|
35198
|
+
{
|
35199
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
35200
|
+
"name": "help-text",
|
35201
|
+
"inheritedFrom": {
|
35202
|
+
"name": "FormfieldWrapper",
|
35203
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35204
|
+
}
|
34487
35205
|
}
|
34488
35206
|
],
|
34489
35207
|
"members": [
|
@@ -35069,6 +35787,19 @@
|
|
35069
35787
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
35070
35788
|
}
|
35071
35789
|
},
|
35790
|
+
{
|
35791
|
+
"kind": "field",
|
35792
|
+
"name": "toggletipStrategy",
|
35793
|
+
"type": {
|
35794
|
+
"text": "PopoverStrategy"
|
35795
|
+
},
|
35796
|
+
"attribute": "toggletip-strategy",
|
35797
|
+
"reflects": true,
|
35798
|
+
"inheritedFrom": {
|
35799
|
+
"name": "FormfieldWrapper",
|
35800
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
35801
|
+
}
|
35802
|
+
},
|
35072
35803
|
{
|
35073
35804
|
"kind": "field",
|
35074
35805
|
"name": "infoIconAriaLabel",
|
@@ -35414,6 +36145,17 @@
|
|
35414
36145
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35415
36146
|
}
|
35416
36147
|
},
|
36148
|
+
{
|
36149
|
+
"name": "toggletip-strategy",
|
36150
|
+
"type": {
|
36151
|
+
"text": "PopoverStrategy"
|
36152
|
+
},
|
36153
|
+
"fieldName": "toggletipStrategy",
|
36154
|
+
"inheritedFrom": {
|
36155
|
+
"name": "FormfieldWrapper",
|
36156
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
36157
|
+
}
|
36158
|
+
},
|
35417
36159
|
{
|
35418
36160
|
"name": "info-icon-aria-label",
|
35419
36161
|
"type": {
|
@@ -39343,6 +40085,19 @@
|
|
39343
40085
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
39344
40086
|
}
|
39345
40087
|
},
|
40088
|
+
{
|
40089
|
+
"kind": "field",
|
40090
|
+
"name": "toggletipStrategy",
|
40091
|
+
"type": {
|
40092
|
+
"text": "PopoverStrategy"
|
40093
|
+
},
|
40094
|
+
"attribute": "toggletip-strategy",
|
40095
|
+
"reflects": true,
|
40096
|
+
"inheritedFrom": {
|
40097
|
+
"name": "FormfieldWrapper",
|
40098
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
40099
|
+
}
|
40100
|
+
},
|
39346
40101
|
{
|
39347
40102
|
"kind": "field",
|
39348
40103
|
"name": "infoIconAriaLabel",
|
@@ -39714,6 +40469,17 @@
|
|
39714
40469
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
39715
40470
|
}
|
39716
40471
|
},
|
40472
|
+
{
|
40473
|
+
"name": "toggletip-strategy",
|
40474
|
+
"type": {
|
40475
|
+
"text": "PopoverStrategy"
|
40476
|
+
},
|
40477
|
+
"fieldName": "toggletipStrategy",
|
40478
|
+
"inheritedFrom": {
|
40479
|
+
"name": "FormfieldWrapper",
|
40480
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
40481
|
+
}
|
40482
|
+
},
|
39717
40483
|
{
|
39718
40484
|
"name": "info-icon-aria-label",
|
39719
40485
|
"type": {
|
@@ -39747,7 +40513,41 @@
|
|
39747
40513
|
},
|
39748
40514
|
"tagName": "mdc-textarea",
|
39749
40515
|
"jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-textarea-disabled-border-color - Border color for the textarea container when disabled\n * @cssproperty --mdc-textarea-disabled-text-color - Text color for the textarea field when disabled\n * @cssproperty --mdc-textarea-disabled-background-color - Background color for the textarea field when disabled\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-error-border-color - Border color for the error related help text\n * @cssproperty --mdc-textarea-warning-border-color - Border color for the warning related help text\n * @cssproperty --mdc-textarea-success-border-color - Border color for the success related help text\n * @cssproperty --mdc-textarea-primary-border-color - Border color for the priority related help text\n * @cssproperty --mdc-textarea-hover-background-color - Background color for the textarea container when hover\n * @cssproperty --mdc-textarea-focused-background-color - Background color for the textarea container when focused\n * @cssproperty --mdc-textarea-focused-border-color - Border color for the textarea container when focused\n */",
|
39750
|
-
"customElement": true
|
40516
|
+
"customElement": true,
|
40517
|
+
"slots": [
|
40518
|
+
{
|
40519
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
40520
|
+
"name": "label",
|
40521
|
+
"inheritedFrom": {
|
40522
|
+
"name": "FormfieldWrapper",
|
40523
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
40524
|
+
}
|
40525
|
+
},
|
40526
|
+
{
|
40527
|
+
"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.",
|
40528
|
+
"name": "toggletip",
|
40529
|
+
"inheritedFrom": {
|
40530
|
+
"name": "FormfieldWrapper",
|
40531
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
40532
|
+
}
|
40533
|
+
},
|
40534
|
+
{
|
40535
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
40536
|
+
"name": "help-icon",
|
40537
|
+
"inheritedFrom": {
|
40538
|
+
"name": "FormfieldWrapper",
|
40539
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
40540
|
+
}
|
40541
|
+
},
|
40542
|
+
{
|
40543
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
40544
|
+
"name": "help-text",
|
40545
|
+
"inheritedFrom": {
|
40546
|
+
"name": "FormfieldWrapper",
|
40547
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
40548
|
+
}
|
40549
|
+
}
|
40550
|
+
]
|
39751
40551
|
}
|
39752
40552
|
],
|
39753
40553
|
"exports": [
|
@@ -40645,6 +41445,19 @@
|
|
40645
41445
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
40646
41446
|
}
|
40647
41447
|
},
|
41448
|
+
{
|
41449
|
+
"kind": "field",
|
41450
|
+
"name": "toggletipStrategy",
|
41451
|
+
"type": {
|
41452
|
+
"text": "PopoverStrategy"
|
41453
|
+
},
|
41454
|
+
"attribute": "toggletip-strategy",
|
41455
|
+
"reflects": true,
|
41456
|
+
"inheritedFrom": {
|
41457
|
+
"name": "FormfieldWrapper",
|
41458
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
41459
|
+
}
|
41460
|
+
},
|
40648
41461
|
{
|
40649
41462
|
"kind": "field",
|
40650
41463
|
"name": "infoIconAriaLabel",
|
@@ -40922,6 +41735,17 @@
|
|
40922
41735
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
40923
41736
|
}
|
40924
41737
|
},
|
41738
|
+
{
|
41739
|
+
"name": "toggletip-strategy",
|
41740
|
+
"type": {
|
41741
|
+
"text": "PopoverStrategy"
|
41742
|
+
},
|
41743
|
+
"fieldName": "toggletipStrategy",
|
41744
|
+
"inheritedFrom": {
|
41745
|
+
"name": "FormfieldWrapper",
|
41746
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
41747
|
+
}
|
41748
|
+
},
|
40925
41749
|
{
|
40926
41750
|
"name": "info-icon-aria-label",
|
40927
41751
|
"type": {
|
@@ -40955,7 +41779,41 @@
|
|
40955
41779
|
},
|
40956
41780
|
"tagName": "mdc-toggle",
|
40957
41781
|
"jsDoc": "/**\n * Toggle Component is an interactive control used to switch between two mutually exclusive options,\n * such as On/Off, Active/Inactive. These are commonly used in settings panels, forms, and preference selections\n * where users need to enable or disable a feature.\n * It contains an optional label and an optional helper text.\n *\n * To create a group of toggles, use the FormFieldGroup component.\n *\n * Note: It internally renders a checkbox styled as a toggle switch.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-statictoggle\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-toggle\n *\n * @event change - (React: onChange) Event that gets dispatched when the toggle state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the toggle receives focus.\n *\n * @cssproperty --mdc-toggle-width - Width of the toggle\n * @cssproperty --mdc-toggle-height - Height of the toggle\n * @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-label-lineheight - Line height of the toggle label\n * @cssproperty --mdc-toggle-label-fontsize - Font size of the toggle label\n * @cssproperty --mdc-toggle-label-fontweight - Font weight of the toggle label\n * @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state\n * @cssproperty --mdc-toggle-help-text-color - Color of the help text label\n * @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state\n * @cssproperty --mdc-toggle-active-pressed-color - Background color of the active toggle in pressed state\n * @cssproperty --mdc-toggle-inactive-hover-color - Background color of the inactive toggle in hover state\n * @cssproperty --mdc-toggle-inactive-pressed-color - Background color of the inactive toggle in pressed state\n */",
|
40958
|
-
"customElement": true
|
41782
|
+
"customElement": true,
|
41783
|
+
"slots": [
|
41784
|
+
{
|
41785
|
+
"description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
|
41786
|
+
"name": "label",
|
41787
|
+
"inheritedFrom": {
|
41788
|
+
"name": "FormfieldWrapper",
|
41789
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
41790
|
+
}
|
41791
|
+
},
|
41792
|
+
{
|
41793
|
+
"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.",
|
41794
|
+
"name": "toggletip",
|
41795
|
+
"inheritedFrom": {
|
41796
|
+
"name": "FormfieldWrapper",
|
41797
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
41798
|
+
}
|
41799
|
+
},
|
41800
|
+
{
|
41801
|
+
"description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
|
41802
|
+
"name": "help-icon",
|
41803
|
+
"inheritedFrom": {
|
41804
|
+
"name": "FormfieldWrapper",
|
41805
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
41806
|
+
}
|
41807
|
+
},
|
41808
|
+
{
|
41809
|
+
"description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
|
41810
|
+
"name": "help-text",
|
41811
|
+
"inheritedFrom": {
|
41812
|
+
"name": "FormfieldWrapper",
|
41813
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
41814
|
+
}
|
41815
|
+
}
|
41816
|
+
]
|
40959
41817
|
}
|
40960
41818
|
],
|
40961
41819
|
"exports": [
|