@aurodesignsystem-dev/auro-formkit 0.0.0-pr1408.16 → 0.0.0-pr1408.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.min.js +187 -141
- package/components/combobox/demo/index.min.js +187 -141
- package/components/combobox/demo/keyboardBehavior.md +9 -36
- package/components/combobox/dist/auro-combobox.d.ts +17 -0
- package/components/combobox/dist/comboboxKeyboardStrategy.d.ts +6 -3
- package/components/combobox/dist/index.js +187 -141
- package/components/combobox/dist/registered.js +187 -141
- package/components/counter/demo/api.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +2 -2
- package/components/counter/dist/registered.js +2 -2
- package/components/datepicker/demo/api.md +1 -1
- package/components/datepicker/demo/api.min.js +77 -157
- package/components/datepicker/demo/index.min.js +77 -157
- package/components/datepicker/demo/keyboardBehavior.md +1 -6
- package/components/datepicker/dist/auro-datepicker.d.ts +8 -7
- package/components/datepicker/dist/datepickerKeyboardStrategy.d.ts +1 -4
- package/components/datepicker/dist/index.js +77 -157
- package/components/datepicker/dist/registered.js +77 -157
- package/components/dropdown/demo/api.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/form/demo/api.min.js +382 -390
- package/components/form/demo/index.min.js +382 -390
- package/components/input/demo/api.min.js +106 -77
- package/components/input/demo/index.min.js +106 -77
- package/components/input/dist/auro-input.d.ts +11 -0
- package/components/input/dist/base-input.d.ts +1 -0
- package/components/input/dist/index.js +36 -18
- package/components/input/dist/registered.js +36 -18
- package/components/menu/demo/keyboardBehavior.md +0 -0
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/demo/keyboardBehavior.md +0 -0
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +13 -4
- package/components/select/demo/index.min.js +13 -4
- package/components/select/dist/index.js +13 -4
- package/components/select/dist/registered.js +13 -4
- package/custom-elements.json +1449 -1401
- package/package.json +3 -3
- /package/components/datepicker/demo/{keyboardBehavior.html → keyboard-behavior.html} +0 -0
package/custom-elements.json
CHANGED
|
@@ -248,80 +248,34 @@
|
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"kind": "javascript-module",
|
|
251
|
-
"path": "components/
|
|
251
|
+
"path": "components/checkbox/src/auro-checkbox-group.js",
|
|
252
252
|
"declarations": [
|
|
253
253
|
{
|
|
254
254
|
"kind": "class",
|
|
255
|
-
"description": "The `auro-
|
|
256
|
-
"name": "
|
|
255
|
+
"description": "The `auro-checkbox-group` element is a wrapper for `auro-checkbox` elements.",
|
|
256
|
+
"name": "AuroCheckboxGroup",
|
|
257
257
|
"slots": [
|
|
258
258
|
{
|
|
259
|
-
"description": "
|
|
260
|
-
"name": ""
|
|
259
|
+
"description": "Allows for the legend to be overridden.",
|
|
260
|
+
"name": "legend"
|
|
261
261
|
},
|
|
262
262
|
{
|
|
263
|
-
"type": {
|
|
264
|
-
"text": "HTMLSlotElement"
|
|
265
|
-
},
|
|
266
263
|
"description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
|
|
267
264
|
"name": "optionalLabel"
|
|
268
265
|
},
|
|
269
266
|
{
|
|
270
|
-
"description": "
|
|
271
|
-
"name": "ariaLabel.input.clear"
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
"description": "Sets aria-label on close button in fullscreen bib",
|
|
275
|
-
"name": "ariaLabel.bib.close"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"description": "Defines the headline to display above menu-options",
|
|
279
|
-
"name": "bib.fullscreen.headline"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"description": "Defines the content of the label.",
|
|
283
|
-
"name": "label"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"description": "Defines the content of the helpText.",
|
|
267
|
+
"description": "Allows for the helper text to be overridden.",
|
|
287
268
|
"name": "helpText"
|
|
288
269
|
},
|
|
289
270
|
{
|
|
290
|
-
"description": "
|
|
291
|
-
"name": "
|
|
271
|
+
"description": "The default slot for the checkbox items.",
|
|
272
|
+
"name": "default"
|
|
292
273
|
}
|
|
293
274
|
],
|
|
294
275
|
"members": [
|
|
295
276
|
{
|
|
296
277
|
"kind": "method",
|
|
297
|
-
"name": "_initializeDefaults"
|
|
298
|
-
"privacy": "private",
|
|
299
|
-
"return": {
|
|
300
|
-
"type": {
|
|
301
|
-
"text": "void"
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"kind": "field",
|
|
307
|
-
"name": "inputValue",
|
|
308
|
-
"description": "Returns the current value of the input element within the combobox.",
|
|
309
|
-
"return": {
|
|
310
|
-
"type": {
|
|
311
|
-
"text": "string|undefined"
|
|
312
|
-
}
|
|
313
|
-
},
|
|
314
|
-
"readonly": true
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"kind": "method",
|
|
318
|
-
"name": "isValid",
|
|
319
|
-
"description": "Checks if the element is valid.",
|
|
320
|
-
"return": {
|
|
321
|
-
"type": {
|
|
322
|
-
"text": "boolean"
|
|
323
|
-
}
|
|
324
|
-
}
|
|
278
|
+
"name": "_initializeDefaults"
|
|
325
279
|
},
|
|
326
280
|
{
|
|
327
281
|
"kind": "method",
|
|
@@ -330,7 +284,7 @@
|
|
|
330
284
|
"parameters": [
|
|
331
285
|
{
|
|
332
286
|
"name": "name",
|
|
333
|
-
"default": "
|
|
287
|
+
"default": "\"auro-checkbox-group\"",
|
|
334
288
|
"description": "The name of the element that you want to register.",
|
|
335
289
|
"optional": true,
|
|
336
290
|
"type": {
|
|
@@ -342,40 +296,24 @@
|
|
|
342
296
|
},
|
|
343
297
|
{
|
|
344
298
|
"kind": "method",
|
|
345
|
-
"name": "
|
|
346
|
-
"description": "Updates the filter for the available options based on the input value.",
|
|
347
|
-
"privacy": "private"
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"kind": "method",
|
|
351
|
-
"name": "syncValuesAndStates",
|
|
352
|
-
"description": "Syncs the values and states of this component, the input, and the menu, including this.optionSelected and this.menu.optionSelected.",
|
|
353
|
-
"privacy": "private",
|
|
354
|
-
"return": {
|
|
355
|
-
"type": {
|
|
356
|
-
"text": "void"
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"kind": "method",
|
|
362
|
-
"name": "updateTriggerTextDisplay",
|
|
299
|
+
"name": "handleValueUpdate",
|
|
363
300
|
"parameters": [
|
|
364
301
|
{
|
|
365
|
-
"name": "
|
|
366
|
-
"description": "The
|
|
302
|
+
"name": "value",
|
|
303
|
+
"description": "The value of the checkbox.",
|
|
367
304
|
"type": {
|
|
368
|
-
"text": "
|
|
305
|
+
"text": "String"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "selected",
|
|
310
|
+
"description": "The checked state of the checkbox.",
|
|
311
|
+
"type": {
|
|
312
|
+
"text": "Boolean"
|
|
369
313
|
}
|
|
370
314
|
}
|
|
371
315
|
],
|
|
372
|
-
"description": "
|
|
373
|
-
"privacy": "private"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"kind": "method",
|
|
377
|
-
"name": "handleMenuOptions",
|
|
378
|
-
"description": "Processes hidden state of all menu options and determines if there are any available options not hidden.",
|
|
316
|
+
"description": "Helper method to handle checkbox value changing.",
|
|
379
317
|
"privacy": "private",
|
|
380
318
|
"return": {
|
|
381
319
|
"type": {
|
|
@@ -385,8 +323,8 @@
|
|
|
385
323
|
},
|
|
386
324
|
{
|
|
387
325
|
"kind": "method",
|
|
388
|
-
"name": "
|
|
389
|
-
"description": "
|
|
326
|
+
"name": "handlePreselectedItems",
|
|
327
|
+
"description": "Helper method that handles the state of preselected checkboxes.",
|
|
390
328
|
"privacy": "private",
|
|
391
329
|
"return": {
|
|
392
330
|
"type": {
|
|
@@ -396,8 +334,9 @@
|
|
|
396
334
|
},
|
|
397
335
|
{
|
|
398
336
|
"kind": "method",
|
|
399
|
-
"name": "
|
|
400
|
-
"description": "
|
|
337
|
+
"name": "handleItems",
|
|
338
|
+
"description": "Helper method that handles the state of checkboxes.",
|
|
339
|
+
"privacy": "private",
|
|
401
340
|
"return": {
|
|
402
341
|
"type": {
|
|
403
342
|
"text": "void"
|
|
@@ -406,8 +345,8 @@
|
|
|
406
345
|
},
|
|
407
346
|
{
|
|
408
347
|
"kind": "method",
|
|
409
|
-
"name": "
|
|
410
|
-
"description": "
|
|
348
|
+
"name": "reset",
|
|
349
|
+
"description": "Resets component to initial state.",
|
|
411
350
|
"return": {
|
|
412
351
|
"type": {
|
|
413
352
|
"text": "void"
|
|
@@ -416,1256 +355,1022 @@
|
|
|
416
355
|
},
|
|
417
356
|
{
|
|
418
357
|
"kind": "method",
|
|
419
|
-
"name": "
|
|
420
|
-
"
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
"
|
|
358
|
+
"name": "validate",
|
|
359
|
+
"parameters": [
|
|
360
|
+
{
|
|
361
|
+
"name": "force",
|
|
362
|
+
"default": "false",
|
|
363
|
+
"description": "Whether to force validation.",
|
|
364
|
+
"optional": true,
|
|
365
|
+
"type": {
|
|
366
|
+
"text": "boolean"
|
|
367
|
+
}
|
|
425
368
|
}
|
|
426
|
-
|
|
369
|
+
],
|
|
370
|
+
"description": "Validates value."
|
|
427
371
|
},
|
|
428
372
|
{
|
|
429
|
-
"kind": "
|
|
430
|
-
"name": "
|
|
431
|
-
"privacy": "
|
|
373
|
+
"kind": "field",
|
|
374
|
+
"name": "appearance",
|
|
375
|
+
"privacy": "public",
|
|
376
|
+
"type": {
|
|
377
|
+
"text": "'default' | 'inverse'"
|
|
378
|
+
},
|
|
379
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
380
|
+
"default": "'default'",
|
|
381
|
+
"attribute": "appearance",
|
|
382
|
+
"reflects": true
|
|
432
383
|
},
|
|
433
384
|
{
|
|
434
|
-
"kind": "
|
|
435
|
-
"name": "
|
|
436
|
-
"privacy": "
|
|
385
|
+
"kind": "field",
|
|
386
|
+
"name": "disabled",
|
|
387
|
+
"privacy": "public",
|
|
388
|
+
"type": {
|
|
389
|
+
"text": "boolean"
|
|
390
|
+
},
|
|
391
|
+
"description": "If set, disables the checkbox group.",
|
|
392
|
+
"attribute": "disabled",
|
|
393
|
+
"reflects": true
|
|
437
394
|
},
|
|
438
395
|
{
|
|
439
|
-
"kind": "
|
|
440
|
-
"name": "
|
|
441
|
-
"
|
|
442
|
-
"
|
|
396
|
+
"kind": "field",
|
|
397
|
+
"name": "error",
|
|
398
|
+
"privacy": "public",
|
|
399
|
+
"type": {
|
|
400
|
+
"text": "string"
|
|
401
|
+
},
|
|
402
|
+
"description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
|
|
403
|
+
"attribute": "error",
|
|
404
|
+
"reflects": true
|
|
443
405
|
},
|
|
444
406
|
{
|
|
445
|
-
"kind": "
|
|
446
|
-
"name": "
|
|
447
|
-
"
|
|
448
|
-
"
|
|
407
|
+
"kind": "field",
|
|
408
|
+
"name": "horizontal",
|
|
409
|
+
"privacy": "public",
|
|
410
|
+
"type": {
|
|
411
|
+
"text": "boolean"
|
|
412
|
+
},
|
|
413
|
+
"description": "If set, checkboxes will be aligned horizontally.",
|
|
414
|
+
"attribute": "horizontal",
|
|
415
|
+
"reflects": true
|
|
449
416
|
},
|
|
450
417
|
{
|
|
451
|
-
"kind": "
|
|
452
|
-
"name": "
|
|
453
|
-
"
|
|
454
|
-
"
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
418
|
+
"kind": "field",
|
|
419
|
+
"name": "noValidate",
|
|
420
|
+
"privacy": "public",
|
|
421
|
+
"type": {
|
|
422
|
+
"text": "boolean"
|
|
423
|
+
},
|
|
424
|
+
"description": "If set, disables auto-validation on blur.",
|
|
425
|
+
"attribute": "noValidate",
|
|
426
|
+
"reflects": true
|
|
460
427
|
},
|
|
461
428
|
{
|
|
462
|
-
"kind": "
|
|
463
|
-
"name": "
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
"kind": "method",
|
|
474
|
-
"name": "handleMenuLoadingChange",
|
|
475
|
-
"parameters": [
|
|
476
|
-
{
|
|
477
|
-
"name": "event",
|
|
478
|
-
"description": "The event object containing details about the loading state change.",
|
|
479
|
-
"type": {
|
|
480
|
-
"text": "CustomEvent"
|
|
481
|
-
}
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"description": "Indicates whether the menu is currently loading.",
|
|
485
|
-
"name": "event.detail.loading",
|
|
486
|
-
"type": {
|
|
487
|
-
"text": "boolean"
|
|
488
|
-
}
|
|
489
|
-
},
|
|
490
|
-
{
|
|
491
|
-
"description": "Indicates if there are loading placeholders present.",
|
|
492
|
-
"name": "event.detail.hasLoadingPlaceholder",
|
|
493
|
-
"type": {
|
|
494
|
-
"text": "boolean"
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
],
|
|
498
|
-
"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.",
|
|
499
|
-
"privacy": "private",
|
|
500
|
-
"return": {
|
|
501
|
-
"type": {
|
|
502
|
-
"text": "void"
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
},
|
|
506
|
-
{
|
|
507
|
-
"kind": "method",
|
|
508
|
-
"name": "handleInputValueChange",
|
|
509
|
-
"parameters": [
|
|
510
|
-
{
|
|
511
|
-
"name": "event",
|
|
512
|
-
"description": "The input event triggered by the input element.",
|
|
513
|
-
"type": {
|
|
514
|
-
"text": "Event"
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
],
|
|
518
|
-
"description": "Handle changes to the input value and trigger changes that should result.",
|
|
519
|
-
"privacy": "private",
|
|
520
|
-
"return": {
|
|
521
|
-
"type": {
|
|
522
|
-
"text": "void"
|
|
523
|
-
}
|
|
524
|
-
}
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
"kind": "method",
|
|
528
|
-
"name": "configureCombobox",
|
|
529
|
-
"description": "Binds all behavior needed to the combobox after rendering.",
|
|
530
|
-
"privacy": "private",
|
|
531
|
-
"return": {
|
|
532
|
-
"type": {
|
|
533
|
-
"text": "void"
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"kind": "method",
|
|
539
|
-
"name": "focus",
|
|
540
|
-
"description": "Focuses the combobox trigger input.",
|
|
541
|
-
"return": {
|
|
542
|
-
"type": {
|
|
543
|
-
"text": "void"
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"kind": "method",
|
|
549
|
-
"name": "setMenuValue",
|
|
550
|
-
"parameters": [
|
|
551
|
-
{
|
|
552
|
-
"name": "value",
|
|
553
|
-
"description": "The value to set on the menu.",
|
|
554
|
-
"type": {
|
|
555
|
-
"text": "string"
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
|
-
],
|
|
559
|
-
"description": "Sets the menu value if menu is available.",
|
|
560
|
-
"return": {
|
|
561
|
-
"type": {
|
|
562
|
-
"text": "void"
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"kind": "method",
|
|
568
|
-
"name": "reset",
|
|
569
|
-
"description": "Resets component to initial state.",
|
|
570
|
-
"return": {
|
|
571
|
-
"type": {
|
|
572
|
-
"text": "void"
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
},
|
|
576
|
-
{
|
|
577
|
-
"kind": "method",
|
|
578
|
-
"name": "clear",
|
|
579
|
-
"description": "Clears the current value of the combobox.",
|
|
580
|
-
"return": {
|
|
581
|
-
"type": {
|
|
582
|
-
"text": "void"
|
|
583
|
-
}
|
|
584
|
-
}
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
"kind": "method",
|
|
588
|
-
"name": "validate",
|
|
589
|
-
"parameters": [
|
|
590
|
-
{
|
|
591
|
-
"name": "force",
|
|
592
|
-
"default": "false",
|
|
593
|
-
"description": "Whether to force validation.",
|
|
594
|
-
"optional": true,
|
|
595
|
-
"type": {
|
|
596
|
-
"text": "boolean"
|
|
597
|
-
}
|
|
598
|
-
}
|
|
599
|
-
],
|
|
600
|
-
"description": "Validates value."
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"kind": "method",
|
|
604
|
-
"name": "transportAssignedNodes",
|
|
605
|
-
"parameters": [
|
|
606
|
-
{
|
|
607
|
-
"name": "slot",
|
|
608
|
-
"description": "The slot element containing the nodes to apply.",
|
|
609
|
-
"type": {
|
|
610
|
-
"text": "HTMLSlotElement"
|
|
611
|
-
}
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"name": "target",
|
|
615
|
-
"description": "The target element to apply the nodes to.",
|
|
616
|
-
"type": {
|
|
617
|
-
"text": "HTMLElement"
|
|
618
|
-
}
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
"name": "newSlotName",
|
|
622
|
-
"description": "The new slot name for the applied nodes.",
|
|
623
|
-
"type": {
|
|
624
|
-
"text": "string"
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
],
|
|
628
|
-
"description": "Applies slotted nodes to a target element with a new slot name.",
|
|
629
|
-
"privacy": "private",
|
|
630
|
-
"return": {
|
|
631
|
-
"type": {
|
|
632
|
-
"text": "void"
|
|
633
|
-
}
|
|
634
|
-
}
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"kind": "method",
|
|
638
|
-
"name": "updateActiveOption",
|
|
639
|
-
"parameters": [
|
|
640
|
-
{
|
|
641
|
-
"name": "index",
|
|
642
|
-
"description": "Index of the option to make active.",
|
|
643
|
-
"type": {
|
|
644
|
-
"text": "number"
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
],
|
|
648
|
-
"description": "Updates the active option in the menu."
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"kind": "method",
|
|
652
|
-
"name": "handleSlotChange",
|
|
653
|
-
"parameters": [
|
|
654
|
-
{
|
|
655
|
-
"name": "event",
|
|
656
|
-
"description": "`slotchange` event.",
|
|
657
|
-
"type": {
|
|
658
|
-
"text": "Event"
|
|
659
|
-
}
|
|
660
|
-
}
|
|
661
|
-
],
|
|
662
|
-
"description": "Watch for slot changes and recalculate the menuoptions.",
|
|
663
|
-
"privacy": "private",
|
|
664
|
-
"return": {
|
|
665
|
-
"type": {
|
|
666
|
-
"text": "void"
|
|
667
|
-
}
|
|
668
|
-
}
|
|
429
|
+
"kind": "field",
|
|
430
|
+
"name": "onDark",
|
|
431
|
+
"privacy": "public",
|
|
432
|
+
"type": {
|
|
433
|
+
"text": "boolean"
|
|
434
|
+
},
|
|
435
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
436
|
+
"attribute": "onDark",
|
|
437
|
+
"reflects": true
|
|
669
438
|
},
|
|
670
439
|
{
|
|
671
440
|
"kind": "field",
|
|
672
|
-
"name": "
|
|
441
|
+
"name": "required",
|
|
673
442
|
"privacy": "public",
|
|
674
443
|
"type": {
|
|
675
|
-
"text": "
|
|
444
|
+
"text": "boolean"
|
|
676
445
|
},
|
|
677
|
-
"description": "
|
|
678
|
-
"
|
|
679
|
-
"attribute": "appearance",
|
|
446
|
+
"description": "Populates the `required` attribute on the element. Used for client-side validation.",
|
|
447
|
+
"attribute": "required",
|
|
680
448
|
"reflects": true
|
|
681
449
|
},
|
|
682
450
|
{
|
|
683
451
|
"kind": "field",
|
|
684
|
-
"name": "
|
|
452
|
+
"name": "setCustomValidity",
|
|
685
453
|
"privacy": "public",
|
|
686
454
|
"type": {
|
|
687
455
|
"text": "string"
|
|
688
456
|
},
|
|
689
|
-
"description": "
|
|
690
|
-
"attribute": "
|
|
691
|
-
"reflects": true
|
|
457
|
+
"description": "Sets a custom help text message to display for all validityStates.",
|
|
458
|
+
"attribute": "setCustomValidity"
|
|
692
459
|
},
|
|
693
460
|
{
|
|
694
461
|
"kind": "field",
|
|
695
|
-
"name": "
|
|
462
|
+
"name": "setCustomValidityCustomError",
|
|
696
463
|
"privacy": "public",
|
|
697
464
|
"type": {
|
|
698
|
-
"text": "
|
|
465
|
+
"text": "string"
|
|
699
466
|
},
|
|
700
|
-
"description": "
|
|
701
|
-
"attribute": "
|
|
702
|
-
"reflects": true
|
|
467
|
+
"description": "Custom help text message to display when validity = `customError`.",
|
|
468
|
+
"attribute": "setCustomValidityCustomError"
|
|
703
469
|
},
|
|
704
470
|
{
|
|
705
471
|
"kind": "field",
|
|
706
|
-
"name": "
|
|
707
|
-
"privacy": "
|
|
472
|
+
"name": "setCustomValidityValueMissing",
|
|
473
|
+
"privacy": "public",
|
|
708
474
|
"type": {
|
|
709
|
-
"text": "
|
|
475
|
+
"text": "string"
|
|
710
476
|
},
|
|
711
|
-
"description": "
|
|
712
|
-
"attribute": "
|
|
477
|
+
"description": "Custom help text message to display when validity = `valueMissing`.",
|
|
478
|
+
"attribute": "setCustomValidityValueMissing"
|
|
713
479
|
},
|
|
714
480
|
{
|
|
715
481
|
"kind": "field",
|
|
716
|
-
"name": "
|
|
482
|
+
"name": "validity",
|
|
717
483
|
"privacy": "public",
|
|
718
484
|
"type": {
|
|
719
|
-
"text": "
|
|
485
|
+
"text": "string"
|
|
720
486
|
},
|
|
721
|
-
"description": "
|
|
722
|
-
"
|
|
723
|
-
"attribute": "behavior",
|
|
487
|
+
"description": "Specifies the `validityState` this element is in.",
|
|
488
|
+
"attribute": "validity",
|
|
724
489
|
"reflects": true
|
|
490
|
+
}
|
|
491
|
+
],
|
|
492
|
+
"events": [
|
|
493
|
+
{
|
|
494
|
+
"name": "input",
|
|
495
|
+
"type": {
|
|
496
|
+
"text": "CustomEvent"
|
|
497
|
+
}
|
|
725
498
|
},
|
|
726
499
|
{
|
|
727
|
-
"
|
|
728
|
-
"name": "
|
|
729
|
-
|
|
500
|
+
"description": "Notifies that the `validity` and `errorMessage` values have changed.",
|
|
501
|
+
"name": "auroFormElement-validated"
|
|
502
|
+
}
|
|
503
|
+
],
|
|
504
|
+
"attributes": [
|
|
505
|
+
{
|
|
506
|
+
"name": "appearance",
|
|
730
507
|
"type": {
|
|
731
|
-
"text": "
|
|
508
|
+
"text": "'default' | 'inverse'"
|
|
732
509
|
},
|
|
733
|
-
"description": "
|
|
734
|
-
"
|
|
735
|
-
"
|
|
510
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
511
|
+
"default": "'default'",
|
|
512
|
+
"fieldName": "appearance"
|
|
736
513
|
},
|
|
737
514
|
{
|
|
738
|
-
"kind": "field",
|
|
739
515
|
"name": "disabled",
|
|
740
|
-
"privacy": "public",
|
|
741
516
|
"type": {
|
|
742
517
|
"text": "boolean"
|
|
743
518
|
},
|
|
744
|
-
"description": "If set, disables the
|
|
745
|
-
"
|
|
746
|
-
"reflects": true
|
|
519
|
+
"description": "If set, disables the checkbox group.",
|
|
520
|
+
"fieldName": "disabled"
|
|
747
521
|
},
|
|
748
522
|
{
|
|
749
|
-
"
|
|
750
|
-
"name": "dropdownId",
|
|
751
|
-
"privacy": "private",
|
|
523
|
+
"name": "error",
|
|
752
524
|
"type": {
|
|
753
525
|
"text": "string"
|
|
754
526
|
},
|
|
755
|
-
"description": "
|
|
527
|
+
"description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
|
|
528
|
+
"fieldName": "error"
|
|
756
529
|
},
|
|
757
530
|
{
|
|
758
|
-
"
|
|
759
|
-
"name": "dropdownOpen",
|
|
760
|
-
"privacy": "private",
|
|
531
|
+
"name": "horizontal",
|
|
761
532
|
"type": {
|
|
762
533
|
"text": "boolean"
|
|
763
534
|
},
|
|
764
|
-
"description": "
|
|
765
|
-
|
|
766
|
-
{
|
|
767
|
-
"kind": "field",
|
|
768
|
-
"name": "dvInputOnly",
|
|
769
|
-
"privacy": "public",
|
|
770
|
-
"type": {
|
|
771
|
-
"text": "boolean"
|
|
772
|
-
},
|
|
773
|
-
"description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
|
|
774
|
-
"attribute": "dvInputOnly",
|
|
775
|
-
"reflects": true
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"kind": "field",
|
|
779
|
-
"name": "error",
|
|
780
|
-
"privacy": "public",
|
|
781
|
-
"type": {
|
|
782
|
-
"text": "string"
|
|
783
|
-
},
|
|
784
|
-
"description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
|
|
785
|
-
"attribute": "error",
|
|
786
|
-
"reflects": true
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
"kind": "field",
|
|
790
|
-
"name": "format",
|
|
791
|
-
"privacy": "public",
|
|
792
|
-
"type": {
|
|
793
|
-
"text": "string"
|
|
794
|
-
},
|
|
795
|
-
"description": "Specifies the input mask format.",
|
|
796
|
-
"attribute": "format",
|
|
797
|
-
"reflects": true
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"kind": "field",
|
|
801
|
-
"name": "inputmode",
|
|
802
|
-
"privacy": "public",
|
|
803
|
-
"type": {
|
|
804
|
-
"text": "string"
|
|
805
|
-
},
|
|
806
|
-
"description": "Exposes inputmode attribute for input.",
|
|
807
|
-
"attribute": "inputmode",
|
|
808
|
-
"reflects": true
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"kind": "field",
|
|
812
|
-
"name": "layout",
|
|
813
|
-
"privacy": "public",
|
|
814
|
-
"type": {
|
|
815
|
-
"text": "string"
|
|
816
|
-
},
|
|
817
|
-
"description": "Sets the layout of the combobox.",
|
|
818
|
-
"default": "'classic'",
|
|
819
|
-
"attribute": "layout",
|
|
820
|
-
"reflects": true,
|
|
821
|
-
"inheritedFrom": {
|
|
822
|
-
"name": "AuroElement",
|
|
823
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
824
|
-
}
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"kind": "field",
|
|
828
|
-
"name": "matchWidth",
|
|
829
|
-
"privacy": "private",
|
|
830
|
-
"type": {
|
|
831
|
-
"text": "boolean"
|
|
832
|
-
},
|
|
833
|
-
"description": "If declared, the popover and trigger will be set to the same width.",
|
|
834
|
-
"attribute": "matchWidth",
|
|
835
|
-
"reflects": true
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"kind": "field",
|
|
839
|
-
"name": "noFilter",
|
|
840
|
-
"privacy": "public",
|
|
841
|
-
"type": {
|
|
842
|
-
"text": "boolean"
|
|
843
|
-
},
|
|
844
|
-
"description": "If set, combobox will not filter menuoptions based on input.",
|
|
845
|
-
"attribute": "noFilter",
|
|
846
|
-
"reflects": true
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
"kind": "field",
|
|
850
|
-
"name": "noFlip",
|
|
851
|
-
"privacy": "public",
|
|
852
|
-
"type": {
|
|
853
|
-
"text": "boolean"
|
|
854
|
-
},
|
|
855
|
-
"description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
|
|
856
|
-
"attribute": "noFlip",
|
|
857
|
-
"reflects": true
|
|
858
|
-
},
|
|
859
|
-
{
|
|
860
|
-
"kind": "field",
|
|
861
|
-
"name": "shift",
|
|
862
|
-
"privacy": "public",
|
|
863
|
-
"type": {
|
|
864
|
-
"text": "boolean"
|
|
865
|
-
},
|
|
866
|
-
"description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
|
|
867
|
-
"attribute": "shift",
|
|
868
|
-
"reflects": true
|
|
535
|
+
"description": "If set, checkboxes will be aligned horizontally.",
|
|
536
|
+
"fieldName": "horizontal"
|
|
869
537
|
},
|
|
870
538
|
{
|
|
871
|
-
"kind": "field",
|
|
872
539
|
"name": "noValidate",
|
|
873
|
-
"privacy": "public",
|
|
874
540
|
"type": {
|
|
875
541
|
"text": "boolean"
|
|
876
542
|
},
|
|
877
543
|
"description": "If set, disables auto-validation on blur.",
|
|
878
|
-
"
|
|
879
|
-
"reflects": true
|
|
880
|
-
},
|
|
881
|
-
{
|
|
882
|
-
"kind": "field",
|
|
883
|
-
"name": "offset",
|
|
884
|
-
"privacy": "public",
|
|
885
|
-
"type": {
|
|
886
|
-
"text": "number"
|
|
887
|
-
},
|
|
888
|
-
"description": "Gap between the trigger element and bib.",
|
|
889
|
-
"default": "0",
|
|
890
|
-
"attribute": "offset",
|
|
891
|
-
"reflects": true
|
|
544
|
+
"fieldName": "noValidate"
|
|
892
545
|
},
|
|
893
546
|
{
|
|
894
|
-
"kind": "field",
|
|
895
547
|
"name": "onDark",
|
|
896
|
-
"privacy": "public",
|
|
897
548
|
"type": {
|
|
898
549
|
"text": "boolean"
|
|
899
550
|
},
|
|
900
|
-
"attribute": "onDark",
|
|
901
|
-
"reflects": true,
|
|
902
551
|
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
903
|
-
"
|
|
904
|
-
"name": "AuroElement",
|
|
905
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
906
|
-
}
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
"kind": "field",
|
|
910
|
-
"name": "optionSelected",
|
|
911
|
-
"privacy": "public",
|
|
912
|
-
"type": {
|
|
913
|
-
"text": "HTMLElement"
|
|
914
|
-
},
|
|
915
|
-
"description": "Specifies the current selected option.",
|
|
916
|
-
"attribute": "optionSelected"
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
"kind": "field",
|
|
920
|
-
"name": "persistInput",
|
|
921
|
-
"privacy": "public",
|
|
922
|
-
"type": {
|
|
923
|
-
"text": "boolean"
|
|
924
|
-
},
|
|
925
|
-
"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.",
|
|
926
|
-
"attribute": "persistInput",
|
|
927
|
-
"reflects": true
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
"kind": "field",
|
|
931
|
-
"name": "placement",
|
|
932
|
-
"privacy": "public",
|
|
933
|
-
"type": {
|
|
934
|
-
"text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
|
|
935
|
-
},
|
|
936
|
-
"description": "Position where the bib should appear relative to the trigger.",
|
|
937
|
-
"default": "'bottom-start'",
|
|
938
|
-
"attribute": "placement",
|
|
939
|
-
"reflects": true
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
"kind": "field",
|
|
943
|
-
"name": "placeholder",
|
|
944
|
-
"privacy": "public",
|
|
945
|
-
"type": {
|
|
946
|
-
"text": "string"
|
|
947
|
-
},
|
|
948
|
-
"description": "Define custom placeholder text, only supported by date input formats.",
|
|
949
|
-
"attribute": "placeholder",
|
|
950
|
-
"reflects": true
|
|
552
|
+
"fieldName": "onDark"
|
|
951
553
|
},
|
|
952
554
|
{
|
|
953
|
-
"kind": "field",
|
|
954
555
|
"name": "required",
|
|
955
|
-
"privacy": "public",
|
|
956
556
|
"type": {
|
|
957
557
|
"text": "boolean"
|
|
958
558
|
},
|
|
959
|
-
"description": "Populates the `required` attribute on the
|
|
960
|
-
"
|
|
961
|
-
"reflects": true
|
|
559
|
+
"description": "Populates the `required` attribute on the element. Used for client-side validation.",
|
|
560
|
+
"fieldName": "required"
|
|
962
561
|
},
|
|
963
562
|
{
|
|
964
|
-
"kind": "field",
|
|
965
563
|
"name": "setCustomValidity",
|
|
966
|
-
"privacy": "public",
|
|
967
564
|
"type": {
|
|
968
565
|
"text": "string"
|
|
969
566
|
},
|
|
970
567
|
"description": "Sets a custom help text message to display for all validityStates.",
|
|
971
|
-
"
|
|
568
|
+
"fieldName": "setCustomValidity"
|
|
972
569
|
},
|
|
973
570
|
{
|
|
974
|
-
"kind": "field",
|
|
975
571
|
"name": "setCustomValidityCustomError",
|
|
976
|
-
"privacy": "public",
|
|
977
572
|
"type": {
|
|
978
573
|
"text": "string"
|
|
979
574
|
},
|
|
980
575
|
"description": "Custom help text message to display when validity = `customError`.",
|
|
981
|
-
"
|
|
576
|
+
"fieldName": "setCustomValidityCustomError"
|
|
982
577
|
},
|
|
983
578
|
{
|
|
984
|
-
"kind": "field",
|
|
985
579
|
"name": "setCustomValidityValueMissing",
|
|
986
|
-
"privacy": "public",
|
|
987
580
|
"type": {
|
|
988
581
|
"text": "string"
|
|
989
582
|
},
|
|
990
583
|
"description": "Custom help text message to display when validity = `valueMissing`.",
|
|
991
|
-
"
|
|
584
|
+
"fieldName": "setCustomValidityValueMissing"
|
|
992
585
|
},
|
|
993
586
|
{
|
|
994
|
-
"
|
|
995
|
-
"name": "setCustomValidityValueMissingFilter",
|
|
996
|
-
"privacy": "public",
|
|
587
|
+
"name": "validity",
|
|
997
588
|
"type": {
|
|
998
589
|
"text": "string"
|
|
999
590
|
},
|
|
1000
|
-
"description": "
|
|
1001
|
-
"
|
|
1002
|
-
}
|
|
591
|
+
"description": "Specifies the `validityState` this element is in.",
|
|
592
|
+
"fieldName": "validity"
|
|
593
|
+
}
|
|
594
|
+
],
|
|
595
|
+
"superclass": {
|
|
596
|
+
"name": "LitElement",
|
|
597
|
+
"package": "lit"
|
|
598
|
+
},
|
|
599
|
+
"tagName": "auro-checkbox-group",
|
|
600
|
+
"customElement": true
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"exports": [
|
|
604
|
+
{
|
|
605
|
+
"kind": "js",
|
|
606
|
+
"name": "AuroCheckboxGroup",
|
|
607
|
+
"declaration": {
|
|
608
|
+
"name": "AuroCheckboxGroup",
|
|
609
|
+
"module": "components/checkbox/src/auro-checkbox-group.js"
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"kind": "javascript-module",
|
|
616
|
+
"path": "components/checkbox/src/auro-checkbox.js",
|
|
617
|
+
"declarations": [
|
|
618
|
+
{
|
|
619
|
+
"kind": "class",
|
|
620
|
+
"description": "The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.",
|
|
621
|
+
"name": "AuroCheckbox",
|
|
622
|
+
"cssParts": [
|
|
1003
623
|
{
|
|
1004
|
-
"
|
|
1005
|
-
"name": "
|
|
1006
|
-
"privacy": "private",
|
|
1007
|
-
"type": {
|
|
1008
|
-
"text": "boolean"
|
|
1009
|
-
},
|
|
1010
|
-
"description": "Indicates whether the combobox is in a dirty state (has been interacted with)."
|
|
624
|
+
"description": "apply css to a specific checkbox.",
|
|
625
|
+
"name": "checkbox"
|
|
1011
626
|
},
|
|
1012
627
|
{
|
|
1013
|
-
"
|
|
1014
|
-
"name": "
|
|
1015
|
-
"privacy": "public",
|
|
1016
|
-
"type": {
|
|
1017
|
-
"text": "boolean"
|
|
1018
|
-
},
|
|
1019
|
-
"description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
|
|
1020
|
-
"attribute": "triggerIcon",
|
|
1021
|
-
"reflects": true
|
|
628
|
+
"description": "apply css to a specific checkbox's input.",
|
|
629
|
+
"name": "checkbox-input"
|
|
1022
630
|
},
|
|
1023
631
|
{
|
|
1024
|
-
"
|
|
1025
|
-
"name": "
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
},
|
|
1030
|
-
"description": "Applies the defined value as the type attribute on `auro-input`.",
|
|
1031
|
-
"attribute": "type",
|
|
1032
|
-
"reflects": true
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"kind": "field",
|
|
1036
|
-
"name": "typedValue",
|
|
1037
|
-
"privacy": "public",
|
|
1038
|
-
"type": {
|
|
1039
|
-
"text": "string"
|
|
1040
|
-
},
|
|
1041
|
-
"description": "Specifies the value of the input element within the combobox.",
|
|
1042
|
-
"attribute": "typedValue",
|
|
1043
|
-
"reflects": true
|
|
1044
|
-
},
|
|
1045
|
-
{
|
|
1046
|
-
"kind": "field",
|
|
1047
|
-
"name": "validity",
|
|
1048
|
-
"privacy": "public",
|
|
1049
|
-
"type": {
|
|
1050
|
-
"text": "string"
|
|
1051
|
-
},
|
|
1052
|
-
"description": "Specifies the `validityState` this element is in.",
|
|
1053
|
-
"attribute": "validity",
|
|
1054
|
-
"reflects": true
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"kind": "field",
|
|
1058
|
-
"name": "value",
|
|
1059
|
-
"privacy": "public",
|
|
1060
|
-
"type": {
|
|
1061
|
-
"text": "string"
|
|
1062
|
-
},
|
|
1063
|
-
"description": "Value selected for the dropdown menu.",
|
|
1064
|
-
"attribute": "value"
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
"kind": "field",
|
|
1068
|
-
"name": "largeFullscreenHeadline",
|
|
1069
|
-
"privacy": "public",
|
|
1070
|
-
"type": {
|
|
1071
|
-
"text": "boolean"
|
|
1072
|
-
},
|
|
1073
|
-
"description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
|
|
1074
|
-
"attribute": "largeFullscreenHeadline",
|
|
1075
|
-
"reflects": true
|
|
1076
|
-
},
|
|
632
|
+
"description": "apply css to a specific checkbox's label.",
|
|
633
|
+
"name": "checkbox-label"
|
|
634
|
+
}
|
|
635
|
+
],
|
|
636
|
+
"slots": [
|
|
1077
637
|
{
|
|
1078
|
-
"
|
|
1079
|
-
"name": "
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
},
|
|
1084
|
-
"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.",
|
|
1085
|
-
"default": "'sm'",
|
|
1086
|
-
"attribute": "fullscreenBreakpoint",
|
|
1087
|
-
"reflects": true
|
|
1088
|
-
},
|
|
638
|
+
"description": "The default slot for the checkbox label.",
|
|
639
|
+
"name": "default"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"members": [
|
|
1089
643
|
{
|
|
1090
|
-
"kind": "
|
|
1091
|
-
"name": "
|
|
1092
|
-
"privacy": "private",
|
|
1093
|
-
"type": {
|
|
1094
|
-
"text": "object"
|
|
1095
|
-
},
|
|
1096
|
-
"description": "Specifies the currently active option."
|
|
644
|
+
"kind": "method",
|
|
645
|
+
"name": "_initializeDefaults"
|
|
1097
646
|
},
|
|
1098
647
|
{
|
|
1099
|
-
"kind": "
|
|
1100
|
-
"name": "
|
|
1101
|
-
"
|
|
1102
|
-
"
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
648
|
+
"kind": "method",
|
|
649
|
+
"name": "register",
|
|
650
|
+
"static": true,
|
|
651
|
+
"parameters": [
|
|
652
|
+
{
|
|
653
|
+
"name": "name",
|
|
654
|
+
"default": "\"auro-checkbox\"",
|
|
655
|
+
"description": "The name of element that you want to register to.",
|
|
656
|
+
"optional": true,
|
|
657
|
+
"type": {
|
|
658
|
+
"text": "string"
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"description": "This will register this element with the browser."
|
|
1106
663
|
},
|
|
1107
664
|
{
|
|
1108
|
-
"kind": "
|
|
1109
|
-
"name": "
|
|
1110
|
-
"
|
|
665
|
+
"kind": "method",
|
|
666
|
+
"name": "handleChange",
|
|
667
|
+
"parameters": [
|
|
668
|
+
{
|
|
669
|
+
"name": "event",
|
|
670
|
+
"description": "The change event from the checkbox input.",
|
|
671
|
+
"type": {
|
|
672
|
+
"text": "Event"
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
],
|
|
676
|
+
"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.",
|
|
1111
677
|
"privacy": "private",
|
|
1112
678
|
"return": {
|
|
1113
679
|
"type": {
|
|
1114
|
-
"text": "
|
|
680
|
+
"text": "void"
|
|
1115
681
|
}
|
|
1116
|
-
},
|
|
1117
|
-
"readonly": true,
|
|
1118
|
-
"inheritedFrom": {
|
|
1119
|
-
"name": "AuroElement",
|
|
1120
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
1121
682
|
}
|
|
1122
683
|
},
|
|
1123
684
|
{
|
|
1124
685
|
"kind": "method",
|
|
1125
|
-
"name": "
|
|
1126
|
-
"
|
|
1127
|
-
|
|
1128
|
-
|
|
686
|
+
"name": "handleInput",
|
|
687
|
+
"parameters": [
|
|
688
|
+
{
|
|
689
|
+
"name": "event",
|
|
690
|
+
"description": "The input event from the checkbox input.",
|
|
691
|
+
"type": {
|
|
692
|
+
"text": "Event"
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
],
|
|
696
|
+
"description": "Handles the input event for the checkbox input.\nUpdates the checked state and dispatches a custom 'auroCheckbox-input' event.",
|
|
697
|
+
"privacy": "private",
|
|
698
|
+
"return": {
|
|
699
|
+
"type": {
|
|
700
|
+
"text": "void"
|
|
701
|
+
}
|
|
1129
702
|
}
|
|
1130
703
|
},
|
|
1131
704
|
{
|
|
1132
705
|
"kind": "method",
|
|
1133
|
-
"name": "
|
|
1134
|
-
"
|
|
1135
|
-
|
|
1136
|
-
|
|
706
|
+
"name": "handleFocusin",
|
|
707
|
+
"description": "Function to support",
|
|
708
|
+
"privacy": "private",
|
|
709
|
+
"return": {
|
|
710
|
+
"type": {
|
|
711
|
+
"text": "void"
|
|
712
|
+
}
|
|
1137
713
|
}
|
|
1138
714
|
},
|
|
1139
715
|
{
|
|
1140
716
|
"kind": "method",
|
|
1141
|
-
"name": "
|
|
1142
|
-
"
|
|
1143
|
-
|
|
1144
|
-
|
|
717
|
+
"name": "generateIconHtml",
|
|
718
|
+
"description": "Function to generate checkmark svg.",
|
|
719
|
+
"privacy": "private",
|
|
720
|
+
"return": {
|
|
721
|
+
"type": {
|
|
722
|
+
"text": "HTMLElement"
|
|
723
|
+
}
|
|
1145
724
|
}
|
|
1146
725
|
},
|
|
1147
726
|
{
|
|
1148
|
-
"kind": "
|
|
1149
|
-
"name": "
|
|
1150
|
-
"
|
|
1151
|
-
"
|
|
1152
|
-
"
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
"reflects": true,
|
|
1156
|
-
"inheritedFrom": {
|
|
1157
|
-
"name": "AuroElement",
|
|
1158
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
727
|
+
"kind": "method",
|
|
728
|
+
"name": "reset",
|
|
729
|
+
"description": "Resets component to initial state.",
|
|
730
|
+
"return": {
|
|
731
|
+
"type": {
|
|
732
|
+
"text": "void"
|
|
733
|
+
}
|
|
1159
734
|
}
|
|
1160
735
|
},
|
|
1161
736
|
{
|
|
1162
|
-
"kind": "
|
|
1163
|
-
"name": "
|
|
1164
|
-
"
|
|
1165
|
-
"
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
"inheritedFrom": {
|
|
1171
|
-
"name": "AuroElement",
|
|
1172
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
737
|
+
"kind": "method",
|
|
738
|
+
"name": "updateAriaLabel",
|
|
739
|
+
"description": "Updates the aria-label based on slot content.",
|
|
740
|
+
"privacy": "private",
|
|
741
|
+
"return": {
|
|
742
|
+
"type": {
|
|
743
|
+
"text": "void"
|
|
744
|
+
}
|
|
1173
745
|
}
|
|
1174
|
-
}
|
|
1175
|
-
],
|
|
1176
|
-
"events": [
|
|
1177
|
-
{
|
|
1178
|
-
"name": "inputValue",
|
|
1179
|
-
"type": {
|
|
1180
|
-
"text": "CustomEvent"
|
|
1181
|
-
},
|
|
1182
|
-
"description": "Notifies that the components internal HTML5 input value has changed."
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
"name": "input",
|
|
1186
|
-
"type": {
|
|
1187
|
-
"text": "CustomEvent"
|
|
1188
|
-
},
|
|
1189
|
-
"description": "Notifies that the component has a new value set."
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
"name": "auroCombobox-valueSet",
|
|
1193
|
-
"type": {
|
|
1194
|
-
"text": "CustomEvent"
|
|
1195
|
-
},
|
|
1196
|
-
"description": "(Deprecated) Notifies that the component has a new value set."
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
"description": "Notifies that the component value(s) have been validated.",
|
|
1200
|
-
"name": "auroFormElement-validated"
|
|
1201
|
-
}
|
|
1202
|
-
],
|
|
1203
|
-
"attributes": [
|
|
1204
|
-
{
|
|
1205
|
-
"name": "appearance",
|
|
1206
|
-
"type": {
|
|
1207
|
-
"text": "string"
|
|
1208
|
-
},
|
|
1209
|
-
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
1210
|
-
"default": "'default'",
|
|
1211
|
-
"fieldName": "appearance"
|
|
1212
|
-
},
|
|
1213
|
-
{
|
|
1214
|
-
"name": "autocomplete",
|
|
1215
|
-
"type": {
|
|
1216
|
-
"text": "string"
|
|
1217
|
-
},
|
|
1218
|
-
"description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
|
|
1219
|
-
"fieldName": "autocomplete"
|
|
1220
|
-
},
|
|
1221
|
-
{
|
|
1222
|
-
"name": "autoPlacement",
|
|
1223
|
-
"type": {
|
|
1224
|
-
"text": "boolean"
|
|
1225
|
-
},
|
|
1226
|
-
"description": "If declared, bib's position will be automatically calculated where to appear.",
|
|
1227
|
-
"fieldName": "autoPlacement"
|
|
1228
|
-
},
|
|
1229
|
-
{
|
|
1230
|
-
"name": "availableOptions",
|
|
1231
|
-
"type": {
|
|
1232
|
-
"text": "array"
|
|
1233
|
-
},
|
|
1234
|
-
"description": "Array of available options to display in the dropdown.",
|
|
1235
|
-
"fieldName": "availableOptions"
|
|
1236
746
|
},
|
|
1237
747
|
{
|
|
1238
|
-
"
|
|
1239
|
-
"
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
748
|
+
"kind": "method",
|
|
749
|
+
"name": "handleKeyDown",
|
|
750
|
+
"parameters": [
|
|
751
|
+
{
|
|
752
|
+
"name": "event",
|
|
753
|
+
"description": "The keydown event from the checkbox input.",
|
|
754
|
+
"type": {
|
|
755
|
+
"text": "KeyboardEvent"
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
],
|
|
759
|
+
"description": "Handles keydown event to toggle the checkbox with Space key.",
|
|
760
|
+
"privacy": "private",
|
|
761
|
+
"return": {
|
|
762
|
+
"type": {
|
|
763
|
+
"text": "void"
|
|
764
|
+
}
|
|
765
|
+
}
|
|
1245
766
|
},
|
|
1246
767
|
{
|
|
1247
|
-
"
|
|
768
|
+
"kind": "field",
|
|
769
|
+
"name": "appearance",
|
|
770
|
+
"privacy": "public",
|
|
1248
771
|
"type": {
|
|
1249
|
-
"text": "
|
|
772
|
+
"text": "'default' | 'inverse'"
|
|
1250
773
|
},
|
|
1251
|
-
"description": "
|
|
1252
|
-
"
|
|
774
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
775
|
+
"default": "'default'",
|
|
776
|
+
"attribute": "appearance",
|
|
777
|
+
"reflects": true
|
|
1253
778
|
},
|
|
1254
779
|
{
|
|
1255
|
-
"
|
|
780
|
+
"kind": "field",
|
|
781
|
+
"name": "checked",
|
|
782
|
+
"privacy": "public",
|
|
1256
783
|
"type": {
|
|
1257
784
|
"text": "boolean"
|
|
1258
785
|
},
|
|
1259
|
-
"description": "If set,
|
|
1260
|
-
"
|
|
786
|
+
"description": "If set to true, the checkbox will be filled with a checkmark.",
|
|
787
|
+
"attribute": "checked",
|
|
788
|
+
"reflects": true
|
|
1261
789
|
},
|
|
1262
790
|
{
|
|
1263
|
-
"
|
|
791
|
+
"kind": "field",
|
|
792
|
+
"name": "disabled",
|
|
793
|
+
"privacy": "public",
|
|
1264
794
|
"type": {
|
|
1265
795
|
"text": "boolean"
|
|
1266
796
|
},
|
|
1267
|
-
"description": "If
|
|
1268
|
-
"
|
|
797
|
+
"description": "If set to true, the checkbox will not be clickable.",
|
|
798
|
+
"attribute": "disabled",
|
|
799
|
+
"reflects": true
|
|
1269
800
|
},
|
|
1270
801
|
{
|
|
802
|
+
"kind": "field",
|
|
1271
803
|
"name": "error",
|
|
804
|
+
"privacy": "public",
|
|
1272
805
|
"type": {
|
|
1273
|
-
"text": "
|
|
806
|
+
"text": "boolean"
|
|
1274
807
|
},
|
|
1275
|
-
"description": "
|
|
1276
|
-
"
|
|
808
|
+
"description": "If set to true, the checkbox will be displayed with an error state.",
|
|
809
|
+
"attribute": "error",
|
|
810
|
+
"reflects": true
|
|
1277
811
|
},
|
|
1278
812
|
{
|
|
1279
|
-
"
|
|
813
|
+
"kind": "field",
|
|
814
|
+
"name": "id",
|
|
815
|
+
"privacy": "public",
|
|
1280
816
|
"type": {
|
|
1281
817
|
"text": "string"
|
|
1282
818
|
},
|
|
1283
|
-
"description": "
|
|
1284
|
-
"
|
|
819
|
+
"description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
|
|
820
|
+
"attribute": "id"
|
|
1285
821
|
},
|
|
1286
822
|
{
|
|
1287
|
-
"
|
|
823
|
+
"kind": "field",
|
|
824
|
+
"name": "inputId",
|
|
825
|
+
"privacy": "private",
|
|
1288
826
|
"type": {
|
|
1289
827
|
"text": "string"
|
|
1290
828
|
},
|
|
1291
|
-
"description": "
|
|
1292
|
-
"fieldName": "inputmode"
|
|
829
|
+
"description": "The id for input node."
|
|
1293
830
|
},
|
|
1294
831
|
{
|
|
1295
|
-
"
|
|
832
|
+
"kind": "field",
|
|
833
|
+
"name": "name",
|
|
834
|
+
"privacy": "public",
|
|
1296
835
|
"type": {
|
|
1297
836
|
"text": "string"
|
|
1298
837
|
},
|
|
1299
|
-
"description": "
|
|
1300
|
-
"
|
|
1301
|
-
"fieldName": "layout",
|
|
1302
|
-
"inheritedFrom": {
|
|
1303
|
-
"name": "AuroElement",
|
|
1304
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
1305
|
-
}
|
|
1306
|
-
},
|
|
1307
|
-
{
|
|
1308
|
-
"name": "matchWidth",
|
|
1309
|
-
"type": {
|
|
1310
|
-
"text": "boolean"
|
|
1311
|
-
},
|
|
1312
|
-
"description": "If declared, the popover and trigger will be set to the same width.",
|
|
1313
|
-
"fieldName": "matchWidth"
|
|
1314
|
-
},
|
|
1315
|
-
{
|
|
1316
|
-
"name": "noFilter",
|
|
1317
|
-
"type": {
|
|
1318
|
-
"text": "boolean"
|
|
1319
|
-
},
|
|
1320
|
-
"description": "If set, combobox will not filter menuoptions based on input.",
|
|
1321
|
-
"fieldName": "noFilter"
|
|
838
|
+
"description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
|
|
839
|
+
"attribute": "name"
|
|
1322
840
|
},
|
|
1323
841
|
{
|
|
1324
|
-
"
|
|
842
|
+
"kind": "field",
|
|
843
|
+
"name": "onDark",
|
|
844
|
+
"privacy": "public",
|
|
1325
845
|
"type": {
|
|
1326
846
|
"text": "boolean"
|
|
1327
847
|
},
|
|
1328
|
-
"description": "
|
|
1329
|
-
"
|
|
848
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
849
|
+
"attribute": "onDark",
|
|
850
|
+
"reflects": true
|
|
1330
851
|
},
|
|
1331
852
|
{
|
|
1332
|
-
"
|
|
853
|
+
"kind": "field",
|
|
854
|
+
"name": "touched",
|
|
855
|
+
"privacy": "private",
|
|
1333
856
|
"type": {
|
|
1334
857
|
"text": "boolean"
|
|
1335
858
|
},
|
|
1336
|
-
"description": "
|
|
1337
|
-
"fieldName": "shift"
|
|
859
|
+
"description": "Indicates whether the checkbox has been interacted with."
|
|
1338
860
|
},
|
|
1339
861
|
{
|
|
1340
|
-
"
|
|
862
|
+
"kind": "field",
|
|
863
|
+
"name": "value",
|
|
864
|
+
"privacy": "public",
|
|
1341
865
|
"type": {
|
|
1342
|
-
"text": "
|
|
866
|
+
"text": "string"
|
|
1343
867
|
},
|
|
1344
|
-
"description": "
|
|
1345
|
-
"
|
|
868
|
+
"description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
|
|
869
|
+
"attribute": "value"
|
|
1346
870
|
},
|
|
1347
871
|
{
|
|
1348
|
-
"
|
|
872
|
+
"kind": "field",
|
|
873
|
+
"name": "tabIndex",
|
|
874
|
+
"privacy": "private",
|
|
1349
875
|
"type": {
|
|
1350
876
|
"text": "number"
|
|
1351
877
|
},
|
|
1352
|
-
"description": "
|
|
1353
|
-
"
|
|
1354
|
-
"
|
|
878
|
+
"description": "The tabindex attribute for the checkbox.",
|
|
879
|
+
"attribute": "tabindex",
|
|
880
|
+
"reflects": true
|
|
1355
881
|
},
|
|
1356
882
|
{
|
|
1357
|
-
"
|
|
883
|
+
"kind": "field",
|
|
884
|
+
"name": "ariaChecked",
|
|
885
|
+
"privacy": "private",
|
|
1358
886
|
"type": {
|
|
1359
|
-
"text": "
|
|
887
|
+
"text": "string"
|
|
1360
888
|
},
|
|
1361
|
-
"description": "
|
|
1362
|
-
"
|
|
889
|
+
"description": "The aria-checked attribute for the checkbox.",
|
|
890
|
+
"attribute": "aria-checked",
|
|
891
|
+
"reflects": true
|
|
1363
892
|
},
|
|
1364
893
|
{
|
|
1365
|
-
"
|
|
894
|
+
"kind": "field",
|
|
895
|
+
"name": "ariaDisabled",
|
|
896
|
+
"privacy": "private",
|
|
1366
897
|
"type": {
|
|
1367
|
-
"text": "
|
|
898
|
+
"text": "string"
|
|
1368
899
|
},
|
|
1369
|
-
"description": "
|
|
1370
|
-
"
|
|
900
|
+
"description": "The aria-disabled attribute for the checkbox.",
|
|
901
|
+
"attribute": "aria-disabled",
|
|
902
|
+
"reflects": true
|
|
1371
903
|
},
|
|
1372
904
|
{
|
|
1373
|
-
"
|
|
905
|
+
"kind": "field",
|
|
906
|
+
"name": "role",
|
|
907
|
+
"privacy": "private",
|
|
1374
908
|
"type": {
|
|
1375
|
-
"text": "
|
|
909
|
+
"text": "string"
|
|
1376
910
|
},
|
|
1377
|
-
"description": "
|
|
1378
|
-
"
|
|
1379
|
-
|
|
911
|
+
"description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
|
|
912
|
+
"attribute": "role",
|
|
913
|
+
"reflects": true
|
|
914
|
+
}
|
|
915
|
+
],
|
|
916
|
+
"events": [
|
|
1380
917
|
{
|
|
1381
|
-
"name": "
|
|
918
|
+
"name": "auroCheckbox-input",
|
|
1382
919
|
"type": {
|
|
1383
|
-
"text": "
|
|
1384
|
-
}
|
|
1385
|
-
"description": "Position where the bib should appear relative to the trigger.",
|
|
1386
|
-
"default": "'bottom-start'",
|
|
1387
|
-
"fieldName": "placement"
|
|
920
|
+
"text": "CustomEvent"
|
|
921
|
+
}
|
|
1388
922
|
},
|
|
1389
923
|
{
|
|
1390
|
-
"name": "
|
|
924
|
+
"name": "auroCheckbox-focusin",
|
|
1391
925
|
"type": {
|
|
1392
|
-
"text": "
|
|
1393
|
-
}
|
|
1394
|
-
"description": "Define custom placeholder text, only supported by date input formats.",
|
|
1395
|
-
"fieldName": "placeholder"
|
|
926
|
+
"text": "CustomEvent"
|
|
927
|
+
}
|
|
1396
928
|
},
|
|
1397
929
|
{
|
|
1398
|
-
"name": "
|
|
930
|
+
"name": "auroCheckbox-focusout",
|
|
1399
931
|
"type": {
|
|
1400
|
-
"text": "
|
|
1401
|
-
}
|
|
1402
|
-
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
1403
|
-
"fieldName": "required"
|
|
932
|
+
"text": "CustomEvent"
|
|
933
|
+
}
|
|
1404
934
|
},
|
|
1405
935
|
{
|
|
1406
|
-
"name": "setCustomValidity",
|
|
1407
936
|
"type": {
|
|
1408
|
-
"text": "
|
|
937
|
+
"text": "CustomEvent<any>"
|
|
1409
938
|
},
|
|
1410
|
-
"description": "
|
|
1411
|
-
"
|
|
939
|
+
"description": "(Deprecated) Notifies when checked value is changed.",
|
|
940
|
+
"name": "change"
|
|
1412
941
|
},
|
|
1413
942
|
{
|
|
1414
|
-
"name": "setCustomValidityCustomError",
|
|
1415
943
|
"type": {
|
|
1416
|
-
"text": "
|
|
944
|
+
"text": "InputEvent"
|
|
1417
945
|
},
|
|
1418
|
-
"description": "
|
|
1419
|
-
"
|
|
1420
|
-
}
|
|
946
|
+
"description": "Notifies when when checked value is changed by user's interface.",
|
|
947
|
+
"name": "input"
|
|
948
|
+
}
|
|
949
|
+
],
|
|
950
|
+
"attributes": [
|
|
1421
951
|
{
|
|
1422
|
-
"name": "
|
|
952
|
+
"name": "appearance",
|
|
1423
953
|
"type": {
|
|
1424
|
-
"text": "
|
|
954
|
+
"text": "'default' | 'inverse'"
|
|
1425
955
|
},
|
|
1426
|
-
"description": "
|
|
1427
|
-
"
|
|
956
|
+
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
957
|
+
"default": "'default'",
|
|
958
|
+
"fieldName": "appearance"
|
|
1428
959
|
},
|
|
1429
960
|
{
|
|
1430
|
-
"name": "
|
|
961
|
+
"name": "checked",
|
|
1431
962
|
"type": {
|
|
1432
|
-
"text": "
|
|
963
|
+
"text": "boolean"
|
|
1433
964
|
},
|
|
1434
|
-
"description": "
|
|
1435
|
-
"fieldName": "
|
|
965
|
+
"description": "If set to true, the checkbox will be filled with a checkmark.",
|
|
966
|
+
"fieldName": "checked"
|
|
1436
967
|
},
|
|
1437
968
|
{
|
|
1438
|
-
"name": "
|
|
969
|
+
"name": "disabled",
|
|
1439
970
|
"type": {
|
|
1440
971
|
"text": "boolean"
|
|
1441
972
|
},
|
|
1442
|
-
"description": "If set, the
|
|
1443
|
-
"fieldName": "
|
|
973
|
+
"description": "If set to true, the checkbox will not be clickable.",
|
|
974
|
+
"fieldName": "disabled"
|
|
1444
975
|
},
|
|
1445
976
|
{
|
|
1446
|
-
"name": "
|
|
977
|
+
"name": "error",
|
|
1447
978
|
"type": {
|
|
1448
|
-
"text": "
|
|
979
|
+
"text": "boolean"
|
|
1449
980
|
},
|
|
1450
|
-
"description": "
|
|
1451
|
-
"fieldName": "
|
|
981
|
+
"description": "If set to true, the checkbox will be displayed with an error state.",
|
|
982
|
+
"fieldName": "error"
|
|
1452
983
|
},
|
|
1453
984
|
{
|
|
1454
|
-
"name": "
|
|
985
|
+
"name": "id",
|
|
1455
986
|
"type": {
|
|
1456
987
|
"text": "string"
|
|
1457
988
|
},
|
|
1458
|
-
"description": "
|
|
1459
|
-
"fieldName": "
|
|
989
|
+
"description": "The id global attribute defines an identifier (ID) which must be unique in the whole document.",
|
|
990
|
+
"fieldName": "id"
|
|
1460
991
|
},
|
|
1461
992
|
{
|
|
1462
|
-
"name": "
|
|
993
|
+
"name": "name",
|
|
1463
994
|
"type": {
|
|
1464
995
|
"text": "string"
|
|
1465
996
|
},
|
|
1466
|
-
"description": "
|
|
1467
|
-
"fieldName": "
|
|
997
|
+
"description": "Accepts any string and is used to identify related checkboxes when submitting form data.",
|
|
998
|
+
"fieldName": "name"
|
|
1468
999
|
},
|
|
1469
1000
|
{
|
|
1470
|
-
"name": "
|
|
1001
|
+
"name": "onDark",
|
|
1471
1002
|
"type": {
|
|
1472
|
-
"text": "
|
|
1003
|
+
"text": "boolean"
|
|
1473
1004
|
},
|
|
1474
|
-
"description": "
|
|
1475
|
-
"fieldName": "
|
|
1005
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
1006
|
+
"fieldName": "onDark"
|
|
1476
1007
|
},
|
|
1477
1008
|
{
|
|
1478
|
-
"name": "
|
|
1009
|
+
"name": "value",
|
|
1479
1010
|
"type": {
|
|
1480
|
-
"text": "
|
|
1011
|
+
"text": "string"
|
|
1481
1012
|
},
|
|
1482
|
-
"description": "
|
|
1483
|
-
"fieldName": "
|
|
1013
|
+
"description": "Sets the element's input value. Must be unique within an auro-checkbox-group element.",
|
|
1014
|
+
"fieldName": "value"
|
|
1484
1015
|
},
|
|
1485
1016
|
{
|
|
1486
|
-
"name": "
|
|
1017
|
+
"name": "tabindex",
|
|
1487
1018
|
"type": {
|
|
1488
|
-
"text": "
|
|
1019
|
+
"text": "number"
|
|
1489
1020
|
},
|
|
1490
|
-
"description": "
|
|
1491
|
-
"
|
|
1492
|
-
"fieldName": "fullscreenBreakpoint"
|
|
1021
|
+
"description": "The tabindex attribute for the checkbox.",
|
|
1022
|
+
"fieldName": "tabIndex"
|
|
1493
1023
|
},
|
|
1494
1024
|
{
|
|
1495
|
-
"name": "
|
|
1025
|
+
"name": "aria-checked",
|
|
1496
1026
|
"type": {
|
|
1497
1027
|
"text": "string"
|
|
1498
1028
|
},
|
|
1499
|
-
"
|
|
1500
|
-
"
|
|
1501
|
-
"name": "AuroElement",
|
|
1502
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
1503
|
-
}
|
|
1029
|
+
"description": "The aria-checked attribute for the checkbox.",
|
|
1030
|
+
"fieldName": "ariaChecked"
|
|
1504
1031
|
},
|
|
1505
1032
|
{
|
|
1506
|
-
"name": "
|
|
1033
|
+
"name": "aria-disabled",
|
|
1507
1034
|
"type": {
|
|
1508
1035
|
"text": "string"
|
|
1509
1036
|
},
|
|
1510
|
-
"
|
|
1511
|
-
"
|
|
1512
|
-
"name": "AuroElement",
|
|
1513
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
1514
|
-
}
|
|
1037
|
+
"description": "The aria-disabled attribute for the checkbox.",
|
|
1038
|
+
"fieldName": "ariaDisabled"
|
|
1515
1039
|
},
|
|
1516
1040
|
{
|
|
1517
|
-
"name": "
|
|
1041
|
+
"name": "role",
|
|
1518
1042
|
"type": {
|
|
1519
|
-
"text": "
|
|
1043
|
+
"text": "string"
|
|
1520
1044
|
},
|
|
1521
|
-
"
|
|
1522
|
-
"
|
|
1523
|
-
"name": "AuroElement",
|
|
1524
|
-
"module": "components/layoutElement/src/auroElement.js"
|
|
1525
|
-
}
|
|
1045
|
+
"description": "The ARIA role for the element. Must remain 'checkbox' for screen readers\nto correctly identify this as a checkbox control.",
|
|
1046
|
+
"fieldName": "role"
|
|
1526
1047
|
}
|
|
1527
1048
|
],
|
|
1528
1049
|
"superclass": {
|
|
1529
|
-
"name": "
|
|
1530
|
-
"
|
|
1050
|
+
"name": "LitElement",
|
|
1051
|
+
"package": "lit"
|
|
1531
1052
|
},
|
|
1532
|
-
"tagName": "auro-
|
|
1053
|
+
"tagName": "auro-checkbox",
|
|
1533
1054
|
"customElement": true
|
|
1534
1055
|
}
|
|
1535
1056
|
],
|
|
1536
1057
|
"exports": [
|
|
1537
1058
|
{
|
|
1538
1059
|
"kind": "js",
|
|
1539
|
-
"name": "
|
|
1060
|
+
"name": "AuroCheckbox",
|
|
1540
1061
|
"declaration": {
|
|
1541
|
-
"name": "
|
|
1542
|
-
"module": "components/
|
|
1062
|
+
"name": "AuroCheckbox",
|
|
1063
|
+
"module": "components/checkbox/src/auro-checkbox.js"
|
|
1543
1064
|
}
|
|
1544
1065
|
}
|
|
1545
1066
|
]
|
|
1546
1067
|
},
|
|
1547
1068
|
{
|
|
1548
1069
|
"kind": "javascript-module",
|
|
1549
|
-
"path": "components/
|
|
1550
|
-
"declarations": [
|
|
1551
|
-
{
|
|
1552
|
-
"kind": "variable",
|
|
1553
|
-
"name": "comboboxKeyboardStrategy",
|
|
1554
|
-
"type": {
|
|
1555
|
-
"text": "object"
|
|
1556
|
-
},
|
|
1557
|
-
"default": "{ async Enter(component, evt, ctx) { // If the clear button has focus, let the browser activate it normally. // stopPropagation prevents parent containers (e.g., forms) from treating // Enter as a submit, but we must NOT call preventDefault — that would // block the browser's built-in \"Enter activates focused button\" behavior. if (isClearBtnFocused(ctx)) { evt.stopPropagation(); return; } if (ctx.isExpanded && component.optionActive) { component.menu.makeSelection(); await component.updateComplete; evt.preventDefault(); evt.stopPropagation(); component.setClearBtnFocus(); } else { // Prevent the keypress from bubbling to parent containers (e.g., forms) // which could interpret Enter as a submit or trigger other unintended behavior. // This is safe because showBib() opens the dialog programmatically, // not via event propagation. evt.preventDefault(); evt.stopPropagation(); component.showBib(); } }, Tab(component, evt, ctx) { if (!ctx.isExpanded) { return; } // Shift+Tab moves the highlight to the first non-disabled option // without making a selection or closing the bib. if (evt.shiftKey) { evt.preventDefault(); const firstActive = component.menu.menuService.menuOptions.find((option) => option.isActive); if (firstActive) { component.menu.updateActiveOption(firstActive); } return; } if (ctx.isModal) { if (!ctx.activeInput) { return; } const clearBtn = getClearBtn(ctx); const clearBtnHasFocus = isClearBtnFocused(ctx, clearBtn); // Tab from input: if clear button exists and doesn't have focus, focus it if (clearBtn && !clearBtnHasFocus && ctx.activeInput.value) { // Force clear button container visible to work around Safari not // propagating :focus-within through shadow DOM boundaries, which // causes .wrapper:not(:focus-within) to hide .notification.clear. const clearContainer = clearBtn.closest('.clear'); if (clearContainer) { clearContainer.style.display = 'flex'; clearBtn.addEventListener('focusout', () => { // Delay cleanup so :focus-within settles when focus moves // to a sibling (e.g., Shift+Tab back to the input). requestAnimationFrame(() => { clearContainer.style.display = ''; }); }, { once: true }); } // Focus the native button inside auro-button so the browser // treats it as a real focusable element inside the dialog. const nativeBtn = clearBtn.shadowRoot && clearBtn.shadowRoot.querySelector('button'); if (nativeBtn) { nativeBtn.focus(); } else { clearBtn.focus(); } return; } // Tab from clear button (or no clear button / no value) → // select the highlighted option if any, then close if (component.optionActive) { component.menu.makeSelection(); } component.hideBib(); return; } // Non-fullscreen: select + close if (component.menu.optionActive && component.menu.optionActive.value) { component.menu.value = component.menu.optionActive.value; } component.hideBib(); }, ArrowUp(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowUp normally. if (isClearBtnFocused(ctx)) { return; } if (component.availableOptions.length > 0) { component.showBib(); } // Read live visibility — ctx.isExpanded was computed before showBib() above, // so it wouldn't reflect the state change. if (component.dropdown.isPopoverVisible) { evt.preventDefault(); navigateArrow(component, 'up'); } }, ArrowDown(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowDown normally. if (isClearBtnFocused(ctx)) { return; } if (component.availableOptions.length > 0) { component.showBib(); } // Read live visibility — ctx.isExpanded was computed before showBib() above, // so it wouldn't reflect the state change. if (component.dropdown.isPopoverVisible) { evt.preventDefault(); navigateArrow(component, 'down'); } }, }"
|
|
1558
|
-
}
|
|
1559
|
-
],
|
|
1070
|
+
"path": "components/checkbox/src/index.js",
|
|
1071
|
+
"declarations": [],
|
|
1560
1072
|
"exports": [
|
|
1561
1073
|
{
|
|
1562
1074
|
"kind": "js",
|
|
1563
|
-
"name": "
|
|
1075
|
+
"name": "AuroCheckbox",
|
|
1564
1076
|
"declaration": {
|
|
1565
|
-
"name": "
|
|
1566
|
-
"module": "components/
|
|
1077
|
+
"name": "AuroCheckbox",
|
|
1078
|
+
"module": "components/checkbox/src/index.js"
|
|
1567
1079
|
}
|
|
1568
|
-
}
|
|
1569
|
-
]
|
|
1570
|
-
},
|
|
1571
|
-
{
|
|
1572
|
-
"kind": "javascript-module",
|
|
1573
|
-
"path": "components/combobox/src/index.js",
|
|
1574
|
-
"declarations": [],
|
|
1575
|
-
"exports": [
|
|
1080
|
+
},
|
|
1576
1081
|
{
|
|
1577
1082
|
"kind": "js",
|
|
1578
|
-
"name": "
|
|
1083
|
+
"name": "AuroCheckboxGroup",
|
|
1579
1084
|
"declaration": {
|
|
1580
|
-
"name": "
|
|
1581
|
-
"module": "components/
|
|
1085
|
+
"name": "AuroCheckboxGroup",
|
|
1086
|
+
"module": "components/checkbox/src/index.js"
|
|
1582
1087
|
}
|
|
1583
1088
|
}
|
|
1584
1089
|
]
|
|
1585
1090
|
},
|
|
1586
1091
|
{
|
|
1587
1092
|
"kind": "javascript-module",
|
|
1588
|
-
"path": "components/
|
|
1093
|
+
"path": "components/checkbox/src/registered.js",
|
|
1589
1094
|
"declarations": [],
|
|
1590
|
-
"exports": [
|
|
1591
|
-
{
|
|
1592
|
-
"kind": "js",
|
|
1593
|
-
"name": "AuroCombobox",
|
|
1594
|
-
"declaration": {
|
|
1595
|
-
"name": "AuroCombobox",
|
|
1596
|
-
"module": "components/combobox/src/registered.js"
|
|
1597
|
-
}
|
|
1598
|
-
}
|
|
1599
|
-
]
|
|
1095
|
+
"exports": []
|
|
1600
1096
|
},
|
|
1601
1097
|
{
|
|
1602
1098
|
"kind": "javascript-module",
|
|
1603
|
-
"path": "components/
|
|
1099
|
+
"path": "components/combobox/src/auro-combobox.js",
|
|
1604
1100
|
"declarations": [
|
|
1605
1101
|
{
|
|
1606
1102
|
"kind": "class",
|
|
1607
|
-
"description": "The `auro-
|
|
1608
|
-
"name": "
|
|
1103
|
+
"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.",
|
|
1104
|
+
"name": "AuroCombobox",
|
|
1609
1105
|
"slots": [
|
|
1610
1106
|
{
|
|
1611
|
-
"description": "
|
|
1612
|
-
"name": "
|
|
1107
|
+
"description": "Default slot for the menu content.",
|
|
1108
|
+
"name": ""
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"type": {
|
|
1112
|
+
"text": "HTMLSlotElement"
|
|
1113
|
+
},
|
|
1114
|
+
"description": "Allows overriding the optional display text \"(optional)\", which appears next to the label.",
|
|
1115
|
+
"name": "optionalLabel"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"description": "Sets aria-label on clear button",
|
|
1119
|
+
"name": "ariaLabel.input.clear"
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"description": "Sets aria-label on close button in fullscreen bib",
|
|
1123
|
+
"name": "ariaLabel.bib.close"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"description": "Defines the headline to display above menu-options",
|
|
1127
|
+
"name": "bib.fullscreen.headline"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"description": "Defines the content of the label.",
|
|
1131
|
+
"name": "label"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"description": "Defines the content of the helpText.",
|
|
1135
|
+
"name": "helpText"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"description": "Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.",
|
|
1139
|
+
"name": "displayValue"
|
|
1140
|
+
}
|
|
1141
|
+
],
|
|
1142
|
+
"members": [
|
|
1143
|
+
{
|
|
1144
|
+
"kind": "method",
|
|
1145
|
+
"name": "_initializeDefaults",
|
|
1146
|
+
"privacy": "private",
|
|
1147
|
+
"return": {
|
|
1148
|
+
"type": {
|
|
1149
|
+
"text": "void"
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"kind": "field",
|
|
1155
|
+
"name": "inputValue",
|
|
1156
|
+
"description": "Returns the current value of the input element within the combobox.",
|
|
1157
|
+
"return": {
|
|
1158
|
+
"type": {
|
|
1159
|
+
"text": "string|undefined"
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
"readonly": true
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"kind": "method",
|
|
1166
|
+
"name": "isValid",
|
|
1167
|
+
"description": "Checks if the element is valid.",
|
|
1168
|
+
"return": {
|
|
1169
|
+
"type": {
|
|
1170
|
+
"text": "boolean"
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"kind": "method",
|
|
1176
|
+
"name": "register",
|
|
1177
|
+
"static": true,
|
|
1178
|
+
"parameters": [
|
|
1179
|
+
{
|
|
1180
|
+
"name": "name",
|
|
1181
|
+
"default": "'auro-combobox'",
|
|
1182
|
+
"description": "The name of the element that you want to register.",
|
|
1183
|
+
"optional": true,
|
|
1184
|
+
"type": {
|
|
1185
|
+
"text": "string"
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
],
|
|
1189
|
+
"description": "This will register this element with the browser."
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"kind": "method",
|
|
1193
|
+
"name": "activateFirstEnabledAvailableOption",
|
|
1194
|
+
"description": "Mark the first available (non-hidden), enabled option as `active`.",
|
|
1195
|
+
"privacy": "private",
|
|
1196
|
+
"return": {
|
|
1197
|
+
"type": {
|
|
1198
|
+
"text": "void"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"kind": "method",
|
|
1204
|
+
"name": "activateLastEnabledAvailableOption",
|
|
1205
|
+
"description": "Mark the last available (non-hidden), enabled option as `active`.",
|
|
1206
|
+
"privacy": "private",
|
|
1207
|
+
"return": {
|
|
1208
|
+
"type": {
|
|
1209
|
+
"text": "void"
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"kind": "method",
|
|
1215
|
+
"name": "updateFilter",
|
|
1216
|
+
"description": "Updates the filter for the available options based on the input value.",
|
|
1217
|
+
"privacy": "private"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"kind": "method",
|
|
1221
|
+
"name": "syncValuesAndStates",
|
|
1222
|
+
"description": "Syncs the values and states of this component, the input, and the menu, including this.optionSelected and this.menu.optionSelected.",
|
|
1223
|
+
"privacy": "private",
|
|
1224
|
+
"return": {
|
|
1225
|
+
"type": {
|
|
1226
|
+
"text": "void"
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"kind": "method",
|
|
1232
|
+
"name": "updateTriggerTextDisplay",
|
|
1233
|
+
"parameters": [
|
|
1234
|
+
{
|
|
1235
|
+
"name": "label",
|
|
1236
|
+
"description": "The label of the selected option.",
|
|
1237
|
+
"type": {
|
|
1238
|
+
"text": "string"
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
],
|
|
1242
|
+
"description": "Update displayValue or input.value, it's called when making a selection.",
|
|
1243
|
+
"privacy": "private"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"kind": "method",
|
|
1247
|
+
"name": "handleMenuOptions",
|
|
1248
|
+
"description": "Processes hidden state of all menu options and determines if there are any available options not hidden.",
|
|
1249
|
+
"privacy": "private",
|
|
1250
|
+
"return": {
|
|
1251
|
+
"type": {
|
|
1252
|
+
"text": "void"
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1613
1255
|
},
|
|
1614
1256
|
{
|
|
1615
|
-
"
|
|
1616
|
-
"name": "
|
|
1257
|
+
"kind": "method",
|
|
1258
|
+
"name": "generateOptionsArray",
|
|
1259
|
+
"description": "Determines the element error state based on the `required` attribute and input value.",
|
|
1260
|
+
"privacy": "private",
|
|
1261
|
+
"return": {
|
|
1262
|
+
"type": {
|
|
1263
|
+
"text": "void"
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1617
1266
|
},
|
|
1618
1267
|
{
|
|
1619
|
-
"
|
|
1620
|
-
"name": "
|
|
1268
|
+
"kind": "method",
|
|
1269
|
+
"name": "hideBib",
|
|
1270
|
+
"description": "Hides the dropdown bib if its open.",
|
|
1271
|
+
"return": {
|
|
1272
|
+
"type": {
|
|
1273
|
+
"text": "void"
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1621
1276
|
},
|
|
1622
1277
|
{
|
|
1623
|
-
"
|
|
1624
|
-
"name": "
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1278
|
+
"kind": "method",
|
|
1279
|
+
"name": "showBib",
|
|
1280
|
+
"description": "Shows the dropdown bib if there are options to show.",
|
|
1281
|
+
"return": {
|
|
1282
|
+
"type": {
|
|
1283
|
+
"text": "void"
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1628
1287
|
{
|
|
1629
1288
|
"kind": "method",
|
|
1630
|
-
"name": "
|
|
1289
|
+
"name": "configureDropdown",
|
|
1290
|
+
"description": "Binds all behavior needed to the dropdown after rendering.",
|
|
1291
|
+
"privacy": "private",
|
|
1292
|
+
"return": {
|
|
1293
|
+
"type": {
|
|
1294
|
+
"text": "void"
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1631
1297
|
},
|
|
1632
1298
|
{
|
|
1633
1299
|
"kind": "method",
|
|
1634
|
-
"name": "
|
|
1635
|
-
"
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1300
|
+
"name": "setClearBtnFocus",
|
|
1301
|
+
"privacy": "private"
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
"kind": "method",
|
|
1305
|
+
"name": "setTriggerInputFocus",
|
|
1306
|
+
"privacy": "private"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"kind": "method",
|
|
1310
|
+
"name": "setInputFocus",
|
|
1311
|
+
"privacy": "private"
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"kind": "method",
|
|
1315
|
+
"name": "updateBibDialogRole",
|
|
1316
|
+
"description": "Suppresses or restores dialog semantics on the bib's dialog element.\nOn desktop (non-fullscreen), VoiceOver verbosely announces \"listbox inside\nof a dialog\" which disrupts combobox usage. Setting role=\"presentation\"\nsuppresses this. In fullscreen mode, dialog semantics are restored.",
|
|
1317
|
+
"privacy": "private"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"kind": "method",
|
|
1321
|
+
"name": "updateMenuShapeSize",
|
|
1322
|
+
"description": "Update menu to default for fullscreen bib, otherwise to this.size and this.shape.",
|
|
1323
|
+
"privacy": "private"
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
"kind": "method",
|
|
1327
|
+
"name": "configureMenu",
|
|
1328
|
+
"description": "Binds all behavior needed to the menu after rendering.",
|
|
1329
|
+
"privacy": "private",
|
|
1330
|
+
"return": {
|
|
1331
|
+
"type": {
|
|
1332
|
+
"text": "void"
|
|
1645
1333
|
}
|
|
1646
|
-
|
|
1647
|
-
"description": "This will register this element with the browser."
|
|
1334
|
+
}
|
|
1648
1335
|
},
|
|
1649
1336
|
{
|
|
1650
1337
|
"kind": "method",
|
|
1651
|
-
"name": "
|
|
1338
|
+
"name": "configureInput",
|
|
1339
|
+
"description": "Binds all behavior needed to the input after rendering.",
|
|
1340
|
+
"privacy": "private",
|
|
1341
|
+
"return": {
|
|
1342
|
+
"type": {
|
|
1343
|
+
"text": "void"
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"kind": "method",
|
|
1349
|
+
"name": "handleMenuLoadingChange",
|
|
1652
1350
|
"parameters": [
|
|
1653
1351
|
{
|
|
1654
|
-
"name": "
|
|
1655
|
-
"description": "The
|
|
1352
|
+
"name": "event",
|
|
1353
|
+
"description": "The event object containing details about the loading state change.",
|
|
1656
1354
|
"type": {
|
|
1657
|
-
"text": "
|
|
1355
|
+
"text": "CustomEvent"
|
|
1658
1356
|
}
|
|
1659
1357
|
},
|
|
1660
1358
|
{
|
|
1661
|
-
"
|
|
1662
|
-
"
|
|
1359
|
+
"description": "Indicates whether the menu is currently loading.",
|
|
1360
|
+
"name": "event.detail.loading",
|
|
1663
1361
|
"type": {
|
|
1664
|
-
"text": "
|
|
1362
|
+
"text": "boolean"
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"description": "Indicates if there are loading placeholders present.",
|
|
1367
|
+
"name": "event.detail.hasLoadingPlaceholder",
|
|
1368
|
+
"type": {
|
|
1369
|
+
"text": "boolean"
|
|
1665
1370
|
}
|
|
1666
1371
|
}
|
|
1667
1372
|
],
|
|
1668
|
-
"description": "
|
|
1373
|
+
"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.",
|
|
1669
1374
|
"privacy": "private",
|
|
1670
1375
|
"return": {
|
|
1671
1376
|
"type": {
|
|
@@ -1675,8 +1380,17 @@
|
|
|
1675
1380
|
},
|
|
1676
1381
|
{
|
|
1677
1382
|
"kind": "method",
|
|
1678
|
-
"name": "
|
|
1679
|
-
"
|
|
1383
|
+
"name": "handleInputValueChange",
|
|
1384
|
+
"parameters": [
|
|
1385
|
+
{
|
|
1386
|
+
"name": "event",
|
|
1387
|
+
"description": "The input event triggered by the input element.",
|
|
1388
|
+
"type": {
|
|
1389
|
+
"text": "Event"
|
|
1390
|
+
}
|
|
1391
|
+
}
|
|
1392
|
+
],
|
|
1393
|
+
"description": "Handle changes to the input value and trigger changes that should result.",
|
|
1680
1394
|
"privacy": "private",
|
|
1681
1395
|
"return": {
|
|
1682
1396
|
"type": {
|
|
@@ -1686,8 +1400,8 @@
|
|
|
1686
1400
|
},
|
|
1687
1401
|
{
|
|
1688
1402
|
"kind": "method",
|
|
1689
|
-
"name": "
|
|
1690
|
-
"description": "
|
|
1403
|
+
"name": "configureCombobox",
|
|
1404
|
+
"description": "Binds all behavior needed to the combobox after rendering.",
|
|
1691
1405
|
"privacy": "private",
|
|
1692
1406
|
"return": {
|
|
1693
1407
|
"type": {
|
|
@@ -1695,6 +1409,35 @@
|
|
|
1695
1409
|
}
|
|
1696
1410
|
}
|
|
1697
1411
|
},
|
|
1412
|
+
{
|
|
1413
|
+
"kind": "method",
|
|
1414
|
+
"name": "focus",
|
|
1415
|
+
"description": "Focuses the combobox trigger input.",
|
|
1416
|
+
"return": {
|
|
1417
|
+
"type": {
|
|
1418
|
+
"text": "void"
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"kind": "method",
|
|
1424
|
+
"name": "setMenuValue",
|
|
1425
|
+
"parameters": [
|
|
1426
|
+
{
|
|
1427
|
+
"name": "value",
|
|
1428
|
+
"description": "The value to set on the menu.",
|
|
1429
|
+
"type": {
|
|
1430
|
+
"text": "string"
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
],
|
|
1434
|
+
"description": "Sets the menu value if menu is available.",
|
|
1435
|
+
"return": {
|
|
1436
|
+
"type": {
|
|
1437
|
+
"text": "void"
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1698
1441
|
{
|
|
1699
1442
|
"kind": "method",
|
|
1700
1443
|
"name": "reset",
|
|
@@ -1703,36 +1446,169 @@
|
|
|
1703
1446
|
"type": {
|
|
1704
1447
|
"text": "void"
|
|
1705
1448
|
}
|
|
1706
|
-
}
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"kind": "method",
|
|
1453
|
+
"name": "clear",
|
|
1454
|
+
"description": "Clears the current value of the combobox.",
|
|
1455
|
+
"return": {
|
|
1456
|
+
"type": {
|
|
1457
|
+
"text": "void"
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"kind": "method",
|
|
1463
|
+
"name": "validate",
|
|
1464
|
+
"parameters": [
|
|
1465
|
+
{
|
|
1466
|
+
"name": "force",
|
|
1467
|
+
"default": "false",
|
|
1468
|
+
"description": "Whether to force validation.",
|
|
1469
|
+
"optional": true,
|
|
1470
|
+
"type": {
|
|
1471
|
+
"text": "boolean"
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
],
|
|
1475
|
+
"description": "Validates value."
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"kind": "method",
|
|
1479
|
+
"name": "transportAssignedNodes",
|
|
1480
|
+
"parameters": [
|
|
1481
|
+
{
|
|
1482
|
+
"name": "slot",
|
|
1483
|
+
"description": "The slot element containing the nodes to apply.",
|
|
1484
|
+
"type": {
|
|
1485
|
+
"text": "HTMLSlotElement"
|
|
1486
|
+
}
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "target",
|
|
1490
|
+
"description": "The target element to apply the nodes to.",
|
|
1491
|
+
"type": {
|
|
1492
|
+
"text": "HTMLElement"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"name": "newSlotName",
|
|
1497
|
+
"description": "The new slot name for the applied nodes.",
|
|
1498
|
+
"type": {
|
|
1499
|
+
"text": "string"
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
],
|
|
1503
|
+
"description": "Applies slotted nodes to a target element with a new slot name.",
|
|
1504
|
+
"privacy": "private",
|
|
1505
|
+
"return": {
|
|
1506
|
+
"type": {
|
|
1507
|
+
"text": "void"
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"kind": "method",
|
|
1513
|
+
"name": "updateActiveOption",
|
|
1514
|
+
"parameters": [
|
|
1515
|
+
{
|
|
1516
|
+
"name": "index",
|
|
1517
|
+
"description": "Index of the option to make active.",
|
|
1518
|
+
"type": {
|
|
1519
|
+
"text": "number"
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
],
|
|
1523
|
+
"description": "Updates the active option in the menu."
|
|
1707
1524
|
},
|
|
1708
1525
|
{
|
|
1709
1526
|
"kind": "method",
|
|
1710
|
-
"name": "
|
|
1527
|
+
"name": "handleSlotChange",
|
|
1711
1528
|
"parameters": [
|
|
1712
1529
|
{
|
|
1713
|
-
"name": "
|
|
1714
|
-
"
|
|
1715
|
-
"description": "Whether to force validation.",
|
|
1716
|
-
"optional": true,
|
|
1530
|
+
"name": "event",
|
|
1531
|
+
"description": "`slotchange` event.",
|
|
1717
1532
|
"type": {
|
|
1718
|
-
"text": "
|
|
1533
|
+
"text": "Event"
|
|
1719
1534
|
}
|
|
1720
1535
|
}
|
|
1721
1536
|
],
|
|
1722
|
-
"description": "
|
|
1537
|
+
"description": "Watch for slot changes and recalculate the menuoptions.",
|
|
1538
|
+
"privacy": "private",
|
|
1539
|
+
"return": {
|
|
1540
|
+
"type": {
|
|
1541
|
+
"text": "void"
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1723
1544
|
},
|
|
1724
1545
|
{
|
|
1725
1546
|
"kind": "field",
|
|
1726
1547
|
"name": "appearance",
|
|
1727
1548
|
"privacy": "public",
|
|
1728
1549
|
"type": {
|
|
1729
|
-
"text": "
|
|
1550
|
+
"text": "string"
|
|
1730
1551
|
},
|
|
1731
1552
|
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
1732
1553
|
"default": "'default'",
|
|
1733
1554
|
"attribute": "appearance",
|
|
1734
1555
|
"reflects": true
|
|
1735
1556
|
},
|
|
1557
|
+
{
|
|
1558
|
+
"kind": "field",
|
|
1559
|
+
"name": "autocomplete",
|
|
1560
|
+
"privacy": "public",
|
|
1561
|
+
"type": {
|
|
1562
|
+
"text": "string"
|
|
1563
|
+
},
|
|
1564
|
+
"description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
|
|
1565
|
+
"attribute": "autocomplete",
|
|
1566
|
+
"reflects": true
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"kind": "field",
|
|
1570
|
+
"name": "autoPlacement",
|
|
1571
|
+
"privacy": "public",
|
|
1572
|
+
"type": {
|
|
1573
|
+
"text": "boolean"
|
|
1574
|
+
},
|
|
1575
|
+
"description": "If declared, bib's position will be automatically calculated where to appear.",
|
|
1576
|
+
"attribute": "autoPlacement",
|
|
1577
|
+
"reflects": true
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"kind": "field",
|
|
1581
|
+
"name": "availableOptions",
|
|
1582
|
+
"privacy": "private",
|
|
1583
|
+
"type": {
|
|
1584
|
+
"text": "array"
|
|
1585
|
+
},
|
|
1586
|
+
"description": "Array of available options to display in the dropdown.\nThis array contains all non-hidden options (e.g., hidden by filtering on input value).",
|
|
1587
|
+
"attribute": "availableOptions"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"kind": "field",
|
|
1591
|
+
"name": "behavior",
|
|
1592
|
+
"privacy": "public",
|
|
1593
|
+
"type": {
|
|
1594
|
+
"text": "'filter' | 'suggestion'"
|
|
1595
|
+
},
|
|
1596
|
+
"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.",
|
|
1597
|
+
"default": "'suggestion'",
|
|
1598
|
+
"attribute": "behavior",
|
|
1599
|
+
"reflects": true
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"kind": "field",
|
|
1603
|
+
"name": "checkmark",
|
|
1604
|
+
"privacy": "public",
|
|
1605
|
+
"type": {
|
|
1606
|
+
"text": "boolean"
|
|
1607
|
+
},
|
|
1608
|
+
"description": "When attribute is present auro-menu will apply check marks to selected options.",
|
|
1609
|
+
"attribute": "checkmark",
|
|
1610
|
+
"reflects": true
|
|
1611
|
+
},
|
|
1736
1612
|
{
|
|
1737
1613
|
"kind": "field",
|
|
1738
1614
|
"name": "disabled",
|
|
@@ -1740,10 +1616,39 @@
|
|
|
1740
1616
|
"type": {
|
|
1741
1617
|
"text": "boolean"
|
|
1742
1618
|
},
|
|
1743
|
-
"description": "If set, disables the
|
|
1619
|
+
"description": "If set, disables the combobox.",
|
|
1744
1620
|
"attribute": "disabled",
|
|
1745
1621
|
"reflects": true
|
|
1746
1622
|
},
|
|
1623
|
+
{
|
|
1624
|
+
"kind": "field",
|
|
1625
|
+
"name": "dropdownId",
|
|
1626
|
+
"privacy": "private",
|
|
1627
|
+
"type": {
|
|
1628
|
+
"text": "string"
|
|
1629
|
+
},
|
|
1630
|
+
"description": "ID for the dropdown."
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"kind": "field",
|
|
1634
|
+
"name": "dropdownOpen",
|
|
1635
|
+
"privacy": "private",
|
|
1636
|
+
"type": {
|
|
1637
|
+
"text": "boolean"
|
|
1638
|
+
},
|
|
1639
|
+
"description": "Whether or not the dropdown is open."
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"kind": "field",
|
|
1643
|
+
"name": "dvInputOnly",
|
|
1644
|
+
"privacy": "public",
|
|
1645
|
+
"type": {
|
|
1646
|
+
"text": "boolean"
|
|
1647
|
+
},
|
|
1648
|
+
"description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
|
|
1649
|
+
"attribute": "dvInputOnly",
|
|
1650
|
+
"reflects": true
|
|
1651
|
+
},
|
|
1747
1652
|
{
|
|
1748
1653
|
"kind": "field",
|
|
1749
1654
|
"name": "error",
|
|
@@ -1757,694 +1662,816 @@
|
|
|
1757
1662
|
},
|
|
1758
1663
|
{
|
|
1759
1664
|
"kind": "field",
|
|
1760
|
-
"name": "
|
|
1665
|
+
"name": "format",
|
|
1761
1666
|
"privacy": "public",
|
|
1762
1667
|
"type": {
|
|
1763
|
-
"text": "
|
|
1668
|
+
"text": "string"
|
|
1764
1669
|
},
|
|
1765
|
-
"description": "
|
|
1766
|
-
"attribute": "
|
|
1670
|
+
"description": "Specifies the input mask format.",
|
|
1671
|
+
"attribute": "format",
|
|
1767
1672
|
"reflects": true
|
|
1768
1673
|
},
|
|
1769
1674
|
{
|
|
1770
1675
|
"kind": "field",
|
|
1771
|
-
"name": "
|
|
1676
|
+
"name": "inputmode",
|
|
1772
1677
|
"privacy": "public",
|
|
1773
1678
|
"type": {
|
|
1774
|
-
"text": "
|
|
1679
|
+
"text": "string"
|
|
1775
1680
|
},
|
|
1776
|
-
"description": "
|
|
1777
|
-
"attribute": "
|
|
1681
|
+
"description": "Exposes inputmode attribute for input.",
|
|
1682
|
+
"attribute": "inputmode",
|
|
1778
1683
|
"reflects": true
|
|
1779
1684
|
},
|
|
1780
1685
|
{
|
|
1781
1686
|
"kind": "field",
|
|
1782
|
-
"name": "
|
|
1687
|
+
"name": "layout",
|
|
1783
1688
|
"privacy": "public",
|
|
1689
|
+
"type": {
|
|
1690
|
+
"text": "string"
|
|
1691
|
+
},
|
|
1692
|
+
"description": "Sets the layout of the combobox.",
|
|
1693
|
+
"default": "'classic'",
|
|
1694
|
+
"attribute": "layout",
|
|
1695
|
+
"reflects": true,
|
|
1696
|
+
"inheritedFrom": {
|
|
1697
|
+
"name": "AuroElement",
|
|
1698
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"kind": "field",
|
|
1703
|
+
"name": "matchWidth",
|
|
1704
|
+
"privacy": "private",
|
|
1784
1705
|
"type": {
|
|
1785
1706
|
"text": "boolean"
|
|
1786
1707
|
},
|
|
1787
|
-
"description": "
|
|
1788
|
-
"attribute": "
|
|
1708
|
+
"description": "If declared, the popover and trigger will be set to the same width.",
|
|
1709
|
+
"attribute": "matchWidth",
|
|
1789
1710
|
"reflects": true
|
|
1790
1711
|
},
|
|
1791
1712
|
{
|
|
1792
1713
|
"kind": "field",
|
|
1793
|
-
"name": "
|
|
1714
|
+
"name": "noFilter",
|
|
1794
1715
|
"privacy": "public",
|
|
1795
1716
|
"type": {
|
|
1796
1717
|
"text": "boolean"
|
|
1797
1718
|
},
|
|
1798
|
-
"description": "
|
|
1799
|
-
"attribute": "
|
|
1719
|
+
"description": "If set, combobox will not filter menuoptions based on input.",
|
|
1720
|
+
"attribute": "noFilter",
|
|
1800
1721
|
"reflects": true
|
|
1801
1722
|
},
|
|
1802
1723
|
{
|
|
1803
1724
|
"kind": "field",
|
|
1804
|
-
"name": "
|
|
1725
|
+
"name": "noFlip",
|
|
1805
1726
|
"privacy": "public",
|
|
1806
1727
|
"type": {
|
|
1807
|
-
"text": "
|
|
1728
|
+
"text": "boolean"
|
|
1808
1729
|
},
|
|
1809
|
-
"description": "
|
|
1810
|
-
"attribute": "
|
|
1730
|
+
"description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
|
|
1731
|
+
"attribute": "noFlip",
|
|
1732
|
+
"reflects": true
|
|
1811
1733
|
},
|
|
1812
1734
|
{
|
|
1813
1735
|
"kind": "field",
|
|
1814
|
-
"name": "
|
|
1736
|
+
"name": "shift",
|
|
1815
1737
|
"privacy": "public",
|
|
1816
1738
|
"type": {
|
|
1817
|
-
"text": "
|
|
1739
|
+
"text": "boolean"
|
|
1818
1740
|
},
|
|
1819
|
-
"description": "
|
|
1820
|
-
"attribute": "
|
|
1741
|
+
"description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
|
|
1742
|
+
"attribute": "shift",
|
|
1743
|
+
"reflects": true
|
|
1821
1744
|
},
|
|
1822
1745
|
{
|
|
1823
1746
|
"kind": "field",
|
|
1824
|
-
"name": "
|
|
1747
|
+
"name": "noValidate",
|
|
1825
1748
|
"privacy": "public",
|
|
1826
1749
|
"type": {
|
|
1827
|
-
"text": "
|
|
1750
|
+
"text": "boolean"
|
|
1828
1751
|
},
|
|
1829
|
-
"description": "
|
|
1830
|
-
"attribute": "
|
|
1752
|
+
"description": "If set, disables auto-validation on blur.",
|
|
1753
|
+
"attribute": "noValidate",
|
|
1754
|
+
"reflects": true
|
|
1831
1755
|
},
|
|
1832
1756
|
{
|
|
1833
1757
|
"kind": "field",
|
|
1834
|
-
"name": "
|
|
1758
|
+
"name": "offset",
|
|
1835
1759
|
"privacy": "public",
|
|
1836
1760
|
"type": {
|
|
1837
|
-
"text": "
|
|
1761
|
+
"text": "number"
|
|
1838
1762
|
},
|
|
1839
|
-
"description": "
|
|
1840
|
-
"
|
|
1763
|
+
"description": "Gap between the trigger element and bib.",
|
|
1764
|
+
"default": "0",
|
|
1765
|
+
"attribute": "offset",
|
|
1841
1766
|
"reflects": true
|
|
1842
|
-
}
|
|
1843
|
-
],
|
|
1844
|
-
"events": [
|
|
1767
|
+
},
|
|
1845
1768
|
{
|
|
1846
|
-
"
|
|
1769
|
+
"kind": "field",
|
|
1770
|
+
"name": "onDark",
|
|
1771
|
+
"privacy": "public",
|
|
1847
1772
|
"type": {
|
|
1848
|
-
"text": "
|
|
1773
|
+
"text": "boolean"
|
|
1774
|
+
},
|
|
1775
|
+
"attribute": "onDark",
|
|
1776
|
+
"reflects": true,
|
|
1777
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
1778
|
+
"inheritedFrom": {
|
|
1779
|
+
"name": "AuroElement",
|
|
1780
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
1849
1781
|
}
|
|
1850
1782
|
},
|
|
1851
1783
|
{
|
|
1852
|
-
"
|
|
1853
|
-
"name": "
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1784
|
+
"kind": "field",
|
|
1785
|
+
"name": "optionSelected",
|
|
1786
|
+
"privacy": "public",
|
|
1787
|
+
"type": {
|
|
1788
|
+
"text": "HTMLElement"
|
|
1789
|
+
},
|
|
1790
|
+
"description": "Specifies the current selected option.",
|
|
1791
|
+
"attribute": "optionSelected"
|
|
1792
|
+
},
|
|
1857
1793
|
{
|
|
1858
|
-
"
|
|
1794
|
+
"kind": "field",
|
|
1795
|
+
"name": "persistInput",
|
|
1796
|
+
"privacy": "public",
|
|
1859
1797
|
"type": {
|
|
1860
|
-
"text": "
|
|
1798
|
+
"text": "boolean"
|
|
1861
1799
|
},
|
|
1862
|
-
"description": "
|
|
1863
|
-
"
|
|
1864
|
-
"
|
|
1800
|
+
"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.",
|
|
1801
|
+
"attribute": "persistInput",
|
|
1802
|
+
"reflects": true
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"kind": "field",
|
|
1806
|
+
"name": "placement",
|
|
1807
|
+
"privacy": "public",
|
|
1808
|
+
"type": {
|
|
1809
|
+
"text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
|
|
1810
|
+
},
|
|
1811
|
+
"description": "Position where the bib should appear relative to the trigger.",
|
|
1812
|
+
"default": "'bottom-start'",
|
|
1813
|
+
"attribute": "placement",
|
|
1814
|
+
"reflects": true
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"kind": "field",
|
|
1818
|
+
"name": "placeholder",
|
|
1819
|
+
"privacy": "public",
|
|
1820
|
+
"type": {
|
|
1821
|
+
"text": "string"
|
|
1822
|
+
},
|
|
1823
|
+
"description": "Define custom placeholder text, only supported by date input formats.",
|
|
1824
|
+
"attribute": "placeholder",
|
|
1825
|
+
"reflects": true
|
|
1865
1826
|
},
|
|
1866
1827
|
{
|
|
1867
|
-
"
|
|
1828
|
+
"kind": "field",
|
|
1829
|
+
"name": "required",
|
|
1830
|
+
"privacy": "public",
|
|
1868
1831
|
"type": {
|
|
1869
1832
|
"text": "boolean"
|
|
1870
1833
|
},
|
|
1871
|
-
"description": "
|
|
1872
|
-
"
|
|
1834
|
+
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
1835
|
+
"attribute": "required",
|
|
1836
|
+
"reflects": true
|
|
1873
1837
|
},
|
|
1874
1838
|
{
|
|
1875
|
-
"
|
|
1839
|
+
"kind": "field",
|
|
1840
|
+
"name": "setCustomValidity",
|
|
1841
|
+
"privacy": "public",
|
|
1876
1842
|
"type": {
|
|
1877
1843
|
"text": "string"
|
|
1878
1844
|
},
|
|
1879
|
-
"description": "
|
|
1880
|
-
"
|
|
1845
|
+
"description": "Sets a custom help text message to display for all validityStates.",
|
|
1846
|
+
"attribute": "setCustomValidity"
|
|
1881
1847
|
},
|
|
1882
1848
|
{
|
|
1883
|
-
"
|
|
1849
|
+
"kind": "field",
|
|
1850
|
+
"name": "setCustomValidityCustomError",
|
|
1851
|
+
"privacy": "public",
|
|
1884
1852
|
"type": {
|
|
1885
|
-
"text": "
|
|
1853
|
+
"text": "string"
|
|
1886
1854
|
},
|
|
1887
|
-
"description": "
|
|
1888
|
-
"
|
|
1855
|
+
"description": "Custom help text message to display when validity = `customError`.",
|
|
1856
|
+
"attribute": "setCustomValidityCustomError"
|
|
1889
1857
|
},
|
|
1890
1858
|
{
|
|
1891
|
-
"
|
|
1859
|
+
"kind": "field",
|
|
1860
|
+
"name": "setCustomValidityValueMissing",
|
|
1861
|
+
"privacy": "public",
|
|
1892
1862
|
"type": {
|
|
1893
|
-
"text": "
|
|
1863
|
+
"text": "string"
|
|
1894
1864
|
},
|
|
1895
|
-
"description": "
|
|
1896
|
-
"
|
|
1865
|
+
"description": "Custom help text message to display when validity = `valueMissing`.",
|
|
1866
|
+
"attribute": "setCustomValidityValueMissing"
|
|
1897
1867
|
},
|
|
1898
1868
|
{
|
|
1899
|
-
"
|
|
1869
|
+
"kind": "field",
|
|
1870
|
+
"name": "setCustomValidityValueMissingFilter",
|
|
1871
|
+
"privacy": "public",
|
|
1900
1872
|
"type": {
|
|
1901
|
-
"text": "
|
|
1873
|
+
"text": "string"
|
|
1902
1874
|
},
|
|
1903
|
-
"description": "
|
|
1904
|
-
"
|
|
1875
|
+
"description": "Custom help text message to display when validity = `valueMissing` due to the user not choosing a menu option when behavior = \"filter\".",
|
|
1876
|
+
"attribute": "setCustomValidityValueMissingFilter"
|
|
1905
1877
|
},
|
|
1906
1878
|
{
|
|
1907
|
-
"
|
|
1879
|
+
"kind": "field",
|
|
1880
|
+
"name": "touched",
|
|
1881
|
+
"privacy": "private",
|
|
1908
1882
|
"type": {
|
|
1909
1883
|
"text": "boolean"
|
|
1910
1884
|
},
|
|
1911
|
-
"description": "
|
|
1912
|
-
"fieldName": "required"
|
|
1885
|
+
"description": "Indicates whether the combobox is in a dirty state (has been interacted with)."
|
|
1913
1886
|
},
|
|
1914
1887
|
{
|
|
1915
|
-
"
|
|
1888
|
+
"kind": "field",
|
|
1889
|
+
"name": "triggerIcon",
|
|
1890
|
+
"privacy": "public",
|
|
1916
1891
|
"type": {
|
|
1917
|
-
"text": "
|
|
1892
|
+
"text": "boolean"
|
|
1918
1893
|
},
|
|
1919
|
-
"description": "
|
|
1920
|
-
"
|
|
1894
|
+
"description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
|
|
1895
|
+
"attribute": "triggerIcon",
|
|
1896
|
+
"reflects": true
|
|
1921
1897
|
},
|
|
1922
1898
|
{
|
|
1923
|
-
"
|
|
1899
|
+
"kind": "field",
|
|
1900
|
+
"name": "type",
|
|
1901
|
+
"privacy": "public",
|
|
1924
1902
|
"type": {
|
|
1925
1903
|
"text": "string"
|
|
1926
1904
|
},
|
|
1927
|
-
"description": "
|
|
1928
|
-
"
|
|
1905
|
+
"description": "Applies the defined value as the type attribute on `auro-input`.",
|
|
1906
|
+
"attribute": "type",
|
|
1907
|
+
"reflects": true
|
|
1929
1908
|
},
|
|
1930
1909
|
{
|
|
1931
|
-
"
|
|
1910
|
+
"kind": "field",
|
|
1911
|
+
"name": "typedValue",
|
|
1912
|
+
"privacy": "public",
|
|
1932
1913
|
"type": {
|
|
1933
1914
|
"text": "string"
|
|
1934
1915
|
},
|
|
1935
|
-
"description": "
|
|
1936
|
-
"
|
|
1916
|
+
"description": "Specifies the value of the input element within the combobox.",
|
|
1917
|
+
"attribute": "typedValue",
|
|
1918
|
+
"reflects": true
|
|
1937
1919
|
},
|
|
1938
1920
|
{
|
|
1921
|
+
"kind": "field",
|
|
1939
1922
|
"name": "validity",
|
|
1923
|
+
"privacy": "public",
|
|
1940
1924
|
"type": {
|
|
1941
1925
|
"text": "string"
|
|
1942
1926
|
},
|
|
1943
1927
|
"description": "Specifies the `validityState` this element is in.",
|
|
1944
|
-
"
|
|
1945
|
-
|
|
1946
|
-
],
|
|
1947
|
-
"superclass": {
|
|
1948
|
-
"name": "LitElement",
|
|
1949
|
-
"package": "lit"
|
|
1950
|
-
},
|
|
1951
|
-
"tagName": "auro-checkbox-group",
|
|
1952
|
-
"customElement": true
|
|
1953
|
-
}
|
|
1954
|
-
],
|
|
1955
|
-
"exports": [
|
|
1956
|
-
{
|
|
1957
|
-
"kind": "js",
|
|
1958
|
-
"name": "AuroCheckboxGroup",
|
|
1959
|
-
"declaration": {
|
|
1960
|
-
"name": "AuroCheckboxGroup",
|
|
1961
|
-
"module": "components/checkbox/src/auro-checkbox-group.js"
|
|
1962
|
-
}
|
|
1963
|
-
}
|
|
1964
|
-
]
|
|
1965
|
-
},
|
|
1966
|
-
{
|
|
1967
|
-
"kind": "javascript-module",
|
|
1968
|
-
"path": "components/checkbox/src/auro-checkbox.js",
|
|
1969
|
-
"declarations": [
|
|
1970
|
-
{
|
|
1971
|
-
"kind": "class",
|
|
1972
|
-
"description": "The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.",
|
|
1973
|
-
"name": "AuroCheckbox",
|
|
1974
|
-
"cssParts": [
|
|
1975
|
-
{
|
|
1976
|
-
"description": "apply css to a specific checkbox.",
|
|
1977
|
-
"name": "checkbox"
|
|
1928
|
+
"attribute": "validity",
|
|
1929
|
+
"reflects": true
|
|
1978
1930
|
},
|
|
1979
1931
|
{
|
|
1980
|
-
"
|
|
1981
|
-
"name": "
|
|
1932
|
+
"kind": "field",
|
|
1933
|
+
"name": "value",
|
|
1934
|
+
"privacy": "public",
|
|
1935
|
+
"type": {
|
|
1936
|
+
"text": "string"
|
|
1937
|
+
},
|
|
1938
|
+
"description": "Value selected for the dropdown menu.",
|
|
1939
|
+
"attribute": "value"
|
|
1982
1940
|
},
|
|
1983
1941
|
{
|
|
1984
|
-
"
|
|
1985
|
-
"name": "
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
"description": "
|
|
1991
|
-
"
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
"members": [
|
|
1942
|
+
"kind": "field",
|
|
1943
|
+
"name": "largeFullscreenHeadline",
|
|
1944
|
+
"privacy": "public",
|
|
1945
|
+
"type": {
|
|
1946
|
+
"text": "boolean"
|
|
1947
|
+
},
|
|
1948
|
+
"description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
|
|
1949
|
+
"attribute": "largeFullscreenHeadline",
|
|
1950
|
+
"reflects": true
|
|
1951
|
+
},
|
|
1995
1952
|
{
|
|
1996
|
-
"kind": "
|
|
1997
|
-
"name": "
|
|
1953
|
+
"kind": "field",
|
|
1954
|
+
"name": "fullscreenBreakpoint",
|
|
1955
|
+
"privacy": "public",
|
|
1956
|
+
"type": {
|
|
1957
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'"
|
|
1958
|
+
},
|
|
1959
|
+
"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.",
|
|
1960
|
+
"default": "'sm'",
|
|
1961
|
+
"attribute": "fullscreenBreakpoint",
|
|
1962
|
+
"reflects": true
|
|
1998
1963
|
},
|
|
1999
1964
|
{
|
|
2000
|
-
"kind": "
|
|
2001
|
-
"name": "
|
|
2002
|
-
"
|
|
2003
|
-
"
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
"description": "The name of element that you want to register to.",
|
|
2008
|
-
"optional": true,
|
|
2009
|
-
"type": {
|
|
2010
|
-
"text": "string"
|
|
2011
|
-
}
|
|
2012
|
-
}
|
|
2013
|
-
],
|
|
2014
|
-
"description": "This will register this element with the browser."
|
|
1965
|
+
"kind": "field",
|
|
1966
|
+
"name": "optionActive",
|
|
1967
|
+
"privacy": "private",
|
|
1968
|
+
"type": {
|
|
1969
|
+
"text": "object"
|
|
1970
|
+
},
|
|
1971
|
+
"description": "Specifies the currently active option."
|
|
2015
1972
|
},
|
|
2016
1973
|
{
|
|
2017
|
-
"kind": "
|
|
2018
|
-
"name": "
|
|
2019
|
-
"parameters": [
|
|
2020
|
-
{
|
|
2021
|
-
"name": "event",
|
|
2022
|
-
"description": "The change event from the checkbox input.",
|
|
2023
|
-
"type": {
|
|
2024
|
-
"text": "Event"
|
|
2025
|
-
}
|
|
2026
|
-
}
|
|
2027
|
-
],
|
|
2028
|
-
"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.",
|
|
1974
|
+
"kind": "field",
|
|
1975
|
+
"name": "triggerExpandedState",
|
|
2029
1976
|
"privacy": "private",
|
|
2030
|
-
"
|
|
2031
|
-
"
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
}
|
|
1977
|
+
"type": {
|
|
1978
|
+
"text": "boolean"
|
|
1979
|
+
},
|
|
1980
|
+
"description": "Deferred aria-expanded state for the trigger input.\nDelays the \"true\" transition so VoiceOver finishes its character echo\nbefore announcing \"expanded\"."
|
|
2035
1981
|
},
|
|
2036
1982
|
{
|
|
2037
|
-
"kind": "
|
|
2038
|
-
"name": "
|
|
2039
|
-
"
|
|
2040
|
-
{
|
|
2041
|
-
"name": "event",
|
|
2042
|
-
"description": "The input event from the checkbox input.",
|
|
2043
|
-
"type": {
|
|
2044
|
-
"text": "Event"
|
|
2045
|
-
}
|
|
2046
|
-
}
|
|
2047
|
-
],
|
|
2048
|
-
"description": "Handles the input event for the checkbox input.\nUpdates the checked state and dispatches a custom 'auroCheckbox-input' event.",
|
|
1983
|
+
"kind": "field",
|
|
1984
|
+
"name": "componentHasFocus",
|
|
1985
|
+
"description": "Returns true if the element has focus.",
|
|
2049
1986
|
"privacy": "private",
|
|
2050
1987
|
"return": {
|
|
2051
1988
|
"type": {
|
|
2052
|
-
"text": "
|
|
1989
|
+
"text": "boolean"
|
|
2053
1990
|
}
|
|
1991
|
+
},
|
|
1992
|
+
"readonly": true,
|
|
1993
|
+
"inheritedFrom": {
|
|
1994
|
+
"name": "AuroElement",
|
|
1995
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2054
1996
|
}
|
|
2055
1997
|
},
|
|
2056
1998
|
{
|
|
2057
1999
|
"kind": "method",
|
|
2058
|
-
"name": "
|
|
2059
|
-
"
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
"type": {
|
|
2063
|
-
"text": "void"
|
|
2064
|
-
}
|
|
2000
|
+
"name": "resetShapeClasses",
|
|
2001
|
+
"inheritedFrom": {
|
|
2002
|
+
"name": "AuroElement",
|
|
2003
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2065
2004
|
}
|
|
2066
2005
|
},
|
|
2067
2006
|
{
|
|
2068
2007
|
"kind": "method",
|
|
2069
|
-
"name": "
|
|
2070
|
-
"
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
"type": {
|
|
2074
|
-
"text": "HTMLElement"
|
|
2075
|
-
}
|
|
2008
|
+
"name": "resetLayoutClasses",
|
|
2009
|
+
"inheritedFrom": {
|
|
2010
|
+
"name": "AuroElement",
|
|
2011
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2076
2012
|
}
|
|
2077
2013
|
},
|
|
2078
2014
|
{
|
|
2079
2015
|
"kind": "method",
|
|
2080
|
-
"name": "
|
|
2081
|
-
"
|
|
2082
|
-
|
|
2083
|
-
"
|
|
2084
|
-
"text": "void"
|
|
2085
|
-
}
|
|
2016
|
+
"name": "updateComponentArchitecture",
|
|
2017
|
+
"inheritedFrom": {
|
|
2018
|
+
"name": "AuroElement",
|
|
2019
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2086
2020
|
}
|
|
2087
2021
|
},
|
|
2088
2022
|
{
|
|
2089
|
-
"kind": "
|
|
2090
|
-
"name": "
|
|
2091
|
-
"
|
|
2092
|
-
"
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2023
|
+
"kind": "field",
|
|
2024
|
+
"name": "shape",
|
|
2025
|
+
"privacy": "public",
|
|
2026
|
+
"type": {
|
|
2027
|
+
"text": "string"
|
|
2028
|
+
},
|
|
2029
|
+
"attribute": "shape",
|
|
2030
|
+
"reflects": true,
|
|
2031
|
+
"inheritedFrom": {
|
|
2032
|
+
"name": "AuroElement",
|
|
2033
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2097
2034
|
}
|
|
2098
2035
|
},
|
|
2099
2036
|
{
|
|
2100
|
-
"kind": "
|
|
2101
|
-
"name": "
|
|
2102
|
-
"
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
"description": "Handles keydown event to toggle the checkbox with Space key.",
|
|
2112
|
-
"privacy": "private",
|
|
2113
|
-
"return": {
|
|
2114
|
-
"type": {
|
|
2115
|
-
"text": "void"
|
|
2116
|
-
}
|
|
2037
|
+
"kind": "field",
|
|
2038
|
+
"name": "size",
|
|
2039
|
+
"privacy": "public",
|
|
2040
|
+
"type": {
|
|
2041
|
+
"text": "string"
|
|
2042
|
+
},
|
|
2043
|
+
"attribute": "size",
|
|
2044
|
+
"reflects": true,
|
|
2045
|
+
"inheritedFrom": {
|
|
2046
|
+
"name": "AuroElement",
|
|
2047
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2117
2048
|
}
|
|
2049
|
+
}
|
|
2050
|
+
],
|
|
2051
|
+
"events": [
|
|
2052
|
+
{
|
|
2053
|
+
"name": "inputValue",
|
|
2054
|
+
"type": {
|
|
2055
|
+
"text": "CustomEvent"
|
|
2056
|
+
},
|
|
2057
|
+
"description": "Notifies that the components internal HTML5 input value has changed."
|
|
2118
2058
|
},
|
|
2119
2059
|
{
|
|
2120
|
-
"
|
|
2060
|
+
"name": "input",
|
|
2061
|
+
"type": {
|
|
2062
|
+
"text": "CustomEvent"
|
|
2063
|
+
},
|
|
2064
|
+
"description": "Notifies that the component has a new value set."
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"name": "auroCombobox-valueSet",
|
|
2068
|
+
"type": {
|
|
2069
|
+
"text": "CustomEvent"
|
|
2070
|
+
},
|
|
2071
|
+
"description": "(Deprecated) Notifies that the component has a new value set."
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"description": "Notifies that the component value(s) have been validated.",
|
|
2075
|
+
"name": "auroFormElement-validated"
|
|
2076
|
+
}
|
|
2077
|
+
],
|
|
2078
|
+
"attributes": [
|
|
2079
|
+
{
|
|
2121
2080
|
"name": "appearance",
|
|
2122
|
-
"privacy": "public",
|
|
2123
2081
|
"type": {
|
|
2124
|
-
"text": "
|
|
2082
|
+
"text": "string"
|
|
2125
2083
|
},
|
|
2126
2084
|
"description": "Defines whether the component will be on lighter or darker backgrounds.",
|
|
2127
2085
|
"default": "'default'",
|
|
2128
|
-
"
|
|
2129
|
-
"reflects": true
|
|
2086
|
+
"fieldName": "appearance"
|
|
2130
2087
|
},
|
|
2131
2088
|
{
|
|
2132
|
-
"
|
|
2133
|
-
"
|
|
2134
|
-
|
|
2089
|
+
"name": "autocomplete",
|
|
2090
|
+
"type": {
|
|
2091
|
+
"text": "string"
|
|
2092
|
+
},
|
|
2093
|
+
"description": "An enumerated attribute that defines what the user agent can suggest for autofill. At this time, only `autocomplete=\"off\"` is supported.",
|
|
2094
|
+
"fieldName": "autocomplete"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"name": "autoPlacement",
|
|
2135
2098
|
"type": {
|
|
2136
2099
|
"text": "boolean"
|
|
2137
2100
|
},
|
|
2138
|
-
"description": "If
|
|
2139
|
-
"
|
|
2140
|
-
|
|
2101
|
+
"description": "If declared, bib's position will be automatically calculated where to appear.",
|
|
2102
|
+
"fieldName": "autoPlacement"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"name": "availableOptions",
|
|
2106
|
+
"type": {
|
|
2107
|
+
"text": "array"
|
|
2108
|
+
},
|
|
2109
|
+
"description": "Array of available options to display in the dropdown.\nThis array contains all non-hidden options (e.g., hidden by filtering on input value).",
|
|
2110
|
+
"fieldName": "availableOptions"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"name": "behavior",
|
|
2114
|
+
"type": {
|
|
2115
|
+
"text": "'filter' | 'suggestion'"
|
|
2116
|
+
},
|
|
2117
|
+
"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.",
|
|
2118
|
+
"default": "'suggestion'",
|
|
2119
|
+
"fieldName": "behavior"
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"name": "checkmark",
|
|
2123
|
+
"type": {
|
|
2124
|
+
"text": "boolean"
|
|
2125
|
+
},
|
|
2126
|
+
"description": "When attribute is present auro-menu will apply check marks to selected options.",
|
|
2127
|
+
"fieldName": "checkmark"
|
|
2141
2128
|
},
|
|
2142
2129
|
{
|
|
2143
|
-
"kind": "field",
|
|
2144
2130
|
"name": "disabled",
|
|
2145
|
-
"privacy": "public",
|
|
2146
2131
|
"type": {
|
|
2147
2132
|
"text": "boolean"
|
|
2148
2133
|
},
|
|
2149
|
-
"description": "If set
|
|
2150
|
-
"
|
|
2151
|
-
"reflects": true
|
|
2134
|
+
"description": "If set, disables the combobox.",
|
|
2135
|
+
"fieldName": "disabled"
|
|
2152
2136
|
},
|
|
2153
2137
|
{
|
|
2154
|
-
"
|
|
2155
|
-
"name": "error",
|
|
2156
|
-
"privacy": "public",
|
|
2138
|
+
"name": "dvInputOnly",
|
|
2157
2139
|
"type": {
|
|
2158
2140
|
"text": "boolean"
|
|
2159
2141
|
},
|
|
2160
|
-
"description": "If
|
|
2161
|
-
"
|
|
2162
|
-
"reflects": true
|
|
2142
|
+
"description": "If defined, the display value slot content will only mask the HTML5 input element. The inputs label will not be masked.",
|
|
2143
|
+
"fieldName": "dvInputOnly"
|
|
2163
2144
|
},
|
|
2164
2145
|
{
|
|
2165
|
-
"
|
|
2166
|
-
"name": "id",
|
|
2167
|
-
"privacy": "public",
|
|
2146
|
+
"name": "error",
|
|
2168
2147
|
"type": {
|
|
2169
2148
|
"text": "string"
|
|
2170
2149
|
},
|
|
2171
|
-
"description": "
|
|
2172
|
-
"
|
|
2150
|
+
"description": "When defined, sets persistent validity to `customError` and sets the validation message to the attribute value.",
|
|
2151
|
+
"fieldName": "error"
|
|
2173
2152
|
},
|
|
2174
2153
|
{
|
|
2175
|
-
"
|
|
2176
|
-
"name": "inputId",
|
|
2177
|
-
"privacy": "private",
|
|
2154
|
+
"name": "format",
|
|
2178
2155
|
"type": {
|
|
2179
2156
|
"text": "string"
|
|
2180
2157
|
},
|
|
2181
|
-
"description": "
|
|
2158
|
+
"description": "Specifies the input mask format.",
|
|
2159
|
+
"fieldName": "format"
|
|
2182
2160
|
},
|
|
2183
2161
|
{
|
|
2184
|
-
"
|
|
2185
|
-
"name": "name",
|
|
2186
|
-
"privacy": "public",
|
|
2162
|
+
"name": "inputmode",
|
|
2187
2163
|
"type": {
|
|
2188
2164
|
"text": "string"
|
|
2189
2165
|
},
|
|
2190
|
-
"description": "
|
|
2191
|
-
"
|
|
2166
|
+
"description": "Exposes inputmode attribute for input.",
|
|
2167
|
+
"fieldName": "inputmode"
|
|
2192
2168
|
},
|
|
2193
2169
|
{
|
|
2194
|
-
"
|
|
2195
|
-
"
|
|
2196
|
-
|
|
2170
|
+
"name": "layout",
|
|
2171
|
+
"type": {
|
|
2172
|
+
"text": "string"
|
|
2173
|
+
},
|
|
2174
|
+
"description": "Sets the layout of the combobox.",
|
|
2175
|
+
"default": "'classic'",
|
|
2176
|
+
"fieldName": "layout",
|
|
2177
|
+
"inheritedFrom": {
|
|
2178
|
+
"name": "AuroElement",
|
|
2179
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"name": "matchWidth",
|
|
2197
2184
|
"type": {
|
|
2198
2185
|
"text": "boolean"
|
|
2199
2186
|
},
|
|
2200
|
-
"description": "
|
|
2201
|
-
"
|
|
2202
|
-
"reflects": true
|
|
2187
|
+
"description": "If declared, the popover and trigger will be set to the same width.",
|
|
2188
|
+
"fieldName": "matchWidth"
|
|
2203
2189
|
},
|
|
2204
2190
|
{
|
|
2205
|
-
"
|
|
2206
|
-
"name": "touched",
|
|
2207
|
-
"privacy": "private",
|
|
2191
|
+
"name": "noFilter",
|
|
2208
2192
|
"type": {
|
|
2209
2193
|
"text": "boolean"
|
|
2210
2194
|
},
|
|
2211
|
-
"description": "
|
|
2195
|
+
"description": "If set, combobox will not filter menuoptions based on input.",
|
|
2196
|
+
"fieldName": "noFilter"
|
|
2212
2197
|
},
|
|
2213
2198
|
{
|
|
2214
|
-
"
|
|
2215
|
-
"name": "value",
|
|
2216
|
-
"privacy": "public",
|
|
2199
|
+
"name": "noFlip",
|
|
2217
2200
|
"type": {
|
|
2218
|
-
"text": "
|
|
2201
|
+
"text": "boolean"
|
|
2219
2202
|
},
|
|
2220
|
-
"description": "
|
|
2221
|
-
"
|
|
2203
|
+
"description": "If declared, the bib will NOT flip to an alternate position\nwhen there isn't enough space in the specified `placement`.",
|
|
2204
|
+
"fieldName": "noFlip"
|
|
2222
2205
|
},
|
|
2223
2206
|
{
|
|
2224
|
-
"
|
|
2225
|
-
"name": "tabIndex",
|
|
2226
|
-
"privacy": "private",
|
|
2207
|
+
"name": "shift",
|
|
2227
2208
|
"type": {
|
|
2228
|
-
"text": "
|
|
2209
|
+
"text": "boolean"
|
|
2229
2210
|
},
|
|
2230
|
-
"description": "
|
|
2231
|
-
"
|
|
2232
|
-
"reflects": true
|
|
2211
|
+
"description": "If declared, the dropdown will shift its position to avoid being cut off by the viewport.",
|
|
2212
|
+
"fieldName": "shift"
|
|
2233
2213
|
},
|
|
2234
2214
|
{
|
|
2235
|
-
"
|
|
2236
|
-
"name": "ariaChecked",
|
|
2237
|
-
"privacy": "private",
|
|
2215
|
+
"name": "noValidate",
|
|
2238
2216
|
"type": {
|
|
2239
|
-
"text": "
|
|
2217
|
+
"text": "boolean"
|
|
2240
2218
|
},
|
|
2241
|
-
"description": "
|
|
2242
|
-
"
|
|
2243
|
-
"reflects": true
|
|
2219
|
+
"description": "If set, disables auto-validation on blur.",
|
|
2220
|
+
"fieldName": "noValidate"
|
|
2244
2221
|
},
|
|
2245
2222
|
{
|
|
2246
|
-
"
|
|
2247
|
-
"name": "ariaDisabled",
|
|
2248
|
-
"privacy": "private",
|
|
2223
|
+
"name": "offset",
|
|
2249
2224
|
"type": {
|
|
2250
|
-
"text": "
|
|
2225
|
+
"text": "number"
|
|
2251
2226
|
},
|
|
2252
|
-
"description": "
|
|
2253
|
-
"
|
|
2254
|
-
"
|
|
2227
|
+
"description": "Gap between the trigger element and bib.",
|
|
2228
|
+
"default": "0",
|
|
2229
|
+
"fieldName": "offset"
|
|
2255
2230
|
},
|
|
2256
2231
|
{
|
|
2257
|
-
"
|
|
2258
|
-
"
|
|
2259
|
-
|
|
2232
|
+
"name": "onDark",
|
|
2233
|
+
"type": {
|
|
2234
|
+
"text": "boolean"
|
|
2235
|
+
},
|
|
2236
|
+
"description": "DEPRECATED - use `appearance=\"inverse\"` instead.",
|
|
2237
|
+
"fieldName": "onDark"
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"name": "optionSelected",
|
|
2260
2241
|
"type": {
|
|
2261
|
-
"text": "
|
|
2242
|
+
"text": "HTMLElement"
|
|
2262
2243
|
},
|
|
2263
|
-
"description": "
|
|
2264
|
-
"
|
|
2265
|
-
|
|
2266
|
-
}
|
|
2267
|
-
],
|
|
2268
|
-
"events": [
|
|
2244
|
+
"description": "Specifies the current selected option.",
|
|
2245
|
+
"fieldName": "optionSelected"
|
|
2246
|
+
},
|
|
2269
2247
|
{
|
|
2270
|
-
"name": "
|
|
2248
|
+
"name": "persistInput",
|
|
2271
2249
|
"type": {
|
|
2272
|
-
"text": "
|
|
2273
|
-
}
|
|
2250
|
+
"text": "boolean"
|
|
2251
|
+
},
|
|
2252
|
+
"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.",
|
|
2253
|
+
"fieldName": "persistInput"
|
|
2274
2254
|
},
|
|
2275
2255
|
{
|
|
2276
|
-
"name": "
|
|
2256
|
+
"name": "placement",
|
|
2277
2257
|
"type": {
|
|
2278
|
-
"text": "
|
|
2279
|
-
}
|
|
2258
|
+
"text": "'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'"
|
|
2259
|
+
},
|
|
2260
|
+
"description": "Position where the bib should appear relative to the trigger.",
|
|
2261
|
+
"default": "'bottom-start'",
|
|
2262
|
+
"fieldName": "placement"
|
|
2280
2263
|
},
|
|
2281
2264
|
{
|
|
2282
|
-
"name": "
|
|
2265
|
+
"name": "placeholder",
|
|
2283
2266
|
"type": {
|
|
2284
|
-
"text": "
|
|
2285
|
-
}
|
|
2267
|
+
"text": "string"
|
|
2268
|
+
},
|
|
2269
|
+
"description": "Define custom placeholder text, only supported by date input formats.",
|
|
2270
|
+
"fieldName": "placeholder"
|
|
2286
2271
|
},
|
|
2287
2272
|
{
|
|
2273
|
+
"name": "required",
|
|
2288
2274
|
"type": {
|
|
2289
|
-
"text": "
|
|
2275
|
+
"text": "boolean"
|
|
2290
2276
|
},
|
|
2291
|
-
"description": "
|
|
2292
|
-
"
|
|
2277
|
+
"description": "Populates the `required` attribute on the input. Used for client-side validation.",
|
|
2278
|
+
"fieldName": "required"
|
|
2293
2279
|
},
|
|
2294
2280
|
{
|
|
2281
|
+
"name": "setCustomValidity",
|
|
2295
2282
|
"type": {
|
|
2296
|
-
"text": "
|
|
2283
|
+
"text": "string"
|
|
2297
2284
|
},
|
|
2298
|
-
"description": "
|
|
2299
|
-
"
|
|
2300
|
-
}
|
|
2301
|
-
],
|
|
2302
|
-
"attributes": [
|
|
2285
|
+
"description": "Sets a custom help text message to display for all validityStates.",
|
|
2286
|
+
"fieldName": "setCustomValidity"
|
|
2287
|
+
},
|
|
2303
2288
|
{
|
|
2304
|
-
"name": "
|
|
2289
|
+
"name": "setCustomValidityCustomError",
|
|
2305
2290
|
"type": {
|
|
2306
|
-
"text": "
|
|
2291
|
+
"text": "string"
|
|
2307
2292
|
},
|
|
2308
|
-
"description": "
|
|
2309
|
-
"
|
|
2310
|
-
"fieldName": "appearance"
|
|
2293
|
+
"description": "Custom help text message to display when validity = `customError`.",
|
|
2294
|
+
"fieldName": "setCustomValidityCustomError"
|
|
2311
2295
|
},
|
|
2312
2296
|
{
|
|
2313
|
-
"name": "
|
|
2297
|
+
"name": "setCustomValidityValueMissing",
|
|
2314
2298
|
"type": {
|
|
2315
|
-
"text": "
|
|
2299
|
+
"text": "string"
|
|
2316
2300
|
},
|
|
2317
|
-
"description": "
|
|
2318
|
-
"fieldName": "
|
|
2301
|
+
"description": "Custom help text message to display when validity = `valueMissing`.",
|
|
2302
|
+
"fieldName": "setCustomValidityValueMissing"
|
|
2319
2303
|
},
|
|
2320
2304
|
{
|
|
2321
|
-
"name": "
|
|
2305
|
+
"name": "setCustomValidityValueMissingFilter",
|
|
2322
2306
|
"type": {
|
|
2323
|
-
"text": "
|
|
2307
|
+
"text": "string"
|
|
2324
2308
|
},
|
|
2325
|
-
"description": "
|
|
2326
|
-
"fieldName": "
|
|
2309
|
+
"description": "Custom help text message to display when validity = `valueMissing` due to the user not choosing a menu option when behavior = \"filter\".",
|
|
2310
|
+
"fieldName": "setCustomValidityValueMissingFilter"
|
|
2327
2311
|
},
|
|
2328
2312
|
{
|
|
2329
|
-
"name": "
|
|
2313
|
+
"name": "triggerIcon",
|
|
2330
2314
|
"type": {
|
|
2331
2315
|
"text": "boolean"
|
|
2332
2316
|
},
|
|
2333
|
-
"description": "If set
|
|
2334
|
-
"fieldName": "
|
|
2317
|
+
"description": "If set, the `icon` attribute will be applied to the trigger `auro-input` element.",
|
|
2318
|
+
"fieldName": "triggerIcon"
|
|
2335
2319
|
},
|
|
2336
2320
|
{
|
|
2337
|
-
"name": "
|
|
2321
|
+
"name": "type",
|
|
2338
2322
|
"type": {
|
|
2339
2323
|
"text": "string"
|
|
2340
2324
|
},
|
|
2341
|
-
"description": "
|
|
2342
|
-
"fieldName": "
|
|
2325
|
+
"description": "Applies the defined value as the type attribute on `auro-input`.",
|
|
2326
|
+
"fieldName": "type"
|
|
2343
2327
|
},
|
|
2344
2328
|
{
|
|
2345
|
-
"name": "
|
|
2329
|
+
"name": "typedValue",
|
|
2346
2330
|
"type": {
|
|
2347
2331
|
"text": "string"
|
|
2348
2332
|
},
|
|
2349
|
-
"description": "
|
|
2350
|
-
"fieldName": "
|
|
2333
|
+
"description": "Specifies the value of the input element within the combobox.",
|
|
2334
|
+
"fieldName": "typedValue"
|
|
2351
2335
|
},
|
|
2352
2336
|
{
|
|
2353
|
-
"name": "
|
|
2337
|
+
"name": "validity",
|
|
2354
2338
|
"type": {
|
|
2355
|
-
"text": "
|
|
2339
|
+
"text": "string"
|
|
2356
2340
|
},
|
|
2357
|
-
"description": "
|
|
2358
|
-
"fieldName": "
|
|
2341
|
+
"description": "Specifies the `validityState` this element is in.",
|
|
2342
|
+
"fieldName": "validity"
|
|
2359
2343
|
},
|
|
2360
2344
|
{
|
|
2361
2345
|
"name": "value",
|
|
2362
2346
|
"type": {
|
|
2363
2347
|
"text": "string"
|
|
2364
2348
|
},
|
|
2365
|
-
"description": "
|
|
2349
|
+
"description": "Value selected for the dropdown menu.",
|
|
2366
2350
|
"fieldName": "value"
|
|
2367
2351
|
},
|
|
2368
2352
|
{
|
|
2369
|
-
"name": "
|
|
2353
|
+
"name": "largeFullscreenHeadline",
|
|
2370
2354
|
"type": {
|
|
2371
|
-
"text": "
|
|
2355
|
+
"text": "boolean"
|
|
2372
2356
|
},
|
|
2373
|
-
"description": "
|
|
2374
|
-
"fieldName": "
|
|
2357
|
+
"description": "If declared, make bib.fullscreen.headline in HeadingDisplay.\nOtherwise, Heading 600",
|
|
2358
|
+
"fieldName": "largeFullscreenHeadline"
|
|
2375
2359
|
},
|
|
2376
2360
|
{
|
|
2377
|
-
"name": "
|
|
2361
|
+
"name": "fullscreenBreakpoint",
|
|
2378
2362
|
"type": {
|
|
2379
|
-
"text": "
|
|
2363
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'"
|
|
2380
2364
|
},
|
|
2381
|
-
"description": "
|
|
2382
|
-
"
|
|
2365
|
+
"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.",
|
|
2366
|
+
"default": "'sm'",
|
|
2367
|
+
"fieldName": "fullscreenBreakpoint"
|
|
2383
2368
|
},
|
|
2384
2369
|
{
|
|
2385
|
-
"name": "
|
|
2370
|
+
"name": "shape",
|
|
2386
2371
|
"type": {
|
|
2387
2372
|
"text": "string"
|
|
2388
2373
|
},
|
|
2389
|
-
"
|
|
2390
|
-
"
|
|
2374
|
+
"fieldName": "shape",
|
|
2375
|
+
"inheritedFrom": {
|
|
2376
|
+
"name": "AuroElement",
|
|
2377
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2378
|
+
}
|
|
2391
2379
|
},
|
|
2392
2380
|
{
|
|
2393
|
-
"name": "
|
|
2381
|
+
"name": "size",
|
|
2394
2382
|
"type": {
|
|
2395
2383
|
"text": "string"
|
|
2396
2384
|
},
|
|
2397
|
-
"
|
|
2398
|
-
"
|
|
2385
|
+
"fieldName": "size",
|
|
2386
|
+
"inheritedFrom": {
|
|
2387
|
+
"name": "AuroElement",
|
|
2388
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2389
|
+
}
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"name": "ondark",
|
|
2393
|
+
"type": {
|
|
2394
|
+
"text": "boolean"
|
|
2395
|
+
},
|
|
2396
|
+
"fieldName": "onDark",
|
|
2397
|
+
"inheritedFrom": {
|
|
2398
|
+
"name": "AuroElement",
|
|
2399
|
+
"module": "components/layoutElement/src/auroElement.js"
|
|
2400
|
+
}
|
|
2399
2401
|
}
|
|
2400
2402
|
],
|
|
2401
2403
|
"superclass": {
|
|
2402
|
-
"name": "
|
|
2403
|
-
"
|
|
2404
|
+
"name": "AuroElement",
|
|
2405
|
+
"module": "/components/layoutElement/src/auroElement.js"
|
|
2404
2406
|
},
|
|
2405
|
-
"tagName": "auro-
|
|
2407
|
+
"tagName": "auro-combobox",
|
|
2406
2408
|
"customElement": true
|
|
2407
2409
|
}
|
|
2408
2410
|
],
|
|
2409
2411
|
"exports": [
|
|
2410
2412
|
{
|
|
2411
2413
|
"kind": "js",
|
|
2412
|
-
"name": "
|
|
2414
|
+
"name": "AuroCombobox",
|
|
2413
2415
|
"declaration": {
|
|
2414
|
-
"name": "
|
|
2415
|
-
"module": "components/
|
|
2416
|
+
"name": "AuroCombobox",
|
|
2417
|
+
"module": "components/combobox/src/auro-combobox.js"
|
|
2416
2418
|
}
|
|
2417
2419
|
}
|
|
2418
2420
|
]
|
|
2419
2421
|
},
|
|
2420
2422
|
{
|
|
2421
2423
|
"kind": "javascript-module",
|
|
2422
|
-
"path": "components/
|
|
2423
|
-
"declarations": [
|
|
2424
|
+
"path": "components/combobox/src/comboboxKeyboardStrategy.js",
|
|
2425
|
+
"declarations": [
|
|
2426
|
+
{
|
|
2427
|
+
"kind": "variable",
|
|
2428
|
+
"name": "comboboxKeyboardStrategy",
|
|
2429
|
+
"type": {
|
|
2430
|
+
"text": "object"
|
|
2431
|
+
},
|
|
2432
|
+
"default": "{ ArrowDown(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowDown normally. if (isClearBtnFocused(ctx)) { return; } // option display and navigation are prevented if there are no available options if (component.availableOptions.length > 0) { evt.preventDefault(); // navigate if bib is open otherwise open it if (component.dropdown.isPopoverVisible) { if (evt.altKey || evt.metaKey) { component.activateLastEnabledAvailableOption(); } else { navigateArrow(component, 'down'); } } else { component.showBib(); } } }, ArrowUp(component, evt, ctx) { // If the clear button has focus, let the browser handle ArrowUp normally. if (isClearBtnFocused(ctx)) { return; } // option display and navigation are prevented if there are no available options if (component.availableOptions.length > 0) { evt.preventDefault(); // navigate if bib is open otherwise open it if (component.dropdown.isPopoverVisible) { if (evt.altKey || evt.metaKey) { component.activateFirstEnabledAvailableOption(); } else { navigateArrow(component, 'up'); } } else { component.showBib(); } } }, End(component, evt, ctx) { if (ctx.isExpanded) { evt.preventDefault(); evt.stopPropagation(); component.activateLastEnabledAvailableOption(); } }, Enter(component, evt, ctx) { if (isClearBtnFocused(ctx)) { // If the clear button has focus, let the browser activate it normally. // stopPropagation prevents parent containers (e.g., forms) from treating // Enter as a submit, but we must NOT call preventDefault — that would // block the browser's built-in \"Enter activates focused button\" behavior. evt.stopPropagation(); } else if (ctx.isExpanded && component.menu.optionActive) { component.menu.makeSelection(); if (ctx.isModal) { component.setTriggerInputFocus(); } evt.preventDefault(); evt.stopPropagation(); } else { // Prevent the keypress from bubbling to parent containers (e.g., forms) // which could interpret Enter as a submit or trigger other unintended behavior. // This is safe because showBib() opens the dialog programmatically, // not via event propagation. evt.preventDefault(); evt.stopPropagation(); component.showBib(); } }, Escape(component, _evt, ctx) { if (ctx.isExpanded && ctx.isModal) { component.setTriggerInputFocus(); } }, Home(component, evt, ctx) { if (ctx.isExpanded) { evt.preventDefault(); evt.stopPropagation(); component.activateFirstEnabledAvailableOption(); } }, Tab(component, evt, ctx) { if (ctx.isExpanded && !isClearBtnFocused(ctx)) { // ClearBtn will not bubble up tab key events when it's focused, so need to manage it here when focused component.menu.makeSelection(); component.hideBib(); // In fullscreen modal mode, closing the dialog does not // automatically restores focus to the input. In the tab case, // Explicitly move focus to the trigger's clear button so the // user can continues tabbing through the page normally. if (ctx.isModal && !evt.shiftKey) { component.setClearBtnFocus(); } } }, }"
|
|
2433
|
+
}
|
|
2434
|
+
],
|
|
2424
2435
|
"exports": [
|
|
2425
2436
|
{
|
|
2426
2437
|
"kind": "js",
|
|
2427
|
-
"name": "
|
|
2438
|
+
"name": "comboboxKeyboardStrategy",
|
|
2428
2439
|
"declaration": {
|
|
2429
|
-
"name": "
|
|
2430
|
-
"module": "components/
|
|
2440
|
+
"name": "comboboxKeyboardStrategy",
|
|
2441
|
+
"module": "components/combobox/src/comboboxKeyboardStrategy.js"
|
|
2431
2442
|
}
|
|
2432
|
-
}
|
|
2443
|
+
}
|
|
2444
|
+
]
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"kind": "javascript-module",
|
|
2448
|
+
"path": "components/combobox/src/index.js",
|
|
2449
|
+
"declarations": [],
|
|
2450
|
+
"exports": [
|
|
2433
2451
|
{
|
|
2434
2452
|
"kind": "js",
|
|
2435
|
-
"name": "
|
|
2453
|
+
"name": "AuroCombobox",
|
|
2436
2454
|
"declaration": {
|
|
2437
|
-
"name": "
|
|
2438
|
-
"module": "components/
|
|
2455
|
+
"name": "AuroCombobox",
|
|
2456
|
+
"module": "components/combobox/src/index.js"
|
|
2439
2457
|
}
|
|
2440
2458
|
}
|
|
2441
2459
|
]
|
|
2442
2460
|
},
|
|
2443
2461
|
{
|
|
2444
2462
|
"kind": "javascript-module",
|
|
2445
|
-
"path": "components/
|
|
2463
|
+
"path": "components/combobox/src/registered.js",
|
|
2446
2464
|
"declarations": [],
|
|
2447
|
-
"exports": [
|
|
2465
|
+
"exports": [
|
|
2466
|
+
{
|
|
2467
|
+
"kind": "js",
|
|
2468
|
+
"name": "AuroCombobox",
|
|
2469
|
+
"declaration": {
|
|
2470
|
+
"name": "AuroCombobox",
|
|
2471
|
+
"module": "components/combobox/src/registered.js"
|
|
2472
|
+
}
|
|
2473
|
+
}
|
|
2474
|
+
]
|
|
2448
2475
|
},
|
|
2449
2476
|
{
|
|
2450
2477
|
"kind": "javascript-module",
|
|
@@ -5740,21 +5767,6 @@
|
|
|
5740
5767
|
}
|
|
5741
5768
|
}
|
|
5742
5769
|
},
|
|
5743
|
-
{
|
|
5744
|
-
"kind": "method",
|
|
5745
|
-
"name": "handleKeydownReset",
|
|
5746
|
-
"parameters": [
|
|
5747
|
-
{
|
|
5748
|
-
"name": "event",
|
|
5749
|
-
"description": "The keydown event.",
|
|
5750
|
-
"type": {
|
|
5751
|
-
"text": "KeyboardEvent"
|
|
5752
|
-
}
|
|
5753
|
-
}
|
|
5754
|
-
],
|
|
5755
|
-
"description": "Handle enter/space keydown on the reset button.",
|
|
5756
|
-
"privacy": "private"
|
|
5757
|
-
},
|
|
5758
5770
|
{
|
|
5759
5771
|
"kind": "method",
|
|
5760
5772
|
"name": "resetInputs",
|
|
@@ -5937,6 +5949,25 @@
|
|
|
5937
5949
|
}
|
|
5938
5950
|
}
|
|
5939
5951
|
},
|
|
5952
|
+
{
|
|
5953
|
+
"kind": "method",
|
|
5954
|
+
"name": "handleClearClick",
|
|
5955
|
+
"parameters": [
|
|
5956
|
+
{
|
|
5957
|
+
"name": "event",
|
|
5958
|
+
"type": {
|
|
5959
|
+
"text": "MouseEvent"
|
|
5960
|
+
}
|
|
5961
|
+
}
|
|
5962
|
+
],
|
|
5963
|
+
"description": "Handles click on the clear button.",
|
|
5964
|
+
"privacy": "private",
|
|
5965
|
+
"return": {
|
|
5966
|
+
"type": {
|
|
5967
|
+
"text": "void"
|
|
5968
|
+
}
|
|
5969
|
+
}
|
|
5970
|
+
},
|
|
5940
5971
|
{
|
|
5941
5972
|
"kind": "method",
|
|
5942
5973
|
"name": "renderHtmlActionClear",
|
|
@@ -6511,7 +6542,7 @@
|
|
|
6511
6542
|
"type": {
|
|
6512
6543
|
"text": "string"
|
|
6513
6544
|
},
|
|
6514
|
-
"description": "Optional placeholder text to display in the second input when using date range.\nBy default, datepicker will use `placeholder` for both inputs if placeholder is\nspecified, but
|
|
6545
|
+
"description": "Optional placeholder text to display in the second input when using date range.\nBy default, datepicker will use `placeholder` for both inputs if placeholder is\nspecified, but placeholderEndDate is not.",
|
|
6515
6546
|
"attribute": "placeholderEndDate",
|
|
6516
6547
|
"reflects": true
|
|
6517
6548
|
},
|
|
@@ -6889,7 +6920,7 @@
|
|
|
6889
6920
|
"type": {
|
|
6890
6921
|
"text": "string"
|
|
6891
6922
|
},
|
|
6892
|
-
"description": "Optional placeholder text to display in the second input when using date range.\nBy default, datepicker will use `placeholder` for both inputs if placeholder is\nspecified, but
|
|
6923
|
+
"description": "Optional placeholder text to display in the second input when using date range.\nBy default, datepicker will use `placeholder` for both inputs if placeholder is\nspecified, but placeholderEndDate is not.",
|
|
6893
6924
|
"fieldName": "placeholderEndDate"
|
|
6894
6925
|
},
|
|
6895
6926
|
{
|
|
@@ -7081,7 +7112,7 @@
|
|
|
7081
7112
|
"type": {
|
|
7082
7113
|
"text": "object"
|
|
7083
7114
|
},
|
|
7084
|
-
"default": "{
|
|
7115
|
+
"default": "{}"
|
|
7085
7116
|
}
|
|
7086
7117
|
],
|
|
7087
7118
|
"exports": [
|
|
@@ -9983,6 +10014,18 @@
|
|
|
9983
10014
|
}
|
|
9984
10015
|
],
|
|
9985
10016
|
"members": [
|
|
10017
|
+
{
|
|
10018
|
+
"kind": "field",
|
|
10019
|
+
"name": "clearBtnClassMap",
|
|
10020
|
+
"description": "Returns classmap configuration for the clear button visibility.\nThe button is hidden when the input has no value, is read-only, or is disabled.",
|
|
10021
|
+
"privacy": "private",
|
|
10022
|
+
"return": {
|
|
10023
|
+
"type": {
|
|
10024
|
+
"text": "Record<string, boolean>"
|
|
10025
|
+
}
|
|
10026
|
+
},
|
|
10027
|
+
"readonly": true
|
|
10028
|
+
},
|
|
9986
10029
|
{
|
|
9987
10030
|
"kind": "field",
|
|
9988
10031
|
"name": "inputHidden",
|
|
@@ -10309,6 +10352,11 @@
|
|
|
10309
10352
|
"name": "iconTag",
|
|
10310
10353
|
"privacy": "private"
|
|
10311
10354
|
},
|
|
10355
|
+
{
|
|
10356
|
+
"kind": "field",
|
|
10357
|
+
"name": "clearButtonRef",
|
|
10358
|
+
"privacy": "private"
|
|
10359
|
+
},
|
|
10312
10360
|
{
|
|
10313
10361
|
"kind": "field",
|
|
10314
10362
|
"name": "shadowRootOptions",
|