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