@m3e/select 1.0.6

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.
@@ -0,0 +1,3595 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/index.ts",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "js",
12
+ "name": "*",
13
+ "declaration": {
14
+ "name": "*",
15
+ "package": "\"./SelectElement\""
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/SelectElement.ts",
23
+ "declarations": [
24
+ {
25
+ "kind": "class",
26
+ "description": "A form control that allows users to select a value from a set of predefined options.",
27
+ "name": "M3eSelectElement",
28
+ "cssProperties": [
29
+ {
30
+ "description": "The font size of the select control.",
31
+ "name": "--m3e-form-field-font-size"
32
+ },
33
+ {
34
+ "description": "The font weight of the select control.",
35
+ "name": "--m3e-form-field-font-weight"
36
+ },
37
+ {
38
+ "description": "The line height of the select control.",
39
+ "name": "--m3e-form-field-line-height"
40
+ },
41
+ {
42
+ "description": "The letter spacing of the select control.",
43
+ "name": "--m3e-form-field-tracking"
44
+ },
45
+ {
46
+ "description": "The corner radius of the select container.",
47
+ "name": "--m3e-select-container-shape"
48
+ },
49
+ {
50
+ "description": "The text color when the select is disabled.",
51
+ "name": "--m3e-select-disabled-color"
52
+ },
53
+ {
54
+ "description": "The opacity level applied to the disabled text color.",
55
+ "name": "--m3e-select-disabled-color-opacity"
56
+ },
57
+ {
58
+ "description": "The size of the dropdown arrow icon.",
59
+ "name": "--m3e-select-icon-size"
60
+ }
61
+ ],
62
+ "slots": [
63
+ {
64
+ "description": "Renders the options of the select.",
65
+ "name": ""
66
+ },
67
+ {
68
+ "description": "Renders the dropdown arrow.",
69
+ "name": "arrow"
70
+ },
71
+ {
72
+ "description": "Renders the selected value(s).",
73
+ "name": "value"
74
+ }
75
+ ],
76
+ "members": [
77
+ {
78
+ "kind": "field",
79
+ "name": "__nextId",
80
+ "type": {
81
+ "text": "number"
82
+ },
83
+ "static": true,
84
+ "default": "0",
85
+ "privacy": "private"
86
+ },
87
+ {
88
+ "kind": "field",
89
+ "name": "#menu",
90
+ "privacy": "private",
91
+ "type": {
92
+ "text": "M3eOptionPanelElement | undefined"
93
+ }
94
+ },
95
+ {
96
+ "kind": "field",
97
+ "name": "#ignoreKeyUp",
98
+ "privacy": "private",
99
+ "type": {
100
+ "text": "boolean"
101
+ },
102
+ "default": "false"
103
+ },
104
+ {
105
+ "kind": "field",
106
+ "name": "#ignoreFocusVisible",
107
+ "privacy": "private",
108
+ "type": {
109
+ "text": "boolean"
110
+ },
111
+ "default": "false"
112
+ },
113
+ {
114
+ "kind": "field",
115
+ "name": "#id",
116
+ "privacy": "private",
117
+ "readonly": true,
118
+ "default": "`m3e-select-${M3eSelectElement.__nextId++}`"
119
+ },
120
+ {
121
+ "kind": "field",
122
+ "name": "#listId",
123
+ "privacy": "private",
124
+ "readonly": true,
125
+ "default": "`${this.#id}-list`"
126
+ },
127
+ {
128
+ "kind": "field",
129
+ "name": "#clickHandler",
130
+ "privacy": "private",
131
+ "readonly": true
132
+ },
133
+ {
134
+ "kind": "field",
135
+ "name": "#keyDownHandler",
136
+ "privacy": "private",
137
+ "readonly": true
138
+ },
139
+ {
140
+ "kind": "field",
141
+ "name": "#keyUpHandler",
142
+ "privacy": "private",
143
+ "readonly": true
144
+ },
145
+ {
146
+ "kind": "field",
147
+ "name": "#menuToggleHandler",
148
+ "privacy": "private",
149
+ "readonly": true
150
+ },
151
+ {
152
+ "kind": "field",
153
+ "name": "#menuPointerDownHandler",
154
+ "privacy": "private",
155
+ "readonly": true
156
+ },
157
+ {
158
+ "kind": "field",
159
+ "name": "_listKeyManager",
160
+ "privacy": "private",
161
+ "readonly": true
162
+ },
163
+ {
164
+ "kind": "field",
165
+ "name": "_focusRing",
166
+ "type": {
167
+ "text": "M3eFocusRingElement | undefined"
168
+ },
169
+ "privacy": "private",
170
+ "readonly": true
171
+ },
172
+ {
173
+ "kind": "field",
174
+ "name": "hideSelectionIndicator",
175
+ "type": {
176
+ "text": "boolean"
177
+ },
178
+ "default": "false",
179
+ "description": "Whether to hide the selection indicator for single select options.",
180
+ "attribute": "hide-selection-indicator"
181
+ },
182
+ {
183
+ "kind": "field",
184
+ "name": "multi",
185
+ "type": {
186
+ "text": "boolean"
187
+ },
188
+ "default": "false",
189
+ "description": "Whether multiple options can be selected.",
190
+ "attribute": "multi"
191
+ },
192
+ {
193
+ "kind": "field",
194
+ "name": "selected",
195
+ "type": {
196
+ "text": "readonly M3eOptionElement[]"
197
+ },
198
+ "description": "The selected option(s).",
199
+ "readonly": true
200
+ },
201
+ {
202
+ "kind": "field",
203
+ "name": "options",
204
+ "type": {
205
+ "text": "readonly M3eOptionElement[]"
206
+ },
207
+ "description": "The options that can be selected.",
208
+ "readonly": true
209
+ },
210
+ {
211
+ "kind": "field",
212
+ "name": "value",
213
+ "type": {
214
+ "text": "string | readonly string[] | null"
215
+ },
216
+ "description": "The selected value(s).",
217
+ "readonly": true
218
+ },
219
+ {
220
+ "kind": "field",
221
+ "name": "shouldLabelFloat",
222
+ "type": {
223
+ "text": "boolean"
224
+ },
225
+ "readonly": true
226
+ },
227
+ {
228
+ "kind": "field",
229
+ "name": "#minMenuWidth",
230
+ "privacy": "private",
231
+ "type": {
232
+ "text": "string"
233
+ },
234
+ "readonly": true
235
+ },
236
+ {
237
+ "kind": "field",
238
+ "name": "#formField",
239
+ "privacy": "private",
240
+ "type": {
241
+ "text": "M3eFormFieldElement | null"
242
+ },
243
+ "readonly": true
244
+ },
245
+ {
246
+ "kind": "method",
247
+ "name": "onContainerClick",
248
+ "return": {
249
+ "type": {
250
+ "text": "void"
251
+ }
252
+ }
253
+ },
254
+ {
255
+ "kind": "method",
256
+ "name": "clear",
257
+ "return": {
258
+ "type": {
259
+ "text": "void"
260
+ }
261
+ },
262
+ "parameters": [
263
+ {
264
+ "name": "restoreFocus",
265
+ "default": "false",
266
+ "description": "Whether to restore input focus.",
267
+ "optional": true
268
+ }
269
+ ],
270
+ "description": "Clears the value of the element."
271
+ },
272
+ {
273
+ "kind": "method",
274
+ "name": "#handleSlotChange",
275
+ "privacy": "private",
276
+ "return": {
277
+ "type": {
278
+ "text": "void"
279
+ }
280
+ }
281
+ },
282
+ {
283
+ "kind": "method",
284
+ "name": "#handleClick",
285
+ "privacy": "private",
286
+ "return": {
287
+ "type": {
288
+ "text": "void"
289
+ }
290
+ },
291
+ "parameters": [
292
+ {
293
+ "name": "e",
294
+ "type": {
295
+ "text": "Event"
296
+ }
297
+ }
298
+ ]
299
+ },
300
+ {
301
+ "kind": "method",
302
+ "name": "#handleKeyDown",
303
+ "privacy": "private",
304
+ "return": {
305
+ "type": {
306
+ "text": "void"
307
+ }
308
+ },
309
+ "parameters": [
310
+ {
311
+ "name": "e",
312
+ "type": {
313
+ "text": "KeyboardEvent"
314
+ }
315
+ }
316
+ ]
317
+ },
318
+ {
319
+ "kind": "method",
320
+ "name": "#handleKeyUp",
321
+ "privacy": "private",
322
+ "return": {
323
+ "type": {
324
+ "text": "void"
325
+ }
326
+ },
327
+ "parameters": [
328
+ {
329
+ "name": "e",
330
+ "type": {
331
+ "text": "KeyboardEvent"
332
+ }
333
+ }
334
+ ]
335
+ },
336
+ {
337
+ "kind": "method",
338
+ "name": "#handleMenuPointerDown",
339
+ "privacy": "private",
340
+ "return": {
341
+ "type": {
342
+ "text": "void"
343
+ }
344
+ },
345
+ "parameters": [
346
+ {
347
+ "name": "e",
348
+ "type": {
349
+ "text": "MouseEvent"
350
+ }
351
+ }
352
+ ]
353
+ },
354
+ {
355
+ "kind": "method",
356
+ "name": "#handleMenuToggle",
357
+ "privacy": "private",
358
+ "return": {
359
+ "type": {
360
+ "text": "void"
361
+ }
362
+ },
363
+ "parameters": [
364
+ {
365
+ "name": "e",
366
+ "type": {
367
+ "text": "ToggleEvent"
368
+ }
369
+ }
370
+ ]
371
+ },
372
+ {
373
+ "kind": "method",
374
+ "name": "#destroyMenu",
375
+ "privacy": "private",
376
+ "return": {
377
+ "type": {
378
+ "text": "void"
379
+ }
380
+ },
381
+ "parameters": [
382
+ {
383
+ "name": "e",
384
+ "type": {
385
+ "text": "ToggleEvent"
386
+ }
387
+ }
388
+ ]
389
+ },
390
+ {
391
+ "kind": "method",
392
+ "name": "#toggleMenu",
393
+ "privacy": "private",
394
+ "return": {
395
+ "type": {
396
+ "text": "void"
397
+ }
398
+ }
399
+ },
400
+ {
401
+ "kind": "method",
402
+ "name": "#showMenu",
403
+ "privacy": "private",
404
+ "return": {
405
+ "type": {
406
+ "text": "void"
407
+ }
408
+ }
409
+ },
410
+ {
411
+ "kind": "method",
412
+ "name": "#hideMenu",
413
+ "privacy": "private",
414
+ "return": {
415
+ "type": {
416
+ "text": "void"
417
+ }
418
+ }
419
+ },
420
+ {
421
+ "kind": "method",
422
+ "name": "#activateOption",
423
+ "privacy": "private",
424
+ "return": {
425
+ "type": {
426
+ "text": "void"
427
+ }
428
+ },
429
+ "parameters": [
430
+ {
431
+ "name": "option",
432
+ "type": {
433
+ "text": "M3eOptionElement"
434
+ }
435
+ }
436
+ ]
437
+ },
438
+ {
439
+ "kind": "method",
440
+ "name": "#selectOption",
441
+ "privacy": "private",
442
+ "return": {
443
+ "type": {
444
+ "text": "void"
445
+ }
446
+ },
447
+ "parameters": [
448
+ {
449
+ "name": "option",
450
+ "type": {
451
+ "text": "M3eOptionElement"
452
+ }
453
+ }
454
+ ]
455
+ },
456
+ {
457
+ "kind": "field",
458
+ "name": "[_tabindex]",
459
+ "type": {
460
+ "text": "number"
461
+ },
462
+ "privacy": "private",
463
+ "default": "0",
464
+ "inheritedFrom": {
465
+ "name": "Focusable",
466
+ "module": "../core/src/shared/mixins/Focusable.ts"
467
+ }
468
+ },
469
+ {
470
+ "kind": "field",
471
+ "name": "formAssociated",
472
+ "static": true,
473
+ "readonly": true,
474
+ "default": "true",
475
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
476
+ "type": {
477
+ "text": "boolean"
478
+ },
479
+ "inheritedFrom": {
480
+ "name": "AttachInternals",
481
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
482
+ }
483
+ },
484
+ {
485
+ "kind": "field",
486
+ "name": "[_eventHandler]",
487
+ "privacy": "private",
488
+ "readonly": true,
489
+ "inheritedFrom": {
490
+ "name": "Touched",
491
+ "module": "../core/src/shared/mixins/Touched.ts"
492
+ }
493
+ },
494
+ {
495
+ "kind": "field",
496
+ "name": "labels",
497
+ "type": {
498
+ "text": "NodeListOf<HTMLLabelElement>"
499
+ },
500
+ "readonly": true,
501
+ "description": "The label elements that the element is associated with.",
502
+ "inheritedFrom": {
503
+ "name": "FormAssociated",
504
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
505
+ }
506
+ },
507
+ {
508
+ "kind": "field",
509
+ "name": "dirty",
510
+ "type": {
511
+ "text": "boolean"
512
+ },
513
+ "description": "Whether the user has modified the value of the element.",
514
+ "readonly": true,
515
+ "inheritedFrom": {
516
+ "name": "Dirty",
517
+ "module": "../core/src/shared/mixins/Dirty.ts"
518
+ }
519
+ },
520
+ {
521
+ "kind": "field",
522
+ "name": "pristine",
523
+ "type": {
524
+ "text": "boolean"
525
+ },
526
+ "description": "Whether the user has not modified the value of the element.",
527
+ "readonly": true,
528
+ "inheritedFrom": {
529
+ "name": "Dirty",
530
+ "module": "../core/src/shared/mixins/Dirty.ts"
531
+ }
532
+ },
533
+ {
534
+ "kind": "method",
535
+ "name": "markAsPristine",
536
+ "return": {
537
+ "type": {
538
+ "text": "void"
539
+ }
540
+ },
541
+ "description": "Marks the element as pristine.",
542
+ "inheritedFrom": {
543
+ "name": "Dirty",
544
+ "module": "../core/src/shared/mixins/Dirty.ts"
545
+ }
546
+ },
547
+ {
548
+ "kind": "method",
549
+ "name": "markAsDirty",
550
+ "return": {
551
+ "type": {
552
+ "text": "void"
553
+ }
554
+ },
555
+ "description": "Marks the element as dirty.",
556
+ "inheritedFrom": {
557
+ "name": "Dirty",
558
+ "module": "../core/src/shared/mixins/Dirty.ts"
559
+ }
560
+ },
561
+ {
562
+ "kind": "field",
563
+ "name": "touched",
564
+ "type": {
565
+ "text": "boolean"
566
+ },
567
+ "description": "Whether the user has interacted when the element.",
568
+ "readonly": true,
569
+ "inheritedFrom": {
570
+ "name": "Touched",
571
+ "module": "../core/src/shared/mixins/Touched.ts"
572
+ }
573
+ },
574
+ {
575
+ "kind": "field",
576
+ "name": "untouched",
577
+ "type": {
578
+ "text": "boolean"
579
+ },
580
+ "description": "Whether the user has not interacted when the element.",
581
+ "readonly": true,
582
+ "inheritedFrom": {
583
+ "name": "Touched",
584
+ "module": "../core/src/shared/mixins/Touched.ts"
585
+ }
586
+ },
587
+ {
588
+ "kind": "method",
589
+ "name": "markAsTouched",
590
+ "return": {
591
+ "type": {
592
+ "text": "void"
593
+ }
594
+ },
595
+ "description": "Marks the element as touched.",
596
+ "inheritedFrom": {
597
+ "name": "Touched",
598
+ "module": "../core/src/shared/mixins/Touched.ts"
599
+ }
600
+ },
601
+ {
602
+ "kind": "method",
603
+ "name": "markAsUntouched",
604
+ "return": {
605
+ "type": {
606
+ "text": "void"
607
+ }
608
+ },
609
+ "description": "Marks the element as untouched.",
610
+ "inheritedFrom": {
611
+ "name": "Touched",
612
+ "module": "../core/src/shared/mixins/Touched.ts"
613
+ }
614
+ },
615
+ {
616
+ "kind": "field",
617
+ "name": "required",
618
+ "type": {
619
+ "text": "boolean"
620
+ },
621
+ "default": "false",
622
+ "description": "Whether a value is required for the element.",
623
+ "attribute": "required",
624
+ "reflects": true,
625
+ "inheritedFrom": {
626
+ "name": "Required",
627
+ "module": "../core/src/shared/mixins/Required.ts"
628
+ }
629
+ },
630
+ {
631
+ "kind": "field",
632
+ "name": "optional",
633
+ "description": "Whether a value is not required for the element.",
634
+ "readonly": true,
635
+ "inheritedFrom": {
636
+ "name": "Required",
637
+ "module": "../core/src/shared/mixins/Required.ts"
638
+ }
639
+ },
640
+ {
641
+ "kind": "field",
642
+ "name": "[_validityMessage]",
643
+ "type": {
644
+ "text": "string | undefined"
645
+ },
646
+ "privacy": "private",
647
+ "inheritedFrom": {
648
+ "name": "ConstraintValidation",
649
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
650
+ }
651
+ },
652
+ {
653
+ "kind": "field",
654
+ "name": "willValidate",
655
+ "type": {
656
+ "text": "boolean"
657
+ },
658
+ "description": "Whether the element is a submittable element that is a candidate for constraint validation.",
659
+ "readonly": true,
660
+ "inheritedFrom": {
661
+ "name": "ConstraintValidation",
662
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
663
+ }
664
+ },
665
+ {
666
+ "kind": "field",
667
+ "name": "validity",
668
+ "type": {
669
+ "text": "ValidityState"
670
+ },
671
+ "description": "The validity state of the element.",
672
+ "readonly": true,
673
+ "inheritedFrom": {
674
+ "name": "ConstraintValidation",
675
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
676
+ }
677
+ },
678
+ {
679
+ "kind": "field",
680
+ "name": "validationMessage",
681
+ "type": {
682
+ "text": "string"
683
+ },
684
+ "description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
685
+ "readonly": true,
686
+ "inheritedFrom": {
687
+ "name": "ConstraintValidation",
688
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
689
+ }
690
+ },
691
+ {
692
+ "kind": "method",
693
+ "name": "reportValidity",
694
+ "return": {
695
+ "type": {
696
+ "text": "boolean"
697
+ }
698
+ },
699
+ "description": "Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user.",
700
+ "inheritedFrom": {
701
+ "name": "ConstraintValidation",
702
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
703
+ }
704
+ },
705
+ {
706
+ "kind": "method",
707
+ "name": "checkValidity",
708
+ "return": {
709
+ "type": {
710
+ "text": "boolean"
711
+ }
712
+ },
713
+ "description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event.",
714
+ "inheritedFrom": {
715
+ "name": "ConstraintValidation",
716
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
717
+ }
718
+ },
719
+ {
720
+ "kind": "method",
721
+ "name": "setCustomValidity",
722
+ "return": {
723
+ "type": {
724
+ "text": "void"
725
+ }
726
+ },
727
+ "parameters": [
728
+ {
729
+ "name": "error",
730
+ "type": {
731
+ "text": "string"
732
+ },
733
+ "description": "The message to use for validity errors."
734
+ }
735
+ ],
736
+ "description": "Sets a custom validity message for the element.",
737
+ "inheritedFrom": {
738
+ "name": "ConstraintValidation",
739
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
740
+ }
741
+ },
742
+ {
743
+ "kind": "method",
744
+ "name": "[_updateValidity]",
745
+ "privacy": "private",
746
+ "return": {
747
+ "type": {
748
+ "text": "void"
749
+ }
750
+ },
751
+ "inheritedFrom": {
752
+ "name": "ConstraintValidation",
753
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
754
+ }
755
+ },
756
+ {
757
+ "kind": "method",
758
+ "name": "#getNativeMessage",
759
+ "privacy": "private",
760
+ "return": {
761
+ "type": {
762
+ "text": "string"
763
+ }
764
+ },
765
+ "parameters": [
766
+ {
767
+ "name": "flags",
768
+ "type": {
769
+ "text": "ValidityStateFlags"
770
+ }
771
+ }
772
+ ],
773
+ "inheritedFrom": {
774
+ "name": "ConstraintValidation",
775
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
776
+ }
777
+ },
778
+ {
779
+ "kind": "field",
780
+ "name": "[_defaultValue]",
781
+ "type": {
782
+ "text": "unknown"
783
+ },
784
+ "privacy": "private",
785
+ "inheritedFrom": {
786
+ "name": "FormAssociated",
787
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
788
+ }
789
+ },
790
+ {
791
+ "kind": "field",
792
+ "name": "[_defaultIndeterminate]",
793
+ "type": {
794
+ "text": "boolean"
795
+ },
796
+ "privacy": "private",
797
+ "default": "false",
798
+ "inheritedFrom": {
799
+ "name": "FormAssociated",
800
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
801
+ }
802
+ },
803
+ {
804
+ "kind": "field",
805
+ "name": "[_formDisabled]",
806
+ "type": {
807
+ "text": "boolean"
808
+ },
809
+ "privacy": "private",
810
+ "default": "false",
811
+ "inheritedFrom": {
812
+ "name": "FormAssociated",
813
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
814
+ }
815
+ },
816
+ {
817
+ "kind": "field",
818
+ "name": "form",
819
+ "type": {
820
+ "text": "HTMLFormElement | null"
821
+ },
822
+ "description": "The `HTMLFormElement` associated with this element.",
823
+ "readonly": true,
824
+ "inheritedFrom": {
825
+ "name": "FormAssociated",
826
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
827
+ }
828
+ },
829
+ {
830
+ "kind": "field",
831
+ "name": "name",
832
+ "description": "The name that identifies the element when submitting the associated form.",
833
+ "attribute": "name",
834
+ "inheritedFrom": {
835
+ "name": "FormAssociated",
836
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
837
+ }
838
+ },
839
+ {
840
+ "kind": "field",
841
+ "name": "disabled",
842
+ "type": {
843
+ "text": "boolean"
844
+ },
845
+ "default": "false",
846
+ "description": "Whether the element is disabled.",
847
+ "attribute": "disabled",
848
+ "inheritedFrom": {
849
+ "name": "Disabled",
850
+ "module": "../core/src/shared/mixins/Disabled.ts"
851
+ }
852
+ },
853
+ {
854
+ "kind": "method",
855
+ "name": "formDisabledCallback",
856
+ "return": {
857
+ "type": {
858
+ "text": "void"
859
+ }
860
+ },
861
+ "parameters": [
862
+ {
863
+ "name": "disabled",
864
+ "type": {
865
+ "text": "boolean"
866
+ }
867
+ }
868
+ ],
869
+ "description": "Called when the element is disabled or enabled via its form association.",
870
+ "inheritedFrom": {
871
+ "name": "FormAssociated",
872
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
873
+ }
874
+ },
875
+ {
876
+ "kind": "method",
877
+ "name": "formResetCallback",
878
+ "return": {
879
+ "type": {
880
+ "text": "void"
881
+ }
882
+ },
883
+ "description": "Called when the associated form is reset.",
884
+ "inheritedFrom": {
885
+ "name": "FormAssociated",
886
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
887
+ }
888
+ },
889
+ {
890
+ "kind": "field",
891
+ "name": "[_internals]",
892
+ "type": {
893
+ "text": "ElementInternals | undefined"
894
+ },
895
+ "privacy": "private",
896
+ "inheritedFrom": {
897
+ "name": "AttachInternals",
898
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
899
+ }
900
+ }
901
+ ],
902
+ "events": [
903
+ {
904
+ "name": "change",
905
+ "type": {
906
+ "text": "Event"
907
+ },
908
+ "description": "Emitted when the selected state changes."
909
+ },
910
+ {
911
+ "name": "toggle",
912
+ "type": {
913
+ "text": "ToggleEvent"
914
+ }
915
+ },
916
+ {
917
+ "name": "input",
918
+ "type": {
919
+ "text": "Event"
920
+ },
921
+ "description": "Emitted when the selected state changes."
922
+ }
923
+ ],
924
+ "attributes": [
925
+ {
926
+ "name": "disabled",
927
+ "type": {
928
+ "text": "boolean"
929
+ },
930
+ "default": "false",
931
+ "description": "Whether the element is disabled.",
932
+ "fieldName": "disabled",
933
+ "inheritedFrom": {
934
+ "name": "Disabled",
935
+ "module": "../core/src/shared/mixins/Disabled.ts"
936
+ }
937
+ },
938
+ {
939
+ "description": "Whether to hide the selection indicator for single select options.",
940
+ "name": "hide-selection-indicator",
941
+ "type": {
942
+ "text": "boolean"
943
+ },
944
+ "default": "false",
945
+ "fieldName": "hideSelectionIndicator"
946
+ },
947
+ {
948
+ "description": "Whether multiple options can be selected.",
949
+ "name": "multi",
950
+ "type": {
951
+ "text": "boolean"
952
+ },
953
+ "default": "false",
954
+ "fieldName": "multi"
955
+ },
956
+ {
957
+ "name": "name",
958
+ "description": "The name that identifies the element when submitting the associated form.",
959
+ "fieldName": "name",
960
+ "inheritedFrom": {
961
+ "name": "FormAssociated",
962
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
963
+ }
964
+ },
965
+ {
966
+ "name": "required",
967
+ "type": {
968
+ "text": "boolean"
969
+ },
970
+ "default": "false",
971
+ "description": "Whether the element is required.",
972
+ "fieldName": "required",
973
+ "inheritedFrom": {
974
+ "name": "Required",
975
+ "module": "../core/src/shared/mixins/Required.ts"
976
+ }
977
+ }
978
+ ],
979
+ "mixins": [
980
+ {
981
+ "name": "Focusable",
982
+ "package": "@m3e/core"
983
+ },
984
+ {
985
+ "name": "Labelled",
986
+ "package": "@m3e/core"
987
+ },
988
+ {
989
+ "name": "RequiredConstraintValidation",
990
+ "package": "@m3e/core"
991
+ },
992
+ {
993
+ "name": "Dirty",
994
+ "package": "@m3e/core"
995
+ },
996
+ {
997
+ "name": "Touched",
998
+ "package": "@m3e/core"
999
+ },
1000
+ {
1001
+ "name": "Required",
1002
+ "package": "@m3e/core"
1003
+ },
1004
+ {
1005
+ "name": "ConstraintValidation",
1006
+ "package": "@m3e/core"
1007
+ },
1008
+ {
1009
+ "name": "FormAssociated",
1010
+ "package": "@m3e/core"
1011
+ },
1012
+ {
1013
+ "name": "Disabled",
1014
+ "package": "@m3e/core"
1015
+ },
1016
+ {
1017
+ "name": "AttachInternals",
1018
+ "package": "@m3e/core"
1019
+ },
1020
+ {
1021
+ "name": "Role",
1022
+ "package": "@m3e/core"
1023
+ }
1024
+ ],
1025
+ "superclass": {
1026
+ "name": "LitElement",
1027
+ "package": "lit"
1028
+ },
1029
+ "tagName": "m3e-select",
1030
+ "customElement": true
1031
+ }
1032
+ ],
1033
+ "exports": [
1034
+ {
1035
+ "kind": "js",
1036
+ "name": "M3eSelectElement",
1037
+ "declaration": {
1038
+ "name": "M3eSelectElement",
1039
+ "module": "src/SelectElement.ts"
1040
+ }
1041
+ },
1042
+ {
1043
+ "kind": "custom-element-definition",
1044
+ "name": "m3e-select",
1045
+ "declaration": {
1046
+ "name": "M3eSelectElement",
1047
+ "module": "src/SelectElement.ts"
1048
+ }
1049
+ }
1050
+ ]
1051
+ },
1052
+ {
1053
+ "kind": "javascript-module",
1054
+ "path": "../core/src/shared/mixins/AttachInternals.ts",
1055
+ "declarations": [
1056
+ {
1057
+ "kind": "variable",
1058
+ "name": "internals",
1059
+ "description": "A symbol through which to access the `ElementInternals` attached to an element."
1060
+ },
1061
+ {
1062
+ "kind": "function",
1063
+ "name": "isAttachInternalsMixin",
1064
+ "return": {
1065
+ "type": {
1066
+ "text": ""
1067
+ }
1068
+ },
1069
+ "parameters": [
1070
+ {
1071
+ "name": "value",
1072
+ "type": {
1073
+ "text": "unknown"
1074
+ },
1075
+ "description": "The value to test."
1076
+ }
1077
+ ],
1078
+ "description": "Determines whether a value is an `AttachInternalsMixin`."
1079
+ },
1080
+ {
1081
+ "kind": "mixin",
1082
+ "description": "Mixin to augment an element with behavior that attaches to `ElementInternals`.",
1083
+ "name": "AttachInternals",
1084
+ "members": [
1085
+ {
1086
+ "kind": "field",
1087
+ "name": "formAssociated",
1088
+ "static": true,
1089
+ "readonly": true,
1090
+ "default": "formAssociated",
1091
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
1092
+ },
1093
+ {
1094
+ "kind": "field",
1095
+ "name": "[_internals]",
1096
+ "type": {
1097
+ "text": "ElementInternals | undefined"
1098
+ },
1099
+ "privacy": "private"
1100
+ }
1101
+ ],
1102
+ "parameters": [
1103
+ {
1104
+ "name": "base",
1105
+ "type": {
1106
+ "text": "T"
1107
+ },
1108
+ "description": "The base class."
1109
+ },
1110
+ {
1111
+ "name": "formAssociated",
1112
+ "optional": true,
1113
+ "type": {
1114
+ "text": "boolean | undefined"
1115
+ },
1116
+ "description": "Whether the element is \"Form Associated\"."
1117
+ }
1118
+ ]
1119
+ }
1120
+ ],
1121
+ "exports": [
1122
+ {
1123
+ "kind": "js",
1124
+ "name": "internals",
1125
+ "declaration": {
1126
+ "name": "internals",
1127
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1128
+ }
1129
+ },
1130
+ {
1131
+ "kind": "js",
1132
+ "name": "isAttachInternalsMixin",
1133
+ "declaration": {
1134
+ "name": "isAttachInternalsMixin",
1135
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1136
+ }
1137
+ },
1138
+ {
1139
+ "kind": "js",
1140
+ "name": "AttachInternals",
1141
+ "declaration": {
1142
+ "name": "AttachInternals",
1143
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
1144
+ }
1145
+ }
1146
+ ]
1147
+ },
1148
+ {
1149
+ "kind": "javascript-module",
1150
+ "path": "../core/src/shared/mixins/Checked.ts",
1151
+ "declarations": [
1152
+ {
1153
+ "kind": "function",
1154
+ "name": "isCheckedMixin",
1155
+ "return": {
1156
+ "type": {
1157
+ "text": ""
1158
+ }
1159
+ },
1160
+ "parameters": [
1161
+ {
1162
+ "name": "value",
1163
+ "type": {
1164
+ "text": "unknown"
1165
+ },
1166
+ "description": "The value to test."
1167
+ }
1168
+ ],
1169
+ "description": "Determines whether a value is a `CheckedMixin`."
1170
+ },
1171
+ {
1172
+ "kind": "mixin",
1173
+ "description": "Mixin to augment an element with behavior that supports a checked state.",
1174
+ "name": "Checked",
1175
+ "members": [
1176
+ {
1177
+ "kind": "field",
1178
+ "name": "checked",
1179
+ "type": {
1180
+ "text": "boolean"
1181
+ },
1182
+ "default": "false",
1183
+ "description": "Whether the element is checked.",
1184
+ "attribute": "checked",
1185
+ "reflects": true
1186
+ }
1187
+ ],
1188
+ "attributes": [
1189
+ {
1190
+ "name": "checked",
1191
+ "type": {
1192
+ "text": "boolean"
1193
+ },
1194
+ "default": "false",
1195
+ "description": "Whether the element is checked.",
1196
+ "fieldName": "checked"
1197
+ }
1198
+ ],
1199
+ "parameters": [
1200
+ {
1201
+ "name": "base",
1202
+ "type": {
1203
+ "text": "T"
1204
+ },
1205
+ "description": "The base class."
1206
+ }
1207
+ ]
1208
+ }
1209
+ ],
1210
+ "exports": [
1211
+ {
1212
+ "kind": "js",
1213
+ "name": "isCheckedMixin",
1214
+ "declaration": {
1215
+ "name": "isCheckedMixin",
1216
+ "module": "../core/src/shared/mixins/Checked.ts"
1217
+ }
1218
+ },
1219
+ {
1220
+ "kind": "js",
1221
+ "name": "Checked",
1222
+ "declaration": {
1223
+ "name": "Checked",
1224
+ "module": "../core/src/shared/mixins/Checked.ts"
1225
+ }
1226
+ }
1227
+ ]
1228
+ },
1229
+ {
1230
+ "kind": "javascript-module",
1231
+ "path": "../core/src/shared/mixins/CheckedIndeterminate.ts",
1232
+ "declarations": [
1233
+ {
1234
+ "kind": "function",
1235
+ "name": "isCheckedIndeterminateMixin",
1236
+ "return": {
1237
+ "type": {
1238
+ "text": ""
1239
+ }
1240
+ },
1241
+ "parameters": [
1242
+ {
1243
+ "name": "value",
1244
+ "type": {
1245
+ "text": "unknown"
1246
+ },
1247
+ "description": "The value to test."
1248
+ }
1249
+ ],
1250
+ "description": "Determines whether a value is a `CheckedIndeterminateMixin`."
1251
+ },
1252
+ {
1253
+ "kind": "mixin",
1254
+ "description": "Mixin to augment an element with behavior that supports a mixed checked state.",
1255
+ "name": "CheckedIndeterminate",
1256
+ "members": [
1257
+ {
1258
+ "kind": "field",
1259
+ "name": "indeterminate",
1260
+ "type": {
1261
+ "text": "boolean"
1262
+ },
1263
+ "default": "false",
1264
+ "description": "Whether the element's checked state is indeterminate.",
1265
+ "attribute": "indeterminate",
1266
+ "reflects": true
1267
+ },
1268
+ {
1269
+ "kind": "field",
1270
+ "name": "checked",
1271
+ "type": {
1272
+ "text": "boolean"
1273
+ },
1274
+ "default": "false",
1275
+ "description": "Whether the element is checked.",
1276
+ "attribute": "checked",
1277
+ "reflects": true,
1278
+ "inheritedFrom": {
1279
+ "name": "Checked",
1280
+ "module": "../core/src/shared/mixins/Checked.ts"
1281
+ }
1282
+ }
1283
+ ],
1284
+ "attributes": [
1285
+ {
1286
+ "name": "indeterminate",
1287
+ "type": {
1288
+ "text": "boolean"
1289
+ },
1290
+ "default": "false",
1291
+ "description": "Whether the element's checked state is indeterminate.",
1292
+ "fieldName": "indeterminate"
1293
+ },
1294
+ {
1295
+ "name": "checked",
1296
+ "type": {
1297
+ "text": "boolean"
1298
+ },
1299
+ "default": "false",
1300
+ "description": "Whether the element is checked.",
1301
+ "fieldName": "checked",
1302
+ "inheritedFrom": {
1303
+ "name": "Checked",
1304
+ "module": "../core/src/shared/mixins/Checked.ts"
1305
+ }
1306
+ }
1307
+ ],
1308
+ "mixins": [
1309
+ {
1310
+ "name": "Checked",
1311
+ "module": "/core/src/shared/mixins/Checked"
1312
+ }
1313
+ ],
1314
+ "parameters": [
1315
+ {
1316
+ "name": "base",
1317
+ "type": {
1318
+ "text": "T"
1319
+ },
1320
+ "description": "The base class."
1321
+ }
1322
+ ]
1323
+ }
1324
+ ],
1325
+ "exports": [
1326
+ {
1327
+ "kind": "js",
1328
+ "name": "isCheckedIndeterminateMixin",
1329
+ "declaration": {
1330
+ "name": "isCheckedIndeterminateMixin",
1331
+ "module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
1332
+ }
1333
+ },
1334
+ {
1335
+ "kind": "js",
1336
+ "name": "CheckedIndeterminate",
1337
+ "declaration": {
1338
+ "name": "CheckedIndeterminate",
1339
+ "module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
1340
+ }
1341
+ }
1342
+ ]
1343
+ },
1344
+ {
1345
+ "kind": "javascript-module",
1346
+ "path": "../core/src/shared/mixins/CheckedOrSelected.ts",
1347
+ "declarations": [
1348
+ {
1349
+ "kind": "function",
1350
+ "name": "isCheckedOrSelectedMixin",
1351
+ "return": {
1352
+ "type": {
1353
+ "text": ""
1354
+ }
1355
+ },
1356
+ "parameters": [
1357
+ {
1358
+ "name": "value",
1359
+ "type": {
1360
+ "text": "unknown"
1361
+ },
1362
+ "description": "The value to test."
1363
+ }
1364
+ ],
1365
+ "description": "Determines whether a value is a `CheckedOrSelectedMixin`."
1366
+ },
1367
+ {
1368
+ "kind": "function",
1369
+ "name": "isCheckedOrSelected",
1370
+ "return": {
1371
+ "type": {
1372
+ "text": "boolean"
1373
+ }
1374
+ },
1375
+ "parameters": [
1376
+ {
1377
+ "name": "element",
1378
+ "type": {
1379
+ "text": "CheckedOrSelectedMixin"
1380
+ },
1381
+ "description": "The element to test."
1382
+ }
1383
+ ],
1384
+ "description": "Determines whether the state of an element is checked or selected."
1385
+ },
1386
+ {
1387
+ "kind": "function",
1388
+ "name": "checkOrSelect",
1389
+ "return": {
1390
+ "type": {
1391
+ "text": "void"
1392
+ }
1393
+ },
1394
+ "parameters": [
1395
+ {
1396
+ "name": "element",
1397
+ "type": {
1398
+ "text": "CheckedOrSelectedMixin"
1399
+ },
1400
+ "description": "The element for which to set the checked or selected state."
1401
+ },
1402
+ {
1403
+ "name": "checkedOrSelected",
1404
+ "type": {
1405
+ "text": "boolean"
1406
+ },
1407
+ "description": "The checked or selected state."
1408
+ }
1409
+ ],
1410
+ "description": "Sets the checked or selected state of an element."
1411
+ }
1412
+ ],
1413
+ "exports": [
1414
+ {
1415
+ "kind": "js",
1416
+ "name": "isCheckedOrSelectedMixin",
1417
+ "declaration": {
1418
+ "name": "isCheckedOrSelectedMixin",
1419
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
1420
+ }
1421
+ },
1422
+ {
1423
+ "kind": "js",
1424
+ "name": "isCheckedOrSelected",
1425
+ "declaration": {
1426
+ "name": "isCheckedOrSelected",
1427
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
1428
+ }
1429
+ },
1430
+ {
1431
+ "kind": "js",
1432
+ "name": "checkOrSelect",
1433
+ "declaration": {
1434
+ "name": "checkOrSelect",
1435
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
1436
+ }
1437
+ }
1438
+ ]
1439
+ },
1440
+ {
1441
+ "kind": "javascript-module",
1442
+ "path": "../core/src/shared/mixins/ConstraintValidation.ts",
1443
+ "declarations": [
1444
+ {
1445
+ "kind": "variable",
1446
+ "name": "validate",
1447
+ "description": "A symbol through which a \"Form Associated\" custom element validates its current state."
1448
+ },
1449
+ {
1450
+ "kind": "function",
1451
+ "name": "isConstraintValidationMixin",
1452
+ "return": {
1453
+ "type": {
1454
+ "text": ""
1455
+ }
1456
+ },
1457
+ "parameters": [
1458
+ {
1459
+ "name": "value",
1460
+ "type": {
1461
+ "text": "unknown"
1462
+ },
1463
+ "description": "The value to test."
1464
+ }
1465
+ ],
1466
+ "description": "Determines whether a value is a `ConstraintValidationMixin`."
1467
+ },
1468
+ {
1469
+ "kind": "mixin",
1470
+ "description": "Mixin to augment an element with \"Form Associated\" behavior that supports constraint validation.",
1471
+ "name": "ConstraintValidation",
1472
+ "members": [
1473
+ {
1474
+ "kind": "field",
1475
+ "name": "[_validityMessage]",
1476
+ "type": {
1477
+ "text": "string | undefined"
1478
+ },
1479
+ "privacy": "private"
1480
+ },
1481
+ {
1482
+ "kind": "field",
1483
+ "name": "willValidate",
1484
+ "type": {
1485
+ "text": "boolean"
1486
+ },
1487
+ "description": "Whether the element is a submittable element that is a candidate for constraint validation.",
1488
+ "readonly": true
1489
+ },
1490
+ {
1491
+ "kind": "field",
1492
+ "name": "validity",
1493
+ "type": {
1494
+ "text": "ValidityState"
1495
+ },
1496
+ "description": "The validity state of the element.",
1497
+ "readonly": true
1498
+ },
1499
+ {
1500
+ "kind": "field",
1501
+ "name": "validationMessage",
1502
+ "type": {
1503
+ "text": "string"
1504
+ },
1505
+ "description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
1506
+ "readonly": true
1507
+ },
1508
+ {
1509
+ "kind": "method",
1510
+ "name": "reportValidity",
1511
+ "return": {
1512
+ "type": {
1513
+ "text": "boolean"
1514
+ }
1515
+ },
1516
+ "description": "Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user."
1517
+ },
1518
+ {
1519
+ "kind": "method",
1520
+ "name": "checkValidity",
1521
+ "return": {
1522
+ "type": {
1523
+ "text": "boolean"
1524
+ }
1525
+ },
1526
+ "description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event."
1527
+ },
1528
+ {
1529
+ "kind": "method",
1530
+ "name": "setCustomValidity",
1531
+ "return": {
1532
+ "type": {
1533
+ "text": "void"
1534
+ }
1535
+ },
1536
+ "parameters": [
1537
+ {
1538
+ "name": "error",
1539
+ "type": {
1540
+ "text": "string"
1541
+ },
1542
+ "description": "The message to use for validity errors."
1543
+ }
1544
+ ],
1545
+ "description": "Sets a custom validity message for the element."
1546
+ },
1547
+ {
1548
+ "kind": "method",
1549
+ "name": "[_updateValidity]",
1550
+ "privacy": "private",
1551
+ "return": {
1552
+ "type": {
1553
+ "text": "void"
1554
+ }
1555
+ }
1556
+ },
1557
+ {
1558
+ "kind": "method",
1559
+ "name": "#getNativeMessage",
1560
+ "privacy": "private",
1561
+ "return": {
1562
+ "type": {
1563
+ "text": "string"
1564
+ }
1565
+ },
1566
+ "parameters": [
1567
+ {
1568
+ "name": "flags",
1569
+ "type": {
1570
+ "text": "ValidityStateFlags"
1571
+ }
1572
+ }
1573
+ ]
1574
+ }
1575
+ ],
1576
+ "parameters": [
1577
+ {
1578
+ "name": "base",
1579
+ "type": {
1580
+ "text": "T"
1581
+ },
1582
+ "description": "The base class."
1583
+ }
1584
+ ]
1585
+ }
1586
+ ],
1587
+ "exports": [
1588
+ {
1589
+ "kind": "js",
1590
+ "name": "validate",
1591
+ "declaration": {
1592
+ "name": "validate",
1593
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
1594
+ }
1595
+ },
1596
+ {
1597
+ "kind": "js",
1598
+ "name": "isConstraintValidationMixin",
1599
+ "declaration": {
1600
+ "name": "isConstraintValidationMixin",
1601
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
1602
+ }
1603
+ },
1604
+ {
1605
+ "kind": "js",
1606
+ "name": "ConstraintValidation",
1607
+ "declaration": {
1608
+ "name": "ConstraintValidation",
1609
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
1610
+ }
1611
+ }
1612
+ ]
1613
+ },
1614
+ {
1615
+ "kind": "javascript-module",
1616
+ "path": "../core/src/shared/mixins/Constructor.ts",
1617
+ "declarations": [],
1618
+ "exports": []
1619
+ },
1620
+ {
1621
+ "kind": "javascript-module",
1622
+ "path": "../core/src/shared/mixins/Dirty.ts",
1623
+ "declarations": [
1624
+ {
1625
+ "kind": "function",
1626
+ "name": "isDirtyMixin",
1627
+ "return": {
1628
+ "type": {
1629
+ "text": ""
1630
+ }
1631
+ },
1632
+ "parameters": [
1633
+ {
1634
+ "name": "value",
1635
+ "type": {
1636
+ "text": "unknown"
1637
+ },
1638
+ "description": "The value to test."
1639
+ }
1640
+ ],
1641
+ "description": "Determines whether a value is a `DirtyMixin`."
1642
+ },
1643
+ {
1644
+ "kind": "mixin",
1645
+ "description": "Mixin to augment an element with functionality used to mark it as dirty.",
1646
+ "name": "Dirty",
1647
+ "members": [
1648
+ {
1649
+ "kind": "field",
1650
+ "name": "[_eventHandler]",
1651
+ "privacy": "private"
1652
+ },
1653
+ {
1654
+ "kind": "field",
1655
+ "name": "dirty",
1656
+ "type": {
1657
+ "text": "boolean"
1658
+ },
1659
+ "description": "Whether the user has modified the value of the element.",
1660
+ "readonly": true
1661
+ },
1662
+ {
1663
+ "kind": "field",
1664
+ "name": "pristine",
1665
+ "type": {
1666
+ "text": "boolean"
1667
+ },
1668
+ "description": "Whether the user has not modified the value of the element.",
1669
+ "readonly": true
1670
+ },
1671
+ {
1672
+ "kind": "method",
1673
+ "name": "markAsPristine",
1674
+ "return": {
1675
+ "type": {
1676
+ "text": "void"
1677
+ }
1678
+ },
1679
+ "description": "Marks the element as pristine."
1680
+ },
1681
+ {
1682
+ "kind": "method",
1683
+ "name": "markAsDirty",
1684
+ "return": {
1685
+ "type": {
1686
+ "text": "void"
1687
+ }
1688
+ },
1689
+ "description": "Marks the element as dirty."
1690
+ }
1691
+ ],
1692
+ "parameters": [
1693
+ {
1694
+ "name": "base",
1695
+ "type": {
1696
+ "text": "T"
1697
+ },
1698
+ "description": "The base class."
1699
+ }
1700
+ ]
1701
+ }
1702
+ ],
1703
+ "exports": [
1704
+ {
1705
+ "kind": "js",
1706
+ "name": "isDirtyMixin",
1707
+ "declaration": {
1708
+ "name": "isDirtyMixin",
1709
+ "module": "../core/src/shared/mixins/Dirty.ts"
1710
+ }
1711
+ },
1712
+ {
1713
+ "kind": "js",
1714
+ "name": "Dirty",
1715
+ "declaration": {
1716
+ "name": "Dirty",
1717
+ "module": "../core/src/shared/mixins/Dirty.ts"
1718
+ }
1719
+ }
1720
+ ]
1721
+ },
1722
+ {
1723
+ "kind": "javascript-module",
1724
+ "path": "../core/src/shared/mixins/Disabled.ts",
1725
+ "declarations": [
1726
+ {
1727
+ "kind": "function",
1728
+ "name": "isDisabledMixin",
1729
+ "return": {
1730
+ "type": {
1731
+ "text": "value is DisabledMixin"
1732
+ }
1733
+ },
1734
+ "parameters": [
1735
+ {
1736
+ "name": "value",
1737
+ "type": {
1738
+ "text": "unknown"
1739
+ },
1740
+ "description": "The value to test."
1741
+ }
1742
+ ],
1743
+ "description": "Determines whether a value is a `DisabledMixin`."
1744
+ },
1745
+ {
1746
+ "kind": "mixin",
1747
+ "description": "Mixin to augment an element with behavior that supports a disabled state.",
1748
+ "name": "Disabled",
1749
+ "members": [
1750
+ {
1751
+ "kind": "field",
1752
+ "name": "disabled",
1753
+ "type": {
1754
+ "text": "boolean"
1755
+ },
1756
+ "default": "false",
1757
+ "description": "Whether the element is disabled.",
1758
+ "attribute": "disabled"
1759
+ }
1760
+ ],
1761
+ "attributes": [
1762
+ {
1763
+ "name": "disabled",
1764
+ "type": {
1765
+ "text": "boolean"
1766
+ },
1767
+ "default": "false",
1768
+ "description": "Whether the element is disabled.",
1769
+ "fieldName": "disabled"
1770
+ }
1771
+ ],
1772
+ "parameters": [
1773
+ {
1774
+ "name": "base",
1775
+ "type": {
1776
+ "text": "T"
1777
+ },
1778
+ "description": "The base class."
1779
+ },
1780
+ {
1781
+ "name": "reflect",
1782
+ "default": "true",
1783
+ "type": {
1784
+ "text": "boolean"
1785
+ },
1786
+ "description": "Whether the disabled property is reflected as an attribute.",
1787
+ "optional": true
1788
+ }
1789
+ ]
1790
+ }
1791
+ ],
1792
+ "exports": [
1793
+ {
1794
+ "kind": "js",
1795
+ "name": "isDisabledMixin",
1796
+ "declaration": {
1797
+ "name": "isDisabledMixin",
1798
+ "module": "../core/src/shared/mixins/Disabled.ts"
1799
+ }
1800
+ },
1801
+ {
1802
+ "kind": "js",
1803
+ "name": "Disabled",
1804
+ "declaration": {
1805
+ "name": "Disabled",
1806
+ "module": "../core/src/shared/mixins/Disabled.ts"
1807
+ }
1808
+ }
1809
+ ]
1810
+ },
1811
+ {
1812
+ "kind": "javascript-module",
1813
+ "path": "../core/src/shared/mixins/DisabledInteractive.ts",
1814
+ "declarations": [
1815
+ {
1816
+ "kind": "function",
1817
+ "name": "isDisabledInteractiveMixin",
1818
+ "return": {
1819
+ "type": {
1820
+ "text": "value is DisabledInteractiveMixin"
1821
+ }
1822
+ },
1823
+ "parameters": [
1824
+ {
1825
+ "name": "value",
1826
+ "type": {
1827
+ "text": "unknown"
1828
+ },
1829
+ "description": "The value to test."
1830
+ }
1831
+ ],
1832
+ "description": "Determines whether a value is a `DisabledInteractiveMixin`."
1833
+ },
1834
+ {
1835
+ "kind": "mixin",
1836
+ "description": "Mixin to augment an element with behavior that supports an interactive disabled state.",
1837
+ "name": "DisabledInteractive",
1838
+ "members": [
1839
+ {
1840
+ "kind": "field",
1841
+ "name": "[_suppressedEventHandler]",
1842
+ "privacy": "private",
1843
+ "readonly": true
1844
+ },
1845
+ {
1846
+ "kind": "field",
1847
+ "name": "disabledInteractive",
1848
+ "type": {
1849
+ "text": "boolean"
1850
+ },
1851
+ "default": "false",
1852
+ "description": "Whether the element is disabled and interactive.",
1853
+ "attribute": "disabled-interactive",
1854
+ "reflects": true
1855
+ }
1856
+ ],
1857
+ "attributes": [
1858
+ {
1859
+ "name": "disabled-interactive",
1860
+ "type": {
1861
+ "text": "boolean"
1862
+ },
1863
+ "default": "false",
1864
+ "description": "Whether the element is disabled and interactive.",
1865
+ "fieldName": "disabledInteractive"
1866
+ }
1867
+ ],
1868
+ "parameters": [
1869
+ {
1870
+ "name": "base",
1871
+ "type": {
1872
+ "text": "T"
1873
+ },
1874
+ "description": "The base class."
1875
+ }
1876
+ ]
1877
+ }
1878
+ ],
1879
+ "exports": [
1880
+ {
1881
+ "kind": "js",
1882
+ "name": "isDisabledInteractiveMixin",
1883
+ "declaration": {
1884
+ "name": "isDisabledInteractiveMixin",
1885
+ "module": "../core/src/shared/mixins/DisabledInteractive.ts"
1886
+ }
1887
+ },
1888
+ {
1889
+ "kind": "js",
1890
+ "name": "DisabledInteractive",
1891
+ "declaration": {
1892
+ "name": "DisabledInteractive",
1893
+ "module": "../core/src/shared/mixins/DisabledInteractive.ts"
1894
+ }
1895
+ }
1896
+ ]
1897
+ },
1898
+ {
1899
+ "kind": "javascript-module",
1900
+ "path": "../core/src/shared/mixins/EventAttribute.ts",
1901
+ "declarations": [
1902
+ {
1903
+ "kind": "mixin",
1904
+ "description": "Mixin that adds support for custom event attributes.",
1905
+ "name": "EventAttribute",
1906
+ "parameters": [
1907
+ {
1908
+ "name": "base",
1909
+ "type": {
1910
+ "text": "T"
1911
+ },
1912
+ "description": "The base class from which to inherit."
1913
+ },
1914
+ {
1915
+ "name": "types",
1916
+ "type": {
1917
+ "text": "string[]"
1918
+ },
1919
+ "description": "The types of event attributes."
1920
+ }
1921
+ ]
1922
+ }
1923
+ ],
1924
+ "exports": [
1925
+ {
1926
+ "kind": "js",
1927
+ "name": "EventAttribute",
1928
+ "declaration": {
1929
+ "name": "EventAttribute",
1930
+ "module": "../core/src/shared/mixins/EventAttribute.ts"
1931
+ }
1932
+ }
1933
+ ]
1934
+ },
1935
+ {
1936
+ "kind": "javascript-module",
1937
+ "path": "../core/src/shared/mixins/Focusable.ts",
1938
+ "declarations": [
1939
+ {
1940
+ "kind": "mixin",
1941
+ "description": "Mixin to augment an element with behavior that supports a focused state.",
1942
+ "name": "Focusable",
1943
+ "members": [
1944
+ {
1945
+ "kind": "field",
1946
+ "name": "[_tabindex]",
1947
+ "type": {
1948
+ "text": "number"
1949
+ },
1950
+ "privacy": "private",
1951
+ "default": "0"
1952
+ }
1953
+ ],
1954
+ "parameters": [
1955
+ {
1956
+ "name": "base",
1957
+ "type": {
1958
+ "text": "T"
1959
+ },
1960
+ "description": "The base class."
1961
+ }
1962
+ ]
1963
+ }
1964
+ ],
1965
+ "exports": [
1966
+ {
1967
+ "kind": "js",
1968
+ "name": "Focusable",
1969
+ "declaration": {
1970
+ "name": "Focusable",
1971
+ "module": "../core/src/shared/mixins/Focusable.ts"
1972
+ }
1973
+ }
1974
+ ]
1975
+ },
1976
+ {
1977
+ "kind": "javascript-module",
1978
+ "path": "../core/src/shared/mixins/FormAssociated.ts",
1979
+ "declarations": [
1980
+ {
1981
+ "kind": "variable",
1982
+ "name": "formValue",
1983
+ "description": "A symbol through which a \"Form Associated\" custom element provides a value for a form."
1984
+ },
1985
+ {
1986
+ "kind": "variable",
1987
+ "name": "defaultValue",
1988
+ "description": "A symbol through which a \"Form Associated\" custom element provides a default value for resetting a form."
1989
+ },
1990
+ {
1991
+ "kind": "function",
1992
+ "name": "isFormAssociatedMixin",
1993
+ "return": {
1994
+ "type": {
1995
+ "text": ""
1996
+ }
1997
+ },
1998
+ "parameters": [
1999
+ {
2000
+ "name": "value",
2001
+ "type": {
2002
+ "text": "unknown"
2003
+ },
2004
+ "description": "The value to test."
2005
+ }
2006
+ ],
2007
+ "description": "Determines whether a value is a `FormAssociatedMixin`."
2008
+ },
2009
+ {
2010
+ "kind": "mixin",
2011
+ "description": "Mixin to augment an element with \"Form Associated\" behavior.",
2012
+ "name": "FormAssociated",
2013
+ "members": [
2014
+ {
2015
+ "kind": "field",
2016
+ "name": "formAssociated",
2017
+ "type": {
2018
+ "text": "boolean"
2019
+ },
2020
+ "static": true,
2021
+ "readonly": true,
2022
+ "default": "true",
2023
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
2024
+ },
2025
+ {
2026
+ "kind": "field",
2027
+ "name": "[_defaultValue]",
2028
+ "type": {
2029
+ "text": "unknown"
2030
+ },
2031
+ "privacy": "private"
2032
+ },
2033
+ {
2034
+ "kind": "field",
2035
+ "name": "[_defaultIndeterminate]",
2036
+ "type": {
2037
+ "text": "boolean"
2038
+ },
2039
+ "privacy": "private",
2040
+ "default": "false"
2041
+ },
2042
+ {
2043
+ "kind": "field",
2044
+ "name": "[_formDisabled]",
2045
+ "type": {
2046
+ "text": "boolean"
2047
+ },
2048
+ "privacy": "private",
2049
+ "default": "false"
2050
+ },
2051
+ {
2052
+ "kind": "field",
2053
+ "name": "form",
2054
+ "type": {
2055
+ "text": "HTMLFormElement | null"
2056
+ },
2057
+ "description": "The `HTMLFormElement` associated with this element.",
2058
+ "readonly": true
2059
+ },
2060
+ {
2061
+ "kind": "field",
2062
+ "name": "labels",
2063
+ "type": {
2064
+ "text": "NodeListOf<HTMLLabelElement>"
2065
+ },
2066
+ "readonly": true
2067
+ },
2068
+ {
2069
+ "kind": "field",
2070
+ "name": "name",
2071
+ "description": "The name that identifies the element when submitting the associated form.",
2072
+ "attribute": "name"
2073
+ },
2074
+ {
2075
+ "kind": "field",
2076
+ "name": "disabled",
2077
+ "type": {
2078
+ "text": "boolean"
2079
+ },
2080
+ "description": "Whether the element is disabled.",
2081
+ "default": "false",
2082
+ "attribute": "disabled"
2083
+ },
2084
+ {
2085
+ "kind": "method",
2086
+ "name": "formDisabledCallback",
2087
+ "return": {
2088
+ "type": {
2089
+ "text": "void"
2090
+ }
2091
+ },
2092
+ "parameters": [
2093
+ {
2094
+ "name": "disabled",
2095
+ "type": {
2096
+ "text": "boolean"
2097
+ }
2098
+ }
2099
+ ],
2100
+ "description": "Called when the element is disabled or enabled via its form association."
2101
+ },
2102
+ {
2103
+ "kind": "method",
2104
+ "name": "formResetCallback",
2105
+ "return": {
2106
+ "type": {
2107
+ "text": "void"
2108
+ }
2109
+ },
2110
+ "description": "Called when the associated form is reset."
2111
+ }
2112
+ ],
2113
+ "attributes": [
2114
+ {
2115
+ "name": "name",
2116
+ "description": "The name that identifies the element when submitting the associated form.",
2117
+ "fieldName": "name"
2118
+ },
2119
+ {
2120
+ "name": "disabled",
2121
+ "type": {
2122
+ "text": "boolean"
2123
+ },
2124
+ "description": "Whether the element is disabled.",
2125
+ "default": "false",
2126
+ "fieldName": "disabled"
2127
+ }
2128
+ ],
2129
+ "parameters": [
2130
+ {
2131
+ "name": "base",
2132
+ "type": {
2133
+ "text": "T"
2134
+ },
2135
+ "description": "The base class."
2136
+ }
2137
+ ]
2138
+ }
2139
+ ],
2140
+ "exports": [
2141
+ {
2142
+ "kind": "js",
2143
+ "name": "formValue",
2144
+ "declaration": {
2145
+ "name": "formValue",
2146
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
2147
+ }
2148
+ },
2149
+ {
2150
+ "kind": "js",
2151
+ "name": "defaultValue",
2152
+ "declaration": {
2153
+ "name": "defaultValue",
2154
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
2155
+ }
2156
+ },
2157
+ {
2158
+ "kind": "js",
2159
+ "name": "isFormAssociatedMixin",
2160
+ "declaration": {
2161
+ "name": "isFormAssociatedMixin",
2162
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
2163
+ }
2164
+ },
2165
+ {
2166
+ "kind": "js",
2167
+ "name": "FormAssociated",
2168
+ "declaration": {
2169
+ "name": "FormAssociated",
2170
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
2171
+ }
2172
+ }
2173
+ ]
2174
+ },
2175
+ {
2176
+ "kind": "javascript-module",
2177
+ "path": "../core/src/shared/mixins/FormSubmitter.ts",
2178
+ "declarations": [
2179
+ {
2180
+ "kind": "function",
2181
+ "name": "isFormSubmitterMixin",
2182
+ "return": {
2183
+ "type": {
2184
+ "text": "value is FormSubmitterMixin"
2185
+ }
2186
+ },
2187
+ "parameters": [
2188
+ {
2189
+ "name": "value",
2190
+ "type": {
2191
+ "text": "unknown"
2192
+ },
2193
+ "description": "The value to test."
2194
+ }
2195
+ ],
2196
+ "description": "Determines whether a value is a `FormSubmitterMixin`."
2197
+ },
2198
+ {
2199
+ "kind": "mixin",
2200
+ "description": "Mixin to augment an element with behavior used to submit a form.",
2201
+ "name": "FormSubmitter",
2202
+ "members": [
2203
+ {
2204
+ "kind": "field",
2205
+ "name": "formAssociated",
2206
+ "type": {
2207
+ "text": "boolean"
2208
+ },
2209
+ "static": true,
2210
+ "readonly": true,
2211
+ "default": "true",
2212
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
2213
+ },
2214
+ {
2215
+ "kind": "field",
2216
+ "name": "name",
2217
+ "description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
2218
+ "attribute": "name"
2219
+ },
2220
+ {
2221
+ "kind": "field",
2222
+ "name": "value",
2223
+ "description": "The value associated with the element's name when it's submitted with form data.",
2224
+ "attribute": "value"
2225
+ },
2226
+ {
2227
+ "kind": "field",
2228
+ "name": "type",
2229
+ "type": {
2230
+ "text": "FormSubmitterType"
2231
+ },
2232
+ "default": "\"button\"",
2233
+ "description": "The type of the element.",
2234
+ "attribute": "type"
2235
+ },
2236
+ {
2237
+ "kind": "field",
2238
+ "name": "[_clickHandler]",
2239
+ "privacy": "private"
2240
+ }
2241
+ ],
2242
+ "attributes": [
2243
+ {
2244
+ "name": "name",
2245
+ "description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
2246
+ "fieldName": "name"
2247
+ },
2248
+ {
2249
+ "name": "value",
2250
+ "description": "The value associated with the element's name when it's submitted with form data.",
2251
+ "fieldName": "value"
2252
+ },
2253
+ {
2254
+ "name": "type",
2255
+ "type": {
2256
+ "text": "FormSubmitterType"
2257
+ },
2258
+ "default": "\"button\"",
2259
+ "description": "The type of the element.",
2260
+ "fieldName": "type"
2261
+ }
2262
+ ],
2263
+ "parameters": [
2264
+ {
2265
+ "name": "base",
2266
+ "type": {
2267
+ "text": "T"
2268
+ },
2269
+ "description": "The base class."
2270
+ }
2271
+ ]
2272
+ }
2273
+ ],
2274
+ "exports": [
2275
+ {
2276
+ "kind": "js",
2277
+ "name": "isFormSubmitterMixin",
2278
+ "declaration": {
2279
+ "name": "isFormSubmitterMixin",
2280
+ "module": "../core/src/shared/mixins/FormSubmitter.ts"
2281
+ }
2282
+ },
2283
+ {
2284
+ "kind": "js",
2285
+ "name": "FormSubmitter",
2286
+ "declaration": {
2287
+ "name": "FormSubmitter",
2288
+ "module": "../core/src/shared/mixins/FormSubmitter.ts"
2289
+ }
2290
+ }
2291
+ ]
2292
+ },
2293
+ {
2294
+ "kind": "javascript-module",
2295
+ "path": "../core/src/shared/mixins/hasKeys.ts",
2296
+ "declarations": [
2297
+ {
2298
+ "kind": "function",
2299
+ "name": "hasKeys",
2300
+ "return": {
2301
+ "type": {
2302
+ "text": "boolean"
2303
+ }
2304
+ },
2305
+ "parameters": [
2306
+ {
2307
+ "name": "value",
2308
+ "type": {
2309
+ "text": "unknown"
2310
+ },
2311
+ "description": "The value to test."
2312
+ },
2313
+ {
2314
+ "name": "keys",
2315
+ "type": {
2316
+ "text": "Array<keyof T>"
2317
+ }
2318
+ },
2319
+ {
2320
+ "description": ": Array<keyof T>} keys The keys of `T` to test.",
2321
+ "name": "",
2322
+ "type": {
2323
+ "text": "...keys"
2324
+ }
2325
+ }
2326
+ ],
2327
+ "description": "Determines whether an object has keys for a given type."
2328
+ }
2329
+ ],
2330
+ "exports": [
2331
+ {
2332
+ "kind": "js",
2333
+ "name": "hasKeys",
2334
+ "declaration": {
2335
+ "name": "hasKeys",
2336
+ "module": "../core/src/shared/mixins/hasKeys.ts"
2337
+ }
2338
+ }
2339
+ ]
2340
+ },
2341
+ {
2342
+ "kind": "javascript-module",
2343
+ "path": "../core/src/shared/mixins/HtmlFor.ts",
2344
+ "declarations": [
2345
+ {
2346
+ "kind": "function",
2347
+ "name": "isHtmlForMixin",
2348
+ "return": {
2349
+ "type": {
2350
+ "text": "value is HtmlForMixin"
2351
+ }
2352
+ },
2353
+ "parameters": [
2354
+ {
2355
+ "name": "value",
2356
+ "type": {
2357
+ "text": "unknown"
2358
+ },
2359
+ "description": "The value to test."
2360
+ }
2361
+ ],
2362
+ "description": "Determines whether a value is a `HtmlForMixin`."
2363
+ },
2364
+ {
2365
+ "kind": "mixin",
2366
+ "description": "Mixin that creates an attached element associated with an interactive control.",
2367
+ "name": "HtmlFor",
2368
+ "members": [
2369
+ {
2370
+ "kind": "field",
2371
+ "name": "[_control]",
2372
+ "type": {
2373
+ "text": "HTMLElement | null"
2374
+ },
2375
+ "privacy": "private",
2376
+ "default": "null"
2377
+ },
2378
+ {
2379
+ "kind": "field",
2380
+ "name": "[_firstUpdated]",
2381
+ "type": {
2382
+ "text": "boolean"
2383
+ },
2384
+ "privacy": "private",
2385
+ "default": "false"
2386
+ },
2387
+ {
2388
+ "kind": "field",
2389
+ "name": "htmlFor",
2390
+ "type": {
2391
+ "text": "string | null"
2392
+ },
2393
+ "default": "null",
2394
+ "description": "The identifier of the interactive control to which this element is attached.",
2395
+ "attribute": "for"
2396
+ },
2397
+ {
2398
+ "kind": "field",
2399
+ "name": "control",
2400
+ "description": "The interactive element to which this element is attached.",
2401
+ "readonly": true
2402
+ },
2403
+ {
2404
+ "kind": "method",
2405
+ "name": "attach",
2406
+ "return": {
2407
+ "type": {
2408
+ "text": "void"
2409
+ }
2410
+ },
2411
+ "parameters": [
2412
+ {
2413
+ "name": "control",
2414
+ "type": {
2415
+ "text": "HTMLElement"
2416
+ },
2417
+ "description": "The element that controls the attachable element."
2418
+ }
2419
+ ],
2420
+ "description": "Attaches the element to an interactive control."
2421
+ },
2422
+ {
2423
+ "kind": "method",
2424
+ "name": "detach",
2425
+ "return": {
2426
+ "type": {
2427
+ "text": "void"
2428
+ }
2429
+ },
2430
+ "description": "Detaches the element from its current interactive control."
2431
+ }
2432
+ ],
2433
+ "attributes": [
2434
+ {
2435
+ "name": "for",
2436
+ "type": {
2437
+ "text": "string | null"
2438
+ },
2439
+ "default": "null",
2440
+ "description": "The identifier of the interactive control to which this element is attached.",
2441
+ "fieldName": "htmlFor"
2442
+ }
2443
+ ],
2444
+ "parameters": [
2445
+ {
2446
+ "name": "base",
2447
+ "type": {
2448
+ "text": "T"
2449
+ },
2450
+ "description": "The base class."
2451
+ }
2452
+ ]
2453
+ }
2454
+ ],
2455
+ "exports": [
2456
+ {
2457
+ "kind": "js",
2458
+ "name": "isHtmlForMixin",
2459
+ "declaration": {
2460
+ "name": "isHtmlForMixin",
2461
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2462
+ }
2463
+ },
2464
+ {
2465
+ "kind": "js",
2466
+ "name": "HtmlFor",
2467
+ "declaration": {
2468
+ "name": "HtmlFor",
2469
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
2470
+ }
2471
+ }
2472
+ ]
2473
+ },
2474
+ {
2475
+ "kind": "javascript-module",
2476
+ "path": "../core/src/shared/mixins/index.ts",
2477
+ "declarations": [],
2478
+ "exports": [
2479
+ {
2480
+ "kind": "js",
2481
+ "name": "*",
2482
+ "declaration": {
2483
+ "name": "*",
2484
+ "package": "\"./AttachInternals\""
2485
+ }
2486
+ },
2487
+ {
2488
+ "kind": "js",
2489
+ "name": "*",
2490
+ "declaration": {
2491
+ "name": "*",
2492
+ "package": "\"./Checked\""
2493
+ }
2494
+ },
2495
+ {
2496
+ "kind": "js",
2497
+ "name": "*",
2498
+ "declaration": {
2499
+ "name": "*",
2500
+ "package": "\"./CheckedIndeterminate\""
2501
+ }
2502
+ },
2503
+ {
2504
+ "kind": "js",
2505
+ "name": "*",
2506
+ "declaration": {
2507
+ "name": "*",
2508
+ "package": "\"./CheckedOrSelected\""
2509
+ }
2510
+ },
2511
+ {
2512
+ "kind": "js",
2513
+ "name": "*",
2514
+ "declaration": {
2515
+ "name": "*",
2516
+ "package": "\"./ConstraintValidation\""
2517
+ }
2518
+ },
2519
+ {
2520
+ "kind": "js",
2521
+ "name": "*",
2522
+ "declaration": {
2523
+ "name": "*",
2524
+ "package": "\"./Dirty\""
2525
+ }
2526
+ },
2527
+ {
2528
+ "kind": "js",
2529
+ "name": "*",
2530
+ "declaration": {
2531
+ "name": "*",
2532
+ "package": "\"./Disabled\""
2533
+ }
2534
+ },
2535
+ {
2536
+ "kind": "js",
2537
+ "name": "*",
2538
+ "declaration": {
2539
+ "name": "*",
2540
+ "package": "\"./DisabledInteractive\""
2541
+ }
2542
+ },
2543
+ {
2544
+ "kind": "js",
2545
+ "name": "*",
2546
+ "declaration": {
2547
+ "name": "*",
2548
+ "package": "\"./EventAttribute\""
2549
+ }
2550
+ },
2551
+ {
2552
+ "kind": "js",
2553
+ "name": "*",
2554
+ "declaration": {
2555
+ "name": "*",
2556
+ "package": "\"./Focusable\""
2557
+ }
2558
+ },
2559
+ {
2560
+ "kind": "js",
2561
+ "name": "*",
2562
+ "declaration": {
2563
+ "name": "*",
2564
+ "package": "\"./FormAssociated\""
2565
+ }
2566
+ },
2567
+ {
2568
+ "kind": "js",
2569
+ "name": "*",
2570
+ "declaration": {
2571
+ "name": "*",
2572
+ "package": "\"./FormSubmitter\""
2573
+ }
2574
+ },
2575
+ {
2576
+ "kind": "js",
2577
+ "name": "*",
2578
+ "declaration": {
2579
+ "name": "*",
2580
+ "package": "\"./hasKeys\""
2581
+ }
2582
+ },
2583
+ {
2584
+ "kind": "js",
2585
+ "name": "*",
2586
+ "declaration": {
2587
+ "name": "*",
2588
+ "package": "\"./HtmlFor\""
2589
+ }
2590
+ },
2591
+ {
2592
+ "kind": "js",
2593
+ "name": "*",
2594
+ "declaration": {
2595
+ "name": "*",
2596
+ "package": "\"./KeyboardClick\""
2597
+ }
2598
+ },
2599
+ {
2600
+ "kind": "js",
2601
+ "name": "*",
2602
+ "declaration": {
2603
+ "name": "*",
2604
+ "package": "\"./Labelled\""
2605
+ }
2606
+ },
2607
+ {
2608
+ "kind": "js",
2609
+ "name": "*",
2610
+ "declaration": {
2611
+ "name": "*",
2612
+ "package": "\"./LinkButton\""
2613
+ }
2614
+ },
2615
+ {
2616
+ "kind": "js",
2617
+ "name": "*",
2618
+ "declaration": {
2619
+ "name": "*",
2620
+ "package": "\"./ReadOnly\""
2621
+ }
2622
+ },
2623
+ {
2624
+ "kind": "js",
2625
+ "name": "*",
2626
+ "declaration": {
2627
+ "name": "*",
2628
+ "package": "\"./Required\""
2629
+ }
2630
+ },
2631
+ {
2632
+ "kind": "js",
2633
+ "name": "*",
2634
+ "declaration": {
2635
+ "name": "*",
2636
+ "package": "\"./RequiredConstraintValidation\""
2637
+ }
2638
+ },
2639
+ {
2640
+ "kind": "js",
2641
+ "name": "*",
2642
+ "declaration": {
2643
+ "name": "*",
2644
+ "package": "\"./Role\""
2645
+ }
2646
+ },
2647
+ {
2648
+ "kind": "js",
2649
+ "name": "*",
2650
+ "declaration": {
2651
+ "name": "*",
2652
+ "package": "\"./Selected\""
2653
+ }
2654
+ },
2655
+ {
2656
+ "kind": "js",
2657
+ "name": "*",
2658
+ "declaration": {
2659
+ "name": "*",
2660
+ "package": "\"./Touched\""
2661
+ }
2662
+ },
2663
+ {
2664
+ "kind": "js",
2665
+ "name": "*",
2666
+ "declaration": {
2667
+ "name": "*",
2668
+ "package": "\"./Vertical\""
2669
+ }
2670
+ }
2671
+ ]
2672
+ },
2673
+ {
2674
+ "kind": "javascript-module",
2675
+ "path": "../core/src/shared/mixins/KeyboardClick.ts",
2676
+ "declarations": [
2677
+ {
2678
+ "kind": "mixin",
2679
+ "description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
2680
+ "name": "KeyboardClick",
2681
+ "members": [
2682
+ {
2683
+ "kind": "field",
2684
+ "name": "#keyUpHandler",
2685
+ "privacy": "private",
2686
+ "readonly": true
2687
+ },
2688
+ {
2689
+ "kind": "method",
2690
+ "name": "#handleKeyUp",
2691
+ "privacy": "private",
2692
+ "return": {
2693
+ "type": {
2694
+ "text": "void"
2695
+ }
2696
+ },
2697
+ "parameters": [
2698
+ {
2699
+ "name": "e",
2700
+ "type": {
2701
+ "text": "KeyboardEvent"
2702
+ }
2703
+ }
2704
+ ]
2705
+ }
2706
+ ],
2707
+ "events": [
2708
+ {
2709
+ "name": "click",
2710
+ "type": {
2711
+ "text": "MouseEvent"
2712
+ }
2713
+ }
2714
+ ],
2715
+ "parameters": [
2716
+ {
2717
+ "name": "base",
2718
+ "type": {
2719
+ "text": "T"
2720
+ },
2721
+ "description": "The base class."
2722
+ },
2723
+ {
2724
+ "name": "allowEnter",
2725
+ "default": "true",
2726
+ "type": {
2727
+ "text": "boolean"
2728
+ },
2729
+ "description": "Whether the `ENTER` key emits a click event.",
2730
+ "optional": true
2731
+ }
2732
+ ]
2733
+ }
2734
+ ],
2735
+ "exports": [
2736
+ {
2737
+ "kind": "js",
2738
+ "name": "KeyboardClick",
2739
+ "declaration": {
2740
+ "name": "KeyboardClick",
2741
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
2742
+ }
2743
+ }
2744
+ ]
2745
+ },
2746
+ {
2747
+ "kind": "javascript-module",
2748
+ "path": "../core/src/shared/mixins/Labelled.ts",
2749
+ "declarations": [
2750
+ {
2751
+ "kind": "variable",
2752
+ "name": "updateLabels",
2753
+ "description": "A symbol through which to update labels to reflect a control's current state."
2754
+ },
2755
+ {
2756
+ "kind": "function",
2757
+ "name": "isLabelledMixin",
2758
+ "return": {
2759
+ "type": {
2760
+ "text": ""
2761
+ }
2762
+ },
2763
+ "parameters": [
2764
+ {
2765
+ "name": "value",
2766
+ "type": {
2767
+ "text": "unknown"
2768
+ },
2769
+ "description": "The value to test."
2770
+ }
2771
+ ],
2772
+ "description": "Determines whether a value is a `LabelledMixin`."
2773
+ },
2774
+ {
2775
+ "kind": "mixin",
2776
+ "description": "Mixin to augment an element with support for labelling.",
2777
+ "name": "Labelled",
2778
+ "members": [
2779
+ {
2780
+ "kind": "field",
2781
+ "name": "formAssociated",
2782
+ "type": {
2783
+ "text": "boolean"
2784
+ },
2785
+ "static": true,
2786
+ "readonly": true,
2787
+ "default": "true",
2788
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
2789
+ },
2790
+ {
2791
+ "kind": "field",
2792
+ "name": "[_eventHandler]",
2793
+ "privacy": "private",
2794
+ "readonly": true
2795
+ },
2796
+ {
2797
+ "kind": "field",
2798
+ "name": "labels",
2799
+ "type": {
2800
+ "text": "NodeListOf<HTMLLabelElement>"
2801
+ },
2802
+ "description": "The label elements that the element is associated with.",
2803
+ "readonly": true
2804
+ }
2805
+ ],
2806
+ "parameters": [
2807
+ {
2808
+ "name": "base",
2809
+ "type": {
2810
+ "text": "T"
2811
+ },
2812
+ "description": "The base class."
2813
+ }
2814
+ ]
2815
+ }
2816
+ ],
2817
+ "exports": [
2818
+ {
2819
+ "kind": "js",
2820
+ "name": "updateLabels",
2821
+ "declaration": {
2822
+ "name": "updateLabels",
2823
+ "module": "../core/src/shared/mixins/Labelled.ts"
2824
+ }
2825
+ },
2826
+ {
2827
+ "kind": "js",
2828
+ "name": "isLabelledMixin",
2829
+ "declaration": {
2830
+ "name": "isLabelledMixin",
2831
+ "module": "../core/src/shared/mixins/Labelled.ts"
2832
+ }
2833
+ },
2834
+ {
2835
+ "kind": "js",
2836
+ "name": "Labelled",
2837
+ "declaration": {
2838
+ "name": "Labelled",
2839
+ "module": "../core/src/shared/mixins/Labelled.ts"
2840
+ }
2841
+ }
2842
+ ]
2843
+ },
2844
+ {
2845
+ "kind": "javascript-module",
2846
+ "path": "../core/src/shared/mixins/LinkButton.ts",
2847
+ "declarations": [
2848
+ {
2849
+ "kind": "variable",
2850
+ "name": "renderPseudoLink",
2851
+ "description": "A symbol through which to access a function used to render a pseudo link."
2852
+ },
2853
+ {
2854
+ "kind": "function",
2855
+ "name": "isLinkButtonMixin",
2856
+ "return": {
2857
+ "type": {
2858
+ "text": "value is LinkButtonMixin"
2859
+ }
2860
+ },
2861
+ "parameters": [
2862
+ {
2863
+ "name": "value",
2864
+ "type": {
2865
+ "text": "unknown"
2866
+ },
2867
+ "description": "The value to test."
2868
+ }
2869
+ ],
2870
+ "description": "Determines whether a value is a `LinkButtonMixin`."
2871
+ },
2872
+ {
2873
+ "kind": "mixin",
2874
+ "description": "Mixin to augment an element with behavior that supports functioning as a link.",
2875
+ "name": "LinkButton",
2876
+ "members": [
2877
+ {
2878
+ "kind": "field",
2879
+ "name": "[_clickHandler]",
2880
+ "privacy": "private"
2881
+ },
2882
+ {
2883
+ "kind": "field",
2884
+ "name": "href",
2885
+ "type": {
2886
+ "text": "string"
2887
+ },
2888
+ "default": "\"\"",
2889
+ "description": "The URL to which the link button points.",
2890
+ "attribute": "href"
2891
+ },
2892
+ {
2893
+ "kind": "field",
2894
+ "name": "target",
2895
+ "type": {
2896
+ "text": "LinkTarget"
2897
+ },
2898
+ "default": "\"\"",
2899
+ "description": "The target of the link button.",
2900
+ "attribute": "target"
2901
+ },
2902
+ {
2903
+ "kind": "field",
2904
+ "name": "rel",
2905
+ "type": {
2906
+ "text": "string"
2907
+ },
2908
+ "default": "\"\"",
2909
+ "description": "The relationship between the `target` of the link button and the document.",
2910
+ "attribute": "rel"
2911
+ },
2912
+ {
2913
+ "kind": "field",
2914
+ "name": "download",
2915
+ "type": {
2916
+ "text": "string | null"
2917
+ },
2918
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
2919
+ "default": "null",
2920
+ "attribute": "download"
2921
+ },
2922
+ {
2923
+ "kind": "method",
2924
+ "name": "#handleLinkPointerDown",
2925
+ "privacy": "private",
2926
+ "return": {
2927
+ "type": {
2928
+ "text": "void"
2929
+ }
2930
+ },
2931
+ "parameters": [
2932
+ {
2933
+ "name": "e",
2934
+ "type": {
2935
+ "text": "PointerEvent"
2936
+ }
2937
+ }
2938
+ ]
2939
+ },
2940
+ {
2941
+ "kind": "method",
2942
+ "name": "#handleLinkFocus",
2943
+ "privacy": "private",
2944
+ "return": {
2945
+ "type": {
2946
+ "text": "void"
2947
+ }
2948
+ },
2949
+ "parameters": [
2950
+ {
2951
+ "name": "e",
2952
+ "type": {
2953
+ "text": "Event"
2954
+ }
2955
+ }
2956
+ ]
2957
+ },
2958
+ {
2959
+ "kind": "method",
2960
+ "name": "#handleLinkBlur",
2961
+ "privacy": "private",
2962
+ "return": {
2963
+ "type": {
2964
+ "text": "void"
2965
+ }
2966
+ },
2967
+ "parameters": [
2968
+ {
2969
+ "name": "e",
2970
+ "type": {
2971
+ "text": "Event"
2972
+ }
2973
+ }
2974
+ ]
2975
+ }
2976
+ ],
2977
+ "events": [
2978
+ {
2979
+ "name": "click",
2980
+ "type": {
2981
+ "text": "MouseEvent"
2982
+ }
2983
+ }
2984
+ ],
2985
+ "attributes": [
2986
+ {
2987
+ "name": "href",
2988
+ "type": {
2989
+ "text": "string"
2990
+ },
2991
+ "default": "\"\"",
2992
+ "description": "The URL to which the link button points.",
2993
+ "fieldName": "href"
2994
+ },
2995
+ {
2996
+ "name": "target",
2997
+ "type": {
2998
+ "text": "LinkTarget"
2999
+ },
3000
+ "default": "\"\"",
3001
+ "description": "The target of the link button.",
3002
+ "fieldName": "target"
3003
+ },
3004
+ {
3005
+ "name": "rel",
3006
+ "type": {
3007
+ "text": "string"
3008
+ },
3009
+ "default": "\"\"",
3010
+ "description": "The relationship between the `target` of the link button and the document.",
3011
+ "fieldName": "rel"
3012
+ },
3013
+ {
3014
+ "name": "download",
3015
+ "type": {
3016
+ "text": "string | null"
3017
+ },
3018
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
3019
+ "default": "null",
3020
+ "fieldName": "download"
3021
+ }
3022
+ ],
3023
+ "parameters": [
3024
+ {
3025
+ "name": "base",
3026
+ "type": {
3027
+ "text": "T"
3028
+ },
3029
+ "description": "The base class."
3030
+ }
3031
+ ]
3032
+ }
3033
+ ],
3034
+ "exports": [
3035
+ {
3036
+ "kind": "js",
3037
+ "name": "renderPseudoLink",
3038
+ "declaration": {
3039
+ "name": "renderPseudoLink",
3040
+ "module": "../core/src/shared/mixins/LinkButton.ts"
3041
+ }
3042
+ },
3043
+ {
3044
+ "kind": "js",
3045
+ "name": "isLinkButtonMixin",
3046
+ "declaration": {
3047
+ "name": "isLinkButtonMixin",
3048
+ "module": "../core/src/shared/mixins/LinkButton.ts"
3049
+ }
3050
+ },
3051
+ {
3052
+ "kind": "js",
3053
+ "name": "LinkButton",
3054
+ "declaration": {
3055
+ "name": "LinkButton",
3056
+ "module": "../core/src/shared/mixins/LinkButton.ts"
3057
+ }
3058
+ }
3059
+ ]
3060
+ },
3061
+ {
3062
+ "kind": "javascript-module",
3063
+ "path": "../core/src/shared/mixins/ReadOnly.ts",
3064
+ "declarations": [
3065
+ {
3066
+ "kind": "function",
3067
+ "name": "isReadOnlyMixin",
3068
+ "return": {
3069
+ "type": {
3070
+ "text": ""
3071
+ }
3072
+ },
3073
+ "parameters": [
3074
+ {
3075
+ "name": "value",
3076
+ "type": {
3077
+ "text": "unknown"
3078
+ },
3079
+ "description": "The value to test."
3080
+ }
3081
+ ],
3082
+ "description": "Determines whether a value is a `ReadOnlyMixin`."
3083
+ },
3084
+ {
3085
+ "kind": "mixin",
3086
+ "description": "Mixin to augment an element with behavior that supports a read-only state.",
3087
+ "name": "ReadOnly",
3088
+ "members": [
3089
+ {
3090
+ "kind": "field",
3091
+ "name": "readOnly",
3092
+ "type": {
3093
+ "text": "boolean"
3094
+ },
3095
+ "default": "false",
3096
+ "description": "A value indicating whether the element is read-only.",
3097
+ "attribute": "readonly"
3098
+ }
3099
+ ],
3100
+ "attributes": [
3101
+ {
3102
+ "name": "readonly",
3103
+ "type": {
3104
+ "text": "boolean"
3105
+ },
3106
+ "default": "false",
3107
+ "description": "A value indicating whether the element is read-only.",
3108
+ "fieldName": "readOnly"
3109
+ }
3110
+ ],
3111
+ "parameters": [
3112
+ {
3113
+ "name": "base",
3114
+ "type": {
3115
+ "text": "T"
3116
+ },
3117
+ "description": "The base class."
3118
+ },
3119
+ {
3120
+ "name": "reflect",
3121
+ "default": "true",
3122
+ "type": {
3123
+ "text": "boolean"
3124
+ },
3125
+ "description": "A value indicating whether the read-only state is reflected as an attribute. The default value is `true`."
3126
+ }
3127
+ ]
3128
+ }
3129
+ ],
3130
+ "exports": [
3131
+ {
3132
+ "kind": "js",
3133
+ "name": "isReadOnlyMixin",
3134
+ "declaration": {
3135
+ "name": "isReadOnlyMixin",
3136
+ "module": "../core/src/shared/mixins/ReadOnly.ts"
3137
+ }
3138
+ },
3139
+ {
3140
+ "kind": "js",
3141
+ "name": "ReadOnly",
3142
+ "declaration": {
3143
+ "name": "ReadOnly",
3144
+ "module": "../core/src/shared/mixins/ReadOnly.ts"
3145
+ }
3146
+ }
3147
+ ]
3148
+ },
3149
+ {
3150
+ "kind": "javascript-module",
3151
+ "path": "../core/src/shared/mixins/Required.ts",
3152
+ "declarations": [
3153
+ {
3154
+ "kind": "function",
3155
+ "name": "isRequiredMixin",
3156
+ "return": {
3157
+ "type": {
3158
+ "text": ""
3159
+ }
3160
+ },
3161
+ "parameters": [
3162
+ {
3163
+ "name": "value",
3164
+ "type": {
3165
+ "text": "unknown"
3166
+ },
3167
+ "description": "The value to test."
3168
+ }
3169
+ ],
3170
+ "description": "Determines whether a value is a `RequiredMixin`."
3171
+ },
3172
+ {
3173
+ "kind": "mixin",
3174
+ "description": "Mixin to augment an element with behavior that supports a required state.",
3175
+ "name": "Required",
3176
+ "members": [
3177
+ {
3178
+ "kind": "field",
3179
+ "name": "required",
3180
+ "type": {
3181
+ "text": "boolean"
3182
+ },
3183
+ "default": "false",
3184
+ "description": "Whether a value is required for the element.",
3185
+ "attribute": "required",
3186
+ "reflects": true
3187
+ },
3188
+ {
3189
+ "kind": "field",
3190
+ "name": "optional",
3191
+ "description": "Whether a value is not required for the element.",
3192
+ "readonly": true
3193
+ }
3194
+ ],
3195
+ "attributes": [
3196
+ {
3197
+ "name": "required",
3198
+ "type": {
3199
+ "text": "boolean"
3200
+ },
3201
+ "default": "false",
3202
+ "description": "Whether a value is required for the element.",
3203
+ "fieldName": "required"
3204
+ }
3205
+ ],
3206
+ "parameters": [
3207
+ {
3208
+ "name": "base",
3209
+ "type": {
3210
+ "text": "T"
3211
+ },
3212
+ "description": "The base class."
3213
+ }
3214
+ ]
3215
+ }
3216
+ ],
3217
+ "exports": [
3218
+ {
3219
+ "kind": "js",
3220
+ "name": "isRequiredMixin",
3221
+ "declaration": {
3222
+ "name": "isRequiredMixin",
3223
+ "module": "../core/src/shared/mixins/Required.ts"
3224
+ }
3225
+ },
3226
+ {
3227
+ "kind": "js",
3228
+ "name": "Required",
3229
+ "declaration": {
3230
+ "name": "Required",
3231
+ "module": "../core/src/shared/mixins/Required.ts"
3232
+ }
3233
+ }
3234
+ ]
3235
+ },
3236
+ {
3237
+ "kind": "javascript-module",
3238
+ "path": "../core/src/shared/mixins/RequiredConstraintValidation.ts",
3239
+ "declarations": [
3240
+ {
3241
+ "kind": "function",
3242
+ "name": "isRequiredConstraintValidationMixin",
3243
+ "return": {
3244
+ "type": {
3245
+ "text": ""
3246
+ }
3247
+ },
3248
+ "parameters": [
3249
+ {
3250
+ "name": "value",
3251
+ "type": {
3252
+ "text": "unknown"
3253
+ },
3254
+ "description": "The value to test."
3255
+ }
3256
+ ],
3257
+ "description": "Determines whether a value is a `RequiredConstraintValidationMixin`."
3258
+ },
3259
+ {
3260
+ "kind": "mixin",
3261
+ "description": "Mixin to augment an element with behavior that supports a required state.",
3262
+ "name": "RequiredConstraintValidation",
3263
+ "parameters": [
3264
+ {
3265
+ "name": "base",
3266
+ "type": {
3267
+ "text": "T"
3268
+ },
3269
+ "description": "The base class."
3270
+ }
3271
+ ]
3272
+ }
3273
+ ],
3274
+ "exports": [
3275
+ {
3276
+ "kind": "js",
3277
+ "name": "isRequiredConstraintValidationMixin",
3278
+ "declaration": {
3279
+ "name": "isRequiredConstraintValidationMixin",
3280
+ "module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
3281
+ }
3282
+ },
3283
+ {
3284
+ "kind": "js",
3285
+ "name": "RequiredConstraintValidation",
3286
+ "declaration": {
3287
+ "name": "RequiredConstraintValidation",
3288
+ "module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
3289
+ }
3290
+ }
3291
+ ]
3292
+ },
3293
+ {
3294
+ "kind": "javascript-module",
3295
+ "path": "../core/src/shared/mixins/Role.ts",
3296
+ "declarations": [
3297
+ {
3298
+ "kind": "mixin",
3299
+ "description": "Mixin to augment an element with an ARIA role.",
3300
+ "name": "Role",
3301
+ "parameters": [
3302
+ {
3303
+ "name": "base",
3304
+ "type": {
3305
+ "text": "T"
3306
+ },
3307
+ "description": "The base class."
3308
+ },
3309
+ {
3310
+ "name": "role",
3311
+ "type": {
3312
+ "text": "ARIARole"
3313
+ },
3314
+ "description": "The ARIA role."
3315
+ }
3316
+ ]
3317
+ }
3318
+ ],
3319
+ "exports": [
3320
+ {
3321
+ "kind": "js",
3322
+ "name": "Role",
3323
+ "declaration": {
3324
+ "name": "Role",
3325
+ "module": "../core/src/shared/mixins/Role.ts"
3326
+ }
3327
+ }
3328
+ ]
3329
+ },
3330
+ {
3331
+ "kind": "javascript-module",
3332
+ "path": "../core/src/shared/mixins/Selected.ts",
3333
+ "declarations": [
3334
+ {
3335
+ "kind": "function",
3336
+ "name": "isSelectedMixin",
3337
+ "return": {
3338
+ "type": {
3339
+ "text": ""
3340
+ }
3341
+ },
3342
+ "parameters": [
3343
+ {
3344
+ "name": "value",
3345
+ "type": {
3346
+ "text": "unknown"
3347
+ },
3348
+ "description": "The value to test."
3349
+ }
3350
+ ],
3351
+ "description": "Determines whether a value is a `SelectedMixin`."
3352
+ },
3353
+ {
3354
+ "kind": "mixin",
3355
+ "description": "Mixin to augment an element with behavior that supports a selected state.",
3356
+ "name": "Selected",
3357
+ "members": [
3358
+ {
3359
+ "kind": "field",
3360
+ "name": "selected",
3361
+ "type": {
3362
+ "text": "boolean"
3363
+ },
3364
+ "default": "false",
3365
+ "description": "Whether the element is selected.",
3366
+ "attribute": "selected",
3367
+ "reflects": true
3368
+ }
3369
+ ],
3370
+ "attributes": [
3371
+ {
3372
+ "name": "selected",
3373
+ "type": {
3374
+ "text": "boolean"
3375
+ },
3376
+ "default": "false",
3377
+ "description": "Whether the element is selected.",
3378
+ "fieldName": "selected"
3379
+ }
3380
+ ],
3381
+ "parameters": [
3382
+ {
3383
+ "name": "base",
3384
+ "type": {
3385
+ "text": "T"
3386
+ },
3387
+ "description": "The base class."
3388
+ }
3389
+ ]
3390
+ }
3391
+ ],
3392
+ "exports": [
3393
+ {
3394
+ "kind": "js",
3395
+ "name": "isSelectedMixin",
3396
+ "declaration": {
3397
+ "name": "isSelectedMixin",
3398
+ "module": "../core/src/shared/mixins/Selected.ts"
3399
+ }
3400
+ },
3401
+ {
3402
+ "kind": "js",
3403
+ "name": "Selected",
3404
+ "declaration": {
3405
+ "name": "Selected",
3406
+ "module": "../core/src/shared/mixins/Selected.ts"
3407
+ }
3408
+ }
3409
+ ]
3410
+ },
3411
+ {
3412
+ "kind": "javascript-module",
3413
+ "path": "../core/src/shared/mixins/Touched.ts",
3414
+ "declarations": [
3415
+ {
3416
+ "kind": "function",
3417
+ "name": "isTouchedMixin",
3418
+ "return": {
3419
+ "type": {
3420
+ "text": ""
3421
+ }
3422
+ },
3423
+ "parameters": [
3424
+ {
3425
+ "name": "value",
3426
+ "type": {
3427
+ "text": "unknown"
3428
+ },
3429
+ "description": "The value to test."
3430
+ }
3431
+ ],
3432
+ "description": "Determines whether a value is a `TouchedMixin`."
3433
+ },
3434
+ {
3435
+ "kind": "mixin",
3436
+ "description": "Mixin to augment an element with functionality used to mark it as touched.",
3437
+ "name": "Touched",
3438
+ "members": [
3439
+ {
3440
+ "kind": "field",
3441
+ "name": "[_eventHandler]",
3442
+ "privacy": "private"
3443
+ },
3444
+ {
3445
+ "kind": "field",
3446
+ "name": "touched",
3447
+ "type": {
3448
+ "text": "boolean"
3449
+ },
3450
+ "description": "Whether the user has interacted when the element.",
3451
+ "readonly": true
3452
+ },
3453
+ {
3454
+ "kind": "field",
3455
+ "name": "untouched",
3456
+ "type": {
3457
+ "text": "boolean"
3458
+ },
3459
+ "description": "Whether the user has not interacted when the element.",
3460
+ "readonly": true
3461
+ },
3462
+ {
3463
+ "kind": "method",
3464
+ "name": "markAsTouched",
3465
+ "return": {
3466
+ "type": {
3467
+ "text": "void"
3468
+ }
3469
+ },
3470
+ "description": "Marks the element as touched."
3471
+ },
3472
+ {
3473
+ "kind": "method",
3474
+ "name": "markAsUntouched",
3475
+ "return": {
3476
+ "type": {
3477
+ "text": "void"
3478
+ }
3479
+ },
3480
+ "description": "Marks the element as untouched."
3481
+ }
3482
+ ],
3483
+ "parameters": [
3484
+ {
3485
+ "name": "base",
3486
+ "type": {
3487
+ "text": "T"
3488
+ },
3489
+ "description": "The base class."
3490
+ }
3491
+ ]
3492
+ }
3493
+ ],
3494
+ "exports": [
3495
+ {
3496
+ "kind": "js",
3497
+ "name": "isTouchedMixin",
3498
+ "declaration": {
3499
+ "name": "isTouchedMixin",
3500
+ "module": "../core/src/shared/mixins/Touched.ts"
3501
+ }
3502
+ },
3503
+ {
3504
+ "kind": "js",
3505
+ "name": "Touched",
3506
+ "declaration": {
3507
+ "name": "Touched",
3508
+ "module": "../core/src/shared/mixins/Touched.ts"
3509
+ }
3510
+ }
3511
+ ]
3512
+ },
3513
+ {
3514
+ "kind": "javascript-module",
3515
+ "path": "../core/src/shared/mixins/Vertical.ts",
3516
+ "declarations": [
3517
+ {
3518
+ "kind": "function",
3519
+ "name": "isVerticalMixin",
3520
+ "return": {
3521
+ "type": {
3522
+ "text": ""
3523
+ }
3524
+ },
3525
+ "parameters": [
3526
+ {
3527
+ "name": "value",
3528
+ "type": {
3529
+ "text": "unknown"
3530
+ },
3531
+ "description": "The value to test."
3532
+ }
3533
+ ],
3534
+ "description": "Determines whether a value is a `VerticalMixin`."
3535
+ },
3536
+ {
3537
+ "kind": "mixin",
3538
+ "description": "Mixin to augment an element with behavior that supports a vertical orientation.",
3539
+ "name": "Vertical",
3540
+ "members": [
3541
+ {
3542
+ "kind": "field",
3543
+ "name": "vertical",
3544
+ "type": {
3545
+ "text": "boolean"
3546
+ },
3547
+ "default": "false",
3548
+ "description": "Whether the element is oriented vertically.",
3549
+ "attribute": "vertical",
3550
+ "reflects": true
3551
+ }
3552
+ ],
3553
+ "attributes": [
3554
+ {
3555
+ "name": "vertical",
3556
+ "type": {
3557
+ "text": "boolean"
3558
+ },
3559
+ "default": "false",
3560
+ "description": "Whether the element is oriented vertically.",
3561
+ "fieldName": "vertical"
3562
+ }
3563
+ ],
3564
+ "parameters": [
3565
+ {
3566
+ "name": "base",
3567
+ "type": {
3568
+ "text": "T"
3569
+ },
3570
+ "description": "The base class."
3571
+ }
3572
+ ]
3573
+ }
3574
+ ],
3575
+ "exports": [
3576
+ {
3577
+ "kind": "js",
3578
+ "name": "isVerticalMixin",
3579
+ "declaration": {
3580
+ "name": "isVerticalMixin",
3581
+ "module": "../core/src/shared/mixins/Vertical.ts"
3582
+ }
3583
+ },
3584
+ {
3585
+ "kind": "js",
3586
+ "name": "Vertical",
3587
+ "declaration": {
3588
+ "name": "Vertical",
3589
+ "module": "../core/src/shared/mixins/Vertical.ts"
3590
+ }
3591
+ }
3592
+ ]
3593
+ }
3594
+ ]
3595
+ }