@spectrum-web-components/button 1.2.0-beta.1 → 1.2.0-beta.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.
Files changed (2) hide show
  1. package/custom-elements.json +1822 -0
  2. package/package.json +10 -10
@@ -0,0 +1,1822 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-button.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-button",
13
+ "declaration": {
14
+ "name": "Button",
15
+ "module": "/src/Button.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "sp-clear-button.js",
23
+ "declarations": [],
24
+ "exports": [
25
+ {
26
+ "kind": "custom-element-definition",
27
+ "name": "sp-clear-button",
28
+ "declaration": {
29
+ "name": "ClearButton",
30
+ "module": "/src/ClearButton.js"
31
+ }
32
+ }
33
+ ]
34
+ },
35
+ {
36
+ "kind": "javascript-module",
37
+ "path": "sp-close-button.js",
38
+ "declarations": [],
39
+ "exports": [
40
+ {
41
+ "kind": "custom-element-definition",
42
+ "name": "sp-close-button",
43
+ "declaration": {
44
+ "name": "CloseButton",
45
+ "module": "/src/CloseButton.js"
46
+ }
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ "kind": "javascript-module",
52
+ "path": "src/Button.js",
53
+ "declarations": [
54
+ {
55
+ "kind": "variable",
56
+ "name": "VALID_VARIANTS",
57
+ "type": {
58
+ "text": "array"
59
+ },
60
+ "default": "[\n 'accent',\n 'primary',\n 'secondary',\n 'negative',\n 'white',\n 'black',\n]"
61
+ },
62
+ {
63
+ "kind": "variable",
64
+ "name": "VALID_STATIC_COLORS",
65
+ "type": {
66
+ "text": "array"
67
+ },
68
+ "default": "['white', 'black']"
69
+ },
70
+ {
71
+ "kind": "class",
72
+ "description": "",
73
+ "name": "Button",
74
+ "slots": [
75
+ {
76
+ "description": "text label of the Button",
77
+ "name": "",
78
+ "inheritedFrom": {
79
+ "name": "ButtonBase",
80
+ "module": "src/ButtonBase.ts"
81
+ }
82
+ },
83
+ {
84
+ "description": "The icon to use for Button",
85
+ "name": "icon",
86
+ "inheritedFrom": {
87
+ "name": "ButtonBase",
88
+ "module": "src/ButtonBase.ts"
89
+ }
90
+ }
91
+ ],
92
+ "members": [
93
+ {
94
+ "kind": "field",
95
+ "name": "pendingLabel",
96
+ "type": {
97
+ "text": "string"
98
+ },
99
+ "privacy": "public",
100
+ "default": "'Pending'",
101
+ "attribute": "pending-label"
102
+ },
103
+ {
104
+ "kind": "field",
105
+ "name": "pending",
106
+ "type": {
107
+ "text": "boolean"
108
+ },
109
+ "privacy": "public",
110
+ "default": "false",
111
+ "attribute": "pending",
112
+ "reflects": true
113
+ },
114
+ {
115
+ "kind": "field",
116
+ "name": "pendingStateController",
117
+ "type": {
118
+ "text": "PendingStateController<this>"
119
+ },
120
+ "privacy": "public",
121
+ "default": "new PendingStateController(this)"
122
+ },
123
+ {
124
+ "kind": "method",
125
+ "name": "click",
126
+ "privacy": "public",
127
+ "return": {
128
+ "type": {
129
+ "text": "void"
130
+ }
131
+ }
132
+ },
133
+ {
134
+ "kind": "field",
135
+ "name": "variant",
136
+ "type": {
137
+ "text": "ButtonVariants"
138
+ },
139
+ "privacy": "public",
140
+ "description": "The visual variant to apply to this button.",
141
+ "attribute": "variant"
142
+ },
143
+ {
144
+ "kind": "field",
145
+ "name": "_variant",
146
+ "type": {
147
+ "text": "ButtonVariants"
148
+ },
149
+ "privacy": "private",
150
+ "default": "'accent'"
151
+ },
152
+ {
153
+ "kind": "field",
154
+ "name": "staticColor",
155
+ "type": {
156
+ "text": "'black' | 'white' | undefined"
157
+ },
158
+ "privacy": "public",
159
+ "description": "The static color variant to use for this button.",
160
+ "attribute": "static-color",
161
+ "reflects": true
162
+ },
163
+ {
164
+ "kind": "field",
165
+ "name": "treatment",
166
+ "type": {
167
+ "text": "ButtonTreatments"
168
+ },
169
+ "privacy": "public",
170
+ "default": "'fill'",
171
+ "description": "The visual treatment to apply to this button.",
172
+ "attribute": "treatment",
173
+ "reflects": true
174
+ },
175
+ {
176
+ "kind": "field",
177
+ "name": "quiet",
178
+ "privacy": "public",
179
+ "description": "Style this button to be less obvious",
180
+ "type": {
181
+ "text": "boolean"
182
+ },
183
+ "attribute": "quiet"
184
+ },
185
+ {
186
+ "kind": "field",
187
+ "name": "noWrap",
188
+ "type": {
189
+ "text": "boolean"
190
+ },
191
+ "privacy": "public",
192
+ "default": "false",
193
+ "description": "Disables text wrapping within the button component's label.\nPlease note that this option is not a part of the design specification\nand should be used carefully, with consideration of this overflow behavior\nand the readability of the button's content.",
194
+ "attribute": "no-wrap",
195
+ "reflects": true
196
+ },
197
+ {
198
+ "kind": "method",
199
+ "name": "renderButton",
200
+ "privacy": "protected",
201
+ "return": {
202
+ "type": {
203
+ "text": "TemplateResult"
204
+ }
205
+ },
206
+ "inheritedFrom": {
207
+ "name": "ButtonBase",
208
+ "module": "src/ButtonBase.js"
209
+ }
210
+ },
211
+ {
212
+ "kind": "field",
213
+ "name": "active",
214
+ "type": {
215
+ "text": "boolean"
216
+ },
217
+ "privacy": "public",
218
+ "default": "false",
219
+ "attribute": "active",
220
+ "reflects": true,
221
+ "inheritedFrom": {
222
+ "name": "ButtonBase",
223
+ "module": "src/ButtonBase.js"
224
+ }
225
+ },
226
+ {
227
+ "kind": "field",
228
+ "name": "type",
229
+ "type": {
230
+ "text": "'button' | 'submit' | 'reset'"
231
+ },
232
+ "privacy": "public",
233
+ "default": "'button'",
234
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
235
+ "attribute": "type",
236
+ "inheritedFrom": {
237
+ "name": "ButtonBase",
238
+ "module": "src/ButtonBase.js"
239
+ }
240
+ },
241
+ {
242
+ "kind": "field",
243
+ "name": "anchorElement",
244
+ "type": {
245
+ "text": "HTMLAnchorElement"
246
+ },
247
+ "privacy": "private",
248
+ "description": "HTML anchor element that component clicks by proxy",
249
+ "inheritedFrom": {
250
+ "name": "ButtonBase",
251
+ "module": "src/ButtonBase.js"
252
+ }
253
+ },
254
+ {
255
+ "kind": "field",
256
+ "name": "focusElement",
257
+ "type": {
258
+ "text": "HTMLElement"
259
+ },
260
+ "privacy": "public",
261
+ "readonly": true,
262
+ "inheritedFrom": {
263
+ "name": "ButtonBase",
264
+ "module": "src/ButtonBase.js"
265
+ }
266
+ },
267
+ {
268
+ "kind": "field",
269
+ "name": "hasLabel",
270
+ "type": {
271
+ "text": "boolean"
272
+ },
273
+ "privacy": "protected",
274
+ "readonly": true,
275
+ "inheritedFrom": {
276
+ "name": "ButtonBase",
277
+ "module": "src/ButtonBase.js"
278
+ }
279
+ },
280
+ {
281
+ "kind": "field",
282
+ "name": "buttonContent",
283
+ "type": {
284
+ "text": "TemplateResult[]"
285
+ },
286
+ "privacy": "protected",
287
+ "readonly": true,
288
+ "inheritedFrom": {
289
+ "name": "ButtonBase",
290
+ "module": "src/ButtonBase.js"
291
+ }
292
+ },
293
+ {
294
+ "kind": "method",
295
+ "name": "handleClickCapture",
296
+ "privacy": "private",
297
+ "return": {
298
+ "type": {
299
+ "text": "void | boolean"
300
+ }
301
+ },
302
+ "parameters": [
303
+ {
304
+ "name": "event",
305
+ "type": {
306
+ "text": "Event"
307
+ }
308
+ }
309
+ ],
310
+ "inheritedFrom": {
311
+ "name": "ButtonBase",
312
+ "module": "src/ButtonBase.js"
313
+ }
314
+ },
315
+ {
316
+ "kind": "method",
317
+ "name": "proxyFocus",
318
+ "privacy": "private",
319
+ "return": {
320
+ "type": {
321
+ "text": "void"
322
+ }
323
+ },
324
+ "inheritedFrom": {
325
+ "name": "ButtonBase",
326
+ "module": "src/ButtonBase.js"
327
+ }
328
+ },
329
+ {
330
+ "kind": "method",
331
+ "name": "shouldProxyClick",
332
+ "privacy": "private",
333
+ "return": {
334
+ "type": {
335
+ "text": "boolean"
336
+ }
337
+ },
338
+ "inheritedFrom": {
339
+ "name": "ButtonBase",
340
+ "module": "src/ButtonBase.js"
341
+ }
342
+ },
343
+ {
344
+ "kind": "method",
345
+ "name": "renderAnchor",
346
+ "privacy": "public",
347
+ "return": {
348
+ "type": {
349
+ "text": "TemplateResult"
350
+ }
351
+ },
352
+ "inheritedFrom": {
353
+ "name": "ButtonBase",
354
+ "module": "src/ButtonBase.js"
355
+ }
356
+ },
357
+ {
358
+ "kind": "method",
359
+ "name": "handleKeydown",
360
+ "privacy": "protected",
361
+ "return": {
362
+ "type": {
363
+ "text": "void"
364
+ }
365
+ },
366
+ "parameters": [
367
+ {
368
+ "name": "event",
369
+ "type": {
370
+ "text": "KeyboardEvent"
371
+ }
372
+ }
373
+ ],
374
+ "inheritedFrom": {
375
+ "name": "ButtonBase",
376
+ "module": "src/ButtonBase.js"
377
+ }
378
+ },
379
+ {
380
+ "kind": "method",
381
+ "name": "handleKeypress",
382
+ "privacy": "private",
383
+ "return": {
384
+ "type": {
385
+ "text": "void"
386
+ }
387
+ },
388
+ "parameters": [
389
+ {
390
+ "name": "event",
391
+ "type": {
392
+ "text": "KeyboardEvent"
393
+ }
394
+ }
395
+ ],
396
+ "inheritedFrom": {
397
+ "name": "ButtonBase",
398
+ "module": "src/ButtonBase.js"
399
+ }
400
+ },
401
+ {
402
+ "kind": "method",
403
+ "name": "handleKeyup",
404
+ "privacy": "protected",
405
+ "return": {
406
+ "type": {
407
+ "text": "void"
408
+ }
409
+ },
410
+ "parameters": [
411
+ {
412
+ "name": "event",
413
+ "type": {
414
+ "text": "KeyboardEvent"
415
+ }
416
+ }
417
+ ],
418
+ "inheritedFrom": {
419
+ "name": "ButtonBase",
420
+ "module": "src/ButtonBase.js"
421
+ }
422
+ },
423
+ {
424
+ "kind": "method",
425
+ "name": "manageAnchor",
426
+ "privacy": "private",
427
+ "return": {
428
+ "type": {
429
+ "text": "void"
430
+ }
431
+ },
432
+ "inheritedFrom": {
433
+ "name": "ButtonBase",
434
+ "module": "src/ButtonBase.js"
435
+ }
436
+ }
437
+ ],
438
+ "attributes": [
439
+ {
440
+ "name": "pending-label",
441
+ "type": {
442
+ "text": "string"
443
+ },
444
+ "default": "'Pending'",
445
+ "fieldName": "pendingLabel"
446
+ },
447
+ {
448
+ "name": "pending",
449
+ "type": {
450
+ "text": "boolean"
451
+ },
452
+ "default": "false",
453
+ "fieldName": "pending"
454
+ },
455
+ {
456
+ "name": "variant",
457
+ "type": {
458
+ "text": "ButtonVariants"
459
+ },
460
+ "description": "The visual variant to apply to this button.",
461
+ "fieldName": "variant"
462
+ },
463
+ {
464
+ "name": "static-color",
465
+ "type": {
466
+ "text": "'black' | 'white' | undefined"
467
+ },
468
+ "description": "The static color variant to use for this button.",
469
+ "fieldName": "staticColor"
470
+ },
471
+ {
472
+ "name": "treatment",
473
+ "type": {
474
+ "text": "ButtonTreatments"
475
+ },
476
+ "default": "'fill'",
477
+ "description": "The visual treatment to apply to this button.",
478
+ "fieldName": "treatment"
479
+ },
480
+ {
481
+ "name": "quiet",
482
+ "description": "Style this button to be less obvious",
483
+ "type": {
484
+ "text": "boolean"
485
+ },
486
+ "fieldName": "quiet"
487
+ },
488
+ {
489
+ "name": "no-wrap",
490
+ "type": {
491
+ "text": "boolean"
492
+ },
493
+ "default": "false",
494
+ "description": "Disables text wrapping within the button component's label.\nPlease note that this option is not a part of the design specification\nand should be used carefully, with consideration of this overflow behavior\nand the readability of the button's content.",
495
+ "fieldName": "noWrap"
496
+ },
497
+ {
498
+ "name": "active",
499
+ "type": {
500
+ "text": "boolean"
501
+ },
502
+ "default": "false",
503
+ "fieldName": "active",
504
+ "inheritedFrom": {
505
+ "name": "ButtonBase",
506
+ "module": "src/ButtonBase.ts"
507
+ }
508
+ },
509
+ {
510
+ "name": "type",
511
+ "type": {
512
+ "text": "'button' | 'submit' | 'reset'"
513
+ },
514
+ "default": "'button'",
515
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
516
+ "fieldName": "type",
517
+ "inheritedFrom": {
518
+ "name": "ButtonBase",
519
+ "module": "src/ButtonBase.ts"
520
+ }
521
+ }
522
+ ],
523
+ "mixins": [
524
+ {
525
+ "name": "SizedMixin",
526
+ "package": "@spectrum-web-components/base"
527
+ }
528
+ ],
529
+ "superclass": {
530
+ "name": "ButtonBase",
531
+ "module": "/src/ButtonBase.js"
532
+ },
533
+ "tagName": "sp-button",
534
+ "customElement": true
535
+ }
536
+ ],
537
+ "exports": [
538
+ {
539
+ "kind": "js",
540
+ "name": "VALID_VARIANTS",
541
+ "declaration": {
542
+ "name": "VALID_VARIANTS",
543
+ "module": "src/Button.js"
544
+ }
545
+ },
546
+ {
547
+ "kind": "js",
548
+ "name": "VALID_STATIC_COLORS",
549
+ "declaration": {
550
+ "name": "VALID_STATIC_COLORS",
551
+ "module": "src/Button.js"
552
+ }
553
+ },
554
+ {
555
+ "kind": "js",
556
+ "name": "Button",
557
+ "declaration": {
558
+ "name": "Button",
559
+ "module": "src/Button.js"
560
+ }
561
+ }
562
+ ]
563
+ },
564
+ {
565
+ "kind": "javascript-module",
566
+ "path": "src/ButtonBase.js",
567
+ "declarations": [
568
+ {
569
+ "kind": "class",
570
+ "description": "",
571
+ "name": "ButtonBase",
572
+ "slots": [
573
+ {
574
+ "description": "text content to be displayed in the Button element",
575
+ "name": ""
576
+ },
577
+ {
578
+ "description": "icon element(s) to display at the start of the button",
579
+ "name": "icon"
580
+ }
581
+ ],
582
+ "members": [
583
+ {
584
+ "kind": "field",
585
+ "name": "active",
586
+ "type": {
587
+ "text": "boolean"
588
+ },
589
+ "privacy": "public",
590
+ "default": "false",
591
+ "attribute": "active",
592
+ "reflects": true
593
+ },
594
+ {
595
+ "kind": "field",
596
+ "name": "type",
597
+ "type": {
598
+ "text": "'button' | 'submit' | 'reset'"
599
+ },
600
+ "privacy": "public",
601
+ "default": "'button'",
602
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
603
+ "attribute": "type"
604
+ },
605
+ {
606
+ "kind": "field",
607
+ "name": "anchorElement",
608
+ "type": {
609
+ "text": "HTMLAnchorElement"
610
+ },
611
+ "privacy": "private",
612
+ "description": "HTML anchor element that component clicks by proxy"
613
+ },
614
+ {
615
+ "kind": "field",
616
+ "name": "focusElement",
617
+ "type": {
618
+ "text": "HTMLElement"
619
+ },
620
+ "privacy": "public",
621
+ "readonly": true
622
+ },
623
+ {
624
+ "kind": "field",
625
+ "name": "hasLabel",
626
+ "type": {
627
+ "text": "boolean"
628
+ },
629
+ "privacy": "protected",
630
+ "readonly": true
631
+ },
632
+ {
633
+ "kind": "field",
634
+ "name": "buttonContent",
635
+ "type": {
636
+ "text": "TemplateResult[]"
637
+ },
638
+ "privacy": "protected",
639
+ "readonly": true
640
+ },
641
+ {
642
+ "kind": "method",
643
+ "name": "handleClickCapture",
644
+ "privacy": "private",
645
+ "return": {
646
+ "type": {
647
+ "text": "void | boolean"
648
+ }
649
+ },
650
+ "parameters": [
651
+ {
652
+ "name": "event",
653
+ "type": {
654
+ "text": "Event"
655
+ }
656
+ }
657
+ ]
658
+ },
659
+ {
660
+ "kind": "method",
661
+ "name": "proxyFocus",
662
+ "privacy": "private",
663
+ "return": {
664
+ "type": {
665
+ "text": "void"
666
+ }
667
+ }
668
+ },
669
+ {
670
+ "kind": "method",
671
+ "name": "shouldProxyClick",
672
+ "privacy": "private",
673
+ "return": {
674
+ "type": {
675
+ "text": "boolean"
676
+ }
677
+ }
678
+ },
679
+ {
680
+ "kind": "method",
681
+ "name": "renderAnchor",
682
+ "privacy": "public",
683
+ "return": {
684
+ "type": {
685
+ "text": "TemplateResult"
686
+ }
687
+ }
688
+ },
689
+ {
690
+ "kind": "method",
691
+ "name": "renderButton",
692
+ "privacy": "protected",
693
+ "return": {
694
+ "type": {
695
+ "text": "TemplateResult"
696
+ }
697
+ }
698
+ },
699
+ {
700
+ "kind": "method",
701
+ "name": "handleKeydown",
702
+ "privacy": "protected",
703
+ "return": {
704
+ "type": {
705
+ "text": "void"
706
+ }
707
+ },
708
+ "parameters": [
709
+ {
710
+ "name": "event",
711
+ "type": {
712
+ "text": "KeyboardEvent"
713
+ }
714
+ }
715
+ ]
716
+ },
717
+ {
718
+ "kind": "method",
719
+ "name": "handleKeypress",
720
+ "privacy": "private",
721
+ "return": {
722
+ "type": {
723
+ "text": "void"
724
+ }
725
+ },
726
+ "parameters": [
727
+ {
728
+ "name": "event",
729
+ "type": {
730
+ "text": "KeyboardEvent"
731
+ }
732
+ }
733
+ ]
734
+ },
735
+ {
736
+ "kind": "method",
737
+ "name": "handleKeyup",
738
+ "privacy": "protected",
739
+ "return": {
740
+ "type": {
741
+ "text": "void"
742
+ }
743
+ },
744
+ "parameters": [
745
+ {
746
+ "name": "event",
747
+ "type": {
748
+ "text": "KeyboardEvent"
749
+ }
750
+ }
751
+ ]
752
+ },
753
+ {
754
+ "kind": "method",
755
+ "name": "manageAnchor",
756
+ "privacy": "private",
757
+ "return": {
758
+ "type": {
759
+ "text": "void"
760
+ }
761
+ }
762
+ }
763
+ ],
764
+ "attributes": [
765
+ {
766
+ "name": "active",
767
+ "type": {
768
+ "text": "boolean"
769
+ },
770
+ "default": "false",
771
+ "fieldName": "active"
772
+ },
773
+ {
774
+ "name": "type",
775
+ "type": {
776
+ "text": "'button' | 'submit' | 'reset'"
777
+ },
778
+ "default": "'button'",
779
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
780
+ "fieldName": "type"
781
+ }
782
+ ],
783
+ "mixins": [
784
+ {
785
+ "name": "ObserveSlotText",
786
+ "package": "@spectrum-web-components/shared/src/observe-slot-text.js"
787
+ },
788
+ {
789
+ "name": "LikeAnchor",
790
+ "package": "@spectrum-web-components/shared/src/like-anchor.js"
791
+ }
792
+ ],
793
+ "superclass": {
794
+ "name": "Focusable",
795
+ "package": "@spectrum-web-components/shared/src/focusable.js"
796
+ }
797
+ }
798
+ ],
799
+ "exports": [
800
+ {
801
+ "kind": "js",
802
+ "name": "ButtonBase",
803
+ "declaration": {
804
+ "name": "ButtonBase",
805
+ "module": "src/ButtonBase.js"
806
+ }
807
+ }
808
+ ]
809
+ },
810
+ {
811
+ "kind": "javascript-module",
812
+ "path": "src/ClearButton.js",
813
+ "declarations": [
814
+ {
815
+ "kind": "class",
816
+ "description": "",
817
+ "name": "ClearButton",
818
+ "slots": [
819
+ {
820
+ "description": "text label of the Clear Button",
821
+ "name": "",
822
+ "inheritedFrom": {
823
+ "name": "ButtonBase",
824
+ "module": "src/ButtonBase.ts"
825
+ }
826
+ },
827
+ {
828
+ "description": "The icon to use for Clear Button",
829
+ "name": "icon",
830
+ "inheritedFrom": {
831
+ "name": "ButtonBase",
832
+ "module": "src/ButtonBase.ts"
833
+ }
834
+ }
835
+ ],
836
+ "members": [
837
+ {
838
+ "kind": "field",
839
+ "name": "variant",
840
+ "type": {
841
+ "text": "'overBackground' | ''"
842
+ },
843
+ "privacy": "public",
844
+ "default": "''",
845
+ "description": "The visual variant to apply to this button.",
846
+ "attribute": "variant",
847
+ "reflects": true
848
+ },
849
+ {
850
+ "kind": "field",
851
+ "name": "buttonContent",
852
+ "type": {
853
+ "text": "TemplateResult[]"
854
+ },
855
+ "privacy": "protected",
856
+ "readonly": true,
857
+ "inheritedFrom": {
858
+ "name": "ButtonBase",
859
+ "module": "src/ButtonBase.js"
860
+ }
861
+ },
862
+ {
863
+ "kind": "field",
864
+ "name": "active",
865
+ "type": {
866
+ "text": "boolean"
867
+ },
868
+ "privacy": "public",
869
+ "default": "false",
870
+ "attribute": "active",
871
+ "reflects": true,
872
+ "inheritedFrom": {
873
+ "name": "ButtonBase",
874
+ "module": "src/ButtonBase.js"
875
+ }
876
+ },
877
+ {
878
+ "kind": "field",
879
+ "name": "type",
880
+ "type": {
881
+ "text": "'button' | 'submit' | 'reset'"
882
+ },
883
+ "privacy": "public",
884
+ "default": "'button'",
885
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
886
+ "attribute": "type",
887
+ "inheritedFrom": {
888
+ "name": "ButtonBase",
889
+ "module": "src/ButtonBase.js"
890
+ }
891
+ },
892
+ {
893
+ "kind": "field",
894
+ "name": "anchorElement",
895
+ "type": {
896
+ "text": "HTMLAnchorElement"
897
+ },
898
+ "privacy": "private",
899
+ "description": "HTML anchor element that component clicks by proxy",
900
+ "inheritedFrom": {
901
+ "name": "ButtonBase",
902
+ "module": "src/ButtonBase.js"
903
+ }
904
+ },
905
+ {
906
+ "kind": "field",
907
+ "name": "focusElement",
908
+ "type": {
909
+ "text": "HTMLElement"
910
+ },
911
+ "privacy": "public",
912
+ "readonly": true,
913
+ "inheritedFrom": {
914
+ "name": "ButtonBase",
915
+ "module": "src/ButtonBase.js"
916
+ }
917
+ },
918
+ {
919
+ "kind": "field",
920
+ "name": "hasLabel",
921
+ "type": {
922
+ "text": "boolean"
923
+ },
924
+ "privacy": "protected",
925
+ "readonly": true,
926
+ "inheritedFrom": {
927
+ "name": "ButtonBase",
928
+ "module": "src/ButtonBase.js"
929
+ }
930
+ },
931
+ {
932
+ "kind": "method",
933
+ "name": "handleClickCapture",
934
+ "privacy": "private",
935
+ "return": {
936
+ "type": {
937
+ "text": "void | boolean"
938
+ }
939
+ },
940
+ "parameters": [
941
+ {
942
+ "name": "event",
943
+ "type": {
944
+ "text": "Event"
945
+ }
946
+ }
947
+ ],
948
+ "inheritedFrom": {
949
+ "name": "ButtonBase",
950
+ "module": "src/ButtonBase.js"
951
+ }
952
+ },
953
+ {
954
+ "kind": "method",
955
+ "name": "proxyFocus",
956
+ "privacy": "private",
957
+ "return": {
958
+ "type": {
959
+ "text": "void"
960
+ }
961
+ },
962
+ "inheritedFrom": {
963
+ "name": "ButtonBase",
964
+ "module": "src/ButtonBase.js"
965
+ }
966
+ },
967
+ {
968
+ "kind": "method",
969
+ "name": "shouldProxyClick",
970
+ "privacy": "private",
971
+ "return": {
972
+ "type": {
973
+ "text": "boolean"
974
+ }
975
+ },
976
+ "inheritedFrom": {
977
+ "name": "ButtonBase",
978
+ "module": "src/ButtonBase.js"
979
+ }
980
+ },
981
+ {
982
+ "kind": "method",
983
+ "name": "renderAnchor",
984
+ "privacy": "public",
985
+ "return": {
986
+ "type": {
987
+ "text": "TemplateResult"
988
+ }
989
+ },
990
+ "inheritedFrom": {
991
+ "name": "ButtonBase",
992
+ "module": "src/ButtonBase.js"
993
+ }
994
+ },
995
+ {
996
+ "kind": "method",
997
+ "name": "renderButton",
998
+ "privacy": "protected",
999
+ "return": {
1000
+ "type": {
1001
+ "text": "TemplateResult"
1002
+ }
1003
+ },
1004
+ "inheritedFrom": {
1005
+ "name": "ButtonBase",
1006
+ "module": "src/ButtonBase.js"
1007
+ }
1008
+ },
1009
+ {
1010
+ "kind": "method",
1011
+ "name": "handleKeydown",
1012
+ "privacy": "protected",
1013
+ "return": {
1014
+ "type": {
1015
+ "text": "void"
1016
+ }
1017
+ },
1018
+ "parameters": [
1019
+ {
1020
+ "name": "event",
1021
+ "type": {
1022
+ "text": "KeyboardEvent"
1023
+ }
1024
+ }
1025
+ ],
1026
+ "inheritedFrom": {
1027
+ "name": "ButtonBase",
1028
+ "module": "src/ButtonBase.js"
1029
+ }
1030
+ },
1031
+ {
1032
+ "kind": "method",
1033
+ "name": "handleKeypress",
1034
+ "privacy": "private",
1035
+ "return": {
1036
+ "type": {
1037
+ "text": "void"
1038
+ }
1039
+ },
1040
+ "parameters": [
1041
+ {
1042
+ "name": "event",
1043
+ "type": {
1044
+ "text": "KeyboardEvent"
1045
+ }
1046
+ }
1047
+ ],
1048
+ "inheritedFrom": {
1049
+ "name": "ButtonBase",
1050
+ "module": "src/ButtonBase.js"
1051
+ }
1052
+ },
1053
+ {
1054
+ "kind": "method",
1055
+ "name": "handleKeyup",
1056
+ "privacy": "protected",
1057
+ "return": {
1058
+ "type": {
1059
+ "text": "void"
1060
+ }
1061
+ },
1062
+ "parameters": [
1063
+ {
1064
+ "name": "event",
1065
+ "type": {
1066
+ "text": "KeyboardEvent"
1067
+ }
1068
+ }
1069
+ ],
1070
+ "inheritedFrom": {
1071
+ "name": "ButtonBase",
1072
+ "module": "src/ButtonBase.js"
1073
+ }
1074
+ },
1075
+ {
1076
+ "kind": "method",
1077
+ "name": "manageAnchor",
1078
+ "privacy": "private",
1079
+ "return": {
1080
+ "type": {
1081
+ "text": "void"
1082
+ }
1083
+ },
1084
+ "inheritedFrom": {
1085
+ "name": "ButtonBase",
1086
+ "module": "src/ButtonBase.js"
1087
+ }
1088
+ }
1089
+ ],
1090
+ "attributes": [
1091
+ {
1092
+ "name": "variant",
1093
+ "type": {
1094
+ "text": "'overBackground' | ''"
1095
+ },
1096
+ "default": "''",
1097
+ "description": "The visual variant to apply to this button.",
1098
+ "fieldName": "variant"
1099
+ },
1100
+ {
1101
+ "name": "active",
1102
+ "type": {
1103
+ "text": "boolean"
1104
+ },
1105
+ "default": "false",
1106
+ "fieldName": "active",
1107
+ "inheritedFrom": {
1108
+ "name": "ButtonBase",
1109
+ "module": "src/ButtonBase.ts"
1110
+ }
1111
+ },
1112
+ {
1113
+ "name": "type",
1114
+ "type": {
1115
+ "text": "'button' | 'submit' | 'reset'"
1116
+ },
1117
+ "default": "'button'",
1118
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1119
+ "fieldName": "type",
1120
+ "inheritedFrom": {
1121
+ "name": "ButtonBase",
1122
+ "module": "src/ButtonBase.ts"
1123
+ }
1124
+ }
1125
+ ],
1126
+ "mixins": [
1127
+ {
1128
+ "name": "SizedMixin",
1129
+ "package": "@spectrum-web-components/base"
1130
+ }
1131
+ ],
1132
+ "superclass": {
1133
+ "name": "StyledButton",
1134
+ "module": "/src/StyledButton.js"
1135
+ },
1136
+ "tagName": "sp-clear-button",
1137
+ "customElement": true
1138
+ }
1139
+ ],
1140
+ "exports": [
1141
+ {
1142
+ "kind": "js",
1143
+ "name": "ClearButton",
1144
+ "declaration": {
1145
+ "name": "ClearButton",
1146
+ "module": "src/ClearButton.js"
1147
+ }
1148
+ }
1149
+ ]
1150
+ },
1151
+ {
1152
+ "kind": "javascript-module",
1153
+ "path": "src/CloseButton.js",
1154
+ "declarations": [
1155
+ {
1156
+ "kind": "class",
1157
+ "description": "",
1158
+ "name": "CloseButton",
1159
+ "slots": [
1160
+ {
1161
+ "description": "text label of the Close Button",
1162
+ "name": "",
1163
+ "inheritedFrom": {
1164
+ "name": "ButtonBase",
1165
+ "module": "src/ButtonBase.ts"
1166
+ }
1167
+ },
1168
+ {
1169
+ "description": "The icon to use for Close Button",
1170
+ "name": "icon",
1171
+ "inheritedFrom": {
1172
+ "name": "ButtonBase",
1173
+ "module": "src/ButtonBase.ts"
1174
+ }
1175
+ }
1176
+ ],
1177
+ "members": [
1178
+ {
1179
+ "kind": "field",
1180
+ "name": "variant",
1181
+ "type": {
1182
+ "text": "ButtonStaticColors | ''"
1183
+ },
1184
+ "privacy": "public",
1185
+ "default": "''",
1186
+ "description": "The visual variant to apply to this button.",
1187
+ "attribute": "variant",
1188
+ "reflects": true
1189
+ },
1190
+ {
1191
+ "kind": "field",
1192
+ "name": "staticColor",
1193
+ "type": {
1194
+ "text": "'black' | 'white' | undefined"
1195
+ },
1196
+ "privacy": "public",
1197
+ "attribute": "static-color",
1198
+ "reflects": true
1199
+ },
1200
+ {
1201
+ "kind": "field",
1202
+ "name": "buttonContent",
1203
+ "type": {
1204
+ "text": "TemplateResult[]"
1205
+ },
1206
+ "privacy": "protected",
1207
+ "readonly": true,
1208
+ "inheritedFrom": {
1209
+ "name": "ButtonBase",
1210
+ "module": "src/ButtonBase.js"
1211
+ }
1212
+ },
1213
+ {
1214
+ "kind": "field",
1215
+ "name": "active",
1216
+ "type": {
1217
+ "text": "boolean"
1218
+ },
1219
+ "privacy": "public",
1220
+ "default": "false",
1221
+ "attribute": "active",
1222
+ "reflects": true,
1223
+ "inheritedFrom": {
1224
+ "name": "ButtonBase",
1225
+ "module": "src/ButtonBase.js"
1226
+ }
1227
+ },
1228
+ {
1229
+ "kind": "field",
1230
+ "name": "type",
1231
+ "type": {
1232
+ "text": "'button' | 'submit' | 'reset'"
1233
+ },
1234
+ "privacy": "public",
1235
+ "default": "'button'",
1236
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1237
+ "attribute": "type",
1238
+ "inheritedFrom": {
1239
+ "name": "ButtonBase",
1240
+ "module": "src/ButtonBase.js"
1241
+ }
1242
+ },
1243
+ {
1244
+ "kind": "field",
1245
+ "name": "anchorElement",
1246
+ "type": {
1247
+ "text": "HTMLAnchorElement"
1248
+ },
1249
+ "privacy": "private",
1250
+ "description": "HTML anchor element that component clicks by proxy",
1251
+ "inheritedFrom": {
1252
+ "name": "ButtonBase",
1253
+ "module": "src/ButtonBase.js"
1254
+ }
1255
+ },
1256
+ {
1257
+ "kind": "field",
1258
+ "name": "focusElement",
1259
+ "type": {
1260
+ "text": "HTMLElement"
1261
+ },
1262
+ "privacy": "public",
1263
+ "readonly": true,
1264
+ "inheritedFrom": {
1265
+ "name": "ButtonBase",
1266
+ "module": "src/ButtonBase.js"
1267
+ }
1268
+ },
1269
+ {
1270
+ "kind": "field",
1271
+ "name": "hasLabel",
1272
+ "type": {
1273
+ "text": "boolean"
1274
+ },
1275
+ "privacy": "protected",
1276
+ "readonly": true,
1277
+ "inheritedFrom": {
1278
+ "name": "ButtonBase",
1279
+ "module": "src/ButtonBase.js"
1280
+ }
1281
+ },
1282
+ {
1283
+ "kind": "method",
1284
+ "name": "handleClickCapture",
1285
+ "privacy": "private",
1286
+ "return": {
1287
+ "type": {
1288
+ "text": "void | boolean"
1289
+ }
1290
+ },
1291
+ "parameters": [
1292
+ {
1293
+ "name": "event",
1294
+ "type": {
1295
+ "text": "Event"
1296
+ }
1297
+ }
1298
+ ],
1299
+ "inheritedFrom": {
1300
+ "name": "ButtonBase",
1301
+ "module": "src/ButtonBase.js"
1302
+ }
1303
+ },
1304
+ {
1305
+ "kind": "method",
1306
+ "name": "proxyFocus",
1307
+ "privacy": "private",
1308
+ "return": {
1309
+ "type": {
1310
+ "text": "void"
1311
+ }
1312
+ },
1313
+ "inheritedFrom": {
1314
+ "name": "ButtonBase",
1315
+ "module": "src/ButtonBase.js"
1316
+ }
1317
+ },
1318
+ {
1319
+ "kind": "method",
1320
+ "name": "shouldProxyClick",
1321
+ "privacy": "private",
1322
+ "return": {
1323
+ "type": {
1324
+ "text": "boolean"
1325
+ }
1326
+ },
1327
+ "inheritedFrom": {
1328
+ "name": "ButtonBase",
1329
+ "module": "src/ButtonBase.js"
1330
+ }
1331
+ },
1332
+ {
1333
+ "kind": "method",
1334
+ "name": "renderAnchor",
1335
+ "privacy": "public",
1336
+ "return": {
1337
+ "type": {
1338
+ "text": "TemplateResult"
1339
+ }
1340
+ },
1341
+ "inheritedFrom": {
1342
+ "name": "ButtonBase",
1343
+ "module": "src/ButtonBase.js"
1344
+ }
1345
+ },
1346
+ {
1347
+ "kind": "method",
1348
+ "name": "renderButton",
1349
+ "privacy": "protected",
1350
+ "return": {
1351
+ "type": {
1352
+ "text": "TemplateResult"
1353
+ }
1354
+ },
1355
+ "inheritedFrom": {
1356
+ "name": "ButtonBase",
1357
+ "module": "src/ButtonBase.js"
1358
+ }
1359
+ },
1360
+ {
1361
+ "kind": "method",
1362
+ "name": "handleKeydown",
1363
+ "privacy": "protected",
1364
+ "return": {
1365
+ "type": {
1366
+ "text": "void"
1367
+ }
1368
+ },
1369
+ "parameters": [
1370
+ {
1371
+ "name": "event",
1372
+ "type": {
1373
+ "text": "KeyboardEvent"
1374
+ }
1375
+ }
1376
+ ],
1377
+ "inheritedFrom": {
1378
+ "name": "ButtonBase",
1379
+ "module": "src/ButtonBase.js"
1380
+ }
1381
+ },
1382
+ {
1383
+ "kind": "method",
1384
+ "name": "handleKeypress",
1385
+ "privacy": "private",
1386
+ "return": {
1387
+ "type": {
1388
+ "text": "void"
1389
+ }
1390
+ },
1391
+ "parameters": [
1392
+ {
1393
+ "name": "event",
1394
+ "type": {
1395
+ "text": "KeyboardEvent"
1396
+ }
1397
+ }
1398
+ ],
1399
+ "inheritedFrom": {
1400
+ "name": "ButtonBase",
1401
+ "module": "src/ButtonBase.js"
1402
+ }
1403
+ },
1404
+ {
1405
+ "kind": "method",
1406
+ "name": "handleKeyup",
1407
+ "privacy": "protected",
1408
+ "return": {
1409
+ "type": {
1410
+ "text": "void"
1411
+ }
1412
+ },
1413
+ "parameters": [
1414
+ {
1415
+ "name": "event",
1416
+ "type": {
1417
+ "text": "KeyboardEvent"
1418
+ }
1419
+ }
1420
+ ],
1421
+ "inheritedFrom": {
1422
+ "name": "ButtonBase",
1423
+ "module": "src/ButtonBase.js"
1424
+ }
1425
+ },
1426
+ {
1427
+ "kind": "method",
1428
+ "name": "manageAnchor",
1429
+ "privacy": "private",
1430
+ "return": {
1431
+ "type": {
1432
+ "text": "void"
1433
+ }
1434
+ },
1435
+ "inheritedFrom": {
1436
+ "name": "ButtonBase",
1437
+ "module": "src/ButtonBase.js"
1438
+ }
1439
+ }
1440
+ ],
1441
+ "attributes": [
1442
+ {
1443
+ "name": "variant",
1444
+ "type": {
1445
+ "text": "ButtonStaticColors | ''"
1446
+ },
1447
+ "default": "''",
1448
+ "description": "The visual variant to apply to this button.",
1449
+ "fieldName": "variant"
1450
+ },
1451
+ {
1452
+ "name": "static-color",
1453
+ "type": {
1454
+ "text": "'black' | 'white' | undefined"
1455
+ },
1456
+ "fieldName": "staticColor"
1457
+ },
1458
+ {
1459
+ "name": "active",
1460
+ "type": {
1461
+ "text": "boolean"
1462
+ },
1463
+ "default": "false",
1464
+ "fieldName": "active",
1465
+ "inheritedFrom": {
1466
+ "name": "ButtonBase",
1467
+ "module": "src/ButtonBase.ts"
1468
+ }
1469
+ },
1470
+ {
1471
+ "name": "type",
1472
+ "type": {
1473
+ "text": "'button' | 'submit' | 'reset'"
1474
+ },
1475
+ "default": "'button'",
1476
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1477
+ "fieldName": "type",
1478
+ "inheritedFrom": {
1479
+ "name": "ButtonBase",
1480
+ "module": "src/ButtonBase.ts"
1481
+ }
1482
+ }
1483
+ ],
1484
+ "mixins": [
1485
+ {
1486
+ "name": "SizedMixin",
1487
+ "package": "@spectrum-web-components/base"
1488
+ }
1489
+ ],
1490
+ "superclass": {
1491
+ "name": "StyledButton",
1492
+ "module": "/src/StyledButton.js"
1493
+ },
1494
+ "tagName": "sp-close-button",
1495
+ "customElement": true
1496
+ }
1497
+ ],
1498
+ "exports": [
1499
+ {
1500
+ "kind": "js",
1501
+ "name": "CloseButton",
1502
+ "declaration": {
1503
+ "name": "CloseButton",
1504
+ "module": "src/CloseButton.js"
1505
+ }
1506
+ }
1507
+ ]
1508
+ },
1509
+ {
1510
+ "kind": "javascript-module",
1511
+ "path": "src/StyledButton.js",
1512
+ "declarations": [
1513
+ {
1514
+ "kind": "class",
1515
+ "description": "",
1516
+ "name": "StyledButton",
1517
+ "superclass": {
1518
+ "name": "ButtonBase",
1519
+ "module": "/src/ButtonBase.js"
1520
+ },
1521
+ "slots": [
1522
+ {
1523
+ "description": "text content to be displayed in the Button element",
1524
+ "name": "",
1525
+ "inheritedFrom": {
1526
+ "name": "ButtonBase",
1527
+ "module": "src/ButtonBase.ts"
1528
+ }
1529
+ },
1530
+ {
1531
+ "description": "icon element(s) to display at the start of the button",
1532
+ "name": "icon",
1533
+ "inheritedFrom": {
1534
+ "name": "ButtonBase",
1535
+ "module": "src/ButtonBase.ts"
1536
+ }
1537
+ }
1538
+ ],
1539
+ "attributes": [
1540
+ {
1541
+ "name": "active",
1542
+ "type": {
1543
+ "text": "boolean"
1544
+ },
1545
+ "default": "false",
1546
+ "fieldName": "active",
1547
+ "inheritedFrom": {
1548
+ "name": "ButtonBase",
1549
+ "module": "src/ButtonBase.ts"
1550
+ }
1551
+ },
1552
+ {
1553
+ "name": "type",
1554
+ "type": {
1555
+ "text": "'button' | 'submit' | 'reset'"
1556
+ },
1557
+ "default": "'button'",
1558
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1559
+ "fieldName": "type",
1560
+ "inheritedFrom": {
1561
+ "name": "ButtonBase",
1562
+ "module": "src/ButtonBase.ts"
1563
+ }
1564
+ }
1565
+ ],
1566
+ "members": [
1567
+ {
1568
+ "kind": "field",
1569
+ "name": "active",
1570
+ "type": {
1571
+ "text": "boolean"
1572
+ },
1573
+ "privacy": "public",
1574
+ "default": "false",
1575
+ "attribute": "active",
1576
+ "reflects": true,
1577
+ "inheritedFrom": {
1578
+ "name": "ButtonBase",
1579
+ "module": "src/ButtonBase.js"
1580
+ }
1581
+ },
1582
+ {
1583
+ "kind": "field",
1584
+ "name": "type",
1585
+ "type": {
1586
+ "text": "'button' | 'submit' | 'reset'"
1587
+ },
1588
+ "privacy": "public",
1589
+ "default": "'button'",
1590
+ "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1591
+ "attribute": "type",
1592
+ "inheritedFrom": {
1593
+ "name": "ButtonBase",
1594
+ "module": "src/ButtonBase.js"
1595
+ }
1596
+ },
1597
+ {
1598
+ "kind": "field",
1599
+ "name": "anchorElement",
1600
+ "type": {
1601
+ "text": "HTMLAnchorElement"
1602
+ },
1603
+ "privacy": "private",
1604
+ "description": "HTML anchor element that component clicks by proxy",
1605
+ "inheritedFrom": {
1606
+ "name": "ButtonBase",
1607
+ "module": "src/ButtonBase.js"
1608
+ }
1609
+ },
1610
+ {
1611
+ "kind": "field",
1612
+ "name": "focusElement",
1613
+ "type": {
1614
+ "text": "HTMLElement"
1615
+ },
1616
+ "privacy": "public",
1617
+ "readonly": true,
1618
+ "inheritedFrom": {
1619
+ "name": "ButtonBase",
1620
+ "module": "src/ButtonBase.js"
1621
+ }
1622
+ },
1623
+ {
1624
+ "kind": "field",
1625
+ "name": "hasLabel",
1626
+ "type": {
1627
+ "text": "boolean"
1628
+ },
1629
+ "privacy": "protected",
1630
+ "readonly": true,
1631
+ "inheritedFrom": {
1632
+ "name": "ButtonBase",
1633
+ "module": "src/ButtonBase.js"
1634
+ }
1635
+ },
1636
+ {
1637
+ "kind": "field",
1638
+ "name": "buttonContent",
1639
+ "type": {
1640
+ "text": "TemplateResult[]"
1641
+ },
1642
+ "privacy": "protected",
1643
+ "readonly": true,
1644
+ "inheritedFrom": {
1645
+ "name": "ButtonBase",
1646
+ "module": "src/ButtonBase.js"
1647
+ }
1648
+ },
1649
+ {
1650
+ "kind": "method",
1651
+ "name": "handleClickCapture",
1652
+ "privacy": "private",
1653
+ "return": {
1654
+ "type": {
1655
+ "text": "void | boolean"
1656
+ }
1657
+ },
1658
+ "parameters": [
1659
+ {
1660
+ "name": "event",
1661
+ "type": {
1662
+ "text": "Event"
1663
+ }
1664
+ }
1665
+ ],
1666
+ "inheritedFrom": {
1667
+ "name": "ButtonBase",
1668
+ "module": "src/ButtonBase.js"
1669
+ }
1670
+ },
1671
+ {
1672
+ "kind": "method",
1673
+ "name": "proxyFocus",
1674
+ "privacy": "private",
1675
+ "return": {
1676
+ "type": {
1677
+ "text": "void"
1678
+ }
1679
+ },
1680
+ "inheritedFrom": {
1681
+ "name": "ButtonBase",
1682
+ "module": "src/ButtonBase.js"
1683
+ }
1684
+ },
1685
+ {
1686
+ "kind": "method",
1687
+ "name": "shouldProxyClick",
1688
+ "privacy": "private",
1689
+ "return": {
1690
+ "type": {
1691
+ "text": "boolean"
1692
+ }
1693
+ },
1694
+ "inheritedFrom": {
1695
+ "name": "ButtonBase",
1696
+ "module": "src/ButtonBase.js"
1697
+ }
1698
+ },
1699
+ {
1700
+ "kind": "method",
1701
+ "name": "renderAnchor",
1702
+ "privacy": "public",
1703
+ "return": {
1704
+ "type": {
1705
+ "text": "TemplateResult"
1706
+ }
1707
+ },
1708
+ "inheritedFrom": {
1709
+ "name": "ButtonBase",
1710
+ "module": "src/ButtonBase.js"
1711
+ }
1712
+ },
1713
+ {
1714
+ "kind": "method",
1715
+ "name": "renderButton",
1716
+ "privacy": "protected",
1717
+ "return": {
1718
+ "type": {
1719
+ "text": "TemplateResult"
1720
+ }
1721
+ },
1722
+ "inheritedFrom": {
1723
+ "name": "ButtonBase",
1724
+ "module": "src/ButtonBase.js"
1725
+ }
1726
+ },
1727
+ {
1728
+ "kind": "method",
1729
+ "name": "handleKeydown",
1730
+ "privacy": "protected",
1731
+ "return": {
1732
+ "type": {
1733
+ "text": "void"
1734
+ }
1735
+ },
1736
+ "parameters": [
1737
+ {
1738
+ "name": "event",
1739
+ "type": {
1740
+ "text": "KeyboardEvent"
1741
+ }
1742
+ }
1743
+ ],
1744
+ "inheritedFrom": {
1745
+ "name": "ButtonBase",
1746
+ "module": "src/ButtonBase.js"
1747
+ }
1748
+ },
1749
+ {
1750
+ "kind": "method",
1751
+ "name": "handleKeypress",
1752
+ "privacy": "private",
1753
+ "return": {
1754
+ "type": {
1755
+ "text": "void"
1756
+ }
1757
+ },
1758
+ "parameters": [
1759
+ {
1760
+ "name": "event",
1761
+ "type": {
1762
+ "text": "KeyboardEvent"
1763
+ }
1764
+ }
1765
+ ],
1766
+ "inheritedFrom": {
1767
+ "name": "ButtonBase",
1768
+ "module": "src/ButtonBase.js"
1769
+ }
1770
+ },
1771
+ {
1772
+ "kind": "method",
1773
+ "name": "handleKeyup",
1774
+ "privacy": "protected",
1775
+ "return": {
1776
+ "type": {
1777
+ "text": "void"
1778
+ }
1779
+ },
1780
+ "parameters": [
1781
+ {
1782
+ "name": "event",
1783
+ "type": {
1784
+ "text": "KeyboardEvent"
1785
+ }
1786
+ }
1787
+ ],
1788
+ "inheritedFrom": {
1789
+ "name": "ButtonBase",
1790
+ "module": "src/ButtonBase.js"
1791
+ }
1792
+ },
1793
+ {
1794
+ "kind": "method",
1795
+ "name": "manageAnchor",
1796
+ "privacy": "private",
1797
+ "return": {
1798
+ "type": {
1799
+ "text": "void"
1800
+ }
1801
+ },
1802
+ "inheritedFrom": {
1803
+ "name": "ButtonBase",
1804
+ "module": "src/ButtonBase.js"
1805
+ }
1806
+ }
1807
+ ]
1808
+ }
1809
+ ],
1810
+ "exports": [
1811
+ {
1812
+ "kind": "js",
1813
+ "name": "StyledButton",
1814
+ "declaration": {
1815
+ "name": "StyledButton",
1816
+ "module": "src/StyledButton.js"
1817
+ }
1818
+ }
1819
+ ]
1820
+ }
1821
+ ]
1822
+ }