@m3e/button-group 1.0.0-rc.1 → 1.0.0-rc.2

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": "Organizes buttons and adds interactions between them.",
12
12
  "name": "M3eButtonGroupElement",
13
13
  "cssProperties": [
14
14
  {
@@ -88,7 +88,7 @@
88
88
  "name": "#pressedController",
89
89
  "privacy": "private",
90
90
  "readonly": true,
91
- "default": "new PressedController(this, { target: null, capture: true, isPressedKey: (key) => key === \" \" || key === \"Enter\", callback: (pressed) => { if (!this._base) return; if (!pressed || this.variant === \"connected\") { this._base.style.removeProperty(\"--_button-group-width\"); this._base.classList.remove(\"pressed\"); } else { this._base.classList.add(\"pressed\"); this._base.style.setProperty(\"--_button-group-width\", `${this._base.getBoundingClientRect().width}px`); } }, })"
91
+ "default": "new PressedController(this, { target: null, capture: true, minPressedDuration: 150, isPressedKey: (key) => key === \" \" || key === \"Enter\", callback: (pressed) => { if (!this._base) return; if (!pressed || this.variant === \"connected\") { this._base.style.removeProperty(\"--_button-group-width\"); this._base.classList.remove(\"pressed\"); } else { this._base.classList.add(\"pressed\"); this._base.style.setProperty(\"--_button-group-width\", `${this._base.getBoundingClientRect().width}px`); } }, })"
92
92
  },
93
93
  {
94
94
  "kind": "field",
@@ -209,8 +209,7 @@
209
209
  "package": "lit"
210
210
  },
211
211
  "tagName": "m3e-button-group",
212
- "customElement": true,
213
- "summary": "Organizes buttons and adds interactions between them."
212
+ "customElement": true
214
213
  }
215
214
  ],
216
215
  "exports": [
@@ -274,6 +273,2553 @@
274
273
  }
275
274
  }
276
275
  ]
276
+ },
277
+ {
278
+ "kind": "javascript-module",
279
+ "path": "../core/src/shared/mixins/AttachInternals.ts",
280
+ "declarations": [
281
+ {
282
+ "kind": "variable",
283
+ "name": "internals",
284
+ "description": "A symbol through which to access the `ElementInternals` attached to an element."
285
+ },
286
+ {
287
+ "kind": "function",
288
+ "name": "isAttachInternalsMixin",
289
+ "return": {
290
+ "type": {
291
+ "text": ""
292
+ }
293
+ },
294
+ "parameters": [
295
+ {
296
+ "name": "value",
297
+ "type": {
298
+ "text": "unknown"
299
+ },
300
+ "description": "The value to test."
301
+ }
302
+ ],
303
+ "description": "Determines whether a value is an `AttachInternalsMixin`."
304
+ },
305
+ {
306
+ "kind": "mixin",
307
+ "description": "Mixin to augment an element with behavior that attaches to `ElementInternals`.",
308
+ "name": "AttachInternals",
309
+ "members": [
310
+ {
311
+ "kind": "field",
312
+ "name": "formAssociated",
313
+ "static": true,
314
+ "readonly": true,
315
+ "default": "formAssociated",
316
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
317
+ },
318
+ {
319
+ "kind": "field",
320
+ "name": "[_internals]",
321
+ "type": {
322
+ "text": "ElementInternals | undefined"
323
+ },
324
+ "privacy": "private"
325
+ }
326
+ ],
327
+ "parameters": [
328
+ {
329
+ "name": "base",
330
+ "type": {
331
+ "text": "T"
332
+ },
333
+ "description": "The base class."
334
+ },
335
+ {
336
+ "name": "formAssociated",
337
+ "optional": true,
338
+ "type": {
339
+ "text": "boolean | undefined"
340
+ },
341
+ "description": "Whether the element is \"Form Associated\"."
342
+ }
343
+ ]
344
+ }
345
+ ],
346
+ "exports": [
347
+ {
348
+ "kind": "js",
349
+ "name": "internals",
350
+ "declaration": {
351
+ "name": "internals",
352
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
353
+ }
354
+ },
355
+ {
356
+ "kind": "js",
357
+ "name": "isAttachInternalsMixin",
358
+ "declaration": {
359
+ "name": "isAttachInternalsMixin",
360
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
361
+ }
362
+ },
363
+ {
364
+ "kind": "js",
365
+ "name": "AttachInternals",
366
+ "declaration": {
367
+ "name": "AttachInternals",
368
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
369
+ }
370
+ }
371
+ ]
372
+ },
373
+ {
374
+ "kind": "javascript-module",
375
+ "path": "../core/src/shared/mixins/Checked.ts",
376
+ "declarations": [
377
+ {
378
+ "kind": "function",
379
+ "name": "isCheckedMixin",
380
+ "return": {
381
+ "type": {
382
+ "text": ""
383
+ }
384
+ },
385
+ "parameters": [
386
+ {
387
+ "name": "value",
388
+ "type": {
389
+ "text": "unknown"
390
+ },
391
+ "description": "The value to test."
392
+ }
393
+ ],
394
+ "description": "Determines whether a value is a `CheckedMixin`."
395
+ },
396
+ {
397
+ "kind": "mixin",
398
+ "description": "Mixin to augment an element with behavior that supports a checked state.",
399
+ "name": "Checked",
400
+ "members": [
401
+ {
402
+ "kind": "field",
403
+ "name": "checked",
404
+ "type": {
405
+ "text": "boolean"
406
+ },
407
+ "default": "false",
408
+ "description": "Whether the element is checked.",
409
+ "attribute": "checked",
410
+ "reflects": true
411
+ }
412
+ ],
413
+ "attributes": [
414
+ {
415
+ "name": "checked",
416
+ "type": {
417
+ "text": "boolean"
418
+ },
419
+ "default": "false",
420
+ "description": "Whether the element is checked.",
421
+ "fieldName": "checked"
422
+ }
423
+ ],
424
+ "parameters": [
425
+ {
426
+ "name": "base",
427
+ "type": {
428
+ "text": "T"
429
+ },
430
+ "description": "The base class."
431
+ }
432
+ ]
433
+ }
434
+ ],
435
+ "exports": [
436
+ {
437
+ "kind": "js",
438
+ "name": "isCheckedMixin",
439
+ "declaration": {
440
+ "name": "isCheckedMixin",
441
+ "module": "../core/src/shared/mixins/Checked.ts"
442
+ }
443
+ },
444
+ {
445
+ "kind": "js",
446
+ "name": "Checked",
447
+ "declaration": {
448
+ "name": "Checked",
449
+ "module": "../core/src/shared/mixins/Checked.ts"
450
+ }
451
+ }
452
+ ]
453
+ },
454
+ {
455
+ "kind": "javascript-module",
456
+ "path": "../core/src/shared/mixins/CheckedIndeterminate.ts",
457
+ "declarations": [
458
+ {
459
+ "kind": "function",
460
+ "name": "isCheckedIndeterminateMixin",
461
+ "return": {
462
+ "type": {
463
+ "text": ""
464
+ }
465
+ },
466
+ "parameters": [
467
+ {
468
+ "name": "value",
469
+ "type": {
470
+ "text": "unknown"
471
+ },
472
+ "description": "The value to test."
473
+ }
474
+ ],
475
+ "description": "Determines whether a value is a `CheckedIndeterminateMixin`."
476
+ },
477
+ {
478
+ "kind": "mixin",
479
+ "description": "Mixin to augment an element with behavior that supports a mixed checked state.",
480
+ "name": "CheckedIndeterminate",
481
+ "members": [
482
+ {
483
+ "kind": "field",
484
+ "name": "indeterminate",
485
+ "type": {
486
+ "text": "boolean"
487
+ },
488
+ "default": "false",
489
+ "description": "Whether the element's checked state is indeterminate.",
490
+ "attribute": "indeterminate",
491
+ "reflects": true
492
+ },
493
+ {
494
+ "kind": "field",
495
+ "name": "checked",
496
+ "type": {
497
+ "text": "boolean"
498
+ },
499
+ "default": "false",
500
+ "description": "Whether the element is checked.",
501
+ "attribute": "checked",
502
+ "reflects": true,
503
+ "inheritedFrom": {
504
+ "name": "Checked",
505
+ "module": "../core/src/shared/mixins/Checked.ts"
506
+ }
507
+ }
508
+ ],
509
+ "attributes": [
510
+ {
511
+ "name": "indeterminate",
512
+ "type": {
513
+ "text": "boolean"
514
+ },
515
+ "default": "false",
516
+ "description": "Whether the element's checked state is indeterminate.",
517
+ "fieldName": "indeterminate"
518
+ },
519
+ {
520
+ "name": "checked",
521
+ "type": {
522
+ "text": "boolean"
523
+ },
524
+ "default": "false",
525
+ "description": "Whether the element is checked.",
526
+ "fieldName": "checked",
527
+ "inheritedFrom": {
528
+ "name": "Checked",
529
+ "module": "../core/src/shared/mixins/Checked.ts"
530
+ }
531
+ }
532
+ ],
533
+ "mixins": [
534
+ {
535
+ "name": "Checked",
536
+ "module": "/core/src/shared/mixins/Checked"
537
+ }
538
+ ],
539
+ "parameters": [
540
+ {
541
+ "name": "base",
542
+ "type": {
543
+ "text": "T"
544
+ },
545
+ "description": "The base class."
546
+ }
547
+ ]
548
+ }
549
+ ],
550
+ "exports": [
551
+ {
552
+ "kind": "js",
553
+ "name": "isCheckedIndeterminateMixin",
554
+ "declaration": {
555
+ "name": "isCheckedIndeterminateMixin",
556
+ "module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
557
+ }
558
+ },
559
+ {
560
+ "kind": "js",
561
+ "name": "CheckedIndeterminate",
562
+ "declaration": {
563
+ "name": "CheckedIndeterminate",
564
+ "module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
565
+ }
566
+ }
567
+ ]
568
+ },
569
+ {
570
+ "kind": "javascript-module",
571
+ "path": "../core/src/shared/mixins/CheckedOrSelected.ts",
572
+ "declarations": [
573
+ {
574
+ "kind": "function",
575
+ "name": "isCheckedOrSelectedMixin",
576
+ "return": {
577
+ "type": {
578
+ "text": ""
579
+ }
580
+ },
581
+ "parameters": [
582
+ {
583
+ "name": "value",
584
+ "type": {
585
+ "text": "unknown"
586
+ },
587
+ "description": "The value to test."
588
+ }
589
+ ],
590
+ "description": "Determines whether a value is a `CheckedOrSelectedMixin`."
591
+ },
592
+ {
593
+ "kind": "function",
594
+ "name": "isCheckedOrSelected",
595
+ "return": {
596
+ "type": {
597
+ "text": "boolean"
598
+ }
599
+ },
600
+ "parameters": [
601
+ {
602
+ "name": "element",
603
+ "type": {
604
+ "text": "CheckedOrSelectedMixin"
605
+ },
606
+ "description": "The element to test."
607
+ }
608
+ ],
609
+ "description": "Determines whether the state of an element is checked or selected."
610
+ },
611
+ {
612
+ "kind": "function",
613
+ "name": "checkOrSelect",
614
+ "return": {
615
+ "type": {
616
+ "text": "void"
617
+ }
618
+ },
619
+ "parameters": [
620
+ {
621
+ "name": "element",
622
+ "type": {
623
+ "text": "CheckedOrSelectedMixin"
624
+ },
625
+ "description": "The element for which to set the checked or selected state."
626
+ },
627
+ {
628
+ "name": "checkedOrSelected",
629
+ "type": {
630
+ "text": "boolean"
631
+ },
632
+ "description": "The checked or selected state."
633
+ }
634
+ ],
635
+ "description": "Sets the checked or selected state of an element."
636
+ }
637
+ ],
638
+ "exports": [
639
+ {
640
+ "kind": "js",
641
+ "name": "isCheckedOrSelectedMixin",
642
+ "declaration": {
643
+ "name": "isCheckedOrSelectedMixin",
644
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
645
+ }
646
+ },
647
+ {
648
+ "kind": "js",
649
+ "name": "isCheckedOrSelected",
650
+ "declaration": {
651
+ "name": "isCheckedOrSelected",
652
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
653
+ }
654
+ },
655
+ {
656
+ "kind": "js",
657
+ "name": "checkOrSelect",
658
+ "declaration": {
659
+ "name": "checkOrSelect",
660
+ "module": "../core/src/shared/mixins/CheckedOrSelected.ts"
661
+ }
662
+ }
663
+ ]
664
+ },
665
+ {
666
+ "kind": "javascript-module",
667
+ "path": "../core/src/shared/mixins/ConstraintValidation.ts",
668
+ "declarations": [
669
+ {
670
+ "kind": "variable",
671
+ "name": "validate",
672
+ "description": "A symbol through which a \"Form Associated\" custom element validates its current state."
673
+ },
674
+ {
675
+ "kind": "function",
676
+ "name": "isConstraintValidationMixin",
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 a `ConstraintValidationMixin`."
692
+ },
693
+ {
694
+ "kind": "mixin",
695
+ "description": "Mixin to augment an element with \"Form Associated\" behavior that supports constraint validation.",
696
+ "name": "ConstraintValidation",
697
+ "members": [
698
+ {
699
+ "kind": "field",
700
+ "name": "[_validityMessage]",
701
+ "type": {
702
+ "text": "string | undefined"
703
+ },
704
+ "privacy": "private"
705
+ },
706
+ {
707
+ "kind": "field",
708
+ "name": "willValidate",
709
+ "type": {
710
+ "text": "boolean"
711
+ },
712
+ "description": "Whether the element is a submittable element that is a candidate for constraint validation.",
713
+ "readonly": true
714
+ },
715
+ {
716
+ "kind": "field",
717
+ "name": "validity",
718
+ "type": {
719
+ "text": "ValidityState"
720
+ },
721
+ "description": "The validity state of the element.",
722
+ "readonly": true
723
+ },
724
+ {
725
+ "kind": "field",
726
+ "name": "validationMessage",
727
+ "type": {
728
+ "text": "string"
729
+ },
730
+ "description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
731
+ "readonly": true
732
+ },
733
+ {
734
+ "kind": "method",
735
+ "name": "reportValidity",
736
+ "return": {
737
+ "type": {
738
+ "text": "boolean"
739
+ }
740
+ },
741
+ "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."
742
+ },
743
+ {
744
+ "kind": "method",
745
+ "name": "checkValidity",
746
+ "return": {
747
+ "type": {
748
+ "text": "boolean"
749
+ }
750
+ },
751
+ "description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event."
752
+ },
753
+ {
754
+ "kind": "method",
755
+ "name": "setCustomValidity",
756
+ "return": {
757
+ "type": {
758
+ "text": "void"
759
+ }
760
+ },
761
+ "parameters": [
762
+ {
763
+ "name": "error",
764
+ "type": {
765
+ "text": "string"
766
+ },
767
+ "description": "The message to use for validity errors."
768
+ }
769
+ ],
770
+ "description": "Sets a custom validity message for the element."
771
+ },
772
+ {
773
+ "kind": "method",
774
+ "name": "[_updateValidity]",
775
+ "privacy": "private",
776
+ "return": {
777
+ "type": {
778
+ "text": "void"
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "kind": "method",
784
+ "name": "#getNativeMessage",
785
+ "privacy": "private",
786
+ "return": {
787
+ "type": {
788
+ "text": "string"
789
+ }
790
+ },
791
+ "parameters": [
792
+ {
793
+ "name": "flags",
794
+ "type": {
795
+ "text": "ValidityStateFlags"
796
+ }
797
+ }
798
+ ]
799
+ }
800
+ ],
801
+ "parameters": [
802
+ {
803
+ "name": "base",
804
+ "type": {
805
+ "text": "T"
806
+ },
807
+ "description": "The base class."
808
+ }
809
+ ]
810
+ }
811
+ ],
812
+ "exports": [
813
+ {
814
+ "kind": "js",
815
+ "name": "validate",
816
+ "declaration": {
817
+ "name": "validate",
818
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
819
+ }
820
+ },
821
+ {
822
+ "kind": "js",
823
+ "name": "isConstraintValidationMixin",
824
+ "declaration": {
825
+ "name": "isConstraintValidationMixin",
826
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
827
+ }
828
+ },
829
+ {
830
+ "kind": "js",
831
+ "name": "ConstraintValidation",
832
+ "declaration": {
833
+ "name": "ConstraintValidation",
834
+ "module": "../core/src/shared/mixins/ConstraintValidation.ts"
835
+ }
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "kind": "javascript-module",
841
+ "path": "../core/src/shared/mixins/Constructor.ts",
842
+ "declarations": [],
843
+ "exports": []
844
+ },
845
+ {
846
+ "kind": "javascript-module",
847
+ "path": "../core/src/shared/mixins/Dirty.ts",
848
+ "declarations": [
849
+ {
850
+ "kind": "function",
851
+ "name": "isDirtyMixin",
852
+ "return": {
853
+ "type": {
854
+ "text": ""
855
+ }
856
+ },
857
+ "parameters": [
858
+ {
859
+ "name": "value",
860
+ "type": {
861
+ "text": "unknown"
862
+ },
863
+ "description": "The value to test."
864
+ }
865
+ ],
866
+ "description": "Determines whether a value is a `DirtyMixin`."
867
+ },
868
+ {
869
+ "kind": "mixin",
870
+ "description": "Mixin to augment an element with functionality used to mark it as dirty.",
871
+ "name": "Dirty",
872
+ "members": [
873
+ {
874
+ "kind": "field",
875
+ "name": "[_eventHandler]",
876
+ "privacy": "private"
877
+ },
878
+ {
879
+ "kind": "field",
880
+ "name": "dirty",
881
+ "type": {
882
+ "text": "boolean"
883
+ },
884
+ "description": "Whether the user has modified the value of the element.",
885
+ "readonly": true
886
+ },
887
+ {
888
+ "kind": "field",
889
+ "name": "pristine",
890
+ "type": {
891
+ "text": "boolean"
892
+ },
893
+ "description": "Whether the user has not modified the value of the element.",
894
+ "readonly": true
895
+ },
896
+ {
897
+ "kind": "method",
898
+ "name": "markAsPristine",
899
+ "return": {
900
+ "type": {
901
+ "text": "void"
902
+ }
903
+ },
904
+ "description": "Marks the element as pristine."
905
+ },
906
+ {
907
+ "kind": "method",
908
+ "name": "markAsDirty",
909
+ "return": {
910
+ "type": {
911
+ "text": "void"
912
+ }
913
+ },
914
+ "description": "Marks the element as dirty."
915
+ }
916
+ ],
917
+ "parameters": [
918
+ {
919
+ "name": "base",
920
+ "type": {
921
+ "text": "T"
922
+ },
923
+ "description": "The base class."
924
+ }
925
+ ]
926
+ }
927
+ ],
928
+ "exports": [
929
+ {
930
+ "kind": "js",
931
+ "name": "isDirtyMixin",
932
+ "declaration": {
933
+ "name": "isDirtyMixin",
934
+ "module": "../core/src/shared/mixins/Dirty.ts"
935
+ }
936
+ },
937
+ {
938
+ "kind": "js",
939
+ "name": "Dirty",
940
+ "declaration": {
941
+ "name": "Dirty",
942
+ "module": "../core/src/shared/mixins/Dirty.ts"
943
+ }
944
+ }
945
+ ]
946
+ },
947
+ {
948
+ "kind": "javascript-module",
949
+ "path": "../core/src/shared/mixins/Disabled.ts",
950
+ "declarations": [
951
+ {
952
+ "kind": "function",
953
+ "name": "isDisabledMixin",
954
+ "return": {
955
+ "type": {
956
+ "text": "value is DisabledMixin"
957
+ }
958
+ },
959
+ "parameters": [
960
+ {
961
+ "name": "value",
962
+ "type": {
963
+ "text": "unknown"
964
+ },
965
+ "description": "The value to test."
966
+ }
967
+ ],
968
+ "description": "Determines whether a value is a `DisabledMixin`."
969
+ },
970
+ {
971
+ "kind": "mixin",
972
+ "description": "Mixin to augment an element with behavior that supports a disabled state.",
973
+ "name": "Disabled",
974
+ "members": [
975
+ {
976
+ "kind": "field",
977
+ "name": "disabled",
978
+ "type": {
979
+ "text": "boolean"
980
+ },
981
+ "default": "false",
982
+ "description": "Whether the element is disabled.",
983
+ "attribute": "disabled"
984
+ }
985
+ ],
986
+ "attributes": [
987
+ {
988
+ "name": "disabled",
989
+ "type": {
990
+ "text": "boolean"
991
+ },
992
+ "default": "false",
993
+ "description": "Whether the element is disabled.",
994
+ "fieldName": "disabled"
995
+ }
996
+ ],
997
+ "parameters": [
998
+ {
999
+ "name": "base",
1000
+ "type": {
1001
+ "text": "T"
1002
+ },
1003
+ "description": "The base class."
1004
+ },
1005
+ {
1006
+ "name": "reflect",
1007
+ "default": "true",
1008
+ "type": {
1009
+ "text": "boolean"
1010
+ },
1011
+ "description": "Whether the disabled property is reflected as an attribute.",
1012
+ "optional": true
1013
+ }
1014
+ ]
1015
+ }
1016
+ ],
1017
+ "exports": [
1018
+ {
1019
+ "kind": "js",
1020
+ "name": "isDisabledMixin",
1021
+ "declaration": {
1022
+ "name": "isDisabledMixin",
1023
+ "module": "../core/src/shared/mixins/Disabled.ts"
1024
+ }
1025
+ },
1026
+ {
1027
+ "kind": "js",
1028
+ "name": "Disabled",
1029
+ "declaration": {
1030
+ "name": "Disabled",
1031
+ "module": "../core/src/shared/mixins/Disabled.ts"
1032
+ }
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "kind": "javascript-module",
1038
+ "path": "../core/src/shared/mixins/DisabledInteractive.ts",
1039
+ "declarations": [
1040
+ {
1041
+ "kind": "function",
1042
+ "name": "isDisabledInteractiveMixin",
1043
+ "return": {
1044
+ "type": {
1045
+ "text": "value is DisabledInteractiveMixin"
1046
+ }
1047
+ },
1048
+ "parameters": [
1049
+ {
1050
+ "name": "value",
1051
+ "type": {
1052
+ "text": "unknown"
1053
+ },
1054
+ "description": "The value to test."
1055
+ }
1056
+ ],
1057
+ "description": "Determines whether a value is a `DisabledInteractiveMixin`."
1058
+ },
1059
+ {
1060
+ "kind": "mixin",
1061
+ "description": "Mixin to augment an element with behavior that supports an interactive disabled state.",
1062
+ "name": "DisabledInteractive",
1063
+ "members": [
1064
+ {
1065
+ "kind": "field",
1066
+ "name": "[_suppressedEventHandler]",
1067
+ "privacy": "private",
1068
+ "readonly": true
1069
+ },
1070
+ {
1071
+ "kind": "field",
1072
+ "name": "disabledInteractive",
1073
+ "type": {
1074
+ "text": "boolean"
1075
+ },
1076
+ "default": "false",
1077
+ "description": "Whether the element is disabled and interactive.",
1078
+ "attribute": "disabled-interactive",
1079
+ "reflects": true
1080
+ }
1081
+ ],
1082
+ "attributes": [
1083
+ {
1084
+ "name": "disabled-interactive",
1085
+ "type": {
1086
+ "text": "boolean"
1087
+ },
1088
+ "default": "false",
1089
+ "description": "Whether the element is disabled and interactive.",
1090
+ "fieldName": "disabledInteractive"
1091
+ }
1092
+ ],
1093
+ "parameters": [
1094
+ {
1095
+ "name": "base",
1096
+ "type": {
1097
+ "text": "T"
1098
+ },
1099
+ "description": "The base class."
1100
+ }
1101
+ ]
1102
+ }
1103
+ ],
1104
+ "exports": [
1105
+ {
1106
+ "kind": "js",
1107
+ "name": "isDisabledInteractiveMixin",
1108
+ "declaration": {
1109
+ "name": "isDisabledInteractiveMixin",
1110
+ "module": "../core/src/shared/mixins/DisabledInteractive.ts"
1111
+ }
1112
+ },
1113
+ {
1114
+ "kind": "js",
1115
+ "name": "DisabledInteractive",
1116
+ "declaration": {
1117
+ "name": "DisabledInteractive",
1118
+ "module": "../core/src/shared/mixins/DisabledInteractive.ts"
1119
+ }
1120
+ }
1121
+ ]
1122
+ },
1123
+ {
1124
+ "kind": "javascript-module",
1125
+ "path": "../core/src/shared/mixins/EventAttribute.ts",
1126
+ "declarations": [
1127
+ {
1128
+ "kind": "mixin",
1129
+ "description": "Mixin that adds support for custom event attributes.",
1130
+ "name": "EventAttribute",
1131
+ "members": [
1132
+ {
1133
+ "kind": "method",
1134
+ "name": "dispatchEvent",
1135
+ "return": {
1136
+ "type": {
1137
+ "text": "boolean"
1138
+ }
1139
+ },
1140
+ "parameters": [
1141
+ {
1142
+ "name": "event",
1143
+ "type": {
1144
+ "text": "Event"
1145
+ }
1146
+ }
1147
+ ]
1148
+ }
1149
+ ],
1150
+ "parameters": [
1151
+ {
1152
+ "name": "base",
1153
+ "type": {
1154
+ "text": "T"
1155
+ },
1156
+ "description": "The base class from which to inherit."
1157
+ },
1158
+ {
1159
+ "name": "types",
1160
+ "type": {
1161
+ "text": "string[]"
1162
+ },
1163
+ "description": "The types of event attributes."
1164
+ }
1165
+ ]
1166
+ }
1167
+ ],
1168
+ "exports": [
1169
+ {
1170
+ "kind": "js",
1171
+ "name": "EventAttribute",
1172
+ "declaration": {
1173
+ "name": "EventAttribute",
1174
+ "module": "../core/src/shared/mixins/EventAttribute.ts"
1175
+ }
1176
+ }
1177
+ ]
1178
+ },
1179
+ {
1180
+ "kind": "javascript-module",
1181
+ "path": "../core/src/shared/mixins/Focusable.ts",
1182
+ "declarations": [
1183
+ {
1184
+ "kind": "mixin",
1185
+ "description": "Mixin to augment an element with behavior that supports a focused state.",
1186
+ "name": "Focusable",
1187
+ "members": [
1188
+ {
1189
+ "kind": "field",
1190
+ "name": "[_tabindex]",
1191
+ "type": {
1192
+ "text": "number"
1193
+ },
1194
+ "privacy": "private",
1195
+ "default": "0"
1196
+ }
1197
+ ],
1198
+ "parameters": [
1199
+ {
1200
+ "name": "base",
1201
+ "type": {
1202
+ "text": "T"
1203
+ },
1204
+ "description": "The base class."
1205
+ }
1206
+ ]
1207
+ }
1208
+ ],
1209
+ "exports": [
1210
+ {
1211
+ "kind": "js",
1212
+ "name": "Focusable",
1213
+ "declaration": {
1214
+ "name": "Focusable",
1215
+ "module": "../core/src/shared/mixins/Focusable.ts"
1216
+ }
1217
+ }
1218
+ ]
1219
+ },
1220
+ {
1221
+ "kind": "javascript-module",
1222
+ "path": "../core/src/shared/mixins/FormAssociated.ts",
1223
+ "declarations": [
1224
+ {
1225
+ "kind": "variable",
1226
+ "name": "formValue",
1227
+ "description": "A symbol through which a \"Form Associated\" custom element provides a value for a form."
1228
+ },
1229
+ {
1230
+ "kind": "variable",
1231
+ "name": "defaultValue",
1232
+ "description": "A symbol through which a \"Form Associated\" custom element provides a default value for resetting a form."
1233
+ },
1234
+ {
1235
+ "kind": "function",
1236
+ "name": "isFormAssociatedMixin",
1237
+ "return": {
1238
+ "type": {
1239
+ "text": ""
1240
+ }
1241
+ },
1242
+ "parameters": [
1243
+ {
1244
+ "name": "value",
1245
+ "type": {
1246
+ "text": "unknown"
1247
+ },
1248
+ "description": "The value to test."
1249
+ }
1250
+ ],
1251
+ "description": "Determines whether a value is a `FormAssociatedMixin`."
1252
+ },
1253
+ {
1254
+ "kind": "mixin",
1255
+ "description": "Mixin to augment an element with \"Form Associated\" behavior.",
1256
+ "name": "FormAssociated",
1257
+ "members": [
1258
+ {
1259
+ "kind": "field",
1260
+ "name": "formAssociated",
1261
+ "type": {
1262
+ "text": "boolean"
1263
+ },
1264
+ "static": true,
1265
+ "readonly": true,
1266
+ "default": "true",
1267
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
1268
+ },
1269
+ {
1270
+ "kind": "field",
1271
+ "name": "[_defaultValue]",
1272
+ "type": {
1273
+ "text": "unknown"
1274
+ },
1275
+ "privacy": "private"
1276
+ },
1277
+ {
1278
+ "kind": "field",
1279
+ "name": "[_defaultIndeterminate]",
1280
+ "type": {
1281
+ "text": "boolean"
1282
+ },
1283
+ "privacy": "private",
1284
+ "default": "false"
1285
+ },
1286
+ {
1287
+ "kind": "field",
1288
+ "name": "[_formDisabled]",
1289
+ "type": {
1290
+ "text": "boolean"
1291
+ },
1292
+ "privacy": "private",
1293
+ "default": "false"
1294
+ },
1295
+ {
1296
+ "kind": "field",
1297
+ "name": "form",
1298
+ "type": {
1299
+ "text": "HTMLFormElement | null"
1300
+ },
1301
+ "description": "The `HTMLFormElement` associated with this element.",
1302
+ "readonly": true
1303
+ },
1304
+ {
1305
+ "kind": "field",
1306
+ "name": "labels",
1307
+ "type": {
1308
+ "text": "NodeListOf<HTMLLabelElement>"
1309
+ },
1310
+ "readonly": true
1311
+ },
1312
+ {
1313
+ "kind": "field",
1314
+ "name": "name",
1315
+ "description": "The name that identifies the element when submitting the associated form.",
1316
+ "attribute": "name"
1317
+ },
1318
+ {
1319
+ "kind": "field",
1320
+ "name": "disabled",
1321
+ "type": {
1322
+ "text": "boolean"
1323
+ },
1324
+ "description": "Whether the element is disabled.",
1325
+ "default": "false",
1326
+ "attribute": "disabled"
1327
+ },
1328
+ {
1329
+ "kind": "method",
1330
+ "name": "formDisabledCallback",
1331
+ "return": {
1332
+ "type": {
1333
+ "text": "void"
1334
+ }
1335
+ },
1336
+ "parameters": [
1337
+ {
1338
+ "name": "disabled",
1339
+ "type": {
1340
+ "text": "boolean"
1341
+ }
1342
+ }
1343
+ ],
1344
+ "description": "Called when the element is disabled or enabled via its form association."
1345
+ },
1346
+ {
1347
+ "kind": "method",
1348
+ "name": "formResetCallback",
1349
+ "return": {
1350
+ "type": {
1351
+ "text": "void"
1352
+ }
1353
+ },
1354
+ "description": "Called when the associated form is reset."
1355
+ }
1356
+ ],
1357
+ "attributes": [
1358
+ {
1359
+ "name": "name",
1360
+ "description": "The name that identifies the element when submitting the associated form.",
1361
+ "fieldName": "name"
1362
+ },
1363
+ {
1364
+ "name": "disabled",
1365
+ "type": {
1366
+ "text": "boolean"
1367
+ },
1368
+ "description": "Whether the element is disabled.",
1369
+ "default": "false",
1370
+ "fieldName": "disabled"
1371
+ }
1372
+ ],
1373
+ "parameters": [
1374
+ {
1375
+ "name": "base",
1376
+ "type": {
1377
+ "text": "T"
1378
+ },
1379
+ "description": "The base class."
1380
+ }
1381
+ ]
1382
+ }
1383
+ ],
1384
+ "exports": [
1385
+ {
1386
+ "kind": "js",
1387
+ "name": "formValue",
1388
+ "declaration": {
1389
+ "name": "formValue",
1390
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
1391
+ }
1392
+ },
1393
+ {
1394
+ "kind": "js",
1395
+ "name": "defaultValue",
1396
+ "declaration": {
1397
+ "name": "defaultValue",
1398
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
1399
+ }
1400
+ },
1401
+ {
1402
+ "kind": "js",
1403
+ "name": "isFormAssociatedMixin",
1404
+ "declaration": {
1405
+ "name": "isFormAssociatedMixin",
1406
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
1407
+ }
1408
+ },
1409
+ {
1410
+ "kind": "js",
1411
+ "name": "FormAssociated",
1412
+ "declaration": {
1413
+ "name": "FormAssociated",
1414
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
1415
+ }
1416
+ }
1417
+ ]
1418
+ },
1419
+ {
1420
+ "kind": "javascript-module",
1421
+ "path": "../core/src/shared/mixins/FormSubmitter.ts",
1422
+ "declarations": [
1423
+ {
1424
+ "kind": "function",
1425
+ "name": "isFormSubmitterMixin",
1426
+ "return": {
1427
+ "type": {
1428
+ "text": "value is FormSubmitterMixin"
1429
+ }
1430
+ },
1431
+ "parameters": [
1432
+ {
1433
+ "name": "value",
1434
+ "type": {
1435
+ "text": "unknown"
1436
+ },
1437
+ "description": "The value to test."
1438
+ }
1439
+ ],
1440
+ "description": "Determines whether a value is a `FormSubmitterMixin`."
1441
+ },
1442
+ {
1443
+ "kind": "mixin",
1444
+ "description": "Mixin to augment an element with behavior used to submit a form.",
1445
+ "name": "FormSubmitter",
1446
+ "members": [
1447
+ {
1448
+ "kind": "field",
1449
+ "name": "name",
1450
+ "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.",
1451
+ "attribute": "name"
1452
+ },
1453
+ {
1454
+ "kind": "field",
1455
+ "name": "value",
1456
+ "description": "The value associated with the element's name when it's submitted with form data.",
1457
+ "attribute": "value"
1458
+ },
1459
+ {
1460
+ "kind": "field",
1461
+ "name": "type",
1462
+ "type": {
1463
+ "text": "FormSubmitterType"
1464
+ },
1465
+ "default": "\"button\"",
1466
+ "description": "The type of the element.",
1467
+ "attribute": "type"
1468
+ },
1469
+ {
1470
+ "kind": "field",
1471
+ "name": "[_clickHandler]",
1472
+ "privacy": "private"
1473
+ }
1474
+ ],
1475
+ "attributes": [
1476
+ {
1477
+ "name": "name",
1478
+ "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.",
1479
+ "fieldName": "name"
1480
+ },
1481
+ {
1482
+ "name": "value",
1483
+ "description": "The value associated with the element's name when it's submitted with form data.",
1484
+ "fieldName": "value"
1485
+ },
1486
+ {
1487
+ "name": "type",
1488
+ "type": {
1489
+ "text": "FormSubmitterType"
1490
+ },
1491
+ "default": "\"button\"",
1492
+ "description": "The type of the element.",
1493
+ "fieldName": "type"
1494
+ }
1495
+ ],
1496
+ "parameters": [
1497
+ {
1498
+ "name": "base",
1499
+ "type": {
1500
+ "text": "T"
1501
+ },
1502
+ "description": "The base class."
1503
+ }
1504
+ ]
1505
+ }
1506
+ ],
1507
+ "exports": [
1508
+ {
1509
+ "kind": "js",
1510
+ "name": "isFormSubmitterMixin",
1511
+ "declaration": {
1512
+ "name": "isFormSubmitterMixin",
1513
+ "module": "../core/src/shared/mixins/FormSubmitter.ts"
1514
+ }
1515
+ },
1516
+ {
1517
+ "kind": "js",
1518
+ "name": "FormSubmitter",
1519
+ "declaration": {
1520
+ "name": "FormSubmitter",
1521
+ "module": "../core/src/shared/mixins/FormSubmitter.ts"
1522
+ }
1523
+ }
1524
+ ]
1525
+ },
1526
+ {
1527
+ "kind": "javascript-module",
1528
+ "path": "../core/src/shared/mixins/hasKeys.ts",
1529
+ "declarations": [
1530
+ {
1531
+ "kind": "function",
1532
+ "name": "hasKeys",
1533
+ "return": {
1534
+ "type": {
1535
+ "text": "boolean"
1536
+ }
1537
+ },
1538
+ "parameters": [
1539
+ {
1540
+ "name": "value",
1541
+ "type": {
1542
+ "text": "unknown"
1543
+ },
1544
+ "description": "The value to test."
1545
+ },
1546
+ {
1547
+ "name": "keys",
1548
+ "type": {
1549
+ "text": "Array<keyof T>"
1550
+ }
1551
+ },
1552
+ {
1553
+ "description": ": Array<keyof T>} keys The keys of `T` to test.",
1554
+ "name": "",
1555
+ "type": {
1556
+ "text": "...keys"
1557
+ }
1558
+ }
1559
+ ],
1560
+ "description": "Determines whether an object has keys for a given type."
1561
+ }
1562
+ ],
1563
+ "exports": [
1564
+ {
1565
+ "kind": "js",
1566
+ "name": "hasKeys",
1567
+ "declaration": {
1568
+ "name": "hasKeys",
1569
+ "module": "../core/src/shared/mixins/hasKeys.ts"
1570
+ }
1571
+ }
1572
+ ]
1573
+ },
1574
+ {
1575
+ "kind": "javascript-module",
1576
+ "path": "../core/src/shared/mixins/HtmlFor.ts",
1577
+ "declarations": [
1578
+ {
1579
+ "kind": "function",
1580
+ "name": "isHtmlForMixin",
1581
+ "return": {
1582
+ "type": {
1583
+ "text": "value is HtmlForMixin"
1584
+ }
1585
+ },
1586
+ "parameters": [
1587
+ {
1588
+ "name": "value",
1589
+ "type": {
1590
+ "text": "unknown"
1591
+ },
1592
+ "description": "The value to test."
1593
+ }
1594
+ ],
1595
+ "description": "Determines whether a value is a `HtmlForMixin`."
1596
+ },
1597
+ {
1598
+ "kind": "mixin",
1599
+ "description": "Mixin that creates an attached element associated with an interactive control.",
1600
+ "name": "HtmlFor",
1601
+ "members": [
1602
+ {
1603
+ "kind": "field",
1604
+ "name": "[_control]",
1605
+ "type": {
1606
+ "text": "HTMLElement | null"
1607
+ },
1608
+ "privacy": "private",
1609
+ "default": "null"
1610
+ },
1611
+ {
1612
+ "kind": "field",
1613
+ "name": "[_firstUpdated]",
1614
+ "type": {
1615
+ "text": "boolean"
1616
+ },
1617
+ "privacy": "private",
1618
+ "default": "false"
1619
+ },
1620
+ {
1621
+ "kind": "field",
1622
+ "name": "htmlFor",
1623
+ "type": {
1624
+ "text": "string | null"
1625
+ },
1626
+ "default": "null",
1627
+ "description": "The identifier of the interactive control to which this element is attached.",
1628
+ "attribute": "for"
1629
+ },
1630
+ {
1631
+ "kind": "field",
1632
+ "name": "control",
1633
+ "description": "The interactive element to which this element is attached.",
1634
+ "readonly": true
1635
+ },
1636
+ {
1637
+ "kind": "method",
1638
+ "name": "attach",
1639
+ "return": {
1640
+ "type": {
1641
+ "text": "void"
1642
+ }
1643
+ },
1644
+ "parameters": [
1645
+ {
1646
+ "name": "control",
1647
+ "type": {
1648
+ "text": "HTMLElement"
1649
+ },
1650
+ "description": "The element that controls the attachable element."
1651
+ }
1652
+ ],
1653
+ "description": "Attaches the element to an interactive control."
1654
+ },
1655
+ {
1656
+ "kind": "method",
1657
+ "name": "detach",
1658
+ "return": {
1659
+ "type": {
1660
+ "text": "void"
1661
+ }
1662
+ },
1663
+ "description": "Detaches the element from its current interactive control."
1664
+ }
1665
+ ],
1666
+ "attributes": [
1667
+ {
1668
+ "name": "for",
1669
+ "type": {
1670
+ "text": "string | null"
1671
+ },
1672
+ "default": "null",
1673
+ "description": "The identifier of the interactive control to which this element is attached.",
1674
+ "fieldName": "htmlFor"
1675
+ }
1676
+ ],
1677
+ "parameters": [
1678
+ {
1679
+ "name": "base",
1680
+ "type": {
1681
+ "text": "T"
1682
+ },
1683
+ "description": "The base class."
1684
+ }
1685
+ ]
1686
+ }
1687
+ ],
1688
+ "exports": [
1689
+ {
1690
+ "kind": "js",
1691
+ "name": "isHtmlForMixin",
1692
+ "declaration": {
1693
+ "name": "isHtmlForMixin",
1694
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
1695
+ }
1696
+ },
1697
+ {
1698
+ "kind": "js",
1699
+ "name": "HtmlFor",
1700
+ "declaration": {
1701
+ "name": "HtmlFor",
1702
+ "module": "../core/src/shared/mixins/HtmlFor.ts"
1703
+ }
1704
+ }
1705
+ ]
1706
+ },
1707
+ {
1708
+ "kind": "javascript-module",
1709
+ "path": "../core/src/shared/mixins/index.ts",
1710
+ "declarations": [],
1711
+ "exports": [
1712
+ {
1713
+ "kind": "js",
1714
+ "name": "*",
1715
+ "declaration": {
1716
+ "name": "*",
1717
+ "package": "\"./AttachInternals\""
1718
+ }
1719
+ },
1720
+ {
1721
+ "kind": "js",
1722
+ "name": "*",
1723
+ "declaration": {
1724
+ "name": "*",
1725
+ "package": "\"./Checked\""
1726
+ }
1727
+ },
1728
+ {
1729
+ "kind": "js",
1730
+ "name": "*",
1731
+ "declaration": {
1732
+ "name": "*",
1733
+ "package": "\"./CheckedIndeterminate\""
1734
+ }
1735
+ },
1736
+ {
1737
+ "kind": "js",
1738
+ "name": "*",
1739
+ "declaration": {
1740
+ "name": "*",
1741
+ "package": "\"./CheckedOrSelected\""
1742
+ }
1743
+ },
1744
+ {
1745
+ "kind": "js",
1746
+ "name": "*",
1747
+ "declaration": {
1748
+ "name": "*",
1749
+ "package": "\"./ConstraintValidation\""
1750
+ }
1751
+ },
1752
+ {
1753
+ "kind": "js",
1754
+ "name": "*",
1755
+ "declaration": {
1756
+ "name": "*",
1757
+ "package": "\"./Dirty\""
1758
+ }
1759
+ },
1760
+ {
1761
+ "kind": "js",
1762
+ "name": "*",
1763
+ "declaration": {
1764
+ "name": "*",
1765
+ "package": "\"./Disabled\""
1766
+ }
1767
+ },
1768
+ {
1769
+ "kind": "js",
1770
+ "name": "*",
1771
+ "declaration": {
1772
+ "name": "*",
1773
+ "package": "\"./DisabledInteractive\""
1774
+ }
1775
+ },
1776
+ {
1777
+ "kind": "js",
1778
+ "name": "*",
1779
+ "declaration": {
1780
+ "name": "*",
1781
+ "package": "\"./EventAttribute\""
1782
+ }
1783
+ },
1784
+ {
1785
+ "kind": "js",
1786
+ "name": "*",
1787
+ "declaration": {
1788
+ "name": "*",
1789
+ "package": "\"./Focusable\""
1790
+ }
1791
+ },
1792
+ {
1793
+ "kind": "js",
1794
+ "name": "*",
1795
+ "declaration": {
1796
+ "name": "*",
1797
+ "package": "\"./FormAssociated\""
1798
+ }
1799
+ },
1800
+ {
1801
+ "kind": "js",
1802
+ "name": "*",
1803
+ "declaration": {
1804
+ "name": "*",
1805
+ "package": "\"./FormSubmitter\""
1806
+ }
1807
+ },
1808
+ {
1809
+ "kind": "js",
1810
+ "name": "*",
1811
+ "declaration": {
1812
+ "name": "*",
1813
+ "package": "\"./hasKeys\""
1814
+ }
1815
+ },
1816
+ {
1817
+ "kind": "js",
1818
+ "name": "*",
1819
+ "declaration": {
1820
+ "name": "*",
1821
+ "package": "\"./HtmlFor\""
1822
+ }
1823
+ },
1824
+ {
1825
+ "kind": "js",
1826
+ "name": "*",
1827
+ "declaration": {
1828
+ "name": "*",
1829
+ "package": "\"./KeyboardClick\""
1830
+ }
1831
+ },
1832
+ {
1833
+ "kind": "js",
1834
+ "name": "*",
1835
+ "declaration": {
1836
+ "name": "*",
1837
+ "package": "\"./Labelled\""
1838
+ }
1839
+ },
1840
+ {
1841
+ "kind": "js",
1842
+ "name": "*",
1843
+ "declaration": {
1844
+ "name": "*",
1845
+ "package": "\"./LinkButton\""
1846
+ }
1847
+ },
1848
+ {
1849
+ "kind": "js",
1850
+ "name": "*",
1851
+ "declaration": {
1852
+ "name": "*",
1853
+ "package": "\"./ReadOnly\""
1854
+ }
1855
+ },
1856
+ {
1857
+ "kind": "js",
1858
+ "name": "*",
1859
+ "declaration": {
1860
+ "name": "*",
1861
+ "package": "\"./Required\""
1862
+ }
1863
+ },
1864
+ {
1865
+ "kind": "js",
1866
+ "name": "*",
1867
+ "declaration": {
1868
+ "name": "*",
1869
+ "package": "\"./RequiredConstraintValidation\""
1870
+ }
1871
+ },
1872
+ {
1873
+ "kind": "js",
1874
+ "name": "*",
1875
+ "declaration": {
1876
+ "name": "*",
1877
+ "package": "\"./Role\""
1878
+ }
1879
+ },
1880
+ {
1881
+ "kind": "js",
1882
+ "name": "*",
1883
+ "declaration": {
1884
+ "name": "*",
1885
+ "package": "\"./Selected\""
1886
+ }
1887
+ },
1888
+ {
1889
+ "kind": "js",
1890
+ "name": "*",
1891
+ "declaration": {
1892
+ "name": "*",
1893
+ "package": "\"./Touched\""
1894
+ }
1895
+ },
1896
+ {
1897
+ "kind": "js",
1898
+ "name": "*",
1899
+ "declaration": {
1900
+ "name": "*",
1901
+ "package": "\"./Vertical\""
1902
+ }
1903
+ }
1904
+ ]
1905
+ },
1906
+ {
1907
+ "kind": "javascript-module",
1908
+ "path": "../core/src/shared/mixins/KeyboardClick.ts",
1909
+ "declarations": [
1910
+ {
1911
+ "kind": "mixin",
1912
+ "description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
1913
+ "name": "KeyboardClick",
1914
+ "members": [
1915
+ {
1916
+ "kind": "field",
1917
+ "name": "#keyUpHandler",
1918
+ "privacy": "private",
1919
+ "readonly": true
1920
+ },
1921
+ {
1922
+ "kind": "method",
1923
+ "name": "#handleKeyUp",
1924
+ "privacy": "private",
1925
+ "return": {
1926
+ "type": {
1927
+ "text": "void"
1928
+ }
1929
+ },
1930
+ "parameters": [
1931
+ {
1932
+ "name": "e",
1933
+ "type": {
1934
+ "text": "KeyboardEvent"
1935
+ }
1936
+ }
1937
+ ]
1938
+ }
1939
+ ],
1940
+ "events": [
1941
+ {
1942
+ "name": "click",
1943
+ "type": {
1944
+ "text": "MouseEvent"
1945
+ }
1946
+ }
1947
+ ],
1948
+ "parameters": [
1949
+ {
1950
+ "name": "base",
1951
+ "type": {
1952
+ "text": "T"
1953
+ },
1954
+ "description": "The base class."
1955
+ },
1956
+ {
1957
+ "name": "allowEnter",
1958
+ "default": "true",
1959
+ "type": {
1960
+ "text": "boolean"
1961
+ },
1962
+ "description": "Whether the `ENTER` key emits a click event.",
1963
+ "optional": true
1964
+ }
1965
+ ]
1966
+ }
1967
+ ],
1968
+ "exports": [
1969
+ {
1970
+ "kind": "js",
1971
+ "name": "KeyboardClick",
1972
+ "declaration": {
1973
+ "name": "KeyboardClick",
1974
+ "module": "../core/src/shared/mixins/KeyboardClick.ts"
1975
+ }
1976
+ }
1977
+ ]
1978
+ },
1979
+ {
1980
+ "kind": "javascript-module",
1981
+ "path": "../core/src/shared/mixins/Labelled.ts",
1982
+ "declarations": [
1983
+ {
1984
+ "kind": "function",
1985
+ "name": "isLabelledMixin",
1986
+ "return": {
1987
+ "type": {
1988
+ "text": ""
1989
+ }
1990
+ },
1991
+ "parameters": [
1992
+ {
1993
+ "name": "value",
1994
+ "type": {
1995
+ "text": "unknown"
1996
+ },
1997
+ "description": "The value to test."
1998
+ }
1999
+ ],
2000
+ "description": "Determines whether a value is a `LabelledMixin`."
2001
+ },
2002
+ {
2003
+ "kind": "mixin",
2004
+ "description": "Mixin to augment an element with support for labelling.",
2005
+ "name": "Labelled",
2006
+ "members": [
2007
+ {
2008
+ "kind": "field",
2009
+ "name": "formAssociated",
2010
+ "type": {
2011
+ "text": "boolean"
2012
+ },
2013
+ "static": true,
2014
+ "readonly": true,
2015
+ "default": "true",
2016
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
2017
+ },
2018
+ {
2019
+ "kind": "field",
2020
+ "name": "[_eventHandler]",
2021
+ "privacy": "private",
2022
+ "readonly": true
2023
+ },
2024
+ {
2025
+ "kind": "field",
2026
+ "name": "labels",
2027
+ "type": {
2028
+ "text": "NodeListOf<HTMLLabelElement>"
2029
+ },
2030
+ "description": "The label elements that the element is associated with.",
2031
+ "readonly": true
2032
+ },
2033
+ {
2034
+ "kind": "method",
2035
+ "name": "[_updateLabels]",
2036
+ "privacy": "private",
2037
+ "return": {
2038
+ "type": {
2039
+ "text": "void"
2040
+ }
2041
+ }
2042
+ }
2043
+ ],
2044
+ "parameters": [
2045
+ {
2046
+ "name": "base",
2047
+ "type": {
2048
+ "text": "T"
2049
+ },
2050
+ "description": "The base class."
2051
+ }
2052
+ ]
2053
+ }
2054
+ ],
2055
+ "exports": [
2056
+ {
2057
+ "kind": "js",
2058
+ "name": "isLabelledMixin",
2059
+ "declaration": {
2060
+ "name": "isLabelledMixin",
2061
+ "module": "../core/src/shared/mixins/Labelled.ts"
2062
+ }
2063
+ },
2064
+ {
2065
+ "kind": "js",
2066
+ "name": "Labelled",
2067
+ "declaration": {
2068
+ "name": "Labelled",
2069
+ "module": "../core/src/shared/mixins/Labelled.ts"
2070
+ }
2071
+ }
2072
+ ]
2073
+ },
2074
+ {
2075
+ "kind": "javascript-module",
2076
+ "path": "../core/src/shared/mixins/LinkButton.ts",
2077
+ "declarations": [
2078
+ {
2079
+ "kind": "variable",
2080
+ "name": "renderPseudoLink",
2081
+ "description": "A symbol through which to access a function used to render a pseudo link."
2082
+ },
2083
+ {
2084
+ "kind": "function",
2085
+ "name": "isLinkButtonMixin",
2086
+ "return": {
2087
+ "type": {
2088
+ "text": "value is LinkButtonMixin"
2089
+ }
2090
+ },
2091
+ "parameters": [
2092
+ {
2093
+ "name": "value",
2094
+ "type": {
2095
+ "text": "unknown"
2096
+ },
2097
+ "description": "The value to test."
2098
+ }
2099
+ ],
2100
+ "description": "Determines whether a value is a `LinkButtonMixin`."
2101
+ },
2102
+ {
2103
+ "kind": "mixin",
2104
+ "description": "Mixin to augment an element with behavior that supports functioning as a link.",
2105
+ "name": "LinkButton",
2106
+ "members": [
2107
+ {
2108
+ "kind": "field",
2109
+ "name": "[_clickHandler]",
2110
+ "privacy": "private"
2111
+ },
2112
+ {
2113
+ "kind": "field",
2114
+ "name": "href",
2115
+ "type": {
2116
+ "text": "string"
2117
+ },
2118
+ "default": "\"\"",
2119
+ "description": "The URL to which the link button points.",
2120
+ "attribute": "href"
2121
+ },
2122
+ {
2123
+ "kind": "field",
2124
+ "name": "target",
2125
+ "type": {
2126
+ "text": "LinkTarget"
2127
+ },
2128
+ "default": "\"\"",
2129
+ "description": "The target of the link button.",
2130
+ "attribute": "target"
2131
+ },
2132
+ {
2133
+ "kind": "field",
2134
+ "name": "rel",
2135
+ "type": {
2136
+ "text": "string"
2137
+ },
2138
+ "default": "\"\"",
2139
+ "description": "The relationship between the `target` of the link button and the document.",
2140
+ "attribute": "rel"
2141
+ },
2142
+ {
2143
+ "kind": "field",
2144
+ "name": "download",
2145
+ "type": {
2146
+ "text": "string | null"
2147
+ },
2148
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
2149
+ "default": "null",
2150
+ "attribute": "download"
2151
+ },
2152
+ {
2153
+ "kind": "method",
2154
+ "name": "#handleLinkPointerDown",
2155
+ "privacy": "private",
2156
+ "return": {
2157
+ "type": {
2158
+ "text": "void"
2159
+ }
2160
+ },
2161
+ "parameters": [
2162
+ {
2163
+ "name": "e",
2164
+ "type": {
2165
+ "text": "PointerEvent"
2166
+ }
2167
+ }
2168
+ ]
2169
+ },
2170
+ {
2171
+ "kind": "method",
2172
+ "name": "#handleLinkFocus",
2173
+ "privacy": "private",
2174
+ "return": {
2175
+ "type": {
2176
+ "text": "void"
2177
+ }
2178
+ },
2179
+ "parameters": [
2180
+ {
2181
+ "name": "e",
2182
+ "type": {
2183
+ "text": "Event"
2184
+ }
2185
+ }
2186
+ ]
2187
+ },
2188
+ {
2189
+ "kind": "method",
2190
+ "name": "#handleLinkBlur",
2191
+ "privacy": "private",
2192
+ "return": {
2193
+ "type": {
2194
+ "text": "void"
2195
+ }
2196
+ },
2197
+ "parameters": [
2198
+ {
2199
+ "name": "e",
2200
+ "type": {
2201
+ "text": "Event"
2202
+ }
2203
+ }
2204
+ ]
2205
+ }
2206
+ ],
2207
+ "events": [
2208
+ {
2209
+ "name": "click",
2210
+ "type": {
2211
+ "text": "MouseEvent"
2212
+ }
2213
+ }
2214
+ ],
2215
+ "attributes": [
2216
+ {
2217
+ "name": "href",
2218
+ "type": {
2219
+ "text": "string"
2220
+ },
2221
+ "default": "\"\"",
2222
+ "description": "The URL to which the link button points.",
2223
+ "fieldName": "href"
2224
+ },
2225
+ {
2226
+ "name": "target",
2227
+ "type": {
2228
+ "text": "LinkTarget"
2229
+ },
2230
+ "default": "\"\"",
2231
+ "description": "The target of the link button.",
2232
+ "fieldName": "target"
2233
+ },
2234
+ {
2235
+ "name": "rel",
2236
+ "type": {
2237
+ "text": "string"
2238
+ },
2239
+ "default": "\"\"",
2240
+ "description": "The relationship between the `target` of the link button and the document.",
2241
+ "fieldName": "rel"
2242
+ },
2243
+ {
2244
+ "name": "download",
2245
+ "type": {
2246
+ "text": "string | null"
2247
+ },
2248
+ "description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
2249
+ "default": "null",
2250
+ "fieldName": "download"
2251
+ }
2252
+ ],
2253
+ "parameters": [
2254
+ {
2255
+ "name": "base",
2256
+ "type": {
2257
+ "text": "T"
2258
+ },
2259
+ "description": "The base class."
2260
+ }
2261
+ ]
2262
+ }
2263
+ ],
2264
+ "exports": [
2265
+ {
2266
+ "kind": "js",
2267
+ "name": "renderPseudoLink",
2268
+ "declaration": {
2269
+ "name": "renderPseudoLink",
2270
+ "module": "../core/src/shared/mixins/LinkButton.ts"
2271
+ }
2272
+ },
2273
+ {
2274
+ "kind": "js",
2275
+ "name": "isLinkButtonMixin",
2276
+ "declaration": {
2277
+ "name": "isLinkButtonMixin",
2278
+ "module": "../core/src/shared/mixins/LinkButton.ts"
2279
+ }
2280
+ },
2281
+ {
2282
+ "kind": "js",
2283
+ "name": "LinkButton",
2284
+ "declaration": {
2285
+ "name": "LinkButton",
2286
+ "module": "../core/src/shared/mixins/LinkButton.ts"
2287
+ }
2288
+ }
2289
+ ]
2290
+ },
2291
+ {
2292
+ "kind": "javascript-module",
2293
+ "path": "../core/src/shared/mixins/ReadOnly.ts",
2294
+ "declarations": [
2295
+ {
2296
+ "kind": "function",
2297
+ "name": "isReadOnlyMixin",
2298
+ "return": {
2299
+ "type": {
2300
+ "text": ""
2301
+ }
2302
+ },
2303
+ "parameters": [
2304
+ {
2305
+ "name": "value",
2306
+ "type": {
2307
+ "text": "unknown"
2308
+ },
2309
+ "description": "The value to test."
2310
+ }
2311
+ ],
2312
+ "description": "Determines whether a value is a `ReadOnlyMixin`."
2313
+ },
2314
+ {
2315
+ "kind": "mixin",
2316
+ "description": "Mixin to augment an element with behavior that supports a read-only state.",
2317
+ "name": "ReadOnly",
2318
+ "members": [
2319
+ {
2320
+ "kind": "field",
2321
+ "name": "readOnly",
2322
+ "type": {
2323
+ "text": "boolean"
2324
+ },
2325
+ "default": "false",
2326
+ "description": "A value indicating whether the element is read-only.",
2327
+ "attribute": "readonly"
2328
+ }
2329
+ ],
2330
+ "attributes": [
2331
+ {
2332
+ "name": "readonly",
2333
+ "type": {
2334
+ "text": "boolean"
2335
+ },
2336
+ "default": "false",
2337
+ "description": "A value indicating whether the element is read-only.",
2338
+ "fieldName": "readOnly"
2339
+ }
2340
+ ],
2341
+ "parameters": [
2342
+ {
2343
+ "name": "base",
2344
+ "type": {
2345
+ "text": "T"
2346
+ },
2347
+ "description": "The base class."
2348
+ },
2349
+ {
2350
+ "name": "reflect",
2351
+ "default": "true",
2352
+ "type": {
2353
+ "text": "boolean"
2354
+ },
2355
+ "description": "A value indicating whether the read-only state is reflected as an attribute. The default value is `true`."
2356
+ }
2357
+ ]
2358
+ }
2359
+ ],
2360
+ "exports": [
2361
+ {
2362
+ "kind": "js",
2363
+ "name": "isReadOnlyMixin",
2364
+ "declaration": {
2365
+ "name": "isReadOnlyMixin",
2366
+ "module": "../core/src/shared/mixins/ReadOnly.ts"
2367
+ }
2368
+ },
2369
+ {
2370
+ "kind": "js",
2371
+ "name": "ReadOnly",
2372
+ "declaration": {
2373
+ "name": "ReadOnly",
2374
+ "module": "../core/src/shared/mixins/ReadOnly.ts"
2375
+ }
2376
+ }
2377
+ ]
2378
+ },
2379
+ {
2380
+ "kind": "javascript-module",
2381
+ "path": "../core/src/shared/mixins/Required.ts",
2382
+ "declarations": [
2383
+ {
2384
+ "kind": "function",
2385
+ "name": "isRequiredMixin",
2386
+ "return": {
2387
+ "type": {
2388
+ "text": ""
2389
+ }
2390
+ },
2391
+ "parameters": [
2392
+ {
2393
+ "name": "value",
2394
+ "type": {
2395
+ "text": "unknown"
2396
+ },
2397
+ "description": "The value to test."
2398
+ }
2399
+ ],
2400
+ "description": "Determines whether a value is a `RequiredMixin`."
2401
+ },
2402
+ {
2403
+ "kind": "mixin",
2404
+ "description": "Mixin to augment an element with behavior that supports a required state.",
2405
+ "name": "Required",
2406
+ "members": [
2407
+ {
2408
+ "kind": "field",
2409
+ "name": "required",
2410
+ "type": {
2411
+ "text": "boolean"
2412
+ },
2413
+ "default": "false",
2414
+ "description": "Whether a value is required for the element.",
2415
+ "attribute": "required",
2416
+ "reflects": true
2417
+ },
2418
+ {
2419
+ "kind": "field",
2420
+ "name": "optional",
2421
+ "description": "Whether a value is not required for the element.",
2422
+ "readonly": true
2423
+ }
2424
+ ],
2425
+ "attributes": [
2426
+ {
2427
+ "name": "required",
2428
+ "type": {
2429
+ "text": "boolean"
2430
+ },
2431
+ "default": "false",
2432
+ "description": "Whether a value is required for the element.",
2433
+ "fieldName": "required"
2434
+ }
2435
+ ],
2436
+ "parameters": [
2437
+ {
2438
+ "name": "base",
2439
+ "type": {
2440
+ "text": "T"
2441
+ },
2442
+ "description": "The base class."
2443
+ }
2444
+ ]
2445
+ }
2446
+ ],
2447
+ "exports": [
2448
+ {
2449
+ "kind": "js",
2450
+ "name": "isRequiredMixin",
2451
+ "declaration": {
2452
+ "name": "isRequiredMixin",
2453
+ "module": "../core/src/shared/mixins/Required.ts"
2454
+ }
2455
+ },
2456
+ {
2457
+ "kind": "js",
2458
+ "name": "Required",
2459
+ "declaration": {
2460
+ "name": "Required",
2461
+ "module": "../core/src/shared/mixins/Required.ts"
2462
+ }
2463
+ }
2464
+ ]
2465
+ },
2466
+ {
2467
+ "kind": "javascript-module",
2468
+ "path": "../core/src/shared/mixins/RequiredConstraintValidation.ts",
2469
+ "declarations": [
2470
+ {
2471
+ "kind": "function",
2472
+ "name": "isRequiredConstraintValidationMixin",
2473
+ "return": {
2474
+ "type": {
2475
+ "text": ""
2476
+ }
2477
+ },
2478
+ "parameters": [
2479
+ {
2480
+ "name": "value",
2481
+ "type": {
2482
+ "text": "unknown"
2483
+ },
2484
+ "description": "The value to test."
2485
+ }
2486
+ ],
2487
+ "description": "Determines whether a value is a `RequiredConstraintValidationMixin`."
2488
+ },
2489
+ {
2490
+ "kind": "mixin",
2491
+ "description": "Mixin to augment an element with behavior that supports a required state.",
2492
+ "name": "RequiredConstraintValidation",
2493
+ "parameters": [
2494
+ {
2495
+ "name": "base",
2496
+ "type": {
2497
+ "text": "T"
2498
+ },
2499
+ "description": "The base class."
2500
+ }
2501
+ ]
2502
+ }
2503
+ ],
2504
+ "exports": [
2505
+ {
2506
+ "kind": "js",
2507
+ "name": "isRequiredConstraintValidationMixin",
2508
+ "declaration": {
2509
+ "name": "isRequiredConstraintValidationMixin",
2510
+ "module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
2511
+ }
2512
+ },
2513
+ {
2514
+ "kind": "js",
2515
+ "name": "RequiredConstraintValidation",
2516
+ "declaration": {
2517
+ "name": "RequiredConstraintValidation",
2518
+ "module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
2519
+ }
2520
+ }
2521
+ ]
2522
+ },
2523
+ {
2524
+ "kind": "javascript-module",
2525
+ "path": "../core/src/shared/mixins/Role.ts",
2526
+ "declarations": [
2527
+ {
2528
+ "kind": "mixin",
2529
+ "description": "Mixin to augment an element with an ARIA role.",
2530
+ "name": "Role",
2531
+ "parameters": [
2532
+ {
2533
+ "name": "base",
2534
+ "type": {
2535
+ "text": "T"
2536
+ },
2537
+ "description": "The base class."
2538
+ },
2539
+ {
2540
+ "name": "role",
2541
+ "type": {
2542
+ "text": "ARIARole"
2543
+ },
2544
+ "description": "The ARIA role."
2545
+ }
2546
+ ]
2547
+ }
2548
+ ],
2549
+ "exports": [
2550
+ {
2551
+ "kind": "js",
2552
+ "name": "Role",
2553
+ "declaration": {
2554
+ "name": "Role",
2555
+ "module": "../core/src/shared/mixins/Role.ts"
2556
+ }
2557
+ }
2558
+ ]
2559
+ },
2560
+ {
2561
+ "kind": "javascript-module",
2562
+ "path": "../core/src/shared/mixins/Selected.ts",
2563
+ "declarations": [
2564
+ {
2565
+ "kind": "function",
2566
+ "name": "isSelectedMixin",
2567
+ "return": {
2568
+ "type": {
2569
+ "text": ""
2570
+ }
2571
+ },
2572
+ "parameters": [
2573
+ {
2574
+ "name": "value",
2575
+ "type": {
2576
+ "text": "unknown"
2577
+ },
2578
+ "description": "The value to test."
2579
+ }
2580
+ ],
2581
+ "description": "Determines whether a value is a `SelectedMixin`."
2582
+ },
2583
+ {
2584
+ "kind": "mixin",
2585
+ "description": "Mixin to augment an element with behavior that supports a selected state.",
2586
+ "name": "Selected",
2587
+ "members": [
2588
+ {
2589
+ "kind": "field",
2590
+ "name": "selected",
2591
+ "type": {
2592
+ "text": "boolean"
2593
+ },
2594
+ "default": "false",
2595
+ "description": "Whether the element is selected.",
2596
+ "attribute": "selected",
2597
+ "reflects": true
2598
+ }
2599
+ ],
2600
+ "attributes": [
2601
+ {
2602
+ "name": "selected",
2603
+ "type": {
2604
+ "text": "boolean"
2605
+ },
2606
+ "default": "false",
2607
+ "description": "Whether the element is selected.",
2608
+ "fieldName": "selected"
2609
+ }
2610
+ ],
2611
+ "parameters": [
2612
+ {
2613
+ "name": "base",
2614
+ "type": {
2615
+ "text": "T"
2616
+ },
2617
+ "description": "The base class."
2618
+ }
2619
+ ]
2620
+ }
2621
+ ],
2622
+ "exports": [
2623
+ {
2624
+ "kind": "js",
2625
+ "name": "isSelectedMixin",
2626
+ "declaration": {
2627
+ "name": "isSelectedMixin",
2628
+ "module": "../core/src/shared/mixins/Selected.ts"
2629
+ }
2630
+ },
2631
+ {
2632
+ "kind": "js",
2633
+ "name": "Selected",
2634
+ "declaration": {
2635
+ "name": "Selected",
2636
+ "module": "../core/src/shared/mixins/Selected.ts"
2637
+ }
2638
+ }
2639
+ ]
2640
+ },
2641
+ {
2642
+ "kind": "javascript-module",
2643
+ "path": "../core/src/shared/mixins/Touched.ts",
2644
+ "declarations": [
2645
+ {
2646
+ "kind": "function",
2647
+ "name": "isTouchedMixin",
2648
+ "return": {
2649
+ "type": {
2650
+ "text": ""
2651
+ }
2652
+ },
2653
+ "parameters": [
2654
+ {
2655
+ "name": "value",
2656
+ "type": {
2657
+ "text": "unknown"
2658
+ },
2659
+ "description": "The value to test."
2660
+ }
2661
+ ],
2662
+ "description": "Determines whether a value is a `TouchedMixin`."
2663
+ },
2664
+ {
2665
+ "kind": "mixin",
2666
+ "description": "Mixin to augment an element with functionality used to mark it as touched.",
2667
+ "name": "Touched",
2668
+ "members": [
2669
+ {
2670
+ "kind": "field",
2671
+ "name": "[_eventHandler]",
2672
+ "privacy": "private"
2673
+ },
2674
+ {
2675
+ "kind": "field",
2676
+ "name": "touched",
2677
+ "type": {
2678
+ "text": "boolean"
2679
+ },
2680
+ "description": "Whether the user has interacted when the element.",
2681
+ "readonly": true
2682
+ },
2683
+ {
2684
+ "kind": "field",
2685
+ "name": "untouched",
2686
+ "type": {
2687
+ "text": "boolean"
2688
+ },
2689
+ "description": "Whether the user has not interacted when the element.",
2690
+ "readonly": true
2691
+ },
2692
+ {
2693
+ "kind": "method",
2694
+ "name": "markAsTouched",
2695
+ "return": {
2696
+ "type": {
2697
+ "text": "void"
2698
+ }
2699
+ },
2700
+ "description": "Marks the element as touched."
2701
+ },
2702
+ {
2703
+ "kind": "method",
2704
+ "name": "markAsUntouched",
2705
+ "return": {
2706
+ "type": {
2707
+ "text": "void"
2708
+ }
2709
+ },
2710
+ "description": "Marks the element as untouched."
2711
+ }
2712
+ ],
2713
+ "parameters": [
2714
+ {
2715
+ "name": "base",
2716
+ "type": {
2717
+ "text": "T"
2718
+ },
2719
+ "description": "The base class."
2720
+ }
2721
+ ]
2722
+ }
2723
+ ],
2724
+ "exports": [
2725
+ {
2726
+ "kind": "js",
2727
+ "name": "isTouchedMixin",
2728
+ "declaration": {
2729
+ "name": "isTouchedMixin",
2730
+ "module": "../core/src/shared/mixins/Touched.ts"
2731
+ }
2732
+ },
2733
+ {
2734
+ "kind": "js",
2735
+ "name": "Touched",
2736
+ "declaration": {
2737
+ "name": "Touched",
2738
+ "module": "../core/src/shared/mixins/Touched.ts"
2739
+ }
2740
+ }
2741
+ ]
2742
+ },
2743
+ {
2744
+ "kind": "javascript-module",
2745
+ "path": "../core/src/shared/mixins/Vertical.ts",
2746
+ "declarations": [
2747
+ {
2748
+ "kind": "function",
2749
+ "name": "isVerticalMixin",
2750
+ "return": {
2751
+ "type": {
2752
+ "text": ""
2753
+ }
2754
+ },
2755
+ "parameters": [
2756
+ {
2757
+ "name": "value",
2758
+ "type": {
2759
+ "text": "unknown"
2760
+ },
2761
+ "description": "The value to test."
2762
+ }
2763
+ ],
2764
+ "description": "Determines whether a value is a `VerticalMixin`."
2765
+ },
2766
+ {
2767
+ "kind": "mixin",
2768
+ "description": "Mixin to augment an element with behavior that supports a vertical orientation.",
2769
+ "name": "Vertical",
2770
+ "members": [
2771
+ {
2772
+ "kind": "field",
2773
+ "name": "vertical",
2774
+ "type": {
2775
+ "text": "boolean"
2776
+ },
2777
+ "default": "false",
2778
+ "description": "Whether the element is oriented vertically.",
2779
+ "attribute": "vertical",
2780
+ "reflects": true
2781
+ }
2782
+ ],
2783
+ "attributes": [
2784
+ {
2785
+ "name": "vertical",
2786
+ "type": {
2787
+ "text": "boolean"
2788
+ },
2789
+ "default": "false",
2790
+ "description": "Whether the element is oriented vertically.",
2791
+ "fieldName": "vertical"
2792
+ }
2793
+ ],
2794
+ "parameters": [
2795
+ {
2796
+ "name": "base",
2797
+ "type": {
2798
+ "text": "T"
2799
+ },
2800
+ "description": "The base class."
2801
+ }
2802
+ ]
2803
+ }
2804
+ ],
2805
+ "exports": [
2806
+ {
2807
+ "kind": "js",
2808
+ "name": "isVerticalMixin",
2809
+ "declaration": {
2810
+ "name": "isVerticalMixin",
2811
+ "module": "../core/src/shared/mixins/Vertical.ts"
2812
+ }
2813
+ },
2814
+ {
2815
+ "kind": "js",
2816
+ "name": "Vertical",
2817
+ "declaration": {
2818
+ "name": "Vertical",
2819
+ "module": "../core/src/shared/mixins/Vertical.ts"
2820
+ }
2821
+ }
2822
+ ]
277
2823
  }
278
2824
  ]
279
2825
  }