@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.2 → 0.0.0-pr1595.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 (57) hide show
  1. package/components/checkbox/demo/customize.min.js +4 -1
  2. package/components/checkbox/demo/getting-started.min.js +4 -1
  3. package/components/checkbox/demo/index.min.js +4 -1
  4. package/components/checkbox/dist/auro-checkbox-group.d.ts +1 -0
  5. package/components/checkbox/dist/auro-checkbox.d.ts +1 -0
  6. package/components/checkbox/dist/index.js +4 -1
  7. package/components/checkbox/dist/registered.js +4 -1
  8. package/components/combobox/demo/customize.min.js +9 -3
  9. package/components/combobox/demo/getting-started.min.js +9 -3
  10. package/components/combobox/demo/index.min.js +9 -3
  11. package/components/combobox/dist/auro-combobox.d.ts +1 -0
  12. package/components/combobox/dist/index.js +9 -3
  13. package/components/combobox/dist/registered.js +9 -3
  14. package/components/counter/demo/customize.min.js +7 -2
  15. package/components/counter/demo/index.min.js +7 -2
  16. package/components/counter/dist/auro-counter-group.d.ts +1 -0
  17. package/components/counter/dist/index.js +7 -2
  18. package/components/counter/dist/registered.js +7 -2
  19. package/components/datepicker/demo/customize.min.js +9 -3
  20. package/components/datepicker/demo/index.min.js +9 -3
  21. package/components/datepicker/dist/auro-datepicker.d.ts +1 -0
  22. package/components/datepicker/dist/index.js +9 -3
  23. package/components/datepicker/dist/registered.js +9 -3
  24. package/components/dropdown/demo/customize.min.js +3 -1
  25. package/components/dropdown/demo/getting-started.min.js +6 -2
  26. package/components/dropdown/demo/index.min.js +3 -1
  27. package/components/dropdown/dist/auro-dropdown.d.ts +1 -0
  28. package/components/dropdown/dist/index.js +3 -1
  29. package/components/dropdown/dist/registered.js +3 -1
  30. package/components/form/demo/customize.min.js +42 -13
  31. package/components/form/demo/getting-started.min.js +42 -13
  32. package/components/form/demo/index.min.js +42 -13
  33. package/components/form/demo/registerDemoDeps.min.js +42 -13
  34. package/components/helptext/dist/auro-helptext.d.ts +1 -0
  35. package/components/helptext/dist/index.js +1 -0
  36. package/components/helptext/dist/registered.js +1 -0
  37. package/components/input/demo/customize.min.js +3 -1
  38. package/components/input/demo/getting-started.min.js +3 -1
  39. package/components/input/demo/index.min.js +3 -1
  40. package/components/input/dist/base-input.d.ts +1 -0
  41. package/components/input/dist/index.js +3 -1
  42. package/components/input/dist/registered.js +3 -1
  43. package/components/radio/demo/customize.min.js +4 -1
  44. package/components/radio/demo/getting-started.min.js +4 -1
  45. package/components/radio/demo/index.min.js +4 -1
  46. package/components/radio/dist/auro-radio-group.d.ts +1 -0
  47. package/components/radio/dist/auro-radio.d.ts +1 -0
  48. package/components/radio/dist/index.js +4 -1
  49. package/components/radio/dist/registered.js +4 -1
  50. package/components/select/demo/customize.min.js +6 -2
  51. package/components/select/demo/getting-started.min.js +6 -2
  52. package/components/select/demo/index.min.js +6 -2
  53. package/components/select/dist/auro-select.d.ts +1 -0
  54. package/components/select/dist/index.js +6 -2
  55. package/components/select/dist/registered.js +6 -2
  56. package/custom-elements.json +598 -572
  57. package/package.json +1 -1
@@ -4,41 +4,41 @@
4
4
  "modules": [
5
5
  {
6
6
  "kind": "javascript-module",
7
- "path": "components/bibtemplate/src/auro-bibtemplate.js",
7
+ "path": "components/checkbox/src/auro-checkbox-group.js",
8
8
  "declarations": [
9
9
  {
10
10
  "kind": "class",
11
- "description": "The `auro-bibtemplate` element provides users a template for creating modal dialog elements.",
12
- "name": "AuroBibtemplate",
11
+ "description": "The `auro-checkbox-group` element is a wrapper for `auro-checkbox` elements.",
12
+ "name": "AuroCheckboxGroup",
13
13
  "cssParts": [
14
14
  {
15
- "description": "The outermost bibtemplate container element.",
16
- "name": "bibtemplate"
15
+ "description": "Apply css to the help text element that displays helper or error messages.",
16
+ "name": "helpText"
17
17
  }
18
18
  ],
19
19
  "slots": [
20
20
  {
21
- "description": "The default slot for the main content.",
22
- "name": "default"
23
- },
24
- {
25
- "description": "Slot for the header content.",
26
- "name": "header"
21
+ "description": "Allows for the legend to be overridden.",
22
+ "name": "legend"
27
23
  },
28
24
  {
29
- "description": "Slot for the subheader content.",
30
- "name": "subheader"
25
+ "description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
26
+ "name": "optionalLabel"
31
27
  },
32
28
  {
33
- "description": "Slot for the footer content.",
34
- "name": "footer"
29
+ "description": "Allows for the helper text to be overridden.",
30
+ "name": "helpText"
35
31
  },
36
32
  {
37
- "description": "Slot for the close button aria-label.",
38
- "name": "ariaLabel.close"
33
+ "description": "The default slot for the checkbox items.",
34
+ "name": "default"
39
35
  }
40
36
  ],
41
37
  "members": [
38
+ {
39
+ "kind": "method",
40
+ "name": "_initializeDefaults"
41
+ },
42
42
  {
43
43
  "kind": "method",
44
44
  "name": "register",
@@ -46,8 +46,8 @@
46
46
  "parameters": [
47
47
  {
48
48
  "name": "name",
49
- "default": "\"auro-bibtemplate\"",
50
- "description": "The name of element that you want to register to.",
49
+ "default": "\"auro-checkbox-group\"",
50
+ "description": "The name of the element that you want to register.",
51
51
  "optional": true,
52
52
  "type": {
53
53
  "text": "string"
@@ -58,17 +58,25 @@
58
58
  },
59
59
  {
60
60
  "kind": "method",
61
- "name": "preventBodyScroll",
61
+ "name": "handleValueUpdate",
62
62
  "parameters": [
63
63
  {
64
- "name": "event",
65
- "description": "The touchmove event.",
64
+ "name": "value",
65
+ "description": "The value of the checkbox.",
66
66
  "type": {
67
- "text": "Event"
67
+ "text": "String"
68
+ }
69
+ },
70
+ {
71
+ "name": "selected",
72
+ "description": "The checked state of the checkbox.",
73
+ "type": {
74
+ "text": "Boolean"
68
75
  }
69
76
  }
70
77
  ],
71
- "description": "Prevents scrolling of the body when touching empty areas of the component.",
78
+ "description": "Helper method to handle checkbox value changing.",
79
+ "privacy": "private",
72
80
  "return": {
73
81
  "type": {
74
82
  "text": "void"
@@ -77,8 +85,9 @@
77
85
  },
78
86
  {
79
87
  "kind": "method",
80
- "name": "focusCloseButton",
81
- "description": "Focuses the close button inside the bibtemplate's shadow DOM.\nUsed by parent components to set initial focus when the fullscreen dialog opens.",
88
+ "name": "handlePreselectedItems",
89
+ "description": "Helper method that handles the state of preselected checkboxes.",
90
+ "privacy": "private",
82
91
  "return": {
83
92
  "type": {
84
93
  "text": "void"
@@ -87,225 +96,311 @@
87
96
  },
88
97
  {
89
98
  "kind": "method",
90
- "name": "onCloseButtonClick"
99
+ "name": "handleItems",
100
+ "description": "Helper method that handles the state of checkboxes.",
101
+ "privacy": "private",
102
+ "return": {
103
+ "type": {
104
+ "text": "void"
105
+ }
106
+ }
91
107
  },
92
108
  {
93
109
  "kind": "method",
94
- "name": "exposeCssParts",
95
- "description": "Exposes CSS parts for styling from parent components.",
110
+ "name": "reset",
111
+ "description": "Resets component to initial state.",
96
112
  "return": {
97
113
  "type": {
98
114
  "text": "void"
99
115
  }
100
116
  }
101
117
  },
118
+ {
119
+ "kind": "method",
120
+ "name": "validate",
121
+ "parameters": [
122
+ {
123
+ "name": "force",
124
+ "default": "false",
125
+ "description": "Whether to force validation.",
126
+ "optional": true,
127
+ "type": {
128
+ "text": "boolean"
129
+ }
130
+ }
131
+ ],
132
+ "description": "Validates value."
133
+ },
102
134
  {
103
135
  "kind": "field",
104
- "name": "large",
136
+ "name": "appearance",
137
+ "privacy": "public",
138
+ "type": {
139
+ "text": "'default' | 'inverse'"
140
+ },
141
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
142
+ "default": "'default'",
143
+ "attribute": "appearance",
144
+ "reflects": true
145
+ },
146
+ {
147
+ "kind": "field",
148
+ "name": "disabled",
105
149
  "privacy": "public",
106
150
  "type": {
107
151
  "text": "boolean"
108
152
  },
109
- "description": "If declared, the fullscreen headline renders using the larger display heading style.",
110
- "default": "false",
111
- "attribute": "large",
153
+ "description": "If set, disables the checkbox group.",
154
+ "attribute": "disabled",
112
155
  "reflects": true
113
156
  },
114
157
  {
115
158
  "kind": "field",
116
- "name": "iconTag",
117
- "privacy": "private"
159
+ "name": "error",
160
+ "privacy": "public",
161
+ "type": {
162
+ "text": "string"
163
+ },
164
+ "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
165
+ "attribute": "error",
166
+ "reflects": true
118
167
  },
119
168
  {
120
169
  "kind": "field",
121
- "name": "headerTag",
122
- "privacy": "private"
170
+ "name": "horizontal",
171
+ "privacy": "public",
172
+ "type": {
173
+ "text": "boolean"
174
+ },
175
+ "description": "If set, checkboxes will be aligned horizontally.",
176
+ "attribute": "horizontal",
177
+ "reflects": true
123
178
  },
124
179
  {
125
180
  "kind": "field",
126
- "name": "buttonTag",
127
- "privacy": "private"
181
+ "name": "noValidate",
182
+ "privacy": "public",
183
+ "type": {
184
+ "text": "boolean"
185
+ },
186
+ "description": "If set, disables auto-validation on blur.",
187
+ "attribute": "novalidate",
188
+ "reflects": true
128
189
  },
129
190
  {
130
191
  "kind": "field",
131
- "name": "isFullscreen",
192
+ "name": "onDark",
132
193
  "privacy": "public",
133
194
  "type": {
134
195
  "text": "boolean"
135
196
  },
136
- "description": "If declared, the bibtemplate renders in fullscreen mode, exposing the header, subheader, and footer regions.",
137
- "attribute": "isfullscreen",
197
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
198
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
199
+ "attribute": "ondark",
138
200
  "reflects": true
139
201
  },
140
202
  {
141
203
  "kind": "field",
142
- "name": "showFooter",
204
+ "name": "required",
143
205
  "privacy": "public",
144
206
  "type": {
145
207
  "text": "boolean"
146
208
  },
147
- "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
148
- "attribute": "showfooter",
209
+ "description": "Populates the `required` attribute on the element. Used for client-side validation.",
210
+ "attribute": "required",
149
211
  "reflects": true
150
- }
151
- ],
152
- "events": [
212
+ },
153
213
  {
154
- "name": "close-click",
214
+ "kind": "field",
215
+ "name": "setCustomValidity",
216
+ "privacy": "public",
155
217
  "type": {
156
- "text": "Event"
218
+ "text": "string"
157
219
  },
158
- "description": "Notifies when the close button is clicked."
220
+ "description": "Sets a custom help text message to display for all validityStates.",
221
+ "attribute": "setcustomvalidity"
159
222
  },
160
223
  {
161
- "name": "auro-bibtemplate-connected",
224
+ "kind": "field",
225
+ "name": "setCustomValidityCustomError",
226
+ "privacy": "public",
227
+ "type": {
228
+ "text": "string"
229
+ },
230
+ "description": "Custom help text message to display when validity = `customError`.",
231
+ "attribute": "setcustomvaliditycustomerror"
232
+ },
233
+ {
234
+ "kind": "field",
235
+ "name": "setCustomValidityValueMissing",
236
+ "privacy": "public",
237
+ "type": {
238
+ "text": "string"
239
+ },
240
+ "description": "Custom help text message to display when validity = `valueMissing`.",
241
+ "attribute": "setcustomvalidityvaluemissing"
242
+ },
243
+ {
244
+ "kind": "field",
245
+ "name": "validity",
246
+ "privacy": "public",
247
+ "type": {
248
+ "text": "string"
249
+ },
250
+ "description": "Specifies the `validityState` this element is in.",
251
+ "attribute": "validity",
252
+ "reflects": true
253
+ }
254
+ ],
255
+ "events": [
256
+ {
257
+ "name": "input",
162
258
  "type": {
163
259
  "text": "CustomEvent"
164
260
  },
165
- "description": "Notifies that the bibtemplate has connected to the DOM, passing a reference to the element in the event detail."
261
+ "description": "Notifies when the group's value changes due to a checkbox selection being added or removed."
262
+ },
263
+ {
264
+ "description": "Notifies that the `validity` and `errorMessage` values have changed.",
265
+ "name": "auroFormElement-validated"
166
266
  }
167
267
  ],
168
268
  "attributes": [
169
269
  {
170
- "name": "isfullscreen",
270
+ "name": "appearance",
271
+ "type": {
272
+ "text": "'default' | 'inverse'"
273
+ },
274
+ "description": "Defines whether the component will be on lighter or darker backgrounds.",
275
+ "default": "'default'",
276
+ "fieldName": "appearance"
277
+ },
278
+ {
279
+ "name": "disabled",
171
280
  "type": {
172
281
  "text": "boolean"
173
282
  },
174
- "description": "If declared, the bibtemplate renders in fullscreen mode, exposing the header, subheader, and footer regions.",
175
- "fieldName": "isFullscreen"
283
+ "description": "If set, disables the checkbox group.",
284
+ "fieldName": "disabled"
176
285
  },
177
286
  {
178
- "name": "large",
287
+ "name": "error",
288
+ "type": {
289
+ "text": "string"
290
+ },
291
+ "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
292
+ "fieldName": "error"
293
+ },
294
+ {
295
+ "name": "horizontal",
179
296
  "type": {
180
297
  "text": "boolean"
181
298
  },
182
- "description": "If declared, the fullscreen headline renders using the larger display heading style.",
183
- "default": "false",
184
- "fieldName": "large"
299
+ "description": "If set, checkboxes will be aligned horizontally.",
300
+ "fieldName": "horizontal"
185
301
  },
186
302
  {
187
- "name": "showfooter",
303
+ "name": "novalidate",
188
304
  "type": {
189
305
  "text": "boolean"
190
306
  },
191
- "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
192
- "fieldName": "showFooter"
193
- }
194
- ],
195
- "superclass": {
196
- "name": "LitElement",
197
- "package": "lit"
198
- },
199
- "tagName": "auro-bibtemplate",
200
- "customElement": true
201
- }
202
- ],
203
- "exports": [
204
- {
205
- "kind": "js",
206
- "name": "AuroBibtemplate",
207
- "declaration": {
208
- "name": "AuroBibtemplate",
209
- "module": "components/bibtemplate/src/auro-bibtemplate.js"
210
- }
211
- }
212
- ]
213
- },
214
- {
215
- "kind": "javascript-module",
216
- "path": "components/bibtemplate/src/buttonVersion.js",
217
- "declarations": [],
218
- "exports": [
219
- {
220
- "kind": "js",
221
- "name": "default",
222
- "declaration": {
223
- "name": "12.3.2",
224
- "module": "components/bibtemplate/src/buttonVersion.js"
225
- }
226
- }
227
- ]
228
- },
229
- {
230
- "kind": "javascript-module",
231
- "path": "components/bibtemplate/src/headerVersion.js",
232
- "declarations": [],
233
- "exports": [
234
- {
235
- "kind": "js",
236
- "name": "default",
237
- "declaration": {
238
- "name": "5.0.1",
239
- "module": "components/bibtemplate/src/headerVersion.js"
240
- }
241
- }
242
- ]
243
- },
244
- {
245
- "kind": "javascript-module",
246
- "path": "components/bibtemplate/src/iconVersion.js",
247
- "declarations": [],
248
- "exports": [
249
- {
250
- "kind": "js",
251
- "name": "default",
252
- "declaration": {
253
- "name": "9.2.0",
254
- "module": "components/bibtemplate/src/iconVersion.js"
255
- }
307
+ "description": "If set, disables auto-validation on blur.",
308
+ "fieldName": "noValidate"
309
+ },
310
+ {
311
+ "name": "ondark",
312
+ "type": {
313
+ "text": "boolean"
314
+ },
315
+ "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
316
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
317
+ "fieldName": "onDark"
318
+ },
319
+ {
320
+ "name": "required",
321
+ "type": {
322
+ "text": "boolean"
323
+ },
324
+ "description": "Populates the `required` attribute on the element. Used for client-side validation.",
325
+ "fieldName": "required"
326
+ },
327
+ {
328
+ "name": "setcustomvalidity",
329
+ "type": {
330
+ "text": "string"
331
+ },
332
+ "description": "Sets a custom help text message to display for all validityStates.",
333
+ "fieldName": "setCustomValidity"
334
+ },
335
+ {
336
+ "name": "setcustomvaliditycustomerror",
337
+ "type": {
338
+ "text": "string"
339
+ },
340
+ "description": "Custom help text message to display when validity = `customError`.",
341
+ "fieldName": "setCustomValidityCustomError"
342
+ },
343
+ {
344
+ "name": "setcustomvalidityvaluemissing",
345
+ "type": {
346
+ "text": "string"
347
+ },
348
+ "description": "Custom help text message to display when validity = `valueMissing`.",
349
+ "fieldName": "setCustomValidityValueMissing"
350
+ },
351
+ {
352
+ "name": "validity",
353
+ "type": {
354
+ "text": "string"
355
+ },
356
+ "description": "Specifies the `validityState` this element is in.",
357
+ "fieldName": "validity"
358
+ }
359
+ ],
360
+ "superclass": {
361
+ "name": "LitElement",
362
+ "package": "lit"
363
+ },
364
+ "tagName": "auro-checkbox-group",
365
+ "customElement": true
256
366
  }
257
- ]
258
- },
259
- {
260
- "kind": "javascript-module",
261
- "path": "components/bibtemplate/src/index.js",
262
- "declarations": [],
367
+ ],
263
368
  "exports": [
264
369
  {
265
370
  "kind": "js",
266
- "name": "AuroBibtemplate",
371
+ "name": "AuroCheckboxGroup",
267
372
  "declaration": {
268
- "name": "AuroBibtemplate",
269
- "module": "components/bibtemplate/src/index.js"
373
+ "name": "AuroCheckboxGroup",
374
+ "module": "components/checkbox/src/auro-checkbox-group.js"
270
375
  }
271
376
  }
272
377
  ]
273
378
  },
274
379
  {
275
380
  "kind": "javascript-module",
276
- "path": "components/bibtemplate/src/registered.js",
277
- "declarations": [],
278
- "exports": []
279
- },
280
- {
281
- "kind": "javascript-module",
282
- "path": "components/checkbox/src/auro-checkbox-group.js",
381
+ "path": "components/checkbox/src/auro-checkbox.js",
283
382
  "declarations": [
284
383
  {
285
384
  "kind": "class",
286
- "description": "The `auro-checkbox-group` element is a wrapper for `auro-checkbox` elements.",
287
- "name": "AuroCheckboxGroup",
385
+ "description": "The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.",
386
+ "name": "AuroCheckbox",
288
387
  "cssParts": [
289
388
  {
290
- "description": "Apply css to the help text element that displays helper or error messages.",
291
- "name": "helpText"
292
- }
293
- ],
294
- "slots": [
295
- {
296
- "description": "Allows for the legend to be overridden.",
297
- "name": "legend"
389
+ "description": "apply css to a specific checkbox.",
390
+ "name": "checkbox"
298
391
  },
299
392
  {
300
- "description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
301
- "name": "optionalLabel"
393
+ "description": "apply css to a specific checkbox's input.",
394
+ "name": "checkbox-input"
302
395
  },
303
396
  {
304
- "description": "Allows for the helper text to be overridden.",
305
- "name": "helpText"
306
- },
397
+ "description": "apply css to a specific checkbox's label.",
398
+ "name": "checkbox-label"
399
+ }
400
+ ],
401
+ "slots": [
307
402
  {
308
- "description": "The default slot for the checkbox items.",
403
+ "description": "The default slot for the checkbox label.",
309
404
  "name": "default"
310
405
  }
311
406
  ],
@@ -321,8 +416,8 @@
321
416
  "parameters": [
322
417
  {
323
418
  "name": "name",
324
- "default": "\"auro-checkbox-group\"",
325
- "description": "The name of the element that you want to register.",
419
+ "default": "\"auro-checkbox\"",
420
+ "description": "The name of element that you want to register to.",
326
421
  "optional": true,
327
422
  "type": {
328
423
  "text": "string"
@@ -333,24 +428,37 @@
333
428
  },
334
429
  {
335
430
  "kind": "method",
336
- "name": "handleValueUpdate",
431
+ "name": "handleChange",
337
432
  "parameters": [
338
433
  {
339
- "name": "value",
340
- "description": "The value of the checkbox.",
434
+ "name": "event",
435
+ "description": "The change event from the checkbox input.",
341
436
  "type": {
342
- "text": "String"
437
+ "text": "Event"
343
438
  }
344
- },
439
+ }
440
+ ],
441
+ "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.",
442
+ "privacy": "private",
443
+ "return": {
444
+ "type": {
445
+ "text": "void"
446
+ }
447
+ }
448
+ },
449
+ {
450
+ "kind": "method",
451
+ "name": "handleInput",
452
+ "parameters": [
345
453
  {
346
- "name": "selected",
347
- "description": "The checked state of the checkbox.",
454
+ "name": "event",
455
+ "description": "The input event from the checkbox input.",
348
456
  "type": {
349
- "text": "Boolean"
457
+ "text": "Event"
350
458
  }
351
459
  }
352
460
  ],
353
- "description": "Helper method to handle checkbox value changing.",
461
+ "description": "Handles the input event for the checkbox input.\nUpdates the checked state and dispatches a custom 'auroCheckbox-input' event.",
354
462
  "privacy": "private",
355
463
  "return": {
356
464
  "type": {
@@ -360,8 +468,8 @@
360
468
  },
361
469
  {
362
470
  "kind": "method",
363
- "name": "handlePreselectedItems",
364
- "description": "Helper method that handles the state of preselected checkboxes.",
471
+ "name": "handleFocusin",
472
+ "description": "Function to support",
365
473
  "privacy": "private",
366
474
  "return": {
367
475
  "type": {
@@ -371,12 +479,12 @@
371
479
  },
372
480
  {
373
481
  "kind": "method",
374
- "name": "handleItems",
375
- "description": "Helper method that handles the state of checkboxes.",
482
+ "name": "generateIconHtml",
483
+ "description": "Function to generate checkmark svg.",
376
484
  "privacy": "private",
377
485
  "return": {
378
486
  "type": {
379
- "text": "void"
487
+ "text": "HTMLElement"
380
488
  }
381
489
  }
382
490
  },
@@ -392,19 +500,34 @@
392
500
  },
393
501
  {
394
502
  "kind": "method",
395
- "name": "validate",
503
+ "name": "updateAriaLabel",
504
+ "description": "Updates the aria-label based on slot content.",
505
+ "privacy": "private",
506
+ "return": {
507
+ "type": {
508
+ "text": "void"
509
+ }
510
+ }
511
+ },
512
+ {
513
+ "kind": "method",
514
+ "name": "handleKeyDown",
396
515
  "parameters": [
397
516
  {
398
- "name": "force",
399
- "default": "false",
400
- "description": "Whether to force validation.",
401
- "optional": true,
517
+ "name": "event",
518
+ "description": "The keydown event from the checkbox input.",
402
519
  "type": {
403
- "text": "boolean"
520
+ "text": "KeyboardEvent"
404
521
  }
405
522
  }
406
523
  ],
407
- "description": "Validates value."
524
+ "description": "Handles keydown event to toggle the checkbox with Space key.",
525
+ "privacy": "private",
526
+ "return": {
527
+ "type": {
528
+ "text": "void"
529
+ }
530
+ }
408
531
  },
409
532
  {
410
533
  "kind": "field",
@@ -420,123 +543,172 @@
420
543
  },
421
544
  {
422
545
  "kind": "field",
423
- "name": "disabled",
546
+ "name": "checked",
424
547
  "privacy": "public",
425
548
  "type": {
426
549
  "text": "boolean"
427
550
  },
428
- "description": "If set, disables the checkbox group.",
429
- "attribute": "disabled",
551
+ "description": "If set to true, the checkbox will be filled with a checkmark.",
552
+ "attribute": "checked",
430
553
  "reflects": true
431
554
  },
432
555
  {
433
556
  "kind": "field",
434
- "name": "error",
557
+ "name": "disabled",
435
558
  "privacy": "public",
436
559
  "type": {
437
- "text": "string"
560
+ "text": "boolean"
438
561
  },
439
- "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
440
- "attribute": "error",
562
+ "description": "If set to true, the checkbox will not be clickable.",
563
+ "attribute": "disabled",
441
564
  "reflects": true
442
565
  },
443
566
  {
444
567
  "kind": "field",
445
- "name": "horizontal",
568
+ "name": "error",
446
569
  "privacy": "public",
447
570
  "type": {
448
571
  "text": "boolean"
449
572
  },
450
- "description": "If set, checkboxes will be aligned horizontally.",
451
- "attribute": "horizontal",
573
+ "description": "If set to true, the checkbox will be displayed with an error state.",
574
+ "attribute": "error",
452
575
  "reflects": true
453
576
  },
454
577
  {
455
578
  "kind": "field",
456
- "name": "noValidate",
579
+ "name": "id",
457
580
  "privacy": "public",
458
581
  "type": {
459
- "text": "boolean"
582
+ "text": "string"
460
583
  },
461
- "description": "If set, disables auto-validation on blur.",
462
- "attribute": "novalidate",
584
+ "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
585
+ "attribute": "id",
463
586
  "reflects": true
464
587
  },
465
588
  {
466
589
  "kind": "field",
467
- "name": "onDark",
590
+ "name": "inputId",
591
+ "privacy": "private",
592
+ "type": {
593
+ "text": "string"
594
+ },
595
+ "description": "The id for input node."
596
+ },
597
+ {
598
+ "kind": "field",
599
+ "name": "name",
600
+ "privacy": "public",
601
+ "type": {
602
+ "text": "string"
603
+ },
604
+ "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
605
+ "attribute": "name"
606
+ },
607
+ {
608
+ "kind": "field",
609
+ "name": "onDark",
468
610
  "privacy": "public",
469
611
  "type": {
470
612
  "text": "boolean"
471
613
  },
472
614
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
615
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
473
616
  "attribute": "ondark",
474
617
  "reflects": true
475
618
  },
476
619
  {
477
620
  "kind": "field",
478
- "name": "required",
479
- "privacy": "public",
621
+ "name": "touched",
622
+ "privacy": "private",
480
623
  "type": {
481
624
  "text": "boolean"
482
625
  },
483
- "description": "Populates the `required` attribute on the element. Used for client-side validation.",
484
- "attribute": "required",
485
- "reflects": true
626
+ "description": "Indicates whether the checkbox has been interacted with."
486
627
  },
487
628
  {
488
629
  "kind": "field",
489
- "name": "setCustomValidity",
630
+ "name": "value",
490
631
  "privacy": "public",
491
632
  "type": {
492
633
  "text": "string"
493
634
  },
494
- "description": "Sets a custom help text message to display for all validityStates.",
495
- "attribute": "setcustomvalidity"
635
+ "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
636
+ "attribute": "value"
496
637
  },
497
638
  {
498
639
  "kind": "field",
499
- "name": "setCustomValidityCustomError",
500
- "privacy": "public",
640
+ "name": "tabIndex",
641
+ "privacy": "private",
642
+ "type": {
643
+ "text": "number"
644
+ },
645
+ "description": "The tabindex attribute for the checkbox.",
646
+ "attribute": "tabindex",
647
+ "reflects": true
648
+ },
649
+ {
650
+ "kind": "field",
651
+ "name": "ariaChecked",
652
+ "privacy": "private",
501
653
  "type": {
502
654
  "text": "string"
503
655
  },
504
- "description": "Custom help text message to display when validity = `customError`.",
505
- "attribute": "setcustomvaliditycustomerror"
656
+ "description": "The aria-checked attribute for the checkbox.",
657
+ "attribute": "aria-checked",
658
+ "reflects": true
506
659
  },
507
660
  {
508
661
  "kind": "field",
509
- "name": "setCustomValidityValueMissing",
510
- "privacy": "public",
662
+ "name": "ariaDisabled",
663
+ "privacy": "private",
511
664
  "type": {
512
665
  "text": "string"
513
666
  },
514
- "description": "Custom help text message to display when validity = `valueMissing`.",
515
- "attribute": "setcustomvalidityvaluemissing"
667
+ "description": "The aria-disabled attribute for the checkbox.",
668
+ "attribute": "aria-disabled",
669
+ "reflects": true
516
670
  },
517
671
  {
518
672
  "kind": "field",
519
- "name": "validity",
520
- "privacy": "public",
673
+ "name": "role",
674
+ "privacy": "private",
521
675
  "type": {
522
676
  "text": "string"
523
677
  },
524
- "description": "Specifies the `validityState` this element is in.",
525
- "attribute": "validity",
678
+ "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
679
+ "attribute": "role",
526
680
  "reflects": true
527
681
  }
528
682
  ],
529
683
  "events": [
530
684
  {
531
- "name": "input",
685
+ "name": "auroCheckbox-input",
532
686
  "type": {
533
687
  "text": "CustomEvent"
534
688
  },
535
- "description": "Notifies when the group's value changes due to a checkbox selection being added or removed."
689
+ "description": "(Deprecated) Notifies when the checked value is changed by user interaction."
536
690
  },
537
691
  {
538
- "description": "Notifies that the `validity` and `errorMessage` values have changed.",
539
- "name": "auroFormElement-validated"
692
+ "name": "auroCheckbox-focusin",
693
+ "type": {
694
+ "text": "CustomEvent"
695
+ },
696
+ "description": "Notifies when the checkbox receives focus."
697
+ },
698
+ {
699
+ "name": "auroCheckbox-focusout",
700
+ "type": {
701
+ "text": "CustomEvent"
702
+ },
703
+ "description": "Notifies when the checkbox loses focus."
704
+ },
705
+ {
706
+ "description": "(Deprecated) Notifies when checked value is changed.",
707
+ "name": "change"
708
+ },
709
+ {
710
+ "description": "Notifies when when checked value is changed by user's interface.",
711
+ "name": "input"
540
712
  }
541
713
  ],
542
714
  "attributes": [
@@ -549,37 +721,45 @@
549
721
  "default": "'default'",
550
722
  "fieldName": "appearance"
551
723
  },
724
+ {
725
+ "name": "checked",
726
+ "type": {
727
+ "text": "boolean"
728
+ },
729
+ "description": "If set to true, the checkbox will be filled with a checkmark.",
730
+ "fieldName": "checked"
731
+ },
552
732
  {
553
733
  "name": "disabled",
554
734
  "type": {
555
735
  "text": "boolean"
556
736
  },
557
- "description": "If set, disables the checkbox group.",
737
+ "description": "If set to true, the checkbox will not be clickable.",
558
738
  "fieldName": "disabled"
559
739
  },
560
740
  {
561
741
  "name": "error",
562
742
  "type": {
563
- "text": "string"
743
+ "text": "boolean"
564
744
  },
565
- "description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
745
+ "description": "If set to true, the checkbox will be displayed with an error state.",
566
746
  "fieldName": "error"
567
747
  },
568
748
  {
569
- "name": "horizontal",
749
+ "name": "id",
570
750
  "type": {
571
- "text": "boolean"
751
+ "text": "string"
572
752
  },
573
- "description": "If set, checkboxes will be aligned horizontally.",
574
- "fieldName": "horizontal"
753
+ "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
754
+ "fieldName": "id"
575
755
  },
576
756
  {
577
- "name": "novalidate",
757
+ "name": "name",
578
758
  "type": {
579
- "text": "boolean"
759
+ "text": "string"
580
760
  },
581
- "description": "If set, disables auto-validation on blur.",
582
- "fieldName": "noValidate"
761
+ "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
762
+ "fieldName": "name"
583
763
  },
584
764
  {
585
765
  "name": "ondark",
@@ -587,101 +767,135 @@
587
767
  "text": "boolean"
588
768
  },
589
769
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
770
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
590
771
  "fieldName": "onDark"
591
772
  },
592
773
  {
593
- "name": "required",
774
+ "name": "value",
594
775
  "type": {
595
- "text": "boolean"
776
+ "text": "string"
596
777
  },
597
- "description": "Populates the `required` attribute on the element. Used for client-side validation.",
598
- "fieldName": "required"
778
+ "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
779
+ "fieldName": "value"
599
780
  },
600
781
  {
601
- "name": "setcustomvalidity",
782
+ "name": "tabindex",
602
783
  "type": {
603
- "text": "string"
784
+ "text": "number"
604
785
  },
605
- "description": "Sets a custom help text message to display for all validityStates.",
606
- "fieldName": "setCustomValidity"
786
+ "description": "The tabindex attribute for the checkbox.",
787
+ "fieldName": "tabIndex"
607
788
  },
608
789
  {
609
- "name": "setcustomvaliditycustomerror",
790
+ "name": "aria-checked",
610
791
  "type": {
611
792
  "text": "string"
612
793
  },
613
- "description": "Custom help text message to display when validity = `customError`.",
614
- "fieldName": "setCustomValidityCustomError"
794
+ "description": "The aria-checked attribute for the checkbox.",
795
+ "fieldName": "ariaChecked"
615
796
  },
616
797
  {
617
- "name": "setcustomvalidityvaluemissing",
798
+ "name": "aria-disabled",
618
799
  "type": {
619
800
  "text": "string"
620
801
  },
621
- "description": "Custom help text message to display when validity = `valueMissing`.",
622
- "fieldName": "setCustomValidityValueMissing"
802
+ "description": "The aria-disabled attribute for the checkbox.",
803
+ "fieldName": "ariaDisabled"
623
804
  },
624
805
  {
625
- "name": "validity",
806
+ "name": "role",
626
807
  "type": {
627
808
  "text": "string"
628
809
  },
629
- "description": "Specifies the `validityState` this element is in.",
630
- "fieldName": "validity"
810
+ "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
811
+ "fieldName": "role"
631
812
  }
632
813
  ],
633
814
  "superclass": {
634
815
  "name": "LitElement",
635
816
  "package": "lit"
636
817
  },
637
- "tagName": "auro-checkbox-group",
818
+ "tagName": "auro-checkbox",
638
819
  "customElement": true
639
820
  }
640
821
  ],
641
822
  "exports": [
823
+ {
824
+ "kind": "js",
825
+ "name": "AuroCheckbox",
826
+ "declaration": {
827
+ "name": "AuroCheckbox",
828
+ "module": "components/checkbox/src/auro-checkbox.js"
829
+ }
830
+ }
831
+ ]
832
+ },
833
+ {
834
+ "kind": "javascript-module",
835
+ "path": "components/checkbox/src/index.js",
836
+ "declarations": [],
837
+ "exports": [
838
+ {
839
+ "kind": "js",
840
+ "name": "AuroCheckbox",
841
+ "declaration": {
842
+ "name": "AuroCheckbox",
843
+ "module": "components/checkbox/src/index.js"
844
+ }
845
+ },
642
846
  {
643
847
  "kind": "js",
644
848
  "name": "AuroCheckboxGroup",
645
849
  "declaration": {
646
850
  "name": "AuroCheckboxGroup",
647
- "module": "components/checkbox/src/auro-checkbox-group.js"
851
+ "module": "components/checkbox/src/index.js"
648
852
  }
649
853
  }
650
854
  ]
651
855
  },
652
856
  {
653
857
  "kind": "javascript-module",
654
- "path": "components/checkbox/src/auro-checkbox.js",
858
+ "path": "components/checkbox/src/registered.js",
859
+ "declarations": [],
860
+ "exports": []
861
+ },
862
+ {
863
+ "kind": "javascript-module",
864
+ "path": "components/bibtemplate/src/auro-bibtemplate.js",
655
865
  "declarations": [
656
866
  {
657
867
  "kind": "class",
658
- "description": "The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.",
659
- "name": "AuroCheckbox",
868
+ "description": "The `auro-bibtemplate` element provides users a template for creating modal dialog elements.",
869
+ "name": "AuroBibtemplate",
660
870
  "cssParts": [
661
871
  {
662
- "description": "apply css to a specific checkbox.",
663
- "name": "checkbox"
664
- },
665
- {
666
- "description": "apply css to a specific checkbox's input.",
667
- "name": "checkbox-input"
668
- },
669
- {
670
- "description": "apply css to a specific checkbox's label.",
671
- "name": "checkbox-label"
872
+ "description": "The outermost bibtemplate container element.",
873
+ "name": "bibtemplate"
672
874
  }
673
875
  ],
674
876
  "slots": [
675
877
  {
676
- "description": "The default slot for the checkbox label.",
878
+ "description": "The default slot for the main content.",
677
879
  "name": "default"
880
+ },
881
+ {
882
+ "description": "Slot for the header content.",
883
+ "name": "header"
884
+ },
885
+ {
886
+ "description": "Slot for the subheader content.",
887
+ "name": "subheader"
888
+ },
889
+ {
890
+ "description": "Slot for the footer content.",
891
+ "name": "footer"
892
+ },
893
+ {
894
+ "description": "Slot for the close button aria-label.",
895
+ "name": "ariaLabel.close"
678
896
  }
679
897
  ],
680
898
  "members": [
681
- {
682
- "kind": "method",
683
- "name": "_initializeDefaults"
684
- },
685
899
  {
686
900
  "kind": "method",
687
901
  "name": "register",
@@ -689,7 +903,7 @@
689
903
  "parameters": [
690
904
  {
691
905
  "name": "name",
692
- "default": "\"auro-checkbox\"",
906
+ "default": "\"auro-bibtemplate\"",
693
907
  "description": "The name of element that you want to register to.",
694
908
  "optional": true,
695
909
  "type": {
@@ -701,18 +915,17 @@
701
915
  },
702
916
  {
703
917
  "kind": "method",
704
- "name": "handleChange",
918
+ "name": "preventBodyScroll",
705
919
  "parameters": [
706
920
  {
707
921
  "name": "event",
708
- "description": "The change event from the checkbox input.",
922
+ "description": "The touchmove event.",
709
923
  "type": {
710
924
  "text": "Event"
711
925
  }
712
926
  }
713
927
  ],
714
- "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.",
715
- "privacy": "private",
928
+ "description": "Prevents scrolling of the body when touching empty areas of the component.",
716
929
  "return": {
717
930
  "type": {
718
931
  "text": "void"
@@ -721,81 +934,22 @@
721
934
  },
722
935
  {
723
936
  "kind": "method",
724
- "name": "handleInput",
725
- "parameters": [
726
- {
727
- "name": "event",
728
- "description": "The input event from the checkbox input.",
729
- "type": {
730
- "text": "Event"
731
- }
732
- }
733
- ],
734
- "description": "Handles the input event for the checkbox input.\nUpdates the checked state and dispatches a custom 'auroCheckbox-input' event.",
735
- "privacy": "private",
736
- "return": {
737
- "type": {
738
- "text": "void"
739
- }
740
- }
741
- },
742
- {
743
- "kind": "method",
744
- "name": "handleFocusin",
745
- "description": "Function to support",
746
- "privacy": "private",
747
- "return": {
748
- "type": {
749
- "text": "void"
937
+ "name": "focusCloseButton",
938
+ "description": "Focuses the close button inside the bibtemplate's shadow DOM.\nUsed by parent components to set initial focus when the fullscreen dialog opens.",
939
+ "return": {
940
+ "type": {
941
+ "text": "void"
750
942
  }
751
943
  }
752
944
  },
753
945
  {
754
946
  "kind": "method",
755
- "name": "generateIconHtml",
756
- "description": "Function to generate checkmark svg.",
757
- "privacy": "private",
758
- "return": {
759
- "type": {
760
- "text": "HTMLElement"
761
- }
762
- }
763
- },
764
- {
765
- "kind": "method",
766
- "name": "reset",
767
- "description": "Resets component to initial state.",
768
- "return": {
769
- "type": {
770
- "text": "void"
771
- }
772
- }
773
- },
774
- {
775
- "kind": "method",
776
- "name": "updateAriaLabel",
777
- "description": "Updates the aria-label based on slot content.",
778
- "privacy": "private",
779
- "return": {
780
- "type": {
781
- "text": "void"
782
- }
783
- }
947
+ "name": "onCloseButtonClick"
784
948
  },
785
949
  {
786
950
  "kind": "method",
787
- "name": "handleKeyDown",
788
- "parameters": [
789
- {
790
- "name": "event",
791
- "description": "The keydown event from the checkbox input.",
792
- "type": {
793
- "text": "KeyboardEvent"
794
- }
795
- }
796
- ],
797
- "description": "Handles keydown event to toggle the checkbox with Space key.",
798
- "privacy": "private",
951
+ "name": "exposeCssParts",
952
+ "description": "Exposes CSS parts for styling from parent components.",
799
953
  "return": {
800
954
  "type": {
801
955
  "text": "void"
@@ -804,329 +958,179 @@
804
958
  },
805
959
  {
806
960
  "kind": "field",
807
- "name": "appearance",
808
- "privacy": "public",
809
- "type": {
810
- "text": "'default' | 'inverse'"
811
- },
812
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
813
- "default": "'default'",
814
- "attribute": "appearance",
815
- "reflects": true
816
- },
817
- {
818
- "kind": "field",
819
- "name": "checked",
820
- "privacy": "public",
821
- "type": {
822
- "text": "boolean"
823
- },
824
- "description": "If set to true, the checkbox will be filled with a checkmark.",
825
- "attribute": "checked",
826
- "reflects": true
827
- },
828
- {
829
- "kind": "field",
830
- "name": "disabled",
831
- "privacy": "public",
832
- "type": {
833
- "text": "boolean"
834
- },
835
- "description": "If set to true, the checkbox will not be clickable.",
836
- "attribute": "disabled",
837
- "reflects": true
838
- },
839
- {
840
- "kind": "field",
841
- "name": "error",
961
+ "name": "large",
842
962
  "privacy": "public",
843
963
  "type": {
844
964
  "text": "boolean"
845
965
  },
846
- "description": "If set to true, the checkbox will be displayed with an error state.",
847
- "attribute": "error",
966
+ "description": "If declared, the fullscreen headline renders using the larger display heading style.",
967
+ "default": "false",
968
+ "attribute": "large",
848
969
  "reflects": true
849
970
  },
850
971
  {
851
972
  "kind": "field",
852
- "name": "id",
853
- "privacy": "public",
854
- "type": {
855
- "text": "string"
856
- },
857
- "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
858
- "attribute": "id",
859
- "reflects": true
973
+ "name": "iconTag",
974
+ "privacy": "private"
860
975
  },
861
976
  {
862
977
  "kind": "field",
863
- "name": "inputId",
864
- "privacy": "private",
865
- "type": {
866
- "text": "string"
867
- },
868
- "description": "The id for input node."
978
+ "name": "headerTag",
979
+ "privacy": "private"
869
980
  },
870
981
  {
871
982
  "kind": "field",
872
- "name": "name",
873
- "privacy": "public",
874
- "type": {
875
- "text": "string"
876
- },
877
- "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
878
- "attribute": "name"
983
+ "name": "buttonTag",
984
+ "privacy": "private"
879
985
  },
880
986
  {
881
987
  "kind": "field",
882
- "name": "onDark",
988
+ "name": "isFullscreen",
883
989
  "privacy": "public",
884
990
  "type": {
885
991
  "text": "boolean"
886
992
  },
887
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
888
- "attribute": "ondark",
993
+ "description": "If declared, the bibtemplate renders in fullscreen mode, exposing the header, subheader, and footer regions.",
994
+ "attribute": "isfullscreen",
889
995
  "reflects": true
890
996
  },
891
997
  {
892
998
  "kind": "field",
893
- "name": "touched",
894
- "privacy": "private",
895
- "type": {
896
- "text": "boolean"
897
- },
898
- "description": "Indicates whether the checkbox has been interacted with."
899
- },
900
- {
901
- "kind": "field",
902
- "name": "value",
999
+ "name": "showFooter",
903
1000
  "privacy": "public",
904
1001
  "type": {
905
- "text": "string"
906
- },
907
- "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
908
- "attribute": "value"
909
- },
910
- {
911
- "kind": "field",
912
- "name": "tabIndex",
913
- "privacy": "private",
914
- "type": {
915
- "text": "number"
916
- },
917
- "description": "The tabindex attribute for the checkbox.",
918
- "attribute": "tabindex",
919
- "reflects": true
920
- },
921
- {
922
- "kind": "field",
923
- "name": "ariaChecked",
924
- "privacy": "private",
925
- "type": {
926
- "text": "string"
927
- },
928
- "description": "The aria-checked attribute for the checkbox.",
929
- "attribute": "aria-checked",
930
- "reflects": true
931
- },
932
- {
933
- "kind": "field",
934
- "name": "ariaDisabled",
935
- "privacy": "private",
936
- "type": {
937
- "text": "string"
938
- },
939
- "description": "The aria-disabled attribute for the checkbox.",
940
- "attribute": "aria-disabled",
941
- "reflects": true
942
- },
943
- {
944
- "kind": "field",
945
- "name": "role",
946
- "privacy": "private",
947
- "type": {
948
- "text": "string"
1002
+ "text": "boolean"
949
1003
  },
950
- "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
951
- "attribute": "role",
1004
+ "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
1005
+ "attribute": "showfooter",
952
1006
  "reflects": true
953
1007
  }
954
1008
  ],
955
1009
  "events": [
956
1010
  {
957
- "name": "auroCheckbox-input",
958
- "type": {
959
- "text": "CustomEvent"
960
- },
961
- "description": "(Deprecated) Notifies when the checked value is changed by user interaction."
962
- },
963
- {
964
- "name": "auroCheckbox-focusin",
1011
+ "name": "close-click",
965
1012
  "type": {
966
- "text": "CustomEvent"
1013
+ "text": "Event"
967
1014
  },
968
- "description": "Notifies when the checkbox receives focus."
1015
+ "description": "Notifies when the close button is clicked."
969
1016
  },
970
1017
  {
971
- "name": "auroCheckbox-focusout",
1018
+ "name": "auro-bibtemplate-connected",
972
1019
  "type": {
973
1020
  "text": "CustomEvent"
974
1021
  },
975
- "description": "Notifies when the checkbox loses focus."
976
- },
977
- {
978
- "description": "(Deprecated) Notifies when checked value is changed.",
979
- "name": "change"
980
- },
981
- {
982
- "description": "Notifies when when checked value is changed by user's interface.",
983
- "name": "input"
1022
+ "description": "Notifies that the bibtemplate has connected to the DOM, passing a reference to the element in the event detail."
984
1023
  }
985
1024
  ],
986
1025
  "attributes": [
987
1026
  {
988
- "name": "appearance",
989
- "type": {
990
- "text": "'default' | 'inverse'"
991
- },
992
- "description": "Defines whether the component will be on lighter or darker backgrounds.",
993
- "default": "'default'",
994
- "fieldName": "appearance"
995
- },
996
- {
997
- "name": "checked",
998
- "type": {
999
- "text": "boolean"
1000
- },
1001
- "description": "If set to true, the checkbox will be filled with a checkmark.",
1002
- "fieldName": "checked"
1003
- },
1004
- {
1005
- "name": "disabled",
1027
+ "name": "isfullscreen",
1006
1028
  "type": {
1007
1029
  "text": "boolean"
1008
1030
  },
1009
- "description": "If set to true, the checkbox will not be clickable.",
1010
- "fieldName": "disabled"
1031
+ "description": "If declared, the bibtemplate renders in fullscreen mode, exposing the header, subheader, and footer regions.",
1032
+ "fieldName": "isFullscreen"
1011
1033
  },
1012
1034
  {
1013
- "name": "error",
1035
+ "name": "large",
1014
1036
  "type": {
1015
1037
  "text": "boolean"
1016
1038
  },
1017
- "description": "If set to true, the checkbox will be displayed with an error state.",
1018
- "fieldName": "error"
1019
- },
1020
- {
1021
- "name": "id",
1022
- "type": {
1023
- "text": "string"
1024
- },
1025
- "description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
1026
- "fieldName": "id"
1027
- },
1028
- {
1029
- "name": "name",
1030
- "type": {
1031
- "text": "string"
1032
- },
1033
- "description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
1034
- "fieldName": "name"
1039
+ "description": "If declared, the fullscreen headline renders using the larger display heading style.",
1040
+ "default": "false",
1041
+ "fieldName": "large"
1035
1042
  },
1036
1043
  {
1037
- "name": "ondark",
1044
+ "name": "showfooter",
1038
1045
  "type": {
1039
1046
  "text": "boolean"
1040
1047
  },
1041
- "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1042
- "fieldName": "onDark"
1043
- },
1044
- {
1045
- "name": "value",
1046
- "type": {
1047
- "text": "string"
1048
- },
1049
- "description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
1050
- "fieldName": "value"
1051
- },
1052
- {
1053
- "name": "tabindex",
1054
- "type": {
1055
- "text": "number"
1056
- },
1057
- "description": "The tabindex attribute for the checkbox.",
1058
- "fieldName": "tabIndex"
1059
- },
1060
- {
1061
- "name": "aria-checked",
1062
- "type": {
1063
- "text": "string"
1064
- },
1065
- "description": "The aria-checked attribute for the checkbox.",
1066
- "fieldName": "ariaChecked"
1067
- },
1068
- {
1069
- "name": "aria-disabled",
1070
- "type": {
1071
- "text": "string"
1072
- },
1073
- "description": "The aria-disabled attribute for the checkbox.",
1074
- "fieldName": "ariaDisabled"
1075
- },
1076
- {
1077
- "name": "role",
1078
- "type": {
1079
- "text": "string"
1080
- },
1081
- "description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
1082
- "fieldName": "role"
1048
+ "description": "If declared, the footer slot will be rendered even when not in fullscreen mode.",
1049
+ "fieldName": "showFooter"
1083
1050
  }
1084
1051
  ],
1085
1052
  "superclass": {
1086
1053
  "name": "LitElement",
1087
1054
  "package": "lit"
1088
1055
  },
1089
- "tagName": "auro-checkbox",
1056
+ "tagName": "auro-bibtemplate",
1090
1057
  "customElement": true
1091
1058
  }
1092
1059
  ],
1093
1060
  "exports": [
1094
1061
  {
1095
1062
  "kind": "js",
1096
- "name": "AuroCheckbox",
1063
+ "name": "AuroBibtemplate",
1097
1064
  "declaration": {
1098
- "name": "AuroCheckbox",
1099
- "module": "components/checkbox/src/auro-checkbox.js"
1065
+ "name": "AuroBibtemplate",
1066
+ "module": "components/bibtemplate/src/auro-bibtemplate.js"
1100
1067
  }
1101
1068
  }
1102
1069
  ]
1103
1070
  },
1104
1071
  {
1105
1072
  "kind": "javascript-module",
1106
- "path": "components/checkbox/src/index.js",
1073
+ "path": "components/bibtemplate/src/buttonVersion.js",
1107
1074
  "declarations": [],
1108
1075
  "exports": [
1109
1076
  {
1110
1077
  "kind": "js",
1111
- "name": "AuroCheckbox",
1078
+ "name": "default",
1112
1079
  "declaration": {
1113
- "name": "AuroCheckbox",
1114
- "module": "components/checkbox/src/index.js"
1080
+ "name": "12.3.2",
1081
+ "module": "components/bibtemplate/src/buttonVersion.js"
1115
1082
  }
1116
- },
1083
+ }
1084
+ ]
1085
+ },
1086
+ {
1087
+ "kind": "javascript-module",
1088
+ "path": "components/bibtemplate/src/headerVersion.js",
1089
+ "declarations": [],
1090
+ "exports": [
1117
1091
  {
1118
1092
  "kind": "js",
1119
- "name": "AuroCheckboxGroup",
1093
+ "name": "default",
1120
1094
  "declaration": {
1121
- "name": "AuroCheckboxGroup",
1122
- "module": "components/checkbox/src/index.js"
1095
+ "name": "5.0.1",
1096
+ "module": "components/bibtemplate/src/headerVersion.js"
1123
1097
  }
1124
1098
  }
1125
1099
  ]
1126
1100
  },
1127
1101
  {
1128
1102
  "kind": "javascript-module",
1129
- "path": "components/checkbox/src/registered.js",
1103
+ "path": "components/bibtemplate/src/iconVersion.js",
1104
+ "declarations": [],
1105
+ "exports": [
1106
+ {
1107
+ "kind": "js",
1108
+ "name": "default",
1109
+ "declaration": {
1110
+ "name": "9.2.0",
1111
+ "module": "components/bibtemplate/src/iconVersion.js"
1112
+ }
1113
+ }
1114
+ ]
1115
+ },
1116
+ {
1117
+ "kind": "javascript-module",
1118
+ "path": "components/bibtemplate/src/index.js",
1119
+ "declarations": [],
1120
+ "exports": [
1121
+ {
1122
+ "kind": "js",
1123
+ "name": "AuroBibtemplate",
1124
+ "declaration": {
1125
+ "name": "AuroBibtemplate",
1126
+ "module": "components/bibtemplate/src/index.js"
1127
+ }
1128
+ }
1129
+ ]
1130
+ },
1131
+ {
1132
+ "kind": "javascript-module",
1133
+ "path": "components/bibtemplate/src/registered.js",
1130
1134
  "declarations": [],
1131
1135
  "exports": []
1132
1136
  },
@@ -1928,6 +1932,7 @@
1928
1932
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
1929
1933
  "attribute": "ondark",
1930
1934
  "reflects": true,
1935
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
1931
1936
  "inheritedFrom": {
1932
1937
  "name": "AuroElement",
1933
1938
  "module": "components/layoutElement/src/auroElement.js"
@@ -2357,6 +2362,7 @@
2357
2362
  },
2358
2363
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
2359
2364
  "fieldName": "onDark",
2365
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
2360
2366
  "inheritedFrom": {
2361
2367
  "name": "AuroElement",
2362
2368
  "module": "components/layoutElement/src/auroElement.js"
@@ -3070,6 +3076,7 @@
3070
3076
  "description": "DEPRECATED - use `appearance` instead.",
3071
3077
  "attribute": "ondark",
3072
3078
  "reflects": true,
3079
+ "deprecated": "Use `appearance` instead.",
3073
3080
  "default": "false",
3074
3081
  "inheritedFrom": {
3075
3082
  "name": "AuroElement",
@@ -3529,6 +3536,7 @@
3529
3536
  },
3530
3537
  "description": "DEPRECATED - use `appearance` instead.",
3531
3538
  "fieldName": "onDark",
3539
+ "deprecated": "Use `appearance` instead.",
3532
3540
  "default": "false",
3533
3541
  "inheritedFrom": {
3534
3542
  "name": "AuroElement",
@@ -3967,6 +3975,7 @@
3967
3975
  "text": "boolean"
3968
3976
  },
3969
3977
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
3978
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
3970
3979
  "attribute": "ondark",
3971
3980
  "reflects": true
3972
3981
  },
@@ -4063,6 +4072,7 @@
4063
4072
  "text": "boolean"
4064
4073
  },
4065
4074
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
4075
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
4066
4076
  "fieldName": "onDark"
4067
4077
  },
4068
4078
  {
@@ -7512,6 +7522,7 @@
7512
7522
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
7513
7523
  "attribute": "ondark",
7514
7524
  "reflects": true,
7525
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
7515
7526
  "default": "false",
7516
7527
  "inheritedFrom": {
7517
7528
  "name": "AuroElement",
@@ -8497,6 +8508,7 @@
8497
8508
  },
8498
8509
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
8499
8510
  "fieldName": "onDark",
8511
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
8500
8512
  "default": "false",
8501
8513
  "inheritedFrom": {
8502
8514
  "name": "AuroElement",
@@ -10079,6 +10091,7 @@
10079
10091
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
10080
10092
  "attribute": "ondark",
10081
10093
  "reflects": true,
10094
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
10082
10095
  "inheritedFrom": {
10083
10096
  "name": "AuroElement",
10084
10097
  "module": "components/layoutElement/src/auroElement.js"
@@ -10414,6 +10427,7 @@
10414
10427
  },
10415
10428
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
10416
10429
  "fieldName": "onDark",
10430
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
10417
10431
  "inheritedFrom": {
10418
10432
  "name": "AuroElement",
10419
10433
  "module": "components/layoutElement/src/auroElement.js"
@@ -11569,6 +11583,7 @@
11569
11583
  "text": "boolean"
11570
11584
  },
11571
11585
  "description": "DEPRECATED - use `appearance` instead.",
11586
+ "deprecated": "Use `appearance` instead.",
11572
11587
  "default": "false",
11573
11588
  "attribute": "ondark",
11574
11589
  "reflects": true
@@ -11633,6 +11648,7 @@
11633
11648
  "text": "boolean"
11634
11649
  },
11635
11650
  "description": "DEPRECATED - use `appearance` instead.",
11651
+ "deprecated": "Use `appearance` instead.",
11636
11652
  "default": "false",
11637
11653
  "fieldName": "onDark"
11638
11654
  }
@@ -12951,6 +12967,7 @@
12951
12967
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
12952
12968
  "attribute": "ondark",
12953
12969
  "reflects": true,
12970
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
12954
12971
  "default": "false",
12955
12972
  "inheritedFrom": {
12956
12973
  "name": "AuroElement",
@@ -14067,6 +14084,7 @@
14067
14084
  },
14068
14085
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
14069
14086
  "fieldName": "onDark",
14087
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
14070
14088
  "default": "false",
14071
14089
  "inheritedFrom": {
14072
14090
  "name": "AuroElement",
@@ -14924,6 +14942,7 @@
14924
14942
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
14925
14943
  "attribute": "ondark",
14926
14944
  "reflects": true,
14945
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
14927
14946
  "default": "false",
14928
14947
  "inheritedFrom": {
14929
14948
  "name": "AuroElement",
@@ -15739,6 +15758,7 @@
15739
15758
  },
15740
15759
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
15741
15760
  "fieldName": "onDark",
15761
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
15742
15762
  "default": "false",
15743
15763
  "inheritedFrom": {
15744
15764
  "name": "AuroElement",
@@ -18367,6 +18387,7 @@
18367
18387
  "text": "boolean"
18368
18388
  },
18369
18389
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
18390
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
18370
18391
  "attribute": "ondark",
18371
18392
  "reflects": true
18372
18393
  },
@@ -18513,6 +18534,7 @@
18513
18534
  "text": "boolean"
18514
18535
  },
18515
18536
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
18537
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
18516
18538
  "fieldName": "onDark"
18517
18539
  },
18518
18540
  {
@@ -18838,6 +18860,7 @@
18838
18860
  "text": "boolean"
18839
18861
  },
18840
18862
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
18863
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
18841
18864
  "attribute": "ondark",
18842
18865
  "reflects": true
18843
18866
  },
@@ -18998,6 +19021,7 @@
18998
19021
  "text": "boolean"
18999
19022
  },
19000
19023
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
19024
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
19001
19025
  "fieldName": "onDark"
19002
19026
  },
19003
19027
  {
@@ -19943,6 +19967,7 @@
19943
19967
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
19944
19968
  "attribute": "ondark",
19945
19969
  "reflects": true,
19970
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
19946
19971
  "inheritedFrom": {
19947
19972
  "name": "AuroElement",
19948
19973
  "module": "components/layoutElement/src/auroElement.js"
@@ -20296,6 +20321,7 @@
20296
20321
  },
20297
20322
  "description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
20298
20323
  "fieldName": "onDark",
20324
+ "deprecated": "Use `appearance=\"inverse\"` instead.",
20299
20325
  "inheritedFrom": {
20300
20326
  "name": "AuroElement",
20301
20327
  "module": "components/layoutElement/src/auroElement.js"