@aurodesignsystem-dev/auro-formkit 0.0.0-pr1352.2 → 0.0.0-pr1352.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/components/checkbox/demo/api.min.js +1 -1
  2. package/components/checkbox/demo/index.min.js +1 -1
  3. package/components/checkbox/dist/index.js +1 -1
  4. package/components/checkbox/dist/registered.js +1 -1
  5. package/components/combobox/demo/api.min.js +3 -3
  6. package/components/combobox/demo/index.min.js +3 -3
  7. package/components/combobox/dist/index.js +3 -3
  8. package/components/combobox/dist/registered.js +3 -3
  9. package/components/counter/demo/api.min.js +2 -2
  10. package/components/counter/demo/index.min.js +2 -2
  11. package/components/counter/dist/index.js +2 -2
  12. package/components/counter/dist/registered.js +2 -2
  13. package/components/datepicker/demo/api.min.js +3 -3
  14. package/components/datepicker/demo/index.min.js +3 -3
  15. package/components/datepicker/dist/index.js +3 -3
  16. package/components/datepicker/dist/registered.js +3 -3
  17. package/components/dropdown/demo/api.min.js +1 -1
  18. package/components/dropdown/demo/index.min.js +1 -1
  19. package/components/dropdown/dist/index.js +1 -1
  20. package/components/dropdown/dist/registered.js +1 -1
  21. package/components/input/demo/api.min.js +1 -1
  22. package/components/input/demo/index.min.js +1 -1
  23. package/components/input/dist/index.js +1 -1
  24. package/components/input/dist/registered.js +1 -1
  25. package/components/radio/demo/api.min.js +1 -1
  26. package/components/radio/demo/index.min.js +1 -1
  27. package/components/radio/dist/index.js +1 -1
  28. package/components/radio/dist/registered.js +1 -1
  29. package/components/select/demo/api.md +256 -61
  30. package/components/select/demo/api.min.js +2 -2
  31. package/components/select/demo/index.min.js +2 -2
  32. package/components/select/dist/index.js +2 -2
  33. package/components/select/dist/registered.js +2 -2
  34. package/custom-elements.json +1546 -1546
  35. package/package.json +1 -1
@@ -4,35 +4,35 @@
4
4
  "modules": [
5
5
  {
6
6
  "kind": "javascript-module",
7
- "path": "components/checkbox/src/auro-checkbox-group.js",
7
+ "path": "components/bibtemplate/src/auro-bibtemplate.js",
8
8
  "declarations": [
9
9
  {
10
10
  "kind": "class",
11
- "description": "The `auro-checkbox-group` element is a wrapper for `auro-checkbox` elements.",
12
- "name": "AuroCheckboxGroup",
11
+ "description": "The `auro-bibtemplate` element provides users a template for creating modal dialog elements.",
12
+ "name": "AuroBibtemplate",
13
13
  "slots": [
14
14
  {
15
- "description": "Allows for the legend to be overridden.",
16
- "name": "legend"
15
+ "description": "The default slot for the main content.",
16
+ "name": "default"
17
17
  },
18
18
  {
19
- "description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
20
- "name": "optionalLabel"
19
+ "description": "Slot for the header content.",
20
+ "name": "header"
21
21
  },
22
22
  {
23
- "description": "Allows for the helper text to be overridden.",
24
- "name": "helpText"
23
+ "description": "Slot for the subheader content.",
24
+ "name": "subheader"
25
25
  },
26
26
  {
27
- "description": "The default slot for the checkbox items.",
28
- "name": "default"
27
+ "description": "Slot for the footer content.",
28
+ "name": "footer"
29
+ },
30
+ {
31
+ "description": "Slot for the close button aria-label.",
32
+ "name": "ariaLabel.close"
29
33
  }
30
34
  ],
31
35
  "members": [
32
- {
33
- "kind": "method",
34
- "name": "_initializeDefaults"
35
- },
36
36
  {
37
37
  "kind": "method",
38
38
  "name": "register",
@@ -40,8 +40,8 @@
40
40
  "parameters": [
41
41
  {
42
42
  "name": "name",
43
- "default": "\"auro-checkbox-group\"",
44
- "description": "The name of the element that you want to register.",
43
+ "default": "\"auro-bibtemplate\"",
44
+ "description": "The name of element that you want to register to.",
45
45
  "optional": true,
46
46
  "type": {
47
47
  "text": "string"
@@ -52,36 +52,17 @@
52
52
  },
53
53
  {
54
54
  "kind": "method",
55
- "name": "handleValueUpdate",
55
+ "name": "preventBodyScroll",
56
56
  "parameters": [
57
57
  {
58
- "name": "value",
59
- "description": "The value of the checkbox.",
60
- "type": {
61
- "text": "String"
62
- }
63
- },
64
- {
65
- "name": "selected",
66
- "description": "The checked state of the checkbox.",
58
+ "name": "event",
59
+ "description": "The touchmove event.",
67
60
  "type": {
68
- "text": "Boolean"
61
+ "text": "Event"
69
62
  }
70
63
  }
71
64
  ],
72
- "description": "Helper method to handle checkbox value changing.",
73
- "privacy": "private",
74
- "return": {
75
- "type": {
76
- "text": "void"
77
- }
78
- }
79
- },
80
- {
81
- "kind": "method",
82
- "name": "handlePreselectedItems",
83
- "description": "Helper method that handles the state of preselected checkboxes.",
84
- "privacy": "private",
65
+ "description": "Prevents scrolling of the body when touching empty areas of the component.",
85
66
  "return": {
86
67
  "type": {
87
68
  "text": "void"
@@ -90,315 +71,247 @@
90
71
  },
91
72
  {
92
73
  "kind": "method",
93
- "name": "handleItems",
94
- "description": "Helper method that handles the state of checkboxes.",
95
- "privacy": "private",
96
- "return": {
97
- "type": {
98
- "text": "void"
99
- }
100
- }
74
+ "name": "onCloseButtonClick"
101
75
  },
102
76
  {
103
77
  "kind": "method",
104
- "name": "reset",
105
- "description": "Resets component to initial state.",
78
+ "name": "exposeCssParts",
79
+ "description": "Exposes CSS parts for styling from parent components.",
106
80
  "return": {
107
81
  "type": {
108
82
  "text": "void"
109
83
  }
110
84
  }
111
85
  },
112
- {
113
- "kind": "method",
114
- "name": "validate",
115
- "parameters": [
116
- {
117
- "name": "force",
118
- "default": "false",
119
- "description": "Whether to force validation.",
120
- "optional": true,
121
- "type": {
122
- "text": "boolean"
123
- }
124
- }
125
- ],
126
- "description": "Validates value."
127
- },
128
- {
129
- "kind": "field",
130
- "name": "appearance",
131
- "privacy": "public",
132
- "type": {
133
- "text": "'default' | 'inverse'"
134
- },
135
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
136
- "default": "'default'",
137
- "attribute": "appearance",
138
- "reflects": true
139
- },
140
86
  {
141
87
  "kind": "field",
142
- "name": "disabled",
88
+ "name": "large",
143
89
  "privacy": "public",
144
90
  "type": {
145
91
  "text": "boolean"
146
92
  },
147
- "description": "If set, disables the checkbox group.",
148
- "attribute": "disabled",
149
- "reflects": true
150
- },
151
- {
152
- "kind": "field",
153
- "name": "error",
154
- "privacy": "public",
155
- "type": {
156
- "text": "string"
157
- },
158
- "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
159
- "attribute": "error",
93
+ "default": "false",
94
+ "attribute": "large",
160
95
  "reflects": true
161
96
  },
162
97
  {
163
98
  "kind": "field",
164
- "name": "horizontal",
165
- "privacy": "public",
166
- "type": {
167
- "text": "boolean"
168
- },
169
- "description": "If set, checkboxes will be aligned horizontally.",
170
- "attribute": "horizontal",
171
- "reflects": true
99
+ "name": "iconTag",
100
+ "privacy": "private"
172
101
  },
173
102
  {
174
103
  "kind": "field",
175
- "name": "noValidate",
176
- "privacy": "public",
177
- "type": {
178
- "text": "boolean"
179
- },
180
- "description": "If set, disables auto-validation on blur.",
181
- "attribute": "noValidate",
182
- "reflects": true
104
+ "name": "headerTag",
105
+ "privacy": "private"
183
106
  },
184
107
  {
185
108
  "kind": "field",
186
- "name": "onDark",
187
- "privacy": "public",
188
- "type": {
189
- "text": "boolean"
190
- },
191
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
192
- "attribute": "onDark",
193
- "reflects": true
109
+ "name": "buttonTag",
110
+ "privacy": "private"
194
111
  },
195
112
  {
196
113
  "kind": "field",
197
- "name": "required",
114
+ "name": "isFullscreen",
198
115
  "privacy": "public",
199
116
  "type": {
200
117
  "text": "boolean"
201
118
  },
202
- "description": "Populates the `required` attribute on the element. Used for client-side validation.",
203
- "attribute": "required",
204
- "reflects": true
205
- },
206
- {
207
- "kind": "field",
208
- "name": "setCustomValidity",
209
- "privacy": "public",
210
- "type": {
211
- "text": "string"
212
- },
213
- "description": "Sets a custom help text message to display for all validityStates.",
214
- "attribute": "setCustomValidity"
215
- },
216
- {
217
- "kind": "field",
218
- "name": "setCustomValidityCustomError",
219
- "privacy": "public",
220
- "type": {
221
- "text": "string"
222
- },
223
- "description": "Custom help text message to display when validity = `customError`.",
224
- "attribute": "setCustomValidityCustomError"
225
- },
226
- {
227
- "kind": "field",
228
- "name": "setCustomValidityValueMissing",
229
- "privacy": "public",
230
- "type": {
231
- "text": "string"
232
- },
233
- "description": "Custom help text message to display when validity = `valueMissing`.",
234
- "attribute": "setCustomValidityValueMissing"
235
- },
236
- {
237
- "kind": "field",
238
- "name": "validity",
239
- "privacy": "public",
240
- "type": {
241
- "text": "string"
242
- },
243
- "description": "Specifies the `validityState` this element is in.",
244
- "attribute": "validity",
119
+ "attribute": "isFullscreen",
245
120
  "reflects": true
246
121
  }
247
122
  ],
248
123
  "events": [
249
124
  {
250
- "name": "input",
125
+ "name": "close-click",
251
126
  "type": {
252
- "text": "CustomEvent"
127
+ "text": "Event"
253
128
  }
254
129
  },
255
130
  {
256
- "description": "Notifies that the `validity` and `errorMessage` values have changed.",
257
- "name": "auroFormElement-validated"
131
+ "name": "auro-bibtemplate-connected",
132
+ "type": {
133
+ "text": "CustomEvent"
134
+ }
258
135
  }
259
136
  ],
260
137
  "attributes": [
261
138
  {
262
- "name": "appearance",
263
- "type": {
264
- "text": "'default' | 'inverse'"
265
- },
266
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
267
- "default": "'default'",
268
- "fieldName": "appearance"
269
- },
270
- {
271
- "name": "disabled",
272
- "type": {
273
- "text": "boolean"
274
- },
275
- "description": "If set, disables the checkbox group.",
276
- "fieldName": "disabled"
277
- },
278
- {
279
- "name": "error",
280
- "type": {
281
- "text": "string"
282
- },
283
- "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
284
- "fieldName": "error"
285
- },
286
- {
287
- "name": "horizontal",
288
- "type": {
289
- "text": "boolean"
290
- },
291
- "description": "If set, checkboxes will be aligned horizontally.",
292
- "fieldName": "horizontal"
293
- },
294
- {
295
- "name": "noValidate",
296
- "type": {
297
- "text": "boolean"
298
- },
299
- "description": "If set, disables auto-validation on blur.",
300
- "fieldName": "noValidate"
301
- },
302
- {
303
- "name": "onDark",
139
+ "name": "isFullscreen",
304
140
  "type": {
305
141
  "text": "boolean"
306
142
  },
307
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
308
- "fieldName": "onDark"
143
+ "fieldName": "isFullscreen"
309
144
  },
310
145
  {
311
- "name": "required",
146
+ "name": "large",
312
147
  "type": {
313
148
  "text": "boolean"
314
149
  },
315
- "description": "Populates the `required` attribute on the element. Used for client-side validation.",
316
- "fieldName": "required"
317
- },
318
- {
319
- "name": "setCustomValidity",
320
- "type": {
321
- "text": "string"
322
- },
323
- "description": "Sets a custom help text message to display for all validityStates.",
324
- "fieldName": "setCustomValidity"
325
- },
326
- {
327
- "name": "setCustomValidityCustomError",
328
- "type": {
329
- "text": "string"
330
- },
331
- "description": "Custom help text message to display when validity = `customError`.",
332
- "fieldName": "setCustomValidityCustomError"
333
- },
334
- {
335
- "name": "setCustomValidityValueMissing",
336
- "type": {
337
- "text": "string"
338
- },
339
- "description": "Custom help text message to display when validity = `valueMissing`.",
340
- "fieldName": "setCustomValidityValueMissing"
341
- },
342
- {
343
- "name": "validity",
344
- "type": {
345
- "text": "string"
346
- },
347
- "description": "Specifies the `validityState` this element is in.",
348
- "fieldName": "validity"
150
+ "default": "false",
151
+ "fieldName": "large"
349
152
  }
350
153
  ],
351
154
  "superclass": {
352
155
  "name": "LitElement",
353
156
  "package": "lit"
354
157
  },
355
- "tagName": "auro-checkbox-group",
158
+ "tagName": "auro-bibtemplate",
356
159
  "customElement": true
357
160
  }
358
161
  ],
359
162
  "exports": [
360
163
  {
361
164
  "kind": "js",
362
- "name": "AuroCheckboxGroup",
165
+ "name": "AuroBibtemplate",
363
166
  "declaration": {
364
- "name": "AuroCheckboxGroup",
365
- "module": "components/checkbox/src/auro-checkbox-group.js"
167
+ "name": "AuroBibtemplate",
168
+ "module": "components/bibtemplate/src/auro-bibtemplate.js"
366
169
  }
367
170
  }
368
171
  ]
369
172
  },
370
173
  {
371
174
  "kind": "javascript-module",
372
- "path": "components/checkbox/src/auro-checkbox.js",
175
+ "path": "components/bibtemplate/src/buttonVersion.js",
176
+ "declarations": [],
177
+ "exports": [
178
+ {
179
+ "kind": "js",
180
+ "name": "default",
181
+ "declaration": {
182
+ "name": "12.3.2",
183
+ "module": "components/bibtemplate/src/buttonVersion.js"
184
+ }
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "kind": "javascript-module",
190
+ "path": "components/bibtemplate/src/headerVersion.js",
191
+ "declarations": [],
192
+ "exports": [
193
+ {
194
+ "kind": "js",
195
+ "name": "default",
196
+ "declaration": {
197
+ "name": "5.0.1",
198
+ "module": "components/bibtemplate/src/headerVersion.js"
199
+ }
200
+ }
201
+ ]
202
+ },
203
+ {
204
+ "kind": "javascript-module",
205
+ "path": "components/bibtemplate/src/iconVersion.js",
206
+ "declarations": [],
207
+ "exports": [
208
+ {
209
+ "kind": "js",
210
+ "name": "default",
211
+ "declaration": {
212
+ "name": "9.1.2",
213
+ "module": "components/bibtemplate/src/iconVersion.js"
214
+ }
215
+ }
216
+ ]
217
+ },
218
+ {
219
+ "kind": "javascript-module",
220
+ "path": "components/bibtemplate/src/index.js",
221
+ "declarations": [],
222
+ "exports": [
223
+ {
224
+ "kind": "js",
225
+ "name": "AuroBibtemplate",
226
+ "declaration": {
227
+ "name": "AuroBibtemplate",
228
+ "module": "components/bibtemplate/src/index.js"
229
+ }
230
+ }
231
+ ]
232
+ },
233
+ {
234
+ "kind": "javascript-module",
235
+ "path": "components/bibtemplate/src/registered.js",
236
+ "declarations": [],
237
+ "exports": []
238
+ },
239
+ {
240
+ "kind": "javascript-module",
241
+ "path": "components/combobox/src/auro-combobox.js",
373
242
  "declarations": [
374
243
  {
375
244
  "kind": "class",
376
- "description": "The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.",
377
- "name": "AuroCheckbox",
378
- "cssParts": [
245
+ "description": "The `auro-combobox` element provides users with a way to select an option from a list of filtered or suggested options based on user input.",
246
+ "name": "AuroCombobox",
247
+ "slots": [
379
248
  {
380
- "description": "apply css to a specific checkbox.",
381
- "name": "checkbox"
249
+ "description": "Default slot for the menu content.",
250
+ "name": ""
382
251
  },
383
252
  {
384
- "description": "apply css to a specific checkbox's input.",
385
- "name": "checkbox-input"
253
+ "type": {
254
+ "text": "HTMLSlotElement"
255
+ },
256
+ "description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
257
+ "name": "optionalLabel"
386
258
  },
387
259
  {
388
- "description": "apply css to a specific checkbox's label.",
389
- "name": "checkbox-label"
390
- }
391
- ],
392
- "slots": [
260
+ "description": "Sets aria-label on clear button",
261
+ "name": "ariaLabel.input.clear"
262
+ },
393
263
  {
394
- "description": "The default slot for the checkbox label.",
395
- "name": "default"
264
+ "description": "Sets aria-label on close button in fullscreen bib",
265
+ "name": "ariaLabel.bib.close"
266
+ },
267
+ {
268
+ "description": "Defines the headline to display above menu-options",
269
+ "name": "bib.fullscreen.headline"
270
+ },
271
+ {
272
+ "description": "Defines the content of the label.",
273
+ "name": "label"
274
+ },
275
+ {
276
+ "description": "Defines the content of the helpText.",
277
+ "name": "helpText"
278
+ },
279
+ {
280
+ "description": "Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.",
281
+ "name": "displayValue"
396
282
  }
397
283
  ],
398
284
  "members": [
399
285
  {
400
286
  "kind": "method",
401
- "name": "_initializeDefaults"
287
+ "name": "_initializeDefaults",
288
+ "privacy": "private",
289
+ "return": {
290
+ "type": {
291
+ "text": "void"
292
+ }
293
+ }
294
+ },
295
+ {
296
+ "kind": "field",
297
+ "name": "inputValue",
298
+ "description": "Returns the current value of the input element within the combobox.",
299
+ "return": {
300
+ "type": {
301
+ "text": "string|undefined"
302
+ }
303
+ },
304
+ "readonly": true
305
+ },
306
+ {
307
+ "kind": "method",
308
+ "name": "isValid",
309
+ "description": "Checks if the element is valid.",
310
+ "return": {
311
+ "type": {
312
+ "text": "boolean"
313
+ }
314
+ }
402
315
  },
403
316
  {
404
317
  "kind": "method",
@@ -407,8 +320,8 @@
407
320
  "parameters": [
408
321
  {
409
322
  "name": "name",
410
- "default": "\"auro-checkbox\"",
411
- "description": "The name of element that you want to register to.",
323
+ "default": "'auro-combobox'",
324
+ "description": "The name of the element that you want to register.",
412
325
  "optional": true,
413
326
  "type": {
414
327
  "text": "string"
@@ -419,17 +332,14 @@
419
332
  },
420
333
  {
421
334
  "kind": "method",
422
- "name": "handleChange",
423
- "parameters": [
424
- {
425
- "name": "event",
426
- "description": "The change event from the checkbox input.",
427
- "type": {
428
- "text": "Event"
429
- }
430
- }
431
- ],
432
- "description": "Handles the change event for the checkbox input.\nUpdates the checked state and dispatches a corresponding custom event.\nThis custom event is only for the purpose of supporting IE.",
335
+ "name": "updateFilter",
336
+ "description": "Updates the filter for the available options based on the input value.",
337
+ "privacy": "private"
338
+ },
339
+ {
340
+ "kind": "method",
341
+ "name": "syncValuesAndStates",
342
+ "description": "Syncs the values and states of this component, the input, and the menu, including this.optionSelected and this.menu.optionSelected.",
433
343
  "privacy": "private",
434
344
  "return": {
435
345
  "type": {
@@ -439,17 +349,23 @@
439
349
  },
440
350
  {
441
351
  "kind": "method",
442
- "name": "handleInput",
352
+ "name": "updateTriggerTextDisplay",
443
353
  "parameters": [
444
354
  {
445
- "name": "event",
446
- "description": "The input event from the checkbox input.",
355
+ "name": "label",
356
+ "description": "The label of the selected option.",
447
357
  "type": {
448
- "text": "Event"
358
+ "text": "string"
449
359
  }
450
360
  }
451
361
  ],
452
- "description": "Handles the input event for the checkbox input.\nUpdates the checked state and dispatches a custom 'auroCheckbox-input' event.",
362
+ "description": "Update displayValue or input.value, it's called when making a selection.",
363
+ "privacy": "private"
364
+ },
365
+ {
366
+ "kind": "method",
367
+ "name": "handleMenuOptions",
368
+ "description": "Processes hidden state of all menu options and determines if there are any available options not hidden.",
453
369
  "privacy": "private",
454
370
  "return": {
455
371
  "type": {
@@ -459,8 +375,8 @@
459
375
  },
460
376
  {
461
377
  "kind": "method",
462
- "name": "handleFocusin",
463
- "description": "Function to support",
378
+ "name": "generateOptionsArray",
379
+ "description": "Determines the element error state based on the `required` attribute and input value.",
464
380
  "privacy": "private",
465
381
  "return": {
466
382
  "type": {
@@ -470,19 +386,18 @@
470
386
  },
471
387
  {
472
388
  "kind": "method",
473
- "name": "generateIconHtml",
474
- "description": "Function to generate checkmark svg.",
475
- "privacy": "private",
389
+ "name": "hideBib",
390
+ "description": "Hides the dropdown bib if its open.",
476
391
  "return": {
477
392
  "type": {
478
- "text": "HTMLElement"
393
+ "text": "void"
479
394
  }
480
395
  }
481
396
  },
482
397
  {
483
398
  "kind": "method",
484
- "name": "reset",
485
- "description": "Resets component to initial state.",
399
+ "name": "showBib",
400
+ "description": "Shows the dropdown bib if there are options to show.",
486
401
  "return": {
487
402
  "type": {
488
403
  "text": "void"
@@ -491,8 +406,8 @@
491
406
  },
492
407
  {
493
408
  "kind": "method",
494
- "name": "updateAriaLabel",
495
- "description": "Updates the aria-label based on slot content.",
409
+ "name": "configureDropdown",
410
+ "description": "Binds all behavior needed to the dropdown after rendering.",
496
411
  "privacy": "private",
497
412
  "return": {
498
413
  "type": {
@@ -502,19 +417,235 @@
502
417
  },
503
418
  {
504
419
  "kind": "method",
505
- "name": "handleKeyDown",
506
- "parameters": [
507
- {
508
- "name": "event",
509
- "description": "The keydown event from the checkbox input.",
510
- "type": {
511
- "text": "KeyboardEvent"
512
- }
513
- }
514
- ],
515
- "description": "Handles keydown event to toggle the checkbox with Space key.",
516
- "privacy": "private",
517
- "return": {
420
+ "name": "setClearBtnFocus",
421
+ "privacy": "private"
422
+ },
423
+ {
424
+ "kind": "method",
425
+ "name": "setInputFocus",
426
+ "privacy": "private"
427
+ },
428
+ {
429
+ "kind": "method",
430
+ "name": "updateMenuShapeSize",
431
+ "description": "Update menu to default for fullscreen bib, otherwise to this.size and this.shape.",
432
+ "privacy": "private"
433
+ },
434
+ {
435
+ "kind": "method",
436
+ "name": "configureMenu",
437
+ "description": "Binds all behavior needed to the menu after rendering.",
438
+ "privacy": "private",
439
+ "return": {
440
+ "type": {
441
+ "text": "void"
442
+ }
443
+ }
444
+ },
445
+ {
446
+ "kind": "method",
447
+ "name": "configureInput",
448
+ "description": "Binds all behavior needed to the input after rendering.",
449
+ "privacy": "private",
450
+ "return": {
451
+ "type": {
452
+ "text": "void"
453
+ }
454
+ }
455
+ },
456
+ {
457
+ "kind": "method",
458
+ "name": "handleMenuLoadingChange",
459
+ "parameters": [
460
+ {
461
+ "name": "event",
462
+ "description": "The event object containing details about the loading state change.",
463
+ "type": {
464
+ "text": "CustomEvent"
465
+ }
466
+ },
467
+ {
468
+ "description": "Indicates whether the menu is currently loading.",
469
+ "name": "event.detail.loading",
470
+ "type": {
471
+ "text": "boolean"
472
+ }
473
+ },
474
+ {
475
+ "description": "Indicates if there are loading placeholders present.",
476
+ "name": "event.detail.hasLoadingPlaceholder",
477
+ "type": {
478
+ "text": "boolean"
479
+ }
480
+ }
481
+ ],
482
+ "description": "Manages the visibility of the dropdown based on loading state changes.\n\nThis method listens for loading state changes and adjusts the visibility of the dropdown accordingly.\nIf the dropdown is visible and loading is true without any loading placeholders, it hides the dropdown\nand sets a flag to indicate it is hidden while loading. If loading is false and the dropdown was previously\nhidden, it checks if the active element is within the dropdown and shows it again if true.",
483
+ "privacy": "private",
484
+ "return": {
485
+ "type": {
486
+ "text": "void"
487
+ }
488
+ }
489
+ },
490
+ {
491
+ "kind": "method",
492
+ "name": "handleInputValueChange",
493
+ "parameters": [
494
+ {
495
+ "name": "event",
496
+ "description": "The input event triggered by the input element.",
497
+ "type": {
498
+ "text": "Event"
499
+ }
500
+ }
501
+ ],
502
+ "description": "Handle changes to the input value and trigger changes that should result.",
503
+ "privacy": "private",
504
+ "return": {
505
+ "type": {
506
+ "text": "void"
507
+ }
508
+ }
509
+ },
510
+ {
511
+ "kind": "method",
512
+ "name": "configureCombobox",
513
+ "description": "Binds all behavior needed to the combobox after rendering.",
514
+ "privacy": "private",
515
+ "return": {
516
+ "type": {
517
+ "text": "void"
518
+ }
519
+ }
520
+ },
521
+ {
522
+ "kind": "method",
523
+ "name": "focus",
524
+ "description": "Focuses the combobox trigger input.",
525
+ "return": {
526
+ "type": {
527
+ "text": "void"
528
+ }
529
+ }
530
+ },
531
+ {
532
+ "kind": "method",
533
+ "name": "setMenuValue",
534
+ "parameters": [
535
+ {
536
+ "name": "value",
537
+ "description": "The value to set on the menu.",
538
+ "type": {
539
+ "text": "string"
540
+ }
541
+ }
542
+ ],
543
+ "description": "Sets the menu value if menu is available.",
544
+ "return": {
545
+ "type": {
546
+ "text": "void"
547
+ }
548
+ }
549
+ },
550
+ {
551
+ "kind": "method",
552
+ "name": "reset",
553
+ "description": "Resets component to initial state.",
554
+ "return": {
555
+ "type": {
556
+ "text": "void"
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "kind": "method",
562
+ "name": "clear",
563
+ "description": "Clears the current value of the combobox.",
564
+ "return": {
565
+ "type": {
566
+ "text": "void"
567
+ }
568
+ }
569
+ },
570
+ {
571
+ "kind": "method",
572
+ "name": "validate",
573
+ "parameters": [
574
+ {
575
+ "name": "force",
576
+ "default": "false",
577
+ "description": "Whether to force validation.",
578
+ "optional": true,
579
+ "type": {
580
+ "text": "boolean"
581
+ }
582
+ }
583
+ ],
584
+ "description": "Validates value."
585
+ },
586
+ {
587
+ "kind": "method",
588
+ "name": "transportAssignedNodes",
589
+ "parameters": [
590
+ {
591
+ "name": "slot",
592
+ "description": "The slot element containing the nodes to apply.",
593
+ "type": {
594
+ "text": "HTMLSlotElement"
595
+ }
596
+ },
597
+ {
598
+ "name": "target",
599
+ "description": "The target element to apply the nodes to.",
600
+ "type": {
601
+ "text": "HTMLElement"
602
+ }
603
+ },
604
+ {
605
+ "name": "newSlotName",
606
+ "description": "The new slot name for the applied nodes.",
607
+ "type": {
608
+ "text": "string"
609
+ }
610
+ }
611
+ ],
612
+ "description": "Applies slotted nodes to a target element with a new slot name.",
613
+ "privacy": "private",
614
+ "return": {
615
+ "type": {
616
+ "text": "void"
617
+ }
618
+ }
619
+ },
620
+ {
621
+ "kind": "method",
622
+ "name": "updateActiveOption",
623
+ "parameters": [
624
+ {
625
+ "name": "index",
626
+ "description": "Index of the option to make active.",
627
+ "type": {
628
+ "text": "number"
629
+ }
630
+ }
631
+ ],
632
+ "description": "Updates the active option in the menu."
633
+ },
634
+ {
635
+ "kind": "method",
636
+ "name": "handleSlotChange",
637
+ "parameters": [
638
+ {
639
+ "name": "event",
640
+ "description": "`slotchange` event.",
641
+ "type": {
642
+ "text": "Event"
643
+ }
644
+ }
645
+ ],
646
+ "description": "Watch for slot changes and recalculate the menuoptions.",
647
+ "privacy": "private",
648
+ "return": {
518
649
  "type": {
519
650
  "text": "void"
520
651
  }
@@ -525,7 +656,7 @@
525
656
  "name": "appearance",
526
657
  "privacy": "public",
527
658
  "type": {
528
- "text": "'default' | 'inverse'"
659
+ "text": "string"
529
660
  },
530
661
  "description": "Defines whether the component will be on lighter or darker backgrounds.",
531
662
  "default": "'default'",
@@ -534,1251 +665,1078 @@
534
665
  },
535
666
  {
536
667
  "kind": "field",
537
- "name": "checked",
668
+ "name": "autocomplete",
538
669
  "privacy": "public",
539
670
  "type": {
540
- "text": "boolean"
671
+ "text": "string"
541
672
  },
542
- "description": "If set to true, the checkbox will be filled with a checkmark.",
543
- "attribute": "checked",
673
+ "description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
674
+ "attribute": "autocomplete",
544
675
  "reflects": true
545
676
  },
546
677
  {
547
678
  "kind": "field",
548
- "name": "disabled",
679
+ "name": "autoPlacement",
549
680
  "privacy": "public",
550
681
  "type": {
551
682
  "text": "boolean"
552
683
  },
553
- "description": "If set to true, the checkbox will not be clickable.",
554
- "attribute": "disabled",
684
+ "description": "If declared, bib's position will be automatically calculated where to appear.",
685
+ "attribute": "autoPlacement",
555
686
  "reflects": true
556
687
  },
557
688
  {
558
689
  "kind": "field",
559
- "name": "error",
560
- "privacy": "public",
690
+ "name": "availableOptions",
691
+ "privacy": "private",
561
692
  "type": {
562
- "text": "boolean"
693
+ "text": "array"
563
694
  },
564
- "description": "If set to true, the checkbox will be displayed with an error state.",
565
- "attribute": "error",
566
- "reflects": true
695
+ "description": "Array of available options to display in the dropdown.",
696
+ "attribute": "availableOptions"
567
697
  },
568
698
  {
569
699
  "kind": "field",
570
- "name": "id",
700
+ "name": "behavior",
571
701
  "privacy": "public",
572
702
  "type": {
573
- "text": "string"
703
+ "text": "'filter' | 'suggestion'"
574
704
  },
575
- "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
576
- "attribute": "id"
705
+ "description": "Sets the behavior of the combobox, \"filter\" or \"suggestion\".\n\"filter\" requires the user to select an option from the menu.\n\"suggestion\" allows the user to enter a value not present in the menu options.",
706
+ "default": "'suggestion'",
707
+ "attribute": "behavior",
708
+ "reflects": true
577
709
  },
578
710
  {
579
711
  "kind": "field",
580
- "name": "inputId",
581
- "privacy": "private",
712
+ "name": "checkmark",
713
+ "privacy": "public",
582
714
  "type": {
583
- "text": "string"
715
+ "text": "boolean"
584
716
  },
585
- "description": "The id for input node."
717
+ "description": "When attribute is present auro-menu will apply check marks to selected options.",
718
+ "attribute": "checkmark",
719
+ "reflects": true
586
720
  },
587
721
  {
588
722
  "kind": "field",
589
- "name": "name",
723
+ "name": "disabled",
590
724
  "privacy": "public",
591
725
  "type": {
592
- "text": "string"
726
+ "text": "boolean"
593
727
  },
594
- "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
595
- "attribute": "name"
728
+ "description": "If set, disables the combobox.",
729
+ "attribute": "disabled",
730
+ "reflects": true
596
731
  },
597
732
  {
598
733
  "kind": "field",
599
- "name": "onDark",
600
- "privacy": "public",
734
+ "name": "dropdownId",
735
+ "privacy": "private",
601
736
  "type": {
602
- "text": "boolean"
737
+ "text": "string"
603
738
  },
604
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
605
- "attribute": "onDark",
606
- "reflects": true
739
+ "description": "ID for the dropdown."
607
740
  },
608
741
  {
609
742
  "kind": "field",
610
- "name": "touched",
743
+ "name": "dropdownOpen",
611
744
  "privacy": "private",
612
745
  "type": {
613
746
  "text": "boolean"
614
747
  },
615
- "description": "Indicates whether the checkbox has been interacted with."
748
+ "description": "Whether or not the dropdown is open."
616
749
  },
617
750
  {
618
751
  "kind": "field",
619
- "name": "value",
752
+ "name": "dvInputOnly",
620
753
  "privacy": "public",
621
754
  "type": {
622
- "text": "string"
755
+ "text": "boolean"
623
756
  },
624
- "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
625
- "attribute": "value"
757
+ "description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
758
+ "attribute": "dvInputOnly",
759
+ "reflects": true
626
760
  },
627
761
  {
628
762
  "kind": "field",
629
- "name": "tabIndex",
630
- "privacy": "private",
763
+ "name": "error",
764
+ "privacy": "public",
631
765
  "type": {
632
- "text": "number"
766
+ "text": "string"
633
767
  },
634
- "description": "The tabindex attribute for the checkbox.",
635
- "attribute": "tabindex",
768
+ "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
769
+ "attribute": "error",
636
770
  "reflects": true
637
771
  },
638
772
  {
639
773
  "kind": "field",
640
- "name": "ariaChecked",
641
- "privacy": "private",
774
+ "name": "format",
775
+ "privacy": "public",
642
776
  "type": {
643
777
  "text": "string"
644
778
  },
645
- "description": "The aria-checked attribute for the checkbox.",
646
- "attribute": "aria-checked",
779
+ "description": "Specifies the input mask format.",
780
+ "attribute": "format",
647
781
  "reflects": true
648
782
  },
649
783
  {
650
784
  "kind": "field",
651
- "name": "ariaDisabled",
652
- "privacy": "private",
785
+ "name": "inputmode",
786
+ "privacy": "public",
653
787
  "type": {
654
788
  "text": "string"
655
789
  },
656
- "description": "The aria-disabled attribute for the checkbox.",
657
- "attribute": "aria-disabled",
790
+ "description": "Exposes inputmode attribute for input.",
791
+ "attribute": "inputmode",
658
792
  "reflects": true
659
793
  },
660
794
  {
661
795
  "kind": "field",
662
- "name": "role",
663
- "privacy": "private",
796
+ "name": "layout",
797
+ "privacy": "public",
664
798
  "type": {
665
799
  "text": "string"
666
800
  },
667
- "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
668
- "attribute": "role",
669
- "reflects": true
670
- }
671
- ],
672
- "events": [
801
+ "description": "Sets the layout of the combobox.",
802
+ "default": "'classic'",
803
+ "attribute": "layout",
804
+ "reflects": true,
805
+ "inheritedFrom": {
806
+ "name": "AuroElement",
807
+ "module": "components/layoutElement/src/auroElement.js"
808
+ }
809
+ },
673
810
  {
674
- "name": "auroCheckbox-input",
811
+ "kind": "field",
812
+ "name": "matchWidth",
813
+ "privacy": "private",
675
814
  "type": {
676
- "text": "CustomEvent"
677
- }
815
+ "text": "boolean"
816
+ },
817
+ "description": "If declared, the popover and trigger will be set to the same width.",
818
+ "attribute": "matchWidth",
819
+ "reflects": true
678
820
  },
679
821
  {
680
- "name": "auroCheckbox-focusin",
822
+ "kind": "field",
823
+ "name": "noFilter",
824
+ "privacy": "public",
681
825
  "type": {
682
- "text": "CustomEvent"
683
- }
826
+ "text": "boolean"
827
+ },
828
+ "description": "If set, combobox will not filter menuoptions based on input.",
829
+ "attribute": "noFilter",
830
+ "reflects": true
684
831
  },
685
832
  {
686
- "name": "auroCheckbox-focusout",
833
+ "kind": "field",
834
+ "name": "noFlip",
835
+ "privacy": "public",
687
836
  "type": {
688
- "text": "CustomEvent"
689
- }
837
+ "text": "boolean"
838
+ },
839
+ "description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
840
+ "attribute": "noFlip",
841
+ "reflects": true
690
842
  },
691
843
  {
844
+ "kind": "field",
845
+ "name": "shift",
846
+ "privacy": "public",
692
847
  "type": {
693
- "text": "CustomEvent<any>"
848
+ "text": "boolean"
694
849
  },
695
- "description": "(Deprecated) Notifies when checked value is changed.",
696
- "name": "change"
850
+ "description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
851
+ "attribute": "shift",
852
+ "reflects": true
697
853
  },
698
854
  {
855
+ "kind": "field",
856
+ "name": "noValidate",
857
+ "privacy": "public",
699
858
  "type": {
700
- "text": "InputEvent"
859
+ "text": "boolean"
701
860
  },
702
- "description": "Notifies when when checked value is changed by user's interface.",
703
- "name": "input"
704
- }
705
- ],
706
- "attributes": [
861
+ "description": "If set, disables auto-validation on blur.",
862
+ "attribute": "noValidate",
863
+ "reflects": true
864
+ },
707
865
  {
708
- "name": "appearance",
866
+ "kind": "field",
867
+ "name": "offset",
868
+ "privacy": "public",
709
869
  "type": {
710
- "text": "'default' | 'inverse'"
870
+ "text": "number"
711
871
  },
712
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
713
- "default": "'default'",
714
- "fieldName": "appearance"
872
+ "description": "Gap between the trigger element and bib.",
873
+ "default": "0",
874
+ "attribute": "offset",
875
+ "reflects": true
715
876
  },
716
877
  {
717
- "name": "checked",
878
+ "kind": "field",
879
+ "name": "onDark",
880
+ "privacy": "public",
718
881
  "type": {
719
882
  "text": "boolean"
720
883
  },
721
- "description": "If set to true, the checkbox will be filled with a checkmark.",
722
- "fieldName": "checked"
884
+ "attribute": "onDark",
885
+ "reflects": true,
886
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
887
+ "inheritedFrom": {
888
+ "name": "AuroElement",
889
+ "module": "components/layoutElement/src/auroElement.js"
890
+ }
723
891
  },
724
892
  {
725
- "name": "disabled",
893
+ "kind": "field",
894
+ "name": "optionSelected",
895
+ "privacy": "public",
726
896
  "type": {
727
- "text": "boolean"
897
+ "text": "HTMLElement"
728
898
  },
729
- "description": "If set to true, the checkbox will not be clickable.",
730
- "fieldName": "disabled"
899
+ "description": "Specifies the current selected option.",
900
+ "attribute": "optionSelected"
731
901
  },
732
902
  {
733
- "name": "error",
903
+ "kind": "field",
904
+ "name": "persistInput",
905
+ "privacy": "public",
734
906
  "type": {
735
907
  "text": "boolean"
736
908
  },
737
- "description": "If set to true, the checkbox will be displayed with an error state.",
738
- "fieldName": "error"
909
+ "description": "If declared, selecting a menu option will not change the input value. By doing so,\nthe current menu filter will be preserved and the user can continue from their last\nfilter state. It is recommended to use this in combination with the `displayValue` slot.",
910
+ "attribute": "persistInput",
911
+ "reflects": true
739
912
  },
740
913
  {
741
- "name": "id",
914
+ "kind": "field",
915
+ "name": "placement",
916
+ "privacy": "public",
742
917
  "type": {
743
- "text": "string"
918
+ "text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
744
919
  },
745
- "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
746
- "fieldName": "id"
920
+ "description": "Position where the bib should appear relative to the trigger.",
921
+ "default": "'bottom-start'",
922
+ "attribute": "placement",
923
+ "reflects": true
747
924
  },
748
925
  {
749
- "name": "name",
926
+ "kind": "field",
927
+ "name": "placeholder",
928
+ "privacy": "public",
750
929
  "type": {
751
930
  "text": "string"
752
931
  },
753
- "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
754
- "fieldName": "name"
932
+ "description": "Define custom placeholder text, only supported by date input formats.",
933
+ "attribute": "placeholder",
934
+ "reflects": true
755
935
  },
756
936
  {
757
- "name": "onDark",
937
+ "kind": "field",
938
+ "name": "required",
939
+ "privacy": "public",
758
940
  "type": {
759
941
  "text": "boolean"
760
942
  },
761
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
762
- "fieldName": "onDark"
943
+ "description": "Populates the `required` attribute on the input. Used for client-side validation.",
944
+ "attribute": "required",
945
+ "reflects": true
763
946
  },
764
947
  {
765
- "name": "value",
948
+ "kind": "field",
949
+ "name": "setCustomValidity",
950
+ "privacy": "public",
766
951
  "type": {
767
952
  "text": "string"
768
953
  },
769
- "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
770
- "fieldName": "value"
954
+ "description": "Sets a custom help text message to display for all validityStates.",
955
+ "attribute": "setCustomValidity"
771
956
  },
772
957
  {
773
- "name": "tabindex",
958
+ "kind": "field",
959
+ "name": "setCustomValidityCustomError",
960
+ "privacy": "public",
774
961
  "type": {
775
- "text": "number"
962
+ "text": "string"
776
963
  },
777
- "description": "The tabindex attribute for the checkbox.",
778
- "fieldName": "tabIndex"
964
+ "description": "Custom help text message to display when validity = `customError`.",
965
+ "attribute": "setCustomValidityCustomError"
779
966
  },
780
967
  {
781
- "name": "aria-checked",
968
+ "kind": "field",
969
+ "name": "setCustomValidityValueMissing",
970
+ "privacy": "public",
782
971
  "type": {
783
972
  "text": "string"
784
973
  },
785
- "description": "The aria-checked attribute for the checkbox.",
786
- "fieldName": "ariaChecked"
974
+ "description": "Custom help text message to display when validity = `valueMissing`.",
975
+ "attribute": "setCustomValidityValueMissing"
787
976
  },
788
977
  {
789
- "name": "aria-disabled",
978
+ "kind": "field",
979
+ "name": "setCustomValidityValueMissingFilter",
980
+ "privacy": "public",
790
981
  "type": {
791
982
  "text": "string"
792
983
  },
793
- "description": "The aria-disabled attribute for the checkbox.",
794
- "fieldName": "ariaDisabled"
984
+ "description": "Custom help text message to display when validity = `valueMissing` due to the user not choosing a menu option when behavior = \"filter\".",
985
+ "attribute": "setCustomValidityValueMissingFilter"
795
986
  },
796
987
  {
797
- "name": "role",
988
+ "kind": "field",
989
+ "name": "touched",
990
+ "privacy": "private",
798
991
  "type": {
799
- "text": "string"
992
+ "text": "boolean"
800
993
  },
801
- "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
802
- "fieldName": "role"
803
- }
804
- ],
805
- "superclass": {
806
- "name": "LitElement",
807
- "package": "lit"
808
- },
809
- "tagName": "auro-checkbox",
810
- "customElement": true
811
- }
812
- ],
813
- "exports": [
814
- {
815
- "kind": "js",
816
- "name": "AuroCheckbox",
817
- "declaration": {
818
- "name": "AuroCheckbox",
819
- "module": "components/checkbox/src/auro-checkbox.js"
820
- }
821
- }
822
- ]
823
- },
824
- {
825
- "kind": "javascript-module",
826
- "path": "components/checkbox/src/index.js",
827
- "declarations": [],
828
- "exports": [
829
- {
830
- "kind": "js",
831
- "name": "AuroCheckbox",
832
- "declaration": {
833
- "name": "AuroCheckbox",
834
- "module": "components/checkbox/src/index.js"
835
- }
836
- },
837
- {
838
- "kind": "js",
839
- "name": "AuroCheckboxGroup",
840
- "declaration": {
841
- "name": "AuroCheckboxGroup",
842
- "module": "components/checkbox/src/index.js"
843
- }
844
- }
845
- ]
846
- },
847
- {
848
- "kind": "javascript-module",
849
- "path": "components/checkbox/src/registered.js",
850
- "declarations": [],
851
- "exports": []
852
- },
853
- {
854
- "kind": "javascript-module",
855
- "path": "components/bibtemplate/src/auro-bibtemplate.js",
856
- "declarations": [
857
- {
858
- "kind": "class",
859
- "description": "The `auro-bibtemplate` element provides users a template for creating modal dialog elements.",
860
- "name": "AuroBibtemplate",
861
- "slots": [
862
- {
863
- "description": "The default slot for the main content.",
864
- "name": "default"
865
- },
866
- {
867
- "description": "Slot for the header content.",
868
- "name": "header"
869
- },
870
- {
871
- "description": "Slot for the subheader content.",
872
- "name": "subheader"
873
- },
874
- {
875
- "description": "Slot for the footer content.",
876
- "name": "footer"
877
- },
878
- {
879
- "description": "Slot for the close button aria-label.",
880
- "name": "ariaLabel.close"
881
- }
882
- ],
883
- "members": [
884
- {
885
- "kind": "method",
886
- "name": "register",
887
- "static": true,
888
- "parameters": [
889
- {
890
- "name": "name",
891
- "default": "\"auro-bibtemplate\"",
892
- "description": "The name of element that you want to register to.",
893
- "optional": true,
894
- "type": {
895
- "text": "string"
896
- }
897
- }
898
- ],
899
- "description": "This will register this element with the browser."
900
- },
901
- {
902
- "kind": "method",
903
- "name": "preventBodyScroll",
904
- "parameters": [
905
- {
906
- "name": "event",
907
- "description": "The touchmove event.",
908
- "type": {
909
- "text": "Event"
910
- }
911
- }
912
- ],
913
- "description": "Prevents scrolling of the body when touching empty areas of the component.",
914
- "return": {
915
- "type": {
916
- "text": "void"
917
- }
918
- }
994
+ "description": "Indicates whether the combobox is in a dirty state (has been interacted with)."
919
995
  },
920
996
  {
921
- "kind": "method",
922
- "name": "onCloseButtonClick"
997
+ "kind": "field",
998
+ "name": "triggerIcon",
999
+ "privacy": "public",
1000
+ "type": {
1001
+ "text": "boolean"
1002
+ },
1003
+ "description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
1004
+ "attribute": "triggerIcon",
1005
+ "reflects": true
923
1006
  },
924
1007
  {
925
- "kind": "method",
926
- "name": "exposeCssParts",
927
- "description": "Exposes CSS parts for styling from parent components.",
928
- "return": {
929
- "type": {
930
- "text": "void"
931
- }
932
- }
1008
+ "kind": "field",
1009
+ "name": "type",
1010
+ "privacy": "public",
1011
+ "type": {
1012
+ "text": "string"
1013
+ },
1014
+ "description": "Applies the defined value as the type attribute on `auro-input`.",
1015
+ "attribute": "type",
1016
+ "reflects": true
933
1017
  },
934
1018
  {
935
1019
  "kind": "field",
936
- "name": "large",
1020
+ "name": "typedValue",
937
1021
  "privacy": "public",
938
1022
  "type": {
939
- "text": "boolean"
1023
+ "text": "string"
940
1024
  },
941
- "default": "false",
942
- "attribute": "large",
1025
+ "description": "Specifies the value of the input element within the combobox.",
1026
+ "attribute": "typedValue",
943
1027
  "reflects": true
944
1028
  },
945
1029
  {
946
1030
  "kind": "field",
947
- "name": "iconTag",
948
- "privacy": "private"
1031
+ "name": "validity",
1032
+ "privacy": "public",
1033
+ "type": {
1034
+ "text": "string"
1035
+ },
1036
+ "description": "Specifies the `validityState` this element is in.",
1037
+ "attribute": "validity",
1038
+ "reflects": true
949
1039
  },
950
1040
  {
951
1041
  "kind": "field",
952
- "name": "headerTag",
953
- "privacy": "private"
1042
+ "name": "value",
1043
+ "privacy": "public",
1044
+ "type": {
1045
+ "text": "string"
1046
+ },
1047
+ "description": "Value selected for the dropdown menu.",
1048
+ "attribute": "value"
954
1049
  },
955
1050
  {
956
1051
  "kind": "field",
957
- "name": "buttonTag",
958
- "privacy": "private"
1052
+ "name": "largeFullscreenHeadline",
1053
+ "privacy": "public",
1054
+ "type": {
1055
+ "text": "boolean"
1056
+ },
1057
+ "description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
1058
+ "attribute": "largeFullscreenHeadline",
1059
+ "reflects": true
959
1060
  },
960
1061
  {
961
1062
  "kind": "field",
962
- "name": "isFullscreen",
1063
+ "name": "fullscreenBreakpoint",
963
1064
  "privacy": "public",
964
1065
  "type": {
965
- "text": "boolean"
1066
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'"
966
1067
  },
967
- "attribute": "isFullscreen",
1068
+ "description": "Defines the screen size breakpointat which the dropdown switches to fullscreen mode on mobile. `disabled` indicates a dropdown should _never_ enter fullscreen.\n\nWhen expanded, the dropdown will automatically display in fullscreen mode\nif the screen size is equal to or smaller than the selected breakpoint.",
1069
+ "default": "'sm'",
1070
+ "attribute": "fullscreenBreakpoint",
968
1071
  "reflects": true
969
- }
970
- ],
971
- "events": [
1072
+ },
972
1073
  {
973
- "name": "close-click",
1074
+ "kind": "field",
1075
+ "name": "optionActive",
1076
+ "privacy": "private",
974
1077
  "type": {
975
- "text": "Event"
1078
+ "text": "object"
1079
+ },
1080
+ "description": "Specifies the currently active option."
1081
+ },
1082
+ {
1083
+ "kind": "field",
1084
+ "name": "componentHasFocus",
1085
+ "description": "Returns true if the element has focus.",
1086
+ "privacy": "private",
1087
+ "return": {
1088
+ "type": {
1089
+ "text": "boolean"
1090
+ }
1091
+ },
1092
+ "readonly": true,
1093
+ "inheritedFrom": {
1094
+ "name": "AuroElement",
1095
+ "module": "components/layoutElement/src/auroElement.js"
976
1096
  }
977
1097
  },
978
1098
  {
979
- "name": "auro-bibtemplate-connected",
980
- "type": {
981
- "text": "CustomEvent"
1099
+ "kind": "method",
1100
+ "name": "resetShapeClasses",
1101
+ "inheritedFrom": {
1102
+ "name": "AuroElement",
1103
+ "module": "components/layoutElement/src/auroElement.js"
982
1104
  }
983
- }
984
- ],
985
- "attributes": [
1105
+ },
986
1106
  {
987
- "name": "isFullscreen",
988
- "type": {
989
- "text": "boolean"
990
- },
991
- "fieldName": "isFullscreen"
1107
+ "kind": "method",
1108
+ "name": "resetLayoutClasses",
1109
+ "inheritedFrom": {
1110
+ "name": "AuroElement",
1111
+ "module": "components/layoutElement/src/auroElement.js"
1112
+ }
992
1113
  },
993
- {
994
- "name": "large",
995
- "type": {
996
- "text": "boolean"
997
- },
998
- "default": "false",
999
- "fieldName": "large"
1000
- }
1001
- ],
1002
- "superclass": {
1003
- "name": "LitElement",
1004
- "package": "lit"
1005
- },
1006
- "tagName": "auro-bibtemplate",
1007
- "customElement": true
1008
- }
1009
- ],
1010
- "exports": [
1011
- {
1012
- "kind": "js",
1013
- "name": "AuroBibtemplate",
1014
- "declaration": {
1015
- "name": "AuroBibtemplate",
1016
- "module": "components/bibtemplate/src/auro-bibtemplate.js"
1017
- }
1018
- }
1019
- ]
1020
- },
1021
- {
1022
- "kind": "javascript-module",
1023
- "path": "components/bibtemplate/src/buttonVersion.js",
1024
- "declarations": [],
1025
- "exports": [
1026
- {
1027
- "kind": "js",
1028
- "name": "default",
1029
- "declaration": {
1030
- "name": "12.3.2",
1031
- "module": "components/bibtemplate/src/buttonVersion.js"
1032
- }
1033
- }
1034
- ]
1035
- },
1036
- {
1037
- "kind": "javascript-module",
1038
- "path": "components/bibtemplate/src/headerVersion.js",
1039
- "declarations": [],
1040
- "exports": [
1041
- {
1042
- "kind": "js",
1043
- "name": "default",
1044
- "declaration": {
1045
- "name": "5.0.1",
1046
- "module": "components/bibtemplate/src/headerVersion.js"
1047
- }
1048
- }
1049
- ]
1050
- },
1051
- {
1052
- "kind": "javascript-module",
1053
- "path": "components/bibtemplate/src/iconVersion.js",
1054
- "declarations": [],
1055
- "exports": [
1056
- {
1057
- "kind": "js",
1058
- "name": "default",
1059
- "declaration": {
1060
- "name": "9.1.2",
1061
- "module": "components/bibtemplate/src/iconVersion.js"
1062
- }
1063
- }
1064
- ]
1065
- },
1066
- {
1067
- "kind": "javascript-module",
1068
- "path": "components/bibtemplate/src/index.js",
1069
- "declarations": [],
1070
- "exports": [
1071
- {
1072
- "kind": "js",
1073
- "name": "AuroBibtemplate",
1074
- "declaration": {
1075
- "name": "AuroBibtemplate",
1076
- "module": "components/bibtemplate/src/index.js"
1077
- }
1078
- }
1079
- ]
1080
- },
1081
- {
1082
- "kind": "javascript-module",
1083
- "path": "components/bibtemplate/src/registered.js",
1084
- "declarations": [],
1085
- "exports": []
1086
- },
1087
- {
1088
- "kind": "javascript-module",
1089
- "path": "components/combobox/src/auro-combobox.js",
1090
- "declarations": [
1091
- {
1092
- "kind": "class",
1093
- "description": "The `auro-combobox` element provides users with a way to select an option from a list of filtered or suggested options based on user input.",
1094
- "name": "AuroCombobox",
1095
- "slots": [
1096
- {
1097
- "description": "Default slot for the menu content.",
1098
- "name": ""
1099
- },
1100
- {
1101
- "type": {
1102
- "text": "HTMLSlotElement"
1103
- },
1104
- "description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
1105
- "name": "optionalLabel"
1106
- },
1107
- {
1108
- "description": "Sets aria-label on clear button",
1109
- "name": "ariaLabel.input.clear"
1110
- },
1111
- {
1112
- "description": "Sets aria-label on close button in fullscreen bib",
1113
- "name": "ariaLabel.bib.close"
1114
- },
1115
- {
1116
- "description": "Defines the headline to display above menu-options",
1117
- "name": "bib.fullscreen.headline"
1118
- },
1119
- {
1120
- "description": "Defines the content of the label.",
1121
- "name": "label"
1122
- },
1123
- {
1124
- "description": "Defines the content of the helpText.",
1125
- "name": "helpText"
1126
- },
1127
- {
1128
- "description": "Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.",
1129
- "name": "displayValue"
1130
- }
1131
- ],
1132
- "members": [
1133
1114
  {
1134
1115
  "kind": "method",
1135
- "name": "_initializeDefaults",
1136
- "privacy": "private",
1137
- "return": {
1138
- "type": {
1139
- "text": "void"
1140
- }
1116
+ "name": "updateComponentArchitecture",
1117
+ "inheritedFrom": {
1118
+ "name": "AuroElement",
1119
+ "module": "components/layoutElement/src/auroElement.js"
1141
1120
  }
1142
1121
  },
1143
1122
  {
1144
1123
  "kind": "field",
1145
- "name": "inputValue",
1146
- "description": "Returns the current value of the input element within the combobox.",
1147
- "return": {
1148
- "type": {
1149
- "text": "string|undefined"
1150
- }
1124
+ "name": "shape",
1125
+ "privacy": "public",
1126
+ "type": {
1127
+ "text": "string"
1151
1128
  },
1152
- "readonly": true
1153
- },
1154
- {
1155
- "kind": "method",
1156
- "name": "isValid",
1157
- "description": "Checks if the element is valid.",
1158
- "return": {
1159
- "type": {
1160
- "text": "boolean"
1161
- }
1129
+ "attribute": "shape",
1130
+ "reflects": true,
1131
+ "inheritedFrom": {
1132
+ "name": "AuroElement",
1133
+ "module": "components/layoutElement/src/auroElement.js"
1162
1134
  }
1163
1135
  },
1164
1136
  {
1165
- "kind": "method",
1166
- "name": "register",
1167
- "static": true,
1168
- "parameters": [
1169
- {
1170
- "name": "name",
1171
- "default": "'auro-combobox'",
1172
- "description": "The name of the element that you want to register.",
1173
- "optional": true,
1174
- "type": {
1175
- "text": "string"
1176
- }
1177
- }
1178
- ],
1179
- "description": "This will register this element with the browser."
1180
- },
1181
- {
1182
- "kind": "method",
1183
- "name": "updateFilter",
1184
- "description": "Updates the filter for the available options based on the input value.",
1185
- "privacy": "private"
1186
- },
1187
- {
1188
- "kind": "method",
1189
- "name": "syncValuesAndStates",
1190
- "description": "Syncs the values and states of this component, the input, and the menu, including this.optionSelected and this.menu.optionSelected.",
1191
- "privacy": "private",
1192
- "return": {
1193
- "type": {
1194
- "text": "void"
1195
- }
1137
+ "kind": "field",
1138
+ "name": "size",
1139
+ "privacy": "public",
1140
+ "type": {
1141
+ "text": "string"
1142
+ },
1143
+ "attribute": "size",
1144
+ "reflects": true,
1145
+ "inheritedFrom": {
1146
+ "name": "AuroElement",
1147
+ "module": "components/layoutElement/src/auroElement.js"
1196
1148
  }
1197
- },
1149
+ }
1150
+ ],
1151
+ "events": [
1198
1152
  {
1199
- "kind": "method",
1200
- "name": "updateTriggerTextDisplay",
1201
- "parameters": [
1202
- {
1203
- "name": "label",
1204
- "description": "The label of the selected option.",
1205
- "type": {
1206
- "text": "string"
1207
- }
1208
- }
1209
- ],
1210
- "description": "Update displayValue or input.value, it's called when making a selection.",
1211
- "privacy": "private"
1153
+ "name": "inputValue",
1154
+ "type": {
1155
+ "text": "CustomEvent"
1156
+ },
1157
+ "description": "Notifies that the components internal HTML5 input value has changed."
1212
1158
  },
1213
1159
  {
1214
- "kind": "method",
1215
- "name": "handleMenuOptions",
1216
- "description": "Processes hidden state of all menu options and determines if there are any available options not hidden.",
1217
- "privacy": "private",
1218
- "return": {
1219
- "type": {
1220
- "text": "void"
1221
- }
1222
- }
1160
+ "name": "input",
1161
+ "type": {
1162
+ "text": "CustomEvent"
1163
+ },
1164
+ "description": "Notifies that the component has a new value set."
1223
1165
  },
1224
1166
  {
1225
- "kind": "method",
1226
- "name": "generateOptionsArray",
1227
- "description": "Determines the element error state based on the `required` attribute and input value.",
1228
- "privacy": "private",
1229
- "return": {
1230
- "type": {
1231
- "text": "void"
1232
- }
1233
- }
1234
- },
1235
- {
1236
- "kind": "method",
1237
- "name": "hideBib",
1238
- "description": "Hides the dropdown bib if its open.",
1239
- "return": {
1240
- "type": {
1241
- "text": "void"
1242
- }
1243
- }
1244
- },
1245
- {
1246
- "kind": "method",
1247
- "name": "showBib",
1248
- "description": "Shows the dropdown bib if there are options to show.",
1249
- "return": {
1250
- "type": {
1251
- "text": "void"
1252
- }
1253
- }
1254
- },
1255
- {
1256
- "kind": "method",
1257
- "name": "configureDropdown",
1258
- "description": "Binds all behavior needed to the dropdown after rendering.",
1259
- "privacy": "private",
1260
- "return": {
1261
- "type": {
1262
- "text": "void"
1263
- }
1264
- }
1265
- },
1266
- {
1267
- "kind": "method",
1268
- "name": "setClearBtnFocus",
1269
- "privacy": "private"
1270
- },
1271
- {
1272
- "kind": "method",
1273
- "name": "setInputFocus",
1274
- "privacy": "private"
1275
- },
1276
- {
1277
- "kind": "method",
1278
- "name": "updateMenuShapeSize",
1279
- "description": "Update menu to default for fullscreen bib, otherwise to this.size and this.shape.",
1280
- "privacy": "private"
1281
- },
1282
- {
1283
- "kind": "method",
1284
- "name": "configureMenu",
1285
- "description": "Binds all behavior needed to the menu after rendering.",
1286
- "privacy": "private",
1287
- "return": {
1288
- "type": {
1289
- "text": "void"
1290
- }
1291
- }
1292
- },
1293
- {
1294
- "kind": "method",
1295
- "name": "configureInput",
1296
- "description": "Binds all behavior needed to the input after rendering.",
1297
- "privacy": "private",
1298
- "return": {
1299
- "type": {
1300
- "text": "void"
1301
- }
1302
- }
1303
- },
1304
- {
1305
- "kind": "method",
1306
- "name": "handleMenuLoadingChange",
1307
- "parameters": [
1308
- {
1309
- "name": "event",
1310
- "description": "The event object containing details about the loading state change.",
1311
- "type": {
1312
- "text": "CustomEvent"
1313
- }
1314
- },
1315
- {
1316
- "description": "Indicates whether the menu is currently loading.",
1317
- "name": "event.detail.loading",
1318
- "type": {
1319
- "text": "boolean"
1320
- }
1321
- },
1322
- {
1323
- "description": "Indicates if there are loading placeholders present.",
1324
- "name": "event.detail.hasLoadingPlaceholder",
1325
- "type": {
1326
- "text": "boolean"
1327
- }
1328
- }
1329
- ],
1330
- "description": "Manages the visibility of the dropdown based on loading state changes.\n\nThis method listens for loading state changes and adjusts the visibility of the dropdown accordingly.\nIf the dropdown is visible and loading is true without any loading placeholders, it hides the dropdown\nand sets a flag to indicate it is hidden while loading. If loading is false and the dropdown was previously\nhidden, it checks if the active element is within the dropdown and shows it again if true.",
1331
- "privacy": "private",
1332
- "return": {
1333
- "type": {
1334
- "text": "void"
1335
- }
1336
- }
1337
- },
1338
- {
1339
- "kind": "method",
1340
- "name": "handleInputValueChange",
1341
- "parameters": [
1342
- {
1343
- "name": "event",
1344
- "description": "The input event triggered by the input element.",
1345
- "type": {
1346
- "text": "Event"
1347
- }
1348
- }
1349
- ],
1350
- "description": "Handle changes to the input value and trigger changes that should result.",
1351
- "privacy": "private",
1352
- "return": {
1353
- "type": {
1354
- "text": "void"
1355
- }
1356
- }
1357
- },
1358
- {
1359
- "kind": "method",
1360
- "name": "configureCombobox",
1361
- "description": "Binds all behavior needed to the combobox after rendering.",
1362
- "privacy": "private",
1363
- "return": {
1364
- "type": {
1365
- "text": "void"
1366
- }
1367
- }
1368
- },
1369
- {
1370
- "kind": "method",
1371
- "name": "focus",
1372
- "description": "Focuses the combobox trigger input.",
1373
- "return": {
1374
- "type": {
1375
- "text": "void"
1376
- }
1377
- }
1378
- },
1379
- {
1380
- "kind": "method",
1381
- "name": "setMenuValue",
1382
- "parameters": [
1383
- {
1384
- "name": "value",
1385
- "description": "The value to set on the menu.",
1386
- "type": {
1387
- "text": "string"
1388
- }
1389
- }
1390
- ],
1391
- "description": "Sets the menu value if menu is available.",
1392
- "return": {
1393
- "type": {
1394
- "text": "void"
1395
- }
1396
- }
1397
- },
1398
- {
1399
- "kind": "method",
1400
- "name": "reset",
1401
- "description": "Resets component to initial state.",
1402
- "return": {
1403
- "type": {
1404
- "text": "void"
1405
- }
1406
- }
1407
- },
1408
- {
1409
- "kind": "method",
1410
- "name": "clear",
1411
- "description": "Clears the current value of the combobox.",
1412
- "return": {
1413
- "type": {
1414
- "text": "void"
1415
- }
1416
- }
1417
- },
1418
- {
1419
- "kind": "method",
1420
- "name": "validate",
1421
- "parameters": [
1422
- {
1423
- "name": "force",
1424
- "default": "false",
1425
- "description": "Whether to force validation.",
1426
- "optional": true,
1427
- "type": {
1428
- "text": "boolean"
1429
- }
1430
- }
1431
- ],
1432
- "description": "Validates value."
1433
- },
1434
- {
1435
- "kind": "method",
1436
- "name": "transportAssignedNodes",
1437
- "parameters": [
1438
- {
1439
- "name": "slot",
1440
- "description": "The slot element containing the nodes to apply.",
1441
- "type": {
1442
- "text": "HTMLSlotElement"
1443
- }
1444
- },
1445
- {
1446
- "name": "target",
1447
- "description": "The target element to apply the nodes to.",
1448
- "type": {
1449
- "text": "HTMLElement"
1450
- }
1451
- },
1452
- {
1453
- "name": "newSlotName",
1454
- "description": "The new slot name for the applied nodes.",
1455
- "type": {
1456
- "text": "string"
1457
- }
1458
- }
1459
- ],
1460
- "description": "Applies slotted nodes to a target element with a new slot name.",
1461
- "privacy": "private",
1462
- "return": {
1463
- "type": {
1464
- "text": "void"
1465
- }
1466
- }
1467
- },
1468
- {
1469
- "kind": "method",
1470
- "name": "updateActiveOption",
1471
- "parameters": [
1472
- {
1473
- "name": "index",
1474
- "description": "Index of the option to make active.",
1475
- "type": {
1476
- "text": "number"
1477
- }
1478
- }
1479
- ],
1480
- "description": "Updates the active option in the menu."
1481
- },
1482
- {
1483
- "kind": "method",
1484
- "name": "handleSlotChange",
1485
- "parameters": [
1486
- {
1487
- "name": "event",
1488
- "description": "`slotchange` event.",
1489
- "type": {
1490
- "text": "Event"
1491
- }
1492
- }
1493
- ],
1494
- "description": "Watch for slot changes and recalculate the menuoptions.",
1495
- "privacy": "private",
1496
- "return": {
1497
- "type": {
1498
- "text": "void"
1499
- }
1500
- }
1167
+ "name": "auroCombobox-valueSet",
1168
+ "type": {
1169
+ "text": "CustomEvent"
1170
+ },
1171
+ "description": "(Deprecated) Notifies that the component has a new value set."
1501
1172
  },
1502
1173
  {
1503
- "kind": "field",
1174
+ "description": "Notifies that the component value(s) have been validated.",
1175
+ "name": "auroFormElement-validated"
1176
+ }
1177
+ ],
1178
+ "attributes": [
1179
+ {
1504
1180
  "name": "appearance",
1505
- "privacy": "public",
1506
1181
  "type": {
1507
1182
  "text": "string"
1508
1183
  },
1509
1184
  "description": "Defines whether the component will be on lighter or darker backgrounds.",
1510
1185
  "default": "'default'",
1511
- "attribute": "appearance",
1512
- "reflects": true
1186
+ "fieldName": "appearance"
1513
1187
  },
1514
1188
  {
1515
- "kind": "field",
1516
1189
  "name": "autocomplete",
1517
- "privacy": "public",
1518
1190
  "type": {
1519
1191
  "text": "string"
1520
1192
  },
1521
1193
  "description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
1522
- "attribute": "autocomplete",
1523
- "reflects": true
1194
+ "fieldName": "autocomplete"
1524
1195
  },
1525
1196
  {
1526
- "kind": "field",
1527
1197
  "name": "autoPlacement",
1528
- "privacy": "public",
1529
1198
  "type": {
1530
1199
  "text": "boolean"
1531
1200
  },
1532
1201
  "description": "If declared, bib's position will be automatically calculated where to appear.",
1533
- "attribute": "autoPlacement",
1534
- "reflects": true
1202
+ "fieldName": "autoPlacement"
1535
1203
  },
1536
1204
  {
1537
- "kind": "field",
1538
1205
  "name": "availableOptions",
1539
- "privacy": "private",
1540
1206
  "type": {
1541
1207
  "text": "array"
1542
1208
  },
1543
1209
  "description": "Array of available options to display in the dropdown.",
1544
- "attribute": "availableOptions"
1210
+ "fieldName": "availableOptions"
1545
1211
  },
1546
1212
  {
1547
- "kind": "field",
1548
1213
  "name": "behavior",
1549
- "privacy": "public",
1550
1214
  "type": {
1551
1215
  "text": "'filter' | 'suggestion'"
1552
1216
  },
1553
1217
  "description": "Sets the behavior of the combobox, \"filter\" or \"suggestion\".\n\"filter\" requires the user to select an option from the menu.\n\"suggestion\" allows the user to enter a value not present in the menu options.",
1554
1218
  "default": "'suggestion'",
1555
- "attribute": "behavior",
1556
- "reflects": true
1219
+ "fieldName": "behavior"
1557
1220
  },
1558
1221
  {
1559
- "kind": "field",
1560
1222
  "name": "checkmark",
1561
- "privacy": "public",
1562
1223
  "type": {
1563
1224
  "text": "boolean"
1564
1225
  },
1565
1226
  "description": "When attribute is present auro-menu will apply check marks to selected options.",
1566
- "attribute": "checkmark",
1567
- "reflects": true
1227
+ "fieldName": "checkmark"
1568
1228
  },
1569
1229
  {
1570
- "kind": "field",
1571
1230
  "name": "disabled",
1572
- "privacy": "public",
1573
1231
  "type": {
1574
1232
  "text": "boolean"
1575
1233
  },
1576
1234
  "description": "If set, disables the combobox.",
1577
- "attribute": "disabled",
1578
- "reflects": true
1235
+ "fieldName": "disabled"
1579
1236
  },
1580
1237
  {
1581
- "kind": "field",
1582
- "name": "dropdownId",
1583
- "privacy": "private",
1238
+ "name": "dvInputOnly",
1239
+ "type": {
1240
+ "text": "boolean"
1241
+ },
1242
+ "description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
1243
+ "fieldName": "dvInputOnly"
1244
+ },
1245
+ {
1246
+ "name": "error",
1584
1247
  "type": {
1585
1248
  "text": "string"
1586
1249
  },
1587
- "description": "ID for the dropdown."
1250
+ "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
1251
+ "fieldName": "error"
1588
1252
  },
1589
1253
  {
1590
- "kind": "field",
1591
- "name": "dropdownOpen",
1592
- "privacy": "private",
1254
+ "name": "format",
1255
+ "type": {
1256
+ "text": "string"
1257
+ },
1258
+ "description": "Specifies the input mask format.",
1259
+ "fieldName": "format"
1260
+ },
1261
+ {
1262
+ "name": "inputmode",
1263
+ "type": {
1264
+ "text": "string"
1265
+ },
1266
+ "description": "Exposes inputmode attribute for input.",
1267
+ "fieldName": "inputmode"
1268
+ },
1269
+ {
1270
+ "name": "layout",
1271
+ "type": {
1272
+ "text": "string"
1273
+ },
1274
+ "description": "Sets the layout of the combobox.",
1275
+ "default": "'classic'",
1276
+ "fieldName": "layout",
1277
+ "inheritedFrom": {
1278
+ "name": "AuroElement",
1279
+ "module": "components/layoutElement/src/auroElement.js"
1280
+ }
1281
+ },
1282
+ {
1283
+ "name": "matchWidth",
1593
1284
  "type": {
1594
1285
  "text": "boolean"
1595
1286
  },
1596
- "description": "Whether or not the dropdown is open."
1287
+ "description": "If declared, the popover and trigger will be set to the same width.",
1288
+ "fieldName": "matchWidth"
1597
1289
  },
1598
1290
  {
1599
- "kind": "field",
1600
- "name": "dvInputOnly",
1601
- "privacy": "public",
1291
+ "name": "noFilter",
1602
1292
  "type": {
1603
1293
  "text": "boolean"
1604
1294
  },
1605
- "description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
1606
- "attribute": "dvInputOnly",
1607
- "reflects": true
1295
+ "description": "If set, combobox will not filter menuoptions based on input.",
1296
+ "fieldName": "noFilter"
1608
1297
  },
1609
1298
  {
1610
- "kind": "field",
1611
- "name": "error",
1612
- "privacy": "public",
1299
+ "name": "noFlip",
1300
+ "type": {
1301
+ "text": "boolean"
1302
+ },
1303
+ "description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
1304
+ "fieldName": "noFlip"
1305
+ },
1306
+ {
1307
+ "name": "shift",
1308
+ "type": {
1309
+ "text": "boolean"
1310
+ },
1311
+ "description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
1312
+ "fieldName": "shift"
1313
+ },
1314
+ {
1315
+ "name": "noValidate",
1316
+ "type": {
1317
+ "text": "boolean"
1318
+ },
1319
+ "description": "If set, disables auto-validation on blur.",
1320
+ "fieldName": "noValidate"
1321
+ },
1322
+ {
1323
+ "name": "offset",
1324
+ "type": {
1325
+ "text": "number"
1326
+ },
1327
+ "description": "Gap between the trigger element and bib.",
1328
+ "default": "0",
1329
+ "fieldName": "offset"
1330
+ },
1331
+ {
1332
+ "name": "onDark",
1333
+ "type": {
1334
+ "text": "boolean"
1335
+ },
1336
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1337
+ "fieldName": "onDark"
1338
+ },
1339
+ {
1340
+ "name": "optionSelected",
1341
+ "type": {
1342
+ "text": "HTMLElement"
1343
+ },
1344
+ "description": "Specifies the current selected option.",
1345
+ "fieldName": "optionSelected"
1346
+ },
1347
+ {
1348
+ "name": "persistInput",
1349
+ "type": {
1350
+ "text": "boolean"
1351
+ },
1352
+ "description": "If declared, selecting a menu option will not change the input value. By doing so,\nthe current menu filter will be preserved and the user can continue from their last\nfilter state. It is recommended to use this in combination with the `displayValue` slot.",
1353
+ "fieldName": "persistInput"
1354
+ },
1355
+ {
1356
+ "name": "placement",
1357
+ "type": {
1358
+ "text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
1359
+ },
1360
+ "description": "Position where the bib should appear relative to the trigger.",
1361
+ "default": "'bottom-start'",
1362
+ "fieldName": "placement"
1363
+ },
1364
+ {
1365
+ "name": "placeholder",
1613
1366
  "type": {
1614
1367
  "text": "string"
1615
1368
  },
1616
- "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
1617
- "attribute": "error",
1618
- "reflects": true
1369
+ "description": "Define custom placeholder text, only supported by date input formats.",
1370
+ "fieldName": "placeholder"
1371
+ },
1372
+ {
1373
+ "name": "required",
1374
+ "type": {
1375
+ "text": "boolean"
1376
+ },
1377
+ "description": "Populates the `required` attribute on the input. Used for client-side validation.",
1378
+ "fieldName": "required"
1379
+ },
1380
+ {
1381
+ "name": "setCustomValidity",
1382
+ "type": {
1383
+ "text": "string"
1384
+ },
1385
+ "description": "Sets a custom help text message to display for all validityStates.",
1386
+ "fieldName": "setCustomValidity"
1387
+ },
1388
+ {
1389
+ "name": "setCustomValidityCustomError",
1390
+ "type": {
1391
+ "text": "string"
1392
+ },
1393
+ "description": "Custom help text message to display when validity = `customError`.",
1394
+ "fieldName": "setCustomValidityCustomError"
1395
+ },
1396
+ {
1397
+ "name": "setCustomValidityValueMissing",
1398
+ "type": {
1399
+ "text": "string"
1400
+ },
1401
+ "description": "Custom help text message to display when validity = `valueMissing`.",
1402
+ "fieldName": "setCustomValidityValueMissing"
1403
+ },
1404
+ {
1405
+ "name": "setCustomValidityValueMissingFilter",
1406
+ "type": {
1407
+ "text": "string"
1408
+ },
1409
+ "description": "Custom help text message to display when validity = `valueMissing` due to the user not choosing a menu option when behavior = \"filter\".",
1410
+ "fieldName": "setCustomValidityValueMissingFilter"
1411
+ },
1412
+ {
1413
+ "name": "triggerIcon",
1414
+ "type": {
1415
+ "text": "boolean"
1416
+ },
1417
+ "description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
1418
+ "fieldName": "triggerIcon"
1419
+ },
1420
+ {
1421
+ "name": "type",
1422
+ "type": {
1423
+ "text": "string"
1424
+ },
1425
+ "description": "Applies the defined value as the type attribute on `auro-input`.",
1426
+ "fieldName": "type"
1427
+ },
1428
+ {
1429
+ "name": "typedValue",
1430
+ "type": {
1431
+ "text": "string"
1432
+ },
1433
+ "description": "Specifies the value of the input element within the combobox.",
1434
+ "fieldName": "typedValue"
1435
+ },
1436
+ {
1437
+ "name": "validity",
1438
+ "type": {
1439
+ "text": "string"
1440
+ },
1441
+ "description": "Specifies the `validityState` this element is in.",
1442
+ "fieldName": "validity"
1443
+ },
1444
+ {
1445
+ "name": "value",
1446
+ "type": {
1447
+ "text": "string"
1448
+ },
1449
+ "description": "Value selected for the dropdown menu.",
1450
+ "fieldName": "value"
1619
1451
  },
1620
1452
  {
1621
- "kind": "field",
1622
- "name": "format",
1623
- "privacy": "public",
1453
+ "name": "largeFullscreenHeadline",
1624
1454
  "type": {
1625
- "text": "string"
1455
+ "text": "boolean"
1626
1456
  },
1627
- "description": "Specifies the input mask format.",
1628
- "attribute": "format",
1629
- "reflects": true
1457
+ "description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
1458
+ "fieldName": "largeFullscreenHeadline"
1630
1459
  },
1631
1460
  {
1632
- "kind": "field",
1633
- "name": "inputmode",
1634
- "privacy": "public",
1461
+ "name": "fullscreenBreakpoint",
1635
1462
  "type": {
1636
- "text": "string"
1463
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'"
1637
1464
  },
1638
- "description": "Exposes inputmode attribute for input.",
1639
- "attribute": "inputmode",
1640
- "reflects": true
1465
+ "description": "Defines the screen size breakpointat which the dropdown switches to fullscreen mode on mobile. `disabled` indicates a dropdown should _never_ enter fullscreen.\n\nWhen expanded, the dropdown will automatically display in fullscreen mode\nif the screen size is equal to or smaller than the selected breakpoint.",
1466
+ "default": "'sm'",
1467
+ "fieldName": "fullscreenBreakpoint"
1641
1468
  },
1642
1469
  {
1643
- "kind": "field",
1644
- "name": "layout",
1645
- "privacy": "public",
1470
+ "name": "shape",
1646
1471
  "type": {
1647
1472
  "text": "string"
1648
1473
  },
1649
- "description": "Sets the layout of the combobox.",
1650
- "default": "'classic'",
1651
- "attribute": "layout",
1652
- "reflects": true,
1474
+ "fieldName": "shape",
1653
1475
  "inheritedFrom": {
1654
1476
  "name": "AuroElement",
1655
1477
  "module": "components/layoutElement/src/auroElement.js"
1656
1478
  }
1657
1479
  },
1658
1480
  {
1659
- "kind": "field",
1660
- "name": "matchWidth",
1661
- "privacy": "private",
1481
+ "name": "size",
1662
1482
  "type": {
1663
- "text": "boolean"
1483
+ "text": "string"
1664
1484
  },
1665
- "description": "If declared, the popover and trigger will be set to the same width.",
1666
- "attribute": "matchWidth",
1667
- "reflects": true
1485
+ "fieldName": "size",
1486
+ "inheritedFrom": {
1487
+ "name": "AuroElement",
1488
+ "module": "components/layoutElement/src/auroElement.js"
1489
+ }
1668
1490
  },
1669
1491
  {
1670
- "kind": "field",
1671
- "name": "noFilter",
1672
- "privacy": "public",
1492
+ "name": "ondark",
1673
1493
  "type": {
1674
1494
  "text": "boolean"
1675
1495
  },
1676
- "description": "If set, combobox will not filter menuoptions based on input.",
1677
- "attribute": "noFilter",
1678
- "reflects": true
1496
+ "fieldName": "onDark",
1497
+ "inheritedFrom": {
1498
+ "name": "AuroElement",
1499
+ "module": "components/layoutElement/src/auroElement.js"
1500
+ }
1501
+ }
1502
+ ],
1503
+ "superclass": {
1504
+ "name": "AuroElement",
1505
+ "module": "/components/layoutElement/src/auroElement.js"
1506
+ },
1507
+ "tagName": "auro-combobox",
1508
+ "customElement": true
1509
+ }
1510
+ ],
1511
+ "exports": [
1512
+ {
1513
+ "kind": "js",
1514
+ "name": "AuroCombobox",
1515
+ "declaration": {
1516
+ "name": "AuroCombobox",
1517
+ "module": "components/combobox/src/auro-combobox.js"
1518
+ }
1519
+ }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "kind": "javascript-module",
1524
+ "path": "components/combobox/src/index.js",
1525
+ "declarations": [],
1526
+ "exports": [
1527
+ {
1528
+ "kind": "js",
1529
+ "name": "AuroCombobox",
1530
+ "declaration": {
1531
+ "name": "AuroCombobox",
1532
+ "module": "components/combobox/src/index.js"
1533
+ }
1534
+ }
1535
+ ]
1536
+ },
1537
+ {
1538
+ "kind": "javascript-module",
1539
+ "path": "components/combobox/src/registered.js",
1540
+ "declarations": [],
1541
+ "exports": [
1542
+ {
1543
+ "kind": "js",
1544
+ "name": "AuroCombobox",
1545
+ "declaration": {
1546
+ "name": "AuroCombobox",
1547
+ "module": "components/combobox/src/registered.js"
1548
+ }
1549
+ }
1550
+ ]
1551
+ },
1552
+ {
1553
+ "kind": "javascript-module",
1554
+ "path": "components/checkbox/src/auro-checkbox-group.js",
1555
+ "declarations": [
1556
+ {
1557
+ "kind": "class",
1558
+ "description": "The `auro-checkbox-group` element is a wrapper for `auro-checkbox` elements.",
1559
+ "name": "AuroCheckboxGroup",
1560
+ "slots": [
1561
+ {
1562
+ "description": "Allows for the legend to be overridden.",
1563
+ "name": "legend"
1679
1564
  },
1680
1565
  {
1681
- "kind": "field",
1682
- "name": "noFlip",
1683
- "privacy": "public",
1684
- "type": {
1685
- "text": "boolean"
1686
- },
1687
- "description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
1688
- "attribute": "noFlip",
1689
- "reflects": true
1566
+ "description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
1567
+ "name": "optionalLabel"
1690
1568
  },
1691
1569
  {
1692
- "kind": "field",
1693
- "name": "shift",
1694
- "privacy": "public",
1695
- "type": {
1696
- "text": "boolean"
1697
- },
1698
- "description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
1699
- "attribute": "shift",
1700
- "reflects": true
1570
+ "description": "Allows for the helper text to be overridden.",
1571
+ "name": "helpText"
1701
1572
  },
1702
1573
  {
1703
- "kind": "field",
1704
- "name": "noValidate",
1705
- "privacy": "public",
1706
- "type": {
1707
- "text": "boolean"
1708
- },
1709
- "description": "If set, disables auto-validation on blur.",
1710
- "attribute": "noValidate",
1711
- "reflects": true
1574
+ "description": "The default slot for the checkbox items.",
1575
+ "name": "default"
1576
+ }
1577
+ ],
1578
+ "members": [
1579
+ {
1580
+ "kind": "method",
1581
+ "name": "_initializeDefaults"
1582
+ },
1583
+ {
1584
+ "kind": "method",
1585
+ "name": "register",
1586
+ "static": true,
1587
+ "parameters": [
1588
+ {
1589
+ "name": "name",
1590
+ "default": "\"auro-checkbox-group\"",
1591
+ "description": "The name of the element that you want to register.",
1592
+ "optional": true,
1593
+ "type": {
1594
+ "text": "string"
1595
+ }
1596
+ }
1597
+ ],
1598
+ "description": "This will register this element with the browser."
1599
+ },
1600
+ {
1601
+ "kind": "method",
1602
+ "name": "handleValueUpdate",
1603
+ "parameters": [
1604
+ {
1605
+ "name": "value",
1606
+ "description": "The value of the checkbox.",
1607
+ "type": {
1608
+ "text": "String"
1609
+ }
1610
+ },
1611
+ {
1612
+ "name": "selected",
1613
+ "description": "The checked state of the checkbox.",
1614
+ "type": {
1615
+ "text": "Boolean"
1616
+ }
1617
+ }
1618
+ ],
1619
+ "description": "Helper method to handle checkbox value changing.",
1620
+ "privacy": "private",
1621
+ "return": {
1622
+ "type": {
1623
+ "text": "void"
1624
+ }
1625
+ }
1626
+ },
1627
+ {
1628
+ "kind": "method",
1629
+ "name": "handlePreselectedItems",
1630
+ "description": "Helper method that handles the state of preselected checkboxes.",
1631
+ "privacy": "private",
1632
+ "return": {
1633
+ "type": {
1634
+ "text": "void"
1635
+ }
1636
+ }
1637
+ },
1638
+ {
1639
+ "kind": "method",
1640
+ "name": "handleItems",
1641
+ "description": "Helper method that handles the state of checkboxes.",
1642
+ "privacy": "private",
1643
+ "return": {
1644
+ "type": {
1645
+ "text": "void"
1646
+ }
1647
+ }
1648
+ },
1649
+ {
1650
+ "kind": "method",
1651
+ "name": "reset",
1652
+ "description": "Resets component to initial state.",
1653
+ "return": {
1654
+ "type": {
1655
+ "text": "void"
1656
+ }
1657
+ }
1658
+ },
1659
+ {
1660
+ "kind": "method",
1661
+ "name": "validate",
1662
+ "parameters": [
1663
+ {
1664
+ "name": "force",
1665
+ "default": "false",
1666
+ "description": "Whether to force validation.",
1667
+ "optional": true,
1668
+ "type": {
1669
+ "text": "boolean"
1670
+ }
1671
+ }
1672
+ ],
1673
+ "description": "Validates value."
1712
1674
  },
1713
1675
  {
1714
1676
  "kind": "field",
1715
- "name": "offset",
1677
+ "name": "appearance",
1716
1678
  "privacy": "public",
1717
1679
  "type": {
1718
- "text": "number"
1680
+ "text": "'default' | 'inverse'"
1719
1681
  },
1720
- "description": "Gap between the trigger element and bib.",
1721
- "default": "0",
1722
- "attribute": "offset",
1682
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
1683
+ "default": "'default'",
1684
+ "attribute": "appearance",
1723
1685
  "reflects": true
1724
1686
  },
1725
1687
  {
1726
1688
  "kind": "field",
1727
- "name": "onDark",
1689
+ "name": "disabled",
1728
1690
  "privacy": "public",
1729
1691
  "type": {
1730
1692
  "text": "boolean"
1731
1693
  },
1732
- "attribute": "onDark",
1733
- "reflects": true,
1734
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1735
- "inheritedFrom": {
1736
- "name": "AuroElement",
1737
- "module": "components/layoutElement/src/auroElement.js"
1738
- }
1694
+ "description": "If set, disables the checkbox group.",
1695
+ "attribute": "disabled",
1696
+ "reflects": true
1739
1697
  },
1740
1698
  {
1741
1699
  "kind": "field",
1742
- "name": "optionSelected",
1700
+ "name": "error",
1743
1701
  "privacy": "public",
1744
1702
  "type": {
1745
- "text": "HTMLElement"
1703
+ "text": "string"
1746
1704
  },
1747
- "description": "Specifies the current selected option.",
1748
- "attribute": "optionSelected"
1705
+ "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
1706
+ "attribute": "error",
1707
+ "reflects": true
1749
1708
  },
1750
1709
  {
1751
1710
  "kind": "field",
1752
- "name": "persistInput",
1711
+ "name": "horizontal",
1753
1712
  "privacy": "public",
1754
1713
  "type": {
1755
1714
  "text": "boolean"
1756
1715
  },
1757
- "description": "If declared, selecting a menu option will not change the input value. By doing so,\nthe current menu filter will be preserved and the user can continue from their last\nfilter state. It is recommended to use this in combination with the `displayValue` slot.",
1758
- "attribute": "persistInput",
1716
+ "description": "If set, checkboxes will be aligned horizontally.",
1717
+ "attribute": "horizontal",
1759
1718
  "reflects": true
1760
1719
  },
1761
1720
  {
1762
1721
  "kind": "field",
1763
- "name": "placement",
1722
+ "name": "noValidate",
1764
1723
  "privacy": "public",
1765
1724
  "type": {
1766
- "text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
1725
+ "text": "boolean"
1767
1726
  },
1768
- "description": "Position where the bib should appear relative to the trigger.",
1769
- "default": "'bottom-start'",
1770
- "attribute": "placement",
1727
+ "description": "If set, disables auto-validation on blur.",
1728
+ "attribute": "noValidate",
1771
1729
  "reflects": true
1772
1730
  },
1773
1731
  {
1774
1732
  "kind": "field",
1775
- "name": "placeholder",
1733
+ "name": "onDark",
1776
1734
  "privacy": "public",
1777
1735
  "type": {
1778
- "text": "string"
1736
+ "text": "boolean"
1779
1737
  },
1780
- "description": "Define custom placeholder text, only supported by date input formats.",
1781
- "attribute": "placeholder",
1738
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1739
+ "attribute": "onDark",
1782
1740
  "reflects": true
1783
1741
  },
1784
1742
  {
@@ -1788,7 +1746,7 @@
1788
1746
  "type": {
1789
1747
  "text": "boolean"
1790
1748
  },
1791
- "description": "Populates the `required` attribute on the input. Used for client-side validation.",
1749
+ "description": "Populates the `required` attribute on the element. Used for client-side validation.",
1792
1750
  "attribute": "required",
1793
1751
  "reflects": true
1794
1752
  },
@@ -1824,579 +1782,621 @@
1824
1782
  },
1825
1783
  {
1826
1784
  "kind": "field",
1827
- "name": "setCustomValidityValueMissingFilter",
1785
+ "name": "validity",
1828
1786
  "privacy": "public",
1829
1787
  "type": {
1830
1788
  "text": "string"
1831
1789
  },
1832
- "description": "Custom help text message to display when validity = `valueMissing` due to the user not choosing a menu option when behavior = \"filter\".",
1833
- "attribute": "setCustomValidityValueMissingFilter"
1790
+ "description": "Specifies the `validityState` this element is in.",
1791
+ "attribute": "validity",
1792
+ "reflects": true
1793
+ }
1794
+ ],
1795
+ "events": [
1796
+ {
1797
+ "name": "input",
1798
+ "type": {
1799
+ "text": "CustomEvent"
1800
+ }
1834
1801
  },
1835
1802
  {
1836
- "kind": "field",
1837
- "name": "touched",
1838
- "privacy": "private",
1803
+ "description": "Notifies that the `validity` and `errorMessage` values have changed.",
1804
+ "name": "auroFormElement-validated"
1805
+ }
1806
+ ],
1807
+ "attributes": [
1808
+ {
1809
+ "name": "appearance",
1839
1810
  "type": {
1840
- "text": "boolean"
1811
+ "text": "'default' | 'inverse'"
1841
1812
  },
1842
- "description": "Indicates whether the combobox is in a dirty state (has been interacted with)."
1813
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
1814
+ "default": "'default'",
1815
+ "fieldName": "appearance"
1843
1816
  },
1844
1817
  {
1845
- "kind": "field",
1846
- "name": "triggerIcon",
1847
- "privacy": "public",
1818
+ "name": "disabled",
1848
1819
  "type": {
1849
1820
  "text": "boolean"
1850
1821
  },
1851
- "description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
1852
- "attribute": "triggerIcon",
1853
- "reflects": true
1822
+ "description": "If set, disables the checkbox group.",
1823
+ "fieldName": "disabled"
1854
1824
  },
1855
1825
  {
1856
- "kind": "field",
1857
- "name": "type",
1858
- "privacy": "public",
1826
+ "name": "error",
1859
1827
  "type": {
1860
1828
  "text": "string"
1861
1829
  },
1862
- "description": "Applies the defined value as the type attribute on `auro-input`.",
1863
- "attribute": "type",
1864
- "reflects": true
1830
+ "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
1831
+ "fieldName": "error"
1865
1832
  },
1866
1833
  {
1867
- "kind": "field",
1868
- "name": "typedValue",
1869
- "privacy": "public",
1834
+ "name": "horizontal",
1870
1835
  "type": {
1871
- "text": "string"
1836
+ "text": "boolean"
1872
1837
  },
1873
- "description": "Specifies the value of the input element within the combobox.",
1874
- "attribute": "typedValue",
1875
- "reflects": true
1838
+ "description": "If set, checkboxes will be aligned horizontally.",
1839
+ "fieldName": "horizontal"
1876
1840
  },
1877
1841
  {
1878
- "kind": "field",
1879
- "name": "validity",
1880
- "privacy": "public",
1842
+ "name": "noValidate",
1843
+ "type": {
1844
+ "text": "boolean"
1845
+ },
1846
+ "description": "If set, disables auto-validation on blur.",
1847
+ "fieldName": "noValidate"
1848
+ },
1849
+ {
1850
+ "name": "onDark",
1851
+ "type": {
1852
+ "text": "boolean"
1853
+ },
1854
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1855
+ "fieldName": "onDark"
1856
+ },
1857
+ {
1858
+ "name": "required",
1859
+ "type": {
1860
+ "text": "boolean"
1861
+ },
1862
+ "description": "Populates the `required` attribute on the element. Used for client-side validation.",
1863
+ "fieldName": "required"
1864
+ },
1865
+ {
1866
+ "name": "setCustomValidity",
1881
1867
  "type": {
1882
1868
  "text": "string"
1883
1869
  },
1884
- "description": "Specifies the `validityState` this element is in.",
1885
- "attribute": "validity",
1886
- "reflects": true
1870
+ "description": "Sets a custom help text message to display for all validityStates.",
1871
+ "fieldName": "setCustomValidity"
1887
1872
  },
1888
1873
  {
1889
- "kind": "field",
1890
- "name": "value",
1891
- "privacy": "public",
1874
+ "name": "setCustomValidityCustomError",
1892
1875
  "type": {
1893
1876
  "text": "string"
1894
1877
  },
1895
- "description": "Value selected for the dropdown menu.",
1896
- "attribute": "value"
1878
+ "description": "Custom help text message to display when validity = `customError`.",
1879
+ "fieldName": "setCustomValidityCustomError"
1897
1880
  },
1898
1881
  {
1899
- "kind": "field",
1900
- "name": "largeFullscreenHeadline",
1901
- "privacy": "public",
1882
+ "name": "setCustomValidityValueMissing",
1902
1883
  "type": {
1903
- "text": "boolean"
1884
+ "text": "string"
1904
1885
  },
1905
- "description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
1906
- "attribute": "largeFullscreenHeadline",
1907
- "reflects": true
1886
+ "description": "Custom help text message to display when validity = `valueMissing`.",
1887
+ "fieldName": "setCustomValidityValueMissing"
1908
1888
  },
1909
1889
  {
1910
- "kind": "field",
1911
- "name": "fullscreenBreakpoint",
1912
- "privacy": "public",
1890
+ "name": "validity",
1913
1891
  "type": {
1914
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'"
1892
+ "text": "string"
1915
1893
  },
1916
- "description": "Defines the screen size breakpointat which the dropdown switches to fullscreen mode on mobile. `disabled` indicates a dropdown should _never_ enter fullscreen.\n\nWhen expanded, the dropdown will automatically display in fullscreen mode\nif the screen size is equal to or smaller than the selected breakpoint.",
1917
- "default": "'sm'",
1918
- "attribute": "fullscreenBreakpoint",
1919
- "reflects": true
1894
+ "description": "Specifies the `validityState` this element is in.",
1895
+ "fieldName": "validity"
1896
+ }
1897
+ ],
1898
+ "superclass": {
1899
+ "name": "LitElement",
1900
+ "package": "lit"
1901
+ },
1902
+ "tagName": "auro-checkbox-group",
1903
+ "customElement": true
1904
+ }
1905
+ ],
1906
+ "exports": [
1907
+ {
1908
+ "kind": "js",
1909
+ "name": "AuroCheckboxGroup",
1910
+ "declaration": {
1911
+ "name": "AuroCheckboxGroup",
1912
+ "module": "components/checkbox/src/auro-checkbox-group.js"
1913
+ }
1914
+ }
1915
+ ]
1916
+ },
1917
+ {
1918
+ "kind": "javascript-module",
1919
+ "path": "components/checkbox/src/auro-checkbox.js",
1920
+ "declarations": [
1921
+ {
1922
+ "kind": "class",
1923
+ "description": "The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.",
1924
+ "name": "AuroCheckbox",
1925
+ "cssParts": [
1926
+ {
1927
+ "description": "apply css to a specific checkbox.",
1928
+ "name": "checkbox"
1920
1929
  },
1921
1930
  {
1922
- "kind": "field",
1923
- "name": "optionActive",
1931
+ "description": "apply css to a specific checkbox's input.",
1932
+ "name": "checkbox-input"
1933
+ },
1934
+ {
1935
+ "description": "apply css to a specific checkbox's label.",
1936
+ "name": "checkbox-label"
1937
+ }
1938
+ ],
1939
+ "slots": [
1940
+ {
1941
+ "description": "The default slot for the checkbox label.",
1942
+ "name": "default"
1943
+ }
1944
+ ],
1945
+ "members": [
1946
+ {
1947
+ "kind": "method",
1948
+ "name": "_initializeDefaults"
1949
+ },
1950
+ {
1951
+ "kind": "method",
1952
+ "name": "register",
1953
+ "static": true,
1954
+ "parameters": [
1955
+ {
1956
+ "name": "name",
1957
+ "default": "\"auro-checkbox\"",
1958
+ "description": "The name of element that you want to register to.",
1959
+ "optional": true,
1960
+ "type": {
1961
+ "text": "string"
1962
+ }
1963
+ }
1964
+ ],
1965
+ "description": "This will register this element with the browser."
1966
+ },
1967
+ {
1968
+ "kind": "method",
1969
+ "name": "handleChange",
1970
+ "parameters": [
1971
+ {
1972
+ "name": "event",
1973
+ "description": "The change event from the checkbox input.",
1974
+ "type": {
1975
+ "text": "Event"
1976
+ }
1977
+ }
1978
+ ],
1979
+ "description": "Handles the change event for the checkbox input.\nUpdates the checked state and dispatches a corresponding custom event.\nThis custom event is only for the purpose of supporting IE.",
1924
1980
  "privacy": "private",
1925
- "type": {
1926
- "text": "object"
1927
- },
1928
- "description": "Specifies the currently active option."
1981
+ "return": {
1982
+ "type": {
1983
+ "text": "void"
1984
+ }
1985
+ }
1929
1986
  },
1930
1987
  {
1931
- "kind": "field",
1932
- "name": "componentHasFocus",
1933
- "description": "Returns true if the element has focus.",
1988
+ "kind": "method",
1989
+ "name": "handleInput",
1990
+ "parameters": [
1991
+ {
1992
+ "name": "event",
1993
+ "description": "The input event from the checkbox input.",
1994
+ "type": {
1995
+ "text": "Event"
1996
+ }
1997
+ }
1998
+ ],
1999
+ "description": "Handles the input event for the checkbox input.\nUpdates the checked state and dispatches a custom 'auroCheckbox-input' event.",
1934
2000
  "privacy": "private",
1935
2001
  "return": {
1936
2002
  "type": {
1937
- "text": "boolean"
2003
+ "text": "void"
1938
2004
  }
1939
- },
1940
- "readonly": true,
1941
- "inheritedFrom": {
1942
- "name": "AuroElement",
1943
- "module": "components/layoutElement/src/auroElement.js"
1944
2005
  }
1945
2006
  },
1946
2007
  {
1947
2008
  "kind": "method",
1948
- "name": "resetShapeClasses",
1949
- "inheritedFrom": {
1950
- "name": "AuroElement",
1951
- "module": "components/layoutElement/src/auroElement.js"
2009
+ "name": "handleFocusin",
2010
+ "description": "Function to support",
2011
+ "privacy": "private",
2012
+ "return": {
2013
+ "type": {
2014
+ "text": "void"
2015
+ }
1952
2016
  }
1953
2017
  },
1954
2018
  {
1955
2019
  "kind": "method",
1956
- "name": "resetLayoutClasses",
1957
- "inheritedFrom": {
1958
- "name": "AuroElement",
1959
- "module": "components/layoutElement/src/auroElement.js"
2020
+ "name": "generateIconHtml",
2021
+ "description": "Function to generate checkmark svg.",
2022
+ "privacy": "private",
2023
+ "return": {
2024
+ "type": {
2025
+ "text": "HTMLElement"
2026
+ }
1960
2027
  }
1961
2028
  },
1962
2029
  {
1963
2030
  "kind": "method",
1964
- "name": "updateComponentArchitecture",
1965
- "inheritedFrom": {
1966
- "name": "AuroElement",
1967
- "module": "components/layoutElement/src/auroElement.js"
2031
+ "name": "reset",
2032
+ "description": "Resets component to initial state.",
2033
+ "return": {
2034
+ "type": {
2035
+ "text": "void"
2036
+ }
1968
2037
  }
1969
2038
  },
1970
2039
  {
1971
- "kind": "field",
1972
- "name": "shape",
1973
- "privacy": "public",
1974
- "type": {
1975
- "text": "string"
1976
- },
1977
- "attribute": "shape",
1978
- "reflects": true,
1979
- "inheritedFrom": {
1980
- "name": "AuroElement",
1981
- "module": "components/layoutElement/src/auroElement.js"
2040
+ "kind": "method",
2041
+ "name": "updateAriaLabel",
2042
+ "description": "Updates the aria-label based on slot content.",
2043
+ "privacy": "private",
2044
+ "return": {
2045
+ "type": {
2046
+ "text": "void"
2047
+ }
1982
2048
  }
1983
2049
  },
1984
2050
  {
1985
- "kind": "field",
1986
- "name": "size",
1987
- "privacy": "public",
1988
- "type": {
1989
- "text": "string"
1990
- },
1991
- "attribute": "size",
1992
- "reflects": true,
1993
- "inheritedFrom": {
1994
- "name": "AuroElement",
1995
- "module": "components/layoutElement/src/auroElement.js"
2051
+ "kind": "method",
2052
+ "name": "handleKeyDown",
2053
+ "parameters": [
2054
+ {
2055
+ "name": "event",
2056
+ "description": "The keydown event from the checkbox input.",
2057
+ "type": {
2058
+ "text": "KeyboardEvent"
2059
+ }
2060
+ }
2061
+ ],
2062
+ "description": "Handles keydown event to toggle the checkbox with Space key.",
2063
+ "privacy": "private",
2064
+ "return": {
2065
+ "type": {
2066
+ "text": "void"
2067
+ }
1996
2068
  }
1997
- }
1998
- ],
1999
- "events": [
2000
- {
2001
- "name": "inputValue",
2002
- "type": {
2003
- "text": "CustomEvent"
2004
- },
2005
- "description": "Notifies that the components internal HTML5 input value has changed."
2006
- },
2007
- {
2008
- "name": "input",
2009
- "type": {
2010
- "text": "CustomEvent"
2011
- },
2012
- "description": "Notifies that the component has a new value set."
2013
- },
2014
- {
2015
- "name": "auroCombobox-valueSet",
2016
- "type": {
2017
- "text": "CustomEvent"
2018
- },
2019
- "description": "(Deprecated) Notifies that the component has a new value set."
2020
2069
  },
2021
2070
  {
2022
- "description": "Notifies that the component value(s) have been validated.",
2023
- "name": "auroFormElement-validated"
2024
- }
2025
- ],
2026
- "attributes": [
2027
- {
2071
+ "kind": "field",
2028
2072
  "name": "appearance",
2073
+ "privacy": "public",
2029
2074
  "type": {
2030
- "text": "string"
2075
+ "text": "'default' | 'inverse'"
2031
2076
  },
2032
2077
  "description": "Defines whether the component will be on lighter or darker backgrounds.",
2033
2078
  "default": "'default'",
2034
- "fieldName": "appearance"
2035
- },
2036
- {
2037
- "name": "autocomplete",
2038
- "type": {
2039
- "text": "string"
2040
- },
2041
- "description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
2042
- "fieldName": "autocomplete"
2043
- },
2044
- {
2045
- "name": "autoPlacement",
2046
- "type": {
2047
- "text": "boolean"
2048
- },
2049
- "description": "If declared, bib's position will be automatically calculated where to appear.",
2050
- "fieldName": "autoPlacement"
2051
- },
2052
- {
2053
- "name": "availableOptions",
2054
- "type": {
2055
- "text": "array"
2056
- },
2057
- "description": "Array of available options to display in the dropdown.",
2058
- "fieldName": "availableOptions"
2059
- },
2060
- {
2061
- "name": "behavior",
2062
- "type": {
2063
- "text": "'filter' | 'suggestion'"
2064
- },
2065
- "description": "Sets the behavior of the combobox, \"filter\" or \"suggestion\".\n\"filter\" requires the user to select an option from the menu.\n\"suggestion\" allows the user to enter a value not present in the menu options.",
2066
- "default": "'suggestion'",
2067
- "fieldName": "behavior"
2079
+ "attribute": "appearance",
2080
+ "reflects": true
2068
2081
  },
2069
2082
  {
2070
- "name": "checkmark",
2083
+ "kind": "field",
2084
+ "name": "checked",
2085
+ "privacy": "public",
2071
2086
  "type": {
2072
2087
  "text": "boolean"
2073
2088
  },
2074
- "description": "When attribute is present auro-menu will apply check marks to selected options.",
2075
- "fieldName": "checkmark"
2089
+ "description": "If set to true, the checkbox will be filled with a checkmark.",
2090
+ "attribute": "checked",
2091
+ "reflects": true
2076
2092
  },
2077
2093
  {
2094
+ "kind": "field",
2078
2095
  "name": "disabled",
2096
+ "privacy": "public",
2079
2097
  "type": {
2080
2098
  "text": "boolean"
2081
2099
  },
2082
- "description": "If set, disables the combobox.",
2083
- "fieldName": "disabled"
2084
- },
2085
- {
2086
- "name": "dvInputOnly",
2087
- "type": {
2088
- "text": "boolean"
2089
- },
2090
- "description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
2091
- "fieldName": "dvInputOnly"
2100
+ "description": "If set to true, the checkbox will not be clickable.",
2101
+ "attribute": "disabled",
2102
+ "reflects": true
2092
2103
  },
2093
2104
  {
2105
+ "kind": "field",
2094
2106
  "name": "error",
2107
+ "privacy": "public",
2095
2108
  "type": {
2096
- "text": "string"
2109
+ "text": "boolean"
2097
2110
  },
2098
- "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
2099
- "fieldName": "error"
2111
+ "description": "If set to true, the checkbox will be displayed with an error state.",
2112
+ "attribute": "error",
2113
+ "reflects": true
2100
2114
  },
2101
2115
  {
2102
- "name": "format",
2116
+ "kind": "field",
2117
+ "name": "id",
2118
+ "privacy": "public",
2103
2119
  "type": {
2104
2120
  "text": "string"
2105
2121
  },
2106
- "description": "Specifies the input mask format.",
2107
- "fieldName": "format"
2122
+ "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
2123
+ "attribute": "id"
2108
2124
  },
2109
2125
  {
2110
- "name": "inputmode",
2126
+ "kind": "field",
2127
+ "name": "inputId",
2128
+ "privacy": "private",
2111
2129
  "type": {
2112
2130
  "text": "string"
2113
2131
  },
2114
- "description": "Exposes inputmode attribute for input.",
2115
- "fieldName": "inputmode"
2132
+ "description": "The id for input node."
2116
2133
  },
2117
2134
  {
2118
- "name": "layout",
2135
+ "kind": "field",
2136
+ "name": "name",
2137
+ "privacy": "public",
2119
2138
  "type": {
2120
2139
  "text": "string"
2121
2140
  },
2122
- "description": "Sets the layout of the combobox.",
2123
- "default": "'classic'",
2124
- "fieldName": "layout",
2125
- "inheritedFrom": {
2126
- "name": "AuroElement",
2127
- "module": "components/layoutElement/src/auroElement.js"
2128
- }
2129
- },
2130
- {
2131
- "name": "matchWidth",
2132
- "type": {
2133
- "text": "boolean"
2134
- },
2135
- "description": "If declared, the popover and trigger will be set to the same width.",
2136
- "fieldName": "matchWidth"
2137
- },
2138
- {
2139
- "name": "noFilter",
2140
- "type": {
2141
- "text": "boolean"
2142
- },
2143
- "description": "If set, combobox will not filter menuoptions based on input.",
2144
- "fieldName": "noFilter"
2141
+ "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
2142
+ "attribute": "name"
2145
2143
  },
2146
2144
  {
2147
- "name": "noFlip",
2145
+ "kind": "field",
2146
+ "name": "onDark",
2147
+ "privacy": "public",
2148
2148
  "type": {
2149
2149
  "text": "boolean"
2150
2150
  },
2151
- "description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
2152
- "fieldName": "noFlip"
2151
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
2152
+ "attribute": "onDark",
2153
+ "reflects": true
2153
2154
  },
2154
2155
  {
2155
- "name": "shift",
2156
+ "kind": "field",
2157
+ "name": "touched",
2158
+ "privacy": "private",
2156
2159
  "type": {
2157
2160
  "text": "boolean"
2158
2161
  },
2159
- "description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
2160
- "fieldName": "shift"
2162
+ "description": "Indicates whether the checkbox has been interacted with."
2161
2163
  },
2162
2164
  {
2163
- "name": "noValidate",
2165
+ "kind": "field",
2166
+ "name": "value",
2167
+ "privacy": "public",
2164
2168
  "type": {
2165
- "text": "boolean"
2169
+ "text": "string"
2166
2170
  },
2167
- "description": "If set, disables auto-validation on blur.",
2168
- "fieldName": "noValidate"
2171
+ "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
2172
+ "attribute": "value"
2169
2173
  },
2170
2174
  {
2171
- "name": "offset",
2175
+ "kind": "field",
2176
+ "name": "tabIndex",
2177
+ "privacy": "private",
2172
2178
  "type": {
2173
2179
  "text": "number"
2174
2180
  },
2175
- "description": "Gap between the trigger element and bib.",
2176
- "default": "0",
2177
- "fieldName": "offset"
2181
+ "description": "The tabindex attribute for the checkbox.",
2182
+ "attribute": "tabindex",
2183
+ "reflects": true
2178
2184
  },
2179
2185
  {
2180
- "name": "onDark",
2186
+ "kind": "field",
2187
+ "name": "ariaChecked",
2188
+ "privacy": "private",
2181
2189
  "type": {
2182
- "text": "boolean"
2190
+ "text": "string"
2183
2191
  },
2184
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
2185
- "fieldName": "onDark"
2192
+ "description": "The aria-checked attribute for the checkbox.",
2193
+ "attribute": "aria-checked",
2194
+ "reflects": true
2186
2195
  },
2187
2196
  {
2188
- "name": "optionSelected",
2197
+ "kind": "field",
2198
+ "name": "ariaDisabled",
2199
+ "privacy": "private",
2189
2200
  "type": {
2190
- "text": "HTMLElement"
2201
+ "text": "string"
2191
2202
  },
2192
- "description": "Specifies the current selected option.",
2193
- "fieldName": "optionSelected"
2203
+ "description": "The aria-disabled attribute for the checkbox.",
2204
+ "attribute": "aria-disabled",
2205
+ "reflects": true
2194
2206
  },
2195
2207
  {
2196
- "name": "persistInput",
2208
+ "kind": "field",
2209
+ "name": "role",
2210
+ "privacy": "private",
2197
2211
  "type": {
2198
- "text": "boolean"
2212
+ "text": "string"
2199
2213
  },
2200
- "description": "If declared, selecting a menu option will not change the input value. By doing so,\nthe current menu filter will be preserved and the user can continue from their last\nfilter state. It is recommended to use this in combination with the `displayValue` slot.",
2201
- "fieldName": "persistInput"
2214
+ "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
2215
+ "attribute": "role",
2216
+ "reflects": true
2217
+ }
2218
+ ],
2219
+ "events": [
2220
+ {
2221
+ "name": "auroCheckbox-input",
2222
+ "type": {
2223
+ "text": "CustomEvent"
2224
+ }
2202
2225
  },
2203
2226
  {
2204
- "name": "placement",
2227
+ "name": "auroCheckbox-focusin",
2205
2228
  "type": {
2206
- "text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
2207
- },
2208
- "description": "Position where the bib should appear relative to the trigger.",
2209
- "default": "'bottom-start'",
2210
- "fieldName": "placement"
2229
+ "text": "CustomEvent"
2230
+ }
2211
2231
  },
2212
2232
  {
2213
- "name": "placeholder",
2233
+ "name": "auroCheckbox-focusout",
2214
2234
  "type": {
2215
- "text": "string"
2216
- },
2217
- "description": "Define custom placeholder text, only supported by date input formats.",
2218
- "fieldName": "placeholder"
2235
+ "text": "CustomEvent"
2236
+ }
2219
2237
  },
2220
2238
  {
2221
- "name": "required",
2222
2239
  "type": {
2223
- "text": "boolean"
2240
+ "text": "CustomEvent<any>"
2224
2241
  },
2225
- "description": "Populates the `required` attribute on the input. Used for client-side validation.",
2226
- "fieldName": "required"
2242
+ "description": "(Deprecated) Notifies when checked value is changed.",
2243
+ "name": "change"
2227
2244
  },
2228
2245
  {
2229
- "name": "setCustomValidity",
2230
2246
  "type": {
2231
- "text": "string"
2247
+ "text": "InputEvent"
2232
2248
  },
2233
- "description": "Sets a custom help text message to display for all validityStates.",
2234
- "fieldName": "setCustomValidity"
2235
- },
2249
+ "description": "Notifies when when checked value is changed by user's interface.",
2250
+ "name": "input"
2251
+ }
2252
+ ],
2253
+ "attributes": [
2236
2254
  {
2237
- "name": "setCustomValidityCustomError",
2255
+ "name": "appearance",
2238
2256
  "type": {
2239
- "text": "string"
2257
+ "text": "'default' | 'inverse'"
2240
2258
  },
2241
- "description": "Custom help text message to display when validity = `customError`.",
2242
- "fieldName": "setCustomValidityCustomError"
2259
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
2260
+ "default": "'default'",
2261
+ "fieldName": "appearance"
2243
2262
  },
2244
2263
  {
2245
- "name": "setCustomValidityValueMissing",
2264
+ "name": "checked",
2246
2265
  "type": {
2247
- "text": "string"
2266
+ "text": "boolean"
2248
2267
  },
2249
- "description": "Custom help text message to display when validity = `valueMissing`.",
2250
- "fieldName": "setCustomValidityValueMissing"
2268
+ "description": "If set to true, the checkbox will be filled with a checkmark.",
2269
+ "fieldName": "checked"
2251
2270
  },
2252
2271
  {
2253
- "name": "setCustomValidityValueMissingFilter",
2272
+ "name": "disabled",
2254
2273
  "type": {
2255
- "text": "string"
2274
+ "text": "boolean"
2256
2275
  },
2257
- "description": "Custom help text message to display when validity = `valueMissing` due to the user not choosing a menu option when behavior = \"filter\".",
2258
- "fieldName": "setCustomValidityValueMissingFilter"
2276
+ "description": "If set to true, the checkbox will not be clickable.",
2277
+ "fieldName": "disabled"
2259
2278
  },
2260
2279
  {
2261
- "name": "triggerIcon",
2280
+ "name": "error",
2262
2281
  "type": {
2263
2282
  "text": "boolean"
2264
2283
  },
2265
- "description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
2266
- "fieldName": "triggerIcon"
2284
+ "description": "If set to true, the checkbox will be displayed with an error state.",
2285
+ "fieldName": "error"
2267
2286
  },
2268
2287
  {
2269
- "name": "type",
2288
+ "name": "id",
2270
2289
  "type": {
2271
2290
  "text": "string"
2272
2291
  },
2273
- "description": "Applies the defined value as the type attribute on `auro-input`.",
2274
- "fieldName": "type"
2292
+ "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
2293
+ "fieldName": "id"
2275
2294
  },
2276
2295
  {
2277
- "name": "typedValue",
2296
+ "name": "name",
2278
2297
  "type": {
2279
2298
  "text": "string"
2280
2299
  },
2281
- "description": "Specifies the value of the input element within the combobox.",
2282
- "fieldName": "typedValue"
2300
+ "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
2301
+ "fieldName": "name"
2283
2302
  },
2284
2303
  {
2285
- "name": "validity",
2304
+ "name": "onDark",
2286
2305
  "type": {
2287
- "text": "string"
2306
+ "text": "boolean"
2288
2307
  },
2289
- "description": "Specifies the `validityState` this element is in.",
2290
- "fieldName": "validity"
2308
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
2309
+ "fieldName": "onDark"
2291
2310
  },
2292
2311
  {
2293
2312
  "name": "value",
2294
2313
  "type": {
2295
2314
  "text": "string"
2296
2315
  },
2297
- "description": "Value selected for the dropdown menu.",
2316
+ "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
2298
2317
  "fieldName": "value"
2299
2318
  },
2300
2319
  {
2301
- "name": "largeFullscreenHeadline",
2302
- "type": {
2303
- "text": "boolean"
2304
- },
2305
- "description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
2306
- "fieldName": "largeFullscreenHeadline"
2307
- },
2308
- {
2309
- "name": "fullscreenBreakpoint",
2320
+ "name": "tabindex",
2310
2321
  "type": {
2311
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'"
2322
+ "text": "number"
2312
2323
  },
2313
- "description": "Defines the screen size breakpointat which the dropdown switches to fullscreen mode on mobile. `disabled` indicates a dropdown should _never_ enter fullscreen.\n\nWhen expanded, the dropdown will automatically display in fullscreen mode\nif the screen size is equal to or smaller than the selected breakpoint.",
2314
- "default": "'sm'",
2315
- "fieldName": "fullscreenBreakpoint"
2324
+ "description": "The tabindex attribute for the checkbox.",
2325
+ "fieldName": "tabIndex"
2316
2326
  },
2317
2327
  {
2318
- "name": "shape",
2328
+ "name": "aria-checked",
2319
2329
  "type": {
2320
2330
  "text": "string"
2321
2331
  },
2322
- "fieldName": "shape",
2323
- "inheritedFrom": {
2324
- "name": "AuroElement",
2325
- "module": "components/layoutElement/src/auroElement.js"
2326
- }
2332
+ "description": "The aria-checked attribute for the checkbox.",
2333
+ "fieldName": "ariaChecked"
2327
2334
  },
2328
2335
  {
2329
- "name": "size",
2336
+ "name": "aria-disabled",
2330
2337
  "type": {
2331
2338
  "text": "string"
2332
2339
  },
2333
- "fieldName": "size",
2334
- "inheritedFrom": {
2335
- "name": "AuroElement",
2336
- "module": "components/layoutElement/src/auroElement.js"
2337
- }
2340
+ "description": "The aria-disabled attribute for the checkbox.",
2341
+ "fieldName": "ariaDisabled"
2338
2342
  },
2339
2343
  {
2340
- "name": "ondark",
2344
+ "name": "role",
2341
2345
  "type": {
2342
- "text": "boolean"
2346
+ "text": "string"
2343
2347
  },
2344
- "fieldName": "onDark",
2345
- "inheritedFrom": {
2346
- "name": "AuroElement",
2347
- "module": "components/layoutElement/src/auroElement.js"
2348
- }
2348
+ "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
2349
+ "fieldName": "role"
2349
2350
  }
2350
2351
  ],
2351
2352
  "superclass": {
2352
- "name": "AuroElement",
2353
- "module": "/components/layoutElement/src/auroElement.js"
2353
+ "name": "LitElement",
2354
+ "package": "lit"
2354
2355
  },
2355
- "tagName": "auro-combobox",
2356
+ "tagName": "auro-checkbox",
2356
2357
  "customElement": true
2357
2358
  }
2358
2359
  ],
2359
2360
  "exports": [
2360
2361
  {
2361
2362
  "kind": "js",
2362
- "name": "AuroCombobox",
2363
+ "name": "AuroCheckbox",
2363
2364
  "declaration": {
2364
- "name": "AuroCombobox",
2365
- "module": "components/combobox/src/auro-combobox.js"
2365
+ "name": "AuroCheckbox",
2366
+ "module": "components/checkbox/src/auro-checkbox.js"
2366
2367
  }
2367
2368
  }
2368
2369
  ]
2369
2370
  },
2370
2371
  {
2371
2372
  "kind": "javascript-module",
2372
- "path": "components/combobox/src/index.js",
2373
+ "path": "components/checkbox/src/index.js",
2373
2374
  "declarations": [],
2374
2375
  "exports": [
2375
2376
  {
2376
2377
  "kind": "js",
2377
- "name": "AuroCombobox",
2378
+ "name": "AuroCheckbox",
2378
2379
  "declaration": {
2379
- "name": "AuroCombobox",
2380
- "module": "components/combobox/src/index.js"
2380
+ "name": "AuroCheckbox",
2381
+ "module": "components/checkbox/src/index.js"
2381
2382
  }
2382
- }
2383
- ]
2384
- },
2385
- {
2386
- "kind": "javascript-module",
2387
- "path": "components/combobox/src/registered.js",
2388
- "declarations": [],
2389
- "exports": [
2383
+ },
2390
2384
  {
2391
2385
  "kind": "js",
2392
- "name": "AuroCombobox",
2386
+ "name": "AuroCheckboxGroup",
2393
2387
  "declaration": {
2394
- "name": "AuroCombobox",
2395
- "module": "components/combobox/src/registered.js"
2388
+ "name": "AuroCheckboxGroup",
2389
+ "module": "components/checkbox/src/index.js"
2396
2390
  }
2397
2391
  }
2398
2392
  ]
2399
2393
  },
2394
+ {
2395
+ "kind": "javascript-module",
2396
+ "path": "components/checkbox/src/registered.js",
2397
+ "declarations": [],
2398
+ "exports": []
2399
+ },
2400
2400
  {
2401
2401
  "kind": "javascript-module",
2402
2402
  "path": "components/counter/src/auro-counter-button.js",