@m3e/checkbox 1.0.0-rc.1 → 1.0.0-rc.3

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