@spectrum-web-components/button 1.8.0 → 1.9.0-nightly.20251013134115

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.
@@ -1,1913 +0,0 @@
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
- "parameters": [
339
- {
340
- "name": "event",
341
- "optional": true,
342
- "type": {
343
- "text": "MouseEvent"
344
- }
345
- }
346
- ],
347
- "inheritedFrom": {
348
- "name": "ButtonBase",
349
- "module": "src/ButtonBase.js"
350
- }
351
- },
352
- {
353
- "kind": "method",
354
- "name": "renderAnchor",
355
- "privacy": "public",
356
- "return": {
357
- "type": {
358
- "text": "TemplateResult"
359
- }
360
- },
361
- "inheritedFrom": {
362
- "name": "ButtonBase",
363
- "module": "src/ButtonBase.js"
364
- }
365
- },
366
- {
367
- "kind": "method",
368
- "name": "handleKeydown",
369
- "privacy": "protected",
370
- "return": {
371
- "type": {
372
- "text": "void"
373
- }
374
- },
375
- "parameters": [
376
- {
377
- "name": "event",
378
- "type": {
379
- "text": "KeyboardEvent"
380
- }
381
- }
382
- ],
383
- "inheritedFrom": {
384
- "name": "ButtonBase",
385
- "module": "src/ButtonBase.js"
386
- }
387
- },
388
- {
389
- "kind": "method",
390
- "name": "handleKeypress",
391
- "privacy": "private",
392
- "return": {
393
- "type": {
394
- "text": "void"
395
- }
396
- },
397
- "parameters": [
398
- {
399
- "name": "event",
400
- "type": {
401
- "text": "KeyboardEvent"
402
- }
403
- }
404
- ],
405
- "inheritedFrom": {
406
- "name": "ButtonBase",
407
- "module": "src/ButtonBase.js"
408
- }
409
- },
410
- {
411
- "kind": "method",
412
- "name": "handleKeyup",
413
- "privacy": "protected",
414
- "return": {
415
- "type": {
416
- "text": "void"
417
- }
418
- },
419
- "parameters": [
420
- {
421
- "name": "event",
422
- "type": {
423
- "text": "KeyboardEvent"
424
- }
425
- }
426
- ],
427
- "inheritedFrom": {
428
- "name": "ButtonBase",
429
- "module": "src/ButtonBase.js"
430
- }
431
- },
432
- {
433
- "kind": "method",
434
- "name": "manageAnchor",
435
- "privacy": "private",
436
- "return": {
437
- "type": {
438
- "text": "void"
439
- }
440
- },
441
- "inheritedFrom": {
442
- "name": "ButtonBase",
443
- "module": "src/ButtonBase.js"
444
- }
445
- }
446
- ],
447
- "attributes": [
448
- {
449
- "name": "pending-label",
450
- "type": {
451
- "text": "string"
452
- },
453
- "default": "'Pending'",
454
- "fieldName": "pendingLabel"
455
- },
456
- {
457
- "name": "pending",
458
- "type": {
459
- "text": "boolean"
460
- },
461
- "default": "false",
462
- "fieldName": "pending"
463
- },
464
- {
465
- "name": "variant",
466
- "type": {
467
- "text": "ButtonVariants"
468
- },
469
- "description": "The visual variant to apply to this button.",
470
- "fieldName": "variant"
471
- },
472
- {
473
- "name": "static-color",
474
- "type": {
475
- "text": "'black' | 'white' | undefined"
476
- },
477
- "description": "The static color variant to use for this button.",
478
- "fieldName": "staticColor"
479
- },
480
- {
481
- "name": "treatment",
482
- "type": {
483
- "text": "ButtonTreatments"
484
- },
485
- "default": "'fill'",
486
- "description": "The visual treatment to apply to this button.",
487
- "fieldName": "treatment"
488
- },
489
- {
490
- "name": "quiet",
491
- "description": "Style this button to be less obvious",
492
- "type": {
493
- "text": "boolean"
494
- },
495
- "fieldName": "quiet"
496
- },
497
- {
498
- "name": "no-wrap",
499
- "type": {
500
- "text": "boolean"
501
- },
502
- "default": "false",
503
- "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.",
504
- "fieldName": "noWrap"
505
- },
506
- {
507
- "name": "active",
508
- "type": {
509
- "text": "boolean"
510
- },
511
- "default": "false",
512
- "fieldName": "active",
513
- "inheritedFrom": {
514
- "name": "ButtonBase",
515
- "module": "src/ButtonBase.ts"
516
- }
517
- },
518
- {
519
- "name": "type",
520
- "type": {
521
- "text": "'button' | 'submit' | 'reset'"
522
- },
523
- "default": "'button'",
524
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
525
- "fieldName": "type",
526
- "inheritedFrom": {
527
- "name": "ButtonBase",
528
- "module": "src/ButtonBase.ts"
529
- }
530
- }
531
- ],
532
- "mixins": [
533
- {
534
- "name": "SizedMixin",
535
- "package": "@spectrum-web-components/base"
536
- }
537
- ],
538
- "superclass": {
539
- "name": "ButtonBase",
540
- "module": "/src/ButtonBase.js"
541
- },
542
- "tagName": "sp-button",
543
- "customElement": true
544
- }
545
- ],
546
- "exports": [
547
- {
548
- "kind": "js",
549
- "name": "VALID_VARIANTS",
550
- "declaration": {
551
- "name": "VALID_VARIANTS",
552
- "module": "src/Button.js"
553
- }
554
- },
555
- {
556
- "kind": "js",
557
- "name": "VALID_STATIC_COLORS",
558
- "declaration": {
559
- "name": "VALID_STATIC_COLORS",
560
- "module": "src/Button.js"
561
- }
562
- },
563
- {
564
- "kind": "js",
565
- "name": "Button",
566
- "declaration": {
567
- "name": "Button",
568
- "module": "src/Button.js"
569
- }
570
- }
571
- ]
572
- },
573
- {
574
- "kind": "javascript-module",
575
- "path": "src/ButtonBase.js",
576
- "declarations": [
577
- {
578
- "kind": "class",
579
- "description": "",
580
- "name": "ButtonBase",
581
- "slots": [
582
- {
583
- "description": "text content to be displayed in the Button element",
584
- "name": ""
585
- },
586
- {
587
- "description": "icon element(s) to display at the start of the button",
588
- "name": "icon"
589
- }
590
- ],
591
- "members": [
592
- {
593
- "kind": "field",
594
- "name": "active",
595
- "type": {
596
- "text": "boolean"
597
- },
598
- "privacy": "public",
599
- "default": "false",
600
- "attribute": "active",
601
- "reflects": true
602
- },
603
- {
604
- "kind": "field",
605
- "name": "type",
606
- "type": {
607
- "text": "'button' | 'submit' | 'reset'"
608
- },
609
- "privacy": "public",
610
- "default": "'button'",
611
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
612
- "attribute": "type"
613
- },
614
- {
615
- "kind": "field",
616
- "name": "anchorElement",
617
- "type": {
618
- "text": "HTMLAnchorElement"
619
- },
620
- "privacy": "private",
621
- "description": "HTML anchor element that component clicks by proxy"
622
- },
623
- {
624
- "kind": "field",
625
- "name": "focusElement",
626
- "type": {
627
- "text": "HTMLElement"
628
- },
629
- "privacy": "public",
630
- "readonly": true
631
- },
632
- {
633
- "kind": "field",
634
- "name": "hasLabel",
635
- "type": {
636
- "text": "boolean"
637
- },
638
- "privacy": "protected",
639
- "readonly": true
640
- },
641
- {
642
- "kind": "field",
643
- "name": "buttonContent",
644
- "type": {
645
- "text": "TemplateResult[]"
646
- },
647
- "privacy": "protected",
648
- "readonly": true
649
- },
650
- {
651
- "kind": "method",
652
- "name": "handleClickCapture",
653
- "privacy": "private",
654
- "return": {
655
- "type": {
656
- "text": "void | boolean"
657
- }
658
- },
659
- "parameters": [
660
- {
661
- "name": "event",
662
- "type": {
663
- "text": "Event"
664
- }
665
- }
666
- ]
667
- },
668
- {
669
- "kind": "method",
670
- "name": "proxyFocus",
671
- "privacy": "private",
672
- "return": {
673
- "type": {
674
- "text": "void"
675
- }
676
- }
677
- },
678
- {
679
- "kind": "method",
680
- "name": "shouldProxyClick",
681
- "privacy": "private",
682
- "return": {
683
- "type": {
684
- "text": "boolean"
685
- }
686
- },
687
- "parameters": [
688
- {
689
- "name": "event",
690
- "optional": true,
691
- "type": {
692
- "text": "MouseEvent"
693
- }
694
- }
695
- ]
696
- },
697
- {
698
- "kind": "method",
699
- "name": "renderAnchor",
700
- "privacy": "public",
701
- "return": {
702
- "type": {
703
- "text": "TemplateResult"
704
- }
705
- }
706
- },
707
- {
708
- "kind": "method",
709
- "name": "renderButton",
710
- "privacy": "protected",
711
- "return": {
712
- "type": {
713
- "text": "TemplateResult"
714
- }
715
- }
716
- },
717
- {
718
- "kind": "method",
719
- "name": "handleKeydown",
720
- "privacy": "protected",
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": "handleKeypress",
738
- "privacy": "private",
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": "handleKeyup",
756
- "privacy": "protected",
757
- "return": {
758
- "type": {
759
- "text": "void"
760
- }
761
- },
762
- "parameters": [
763
- {
764
- "name": "event",
765
- "type": {
766
- "text": "KeyboardEvent"
767
- }
768
- }
769
- ]
770
- },
771
- {
772
- "kind": "method",
773
- "name": "manageAnchor",
774
- "privacy": "private",
775
- "return": {
776
- "type": {
777
- "text": "void"
778
- }
779
- }
780
- }
781
- ],
782
- "attributes": [
783
- {
784
- "name": "active",
785
- "type": {
786
- "text": "boolean"
787
- },
788
- "default": "false",
789
- "fieldName": "active"
790
- },
791
- {
792
- "name": "type",
793
- "type": {
794
- "text": "'button' | 'submit' | 'reset'"
795
- },
796
- "default": "'button'",
797
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
798
- "fieldName": "type"
799
- }
800
- ],
801
- "mixins": [
802
- {
803
- "name": "ObserveSlotText",
804
- "package": "@spectrum-web-components/shared/src/observe-slot-text.js"
805
- },
806
- {
807
- "name": "LikeAnchor",
808
- "package": "@spectrum-web-components/shared/src/like-anchor.js"
809
- }
810
- ],
811
- "superclass": {
812
- "name": "Focusable",
813
- "package": "@spectrum-web-components/shared/src/focusable.js"
814
- }
815
- }
816
- ],
817
- "exports": [
818
- {
819
- "kind": "js",
820
- "name": "ButtonBase",
821
- "declaration": {
822
- "name": "ButtonBase",
823
- "module": "src/ButtonBase.js"
824
- }
825
- }
826
- ]
827
- },
828
- {
829
- "kind": "javascript-module",
830
- "path": "src/ClearButton.js",
831
- "declarations": [
832
- {
833
- "kind": "class",
834
- "description": "",
835
- "name": "ClearButton",
836
- "slots": [
837
- {
838
- "description": "text label of the Clear Button",
839
- "name": "",
840
- "inheritedFrom": {
841
- "name": "ButtonBase",
842
- "module": "src/ButtonBase.ts"
843
- }
844
- },
845
- {
846
- "description": "icon element(s) to display at the start of the button",
847
- "name": "icon",
848
- "inheritedFrom": {
849
- "name": "ButtonBase",
850
- "module": "src/ButtonBase.ts"
851
- }
852
- }
853
- ],
854
- "members": [
855
- {
856
- "kind": "field",
857
- "name": "quiet",
858
- "type": {
859
- "text": "boolean"
860
- },
861
- "privacy": "public",
862
- "default": "false",
863
- "attribute": "quiet",
864
- "reflects": true
865
- },
866
- {
867
- "kind": "field",
868
- "name": "variant",
869
- "privacy": "public",
870
- "description": "The visual variant to apply to this button.",
871
- "deprecated": "Use `static-color='white'` instead.",
872
- "type": {
873
- "text": "'overBackground' | undefined"
874
- },
875
- "attribute": "variant",
876
- "reflects": true
877
- },
878
- {
879
- "kind": "field",
880
- "name": "_variant",
881
- "type": {
882
- "text": "'overBackground' | undefined"
883
- },
884
- "privacy": "private"
885
- },
886
- {
887
- "kind": "field",
888
- "name": "staticColor",
889
- "type": {
890
- "text": "'white' | undefined"
891
- },
892
- "privacy": "public",
893
- "description": "The visual variant to apply to this button.",
894
- "attribute": "static-color",
895
- "reflects": true
896
- },
897
- {
898
- "kind": "field",
899
- "name": "buttonContent",
900
- "type": {
901
- "text": "TemplateResult[]"
902
- },
903
- "privacy": "protected",
904
- "readonly": true,
905
- "inheritedFrom": {
906
- "name": "ButtonBase",
907
- "module": "src/ButtonBase.js"
908
- }
909
- },
910
- {
911
- "kind": "field",
912
- "name": "active",
913
- "type": {
914
- "text": "boolean"
915
- },
916
- "privacy": "public",
917
- "default": "false",
918
- "attribute": "active",
919
- "reflects": true,
920
- "inheritedFrom": {
921
- "name": "ButtonBase",
922
- "module": "src/ButtonBase.js"
923
- }
924
- },
925
- {
926
- "kind": "field",
927
- "name": "type",
928
- "type": {
929
- "text": "'button' | 'submit' | 'reset'"
930
- },
931
- "privacy": "public",
932
- "default": "'button'",
933
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
934
- "attribute": "type",
935
- "inheritedFrom": {
936
- "name": "ButtonBase",
937
- "module": "src/ButtonBase.js"
938
- }
939
- },
940
- {
941
- "kind": "field",
942
- "name": "anchorElement",
943
- "type": {
944
- "text": "HTMLAnchorElement"
945
- },
946
- "privacy": "private",
947
- "description": "HTML anchor element that component clicks by proxy",
948
- "inheritedFrom": {
949
- "name": "ButtonBase",
950
- "module": "src/ButtonBase.js"
951
- }
952
- },
953
- {
954
- "kind": "field",
955
- "name": "focusElement",
956
- "type": {
957
- "text": "HTMLElement"
958
- },
959
- "privacy": "public",
960
- "readonly": true,
961
- "inheritedFrom": {
962
- "name": "ButtonBase",
963
- "module": "src/ButtonBase.js"
964
- }
965
- },
966
- {
967
- "kind": "field",
968
- "name": "hasLabel",
969
- "type": {
970
- "text": "boolean"
971
- },
972
- "privacy": "protected",
973
- "readonly": true,
974
- "inheritedFrom": {
975
- "name": "ButtonBase",
976
- "module": "src/ButtonBase.js"
977
- }
978
- },
979
- {
980
- "kind": "method",
981
- "name": "handleClickCapture",
982
- "privacy": "private",
983
- "return": {
984
- "type": {
985
- "text": "void | boolean"
986
- }
987
- },
988
- "parameters": [
989
- {
990
- "name": "event",
991
- "type": {
992
- "text": "Event"
993
- }
994
- }
995
- ],
996
- "inheritedFrom": {
997
- "name": "ButtonBase",
998
- "module": "src/ButtonBase.js"
999
- }
1000
- },
1001
- {
1002
- "kind": "method",
1003
- "name": "proxyFocus",
1004
- "privacy": "private",
1005
- "return": {
1006
- "type": {
1007
- "text": "void"
1008
- }
1009
- },
1010
- "inheritedFrom": {
1011
- "name": "ButtonBase",
1012
- "module": "src/ButtonBase.js"
1013
- }
1014
- },
1015
- {
1016
- "kind": "method",
1017
- "name": "shouldProxyClick",
1018
- "privacy": "private",
1019
- "return": {
1020
- "type": {
1021
- "text": "boolean"
1022
- }
1023
- },
1024
- "parameters": [
1025
- {
1026
- "name": "event",
1027
- "optional": true,
1028
- "type": {
1029
- "text": "MouseEvent"
1030
- }
1031
- }
1032
- ],
1033
- "inheritedFrom": {
1034
- "name": "ButtonBase",
1035
- "module": "src/ButtonBase.js"
1036
- }
1037
- },
1038
- {
1039
- "kind": "method",
1040
- "name": "renderAnchor",
1041
- "privacy": "public",
1042
- "return": {
1043
- "type": {
1044
- "text": "TemplateResult"
1045
- }
1046
- },
1047
- "inheritedFrom": {
1048
- "name": "ButtonBase",
1049
- "module": "src/ButtonBase.js"
1050
- }
1051
- },
1052
- {
1053
- "kind": "method",
1054
- "name": "renderButton",
1055
- "privacy": "protected",
1056
- "return": {
1057
- "type": {
1058
- "text": "TemplateResult"
1059
- }
1060
- },
1061
- "inheritedFrom": {
1062
- "name": "ButtonBase",
1063
- "module": "src/ButtonBase.js"
1064
- }
1065
- },
1066
- {
1067
- "kind": "method",
1068
- "name": "handleKeydown",
1069
- "privacy": "protected",
1070
- "return": {
1071
- "type": {
1072
- "text": "void"
1073
- }
1074
- },
1075
- "parameters": [
1076
- {
1077
- "name": "event",
1078
- "type": {
1079
- "text": "KeyboardEvent"
1080
- }
1081
- }
1082
- ],
1083
- "inheritedFrom": {
1084
- "name": "ButtonBase",
1085
- "module": "src/ButtonBase.js"
1086
- }
1087
- },
1088
- {
1089
- "kind": "method",
1090
- "name": "handleKeypress",
1091
- "privacy": "private",
1092
- "return": {
1093
- "type": {
1094
- "text": "void"
1095
- }
1096
- },
1097
- "parameters": [
1098
- {
1099
- "name": "event",
1100
- "type": {
1101
- "text": "KeyboardEvent"
1102
- }
1103
- }
1104
- ],
1105
- "inheritedFrom": {
1106
- "name": "ButtonBase",
1107
- "module": "src/ButtonBase.js"
1108
- }
1109
- },
1110
- {
1111
- "kind": "method",
1112
- "name": "handleKeyup",
1113
- "privacy": "protected",
1114
- "return": {
1115
- "type": {
1116
- "text": "void"
1117
- }
1118
- },
1119
- "parameters": [
1120
- {
1121
- "name": "event",
1122
- "type": {
1123
- "text": "KeyboardEvent"
1124
- }
1125
- }
1126
- ],
1127
- "inheritedFrom": {
1128
- "name": "ButtonBase",
1129
- "module": "src/ButtonBase.js"
1130
- }
1131
- },
1132
- {
1133
- "kind": "method",
1134
- "name": "manageAnchor",
1135
- "privacy": "private",
1136
- "return": {
1137
- "type": {
1138
- "text": "void"
1139
- }
1140
- },
1141
- "inheritedFrom": {
1142
- "name": "ButtonBase",
1143
- "module": "src/ButtonBase.js"
1144
- }
1145
- }
1146
- ],
1147
- "attributes": [
1148
- {
1149
- "name": "quiet",
1150
- "type": {
1151
- "text": "boolean"
1152
- },
1153
- "default": "false",
1154
- "fieldName": "quiet"
1155
- },
1156
- {
1157
- "name": "variant",
1158
- "description": "The visual variant to apply to this button.",
1159
- "deprecated": "Use `static-color='white'` instead.",
1160
- "type": {
1161
- "text": "'overBackground' | undefined"
1162
- },
1163
- "fieldName": "variant"
1164
- },
1165
- {
1166
- "name": "static-color",
1167
- "type": {
1168
- "text": "'white' | undefined"
1169
- },
1170
- "description": "The visual variant to apply to this button.",
1171
- "fieldName": "staticColor"
1172
- },
1173
- {
1174
- "name": "active",
1175
- "type": {
1176
- "text": "boolean"
1177
- },
1178
- "default": "false",
1179
- "fieldName": "active",
1180
- "inheritedFrom": {
1181
- "name": "ButtonBase",
1182
- "module": "src/ButtonBase.ts"
1183
- }
1184
- },
1185
- {
1186
- "name": "type",
1187
- "type": {
1188
- "text": "'button' | 'submit' | 'reset'"
1189
- },
1190
- "default": "'button'",
1191
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1192
- "fieldName": "type",
1193
- "inheritedFrom": {
1194
- "name": "ButtonBase",
1195
- "module": "src/ButtonBase.ts"
1196
- }
1197
- }
1198
- ],
1199
- "mixins": [
1200
- {
1201
- "name": "SizedMixin",
1202
- "package": "@spectrum-web-components/base"
1203
- }
1204
- ],
1205
- "superclass": {
1206
- "name": "StyledButton",
1207
- "module": "/src/StyledButton.js"
1208
- },
1209
- "tagName": "sp-clear-button",
1210
- "customElement": true
1211
- }
1212
- ],
1213
- "exports": [
1214
- {
1215
- "kind": "js",
1216
- "name": "ClearButton",
1217
- "declaration": {
1218
- "name": "ClearButton",
1219
- "module": "src/ClearButton.js"
1220
- }
1221
- }
1222
- ]
1223
- },
1224
- {
1225
- "kind": "javascript-module",
1226
- "path": "src/CloseButton.js",
1227
- "declarations": [
1228
- {
1229
- "kind": "class",
1230
- "description": "",
1231
- "name": "CloseButton",
1232
- "slots": [
1233
- {
1234
- "description": "text label of the Close Button",
1235
- "name": "",
1236
- "inheritedFrom": {
1237
- "name": "ButtonBase",
1238
- "module": "src/ButtonBase.ts"
1239
- }
1240
- },
1241
- {
1242
- "description": "icon element(s) to display at the start of the button",
1243
- "name": "icon",
1244
- "inheritedFrom": {
1245
- "name": "ButtonBase",
1246
- "module": "src/ButtonBase.ts"
1247
- }
1248
- }
1249
- ],
1250
- "members": [
1251
- {
1252
- "kind": "field",
1253
- "name": "variant",
1254
- "type": {
1255
- "text": "ButtonStaticColors | ''"
1256
- },
1257
- "privacy": "public",
1258
- "default": "''",
1259
- "description": "The visual variant to apply to this button.",
1260
- "attribute": "variant",
1261
- "reflects": true
1262
- },
1263
- {
1264
- "kind": "field",
1265
- "name": "staticColor",
1266
- "type": {
1267
- "text": "'black' | 'white' | undefined"
1268
- },
1269
- "privacy": "public",
1270
- "attribute": "static-color",
1271
- "reflects": true
1272
- },
1273
- {
1274
- "kind": "field",
1275
- "name": "buttonContent",
1276
- "type": {
1277
- "text": "TemplateResult[]"
1278
- },
1279
- "privacy": "protected",
1280
- "readonly": true,
1281
- "inheritedFrom": {
1282
- "name": "ButtonBase",
1283
- "module": "src/ButtonBase.js"
1284
- }
1285
- },
1286
- {
1287
- "kind": "field",
1288
- "name": "active",
1289
- "type": {
1290
- "text": "boolean"
1291
- },
1292
- "privacy": "public",
1293
- "default": "false",
1294
- "attribute": "active",
1295
- "reflects": true,
1296
- "inheritedFrom": {
1297
- "name": "ButtonBase",
1298
- "module": "src/ButtonBase.js"
1299
- }
1300
- },
1301
- {
1302
- "kind": "field",
1303
- "name": "type",
1304
- "type": {
1305
- "text": "'button' | 'submit' | 'reset'"
1306
- },
1307
- "privacy": "public",
1308
- "default": "'button'",
1309
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1310
- "attribute": "type",
1311
- "inheritedFrom": {
1312
- "name": "ButtonBase",
1313
- "module": "src/ButtonBase.js"
1314
- }
1315
- },
1316
- {
1317
- "kind": "field",
1318
- "name": "anchorElement",
1319
- "type": {
1320
- "text": "HTMLAnchorElement"
1321
- },
1322
- "privacy": "private",
1323
- "description": "HTML anchor element that component clicks by proxy",
1324
- "inheritedFrom": {
1325
- "name": "ButtonBase",
1326
- "module": "src/ButtonBase.js"
1327
- }
1328
- },
1329
- {
1330
- "kind": "field",
1331
- "name": "focusElement",
1332
- "type": {
1333
- "text": "HTMLElement"
1334
- },
1335
- "privacy": "public",
1336
- "readonly": true,
1337
- "inheritedFrom": {
1338
- "name": "ButtonBase",
1339
- "module": "src/ButtonBase.js"
1340
- }
1341
- },
1342
- {
1343
- "kind": "field",
1344
- "name": "hasLabel",
1345
- "type": {
1346
- "text": "boolean"
1347
- },
1348
- "privacy": "protected",
1349
- "readonly": true,
1350
- "inheritedFrom": {
1351
- "name": "ButtonBase",
1352
- "module": "src/ButtonBase.js"
1353
- }
1354
- },
1355
- {
1356
- "kind": "method",
1357
- "name": "handleClickCapture",
1358
- "privacy": "private",
1359
- "return": {
1360
- "type": {
1361
- "text": "void | boolean"
1362
- }
1363
- },
1364
- "parameters": [
1365
- {
1366
- "name": "event",
1367
- "type": {
1368
- "text": "Event"
1369
- }
1370
- }
1371
- ],
1372
- "inheritedFrom": {
1373
- "name": "ButtonBase",
1374
- "module": "src/ButtonBase.js"
1375
- }
1376
- },
1377
- {
1378
- "kind": "method",
1379
- "name": "proxyFocus",
1380
- "privacy": "private",
1381
- "return": {
1382
- "type": {
1383
- "text": "void"
1384
- }
1385
- },
1386
- "inheritedFrom": {
1387
- "name": "ButtonBase",
1388
- "module": "src/ButtonBase.js"
1389
- }
1390
- },
1391
- {
1392
- "kind": "method",
1393
- "name": "shouldProxyClick",
1394
- "privacy": "private",
1395
- "return": {
1396
- "type": {
1397
- "text": "boolean"
1398
- }
1399
- },
1400
- "parameters": [
1401
- {
1402
- "name": "event",
1403
- "optional": true,
1404
- "type": {
1405
- "text": "MouseEvent"
1406
- }
1407
- }
1408
- ],
1409
- "inheritedFrom": {
1410
- "name": "ButtonBase",
1411
- "module": "src/ButtonBase.js"
1412
- }
1413
- },
1414
- {
1415
- "kind": "method",
1416
- "name": "renderAnchor",
1417
- "privacy": "public",
1418
- "return": {
1419
- "type": {
1420
- "text": "TemplateResult"
1421
- }
1422
- },
1423
- "inheritedFrom": {
1424
- "name": "ButtonBase",
1425
- "module": "src/ButtonBase.js"
1426
- }
1427
- },
1428
- {
1429
- "kind": "method",
1430
- "name": "renderButton",
1431
- "privacy": "protected",
1432
- "return": {
1433
- "type": {
1434
- "text": "TemplateResult"
1435
- }
1436
- },
1437
- "inheritedFrom": {
1438
- "name": "ButtonBase",
1439
- "module": "src/ButtonBase.js"
1440
- }
1441
- },
1442
- {
1443
- "kind": "method",
1444
- "name": "handleKeydown",
1445
- "privacy": "protected",
1446
- "return": {
1447
- "type": {
1448
- "text": "void"
1449
- }
1450
- },
1451
- "parameters": [
1452
- {
1453
- "name": "event",
1454
- "type": {
1455
- "text": "KeyboardEvent"
1456
- }
1457
- }
1458
- ],
1459
- "inheritedFrom": {
1460
- "name": "ButtonBase",
1461
- "module": "src/ButtonBase.js"
1462
- }
1463
- },
1464
- {
1465
- "kind": "method",
1466
- "name": "handleKeypress",
1467
- "privacy": "private",
1468
- "return": {
1469
- "type": {
1470
- "text": "void"
1471
- }
1472
- },
1473
- "parameters": [
1474
- {
1475
- "name": "event",
1476
- "type": {
1477
- "text": "KeyboardEvent"
1478
- }
1479
- }
1480
- ],
1481
- "inheritedFrom": {
1482
- "name": "ButtonBase",
1483
- "module": "src/ButtonBase.js"
1484
- }
1485
- },
1486
- {
1487
- "kind": "method",
1488
- "name": "handleKeyup",
1489
- "privacy": "protected",
1490
- "return": {
1491
- "type": {
1492
- "text": "void"
1493
- }
1494
- },
1495
- "parameters": [
1496
- {
1497
- "name": "event",
1498
- "type": {
1499
- "text": "KeyboardEvent"
1500
- }
1501
- }
1502
- ],
1503
- "inheritedFrom": {
1504
- "name": "ButtonBase",
1505
- "module": "src/ButtonBase.js"
1506
- }
1507
- },
1508
- {
1509
- "kind": "method",
1510
- "name": "manageAnchor",
1511
- "privacy": "private",
1512
- "return": {
1513
- "type": {
1514
- "text": "void"
1515
- }
1516
- },
1517
- "inheritedFrom": {
1518
- "name": "ButtonBase",
1519
- "module": "src/ButtonBase.js"
1520
- }
1521
- }
1522
- ],
1523
- "attributes": [
1524
- {
1525
- "name": "variant",
1526
- "type": {
1527
- "text": "ButtonStaticColors | ''"
1528
- },
1529
- "default": "''",
1530
- "description": "The visual variant to apply to this button.",
1531
- "fieldName": "variant"
1532
- },
1533
- {
1534
- "name": "static-color",
1535
- "type": {
1536
- "text": "'black' | 'white' | undefined"
1537
- },
1538
- "fieldName": "staticColor"
1539
- },
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
- "mixins": [
1567
- {
1568
- "name": "SizedMixin",
1569
- "package": "@spectrum-web-components/base"
1570
- }
1571
- ],
1572
- "superclass": {
1573
- "name": "StyledButton",
1574
- "module": "/src/StyledButton.js"
1575
- },
1576
- "tagName": "sp-close-button",
1577
- "customElement": true
1578
- }
1579
- ],
1580
- "exports": [
1581
- {
1582
- "kind": "js",
1583
- "name": "CloseButton",
1584
- "declaration": {
1585
- "name": "CloseButton",
1586
- "module": "src/CloseButton.js"
1587
- }
1588
- }
1589
- ]
1590
- },
1591
- {
1592
- "kind": "javascript-module",
1593
- "path": "src/StyledButton.js",
1594
- "declarations": [
1595
- {
1596
- "kind": "class",
1597
- "description": "",
1598
- "name": "StyledButton",
1599
- "superclass": {
1600
- "name": "ButtonBase",
1601
- "module": "/src/ButtonBase.js"
1602
- },
1603
- "slots": [
1604
- {
1605
- "description": "text content to be displayed in the Button element",
1606
- "name": "",
1607
- "inheritedFrom": {
1608
- "name": "ButtonBase",
1609
- "module": "src/ButtonBase.ts"
1610
- }
1611
- },
1612
- {
1613
- "description": "icon element(s) to display at the start of the button",
1614
- "name": "icon",
1615
- "inheritedFrom": {
1616
- "name": "ButtonBase",
1617
- "module": "src/ButtonBase.ts"
1618
- }
1619
- }
1620
- ],
1621
- "attributes": [
1622
- {
1623
- "name": "active",
1624
- "type": {
1625
- "text": "boolean"
1626
- },
1627
- "default": "false",
1628
- "fieldName": "active",
1629
- "inheritedFrom": {
1630
- "name": "ButtonBase",
1631
- "module": "src/ButtonBase.ts"
1632
- }
1633
- },
1634
- {
1635
- "name": "type",
1636
- "type": {
1637
- "text": "'button' | 'submit' | 'reset'"
1638
- },
1639
- "default": "'button'",
1640
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1641
- "fieldName": "type",
1642
- "inheritedFrom": {
1643
- "name": "ButtonBase",
1644
- "module": "src/ButtonBase.ts"
1645
- }
1646
- }
1647
- ],
1648
- "members": [
1649
- {
1650
- "kind": "field",
1651
- "name": "active",
1652
- "type": {
1653
- "text": "boolean"
1654
- },
1655
- "privacy": "public",
1656
- "default": "false",
1657
- "attribute": "active",
1658
- "reflects": true,
1659
- "inheritedFrom": {
1660
- "name": "ButtonBase",
1661
- "module": "src/ButtonBase.js"
1662
- }
1663
- },
1664
- {
1665
- "kind": "field",
1666
- "name": "type",
1667
- "type": {
1668
- "text": "'button' | 'submit' | 'reset'"
1669
- },
1670
- "privacy": "public",
1671
- "default": "'button'",
1672
- "description": "The default behavior of the button.\nPossible values are: `button` (default), `submit`, and `reset`.",
1673
- "attribute": "type",
1674
- "inheritedFrom": {
1675
- "name": "ButtonBase",
1676
- "module": "src/ButtonBase.js"
1677
- }
1678
- },
1679
- {
1680
- "kind": "field",
1681
- "name": "anchorElement",
1682
- "type": {
1683
- "text": "HTMLAnchorElement"
1684
- },
1685
- "privacy": "private",
1686
- "description": "HTML anchor element that component clicks by proxy",
1687
- "inheritedFrom": {
1688
- "name": "ButtonBase",
1689
- "module": "src/ButtonBase.js"
1690
- }
1691
- },
1692
- {
1693
- "kind": "field",
1694
- "name": "focusElement",
1695
- "type": {
1696
- "text": "HTMLElement"
1697
- },
1698
- "privacy": "public",
1699
- "readonly": true,
1700
- "inheritedFrom": {
1701
- "name": "ButtonBase",
1702
- "module": "src/ButtonBase.js"
1703
- }
1704
- },
1705
- {
1706
- "kind": "field",
1707
- "name": "hasLabel",
1708
- "type": {
1709
- "text": "boolean"
1710
- },
1711
- "privacy": "protected",
1712
- "readonly": true,
1713
- "inheritedFrom": {
1714
- "name": "ButtonBase",
1715
- "module": "src/ButtonBase.js"
1716
- }
1717
- },
1718
- {
1719
- "kind": "field",
1720
- "name": "buttonContent",
1721
- "type": {
1722
- "text": "TemplateResult[]"
1723
- },
1724
- "privacy": "protected",
1725
- "readonly": true,
1726
- "inheritedFrom": {
1727
- "name": "ButtonBase",
1728
- "module": "src/ButtonBase.js"
1729
- }
1730
- },
1731
- {
1732
- "kind": "method",
1733
- "name": "handleClickCapture",
1734
- "privacy": "private",
1735
- "return": {
1736
- "type": {
1737
- "text": "void | boolean"
1738
- }
1739
- },
1740
- "parameters": [
1741
- {
1742
- "name": "event",
1743
- "type": {
1744
- "text": "Event"
1745
- }
1746
- }
1747
- ],
1748
- "inheritedFrom": {
1749
- "name": "ButtonBase",
1750
- "module": "src/ButtonBase.js"
1751
- }
1752
- },
1753
- {
1754
- "kind": "method",
1755
- "name": "proxyFocus",
1756
- "privacy": "private",
1757
- "return": {
1758
- "type": {
1759
- "text": "void"
1760
- }
1761
- },
1762
- "inheritedFrom": {
1763
- "name": "ButtonBase",
1764
- "module": "src/ButtonBase.js"
1765
- }
1766
- },
1767
- {
1768
- "kind": "method",
1769
- "name": "shouldProxyClick",
1770
- "privacy": "private",
1771
- "return": {
1772
- "type": {
1773
- "text": "boolean"
1774
- }
1775
- },
1776
- "parameters": [
1777
- {
1778
- "name": "event",
1779
- "optional": true,
1780
- "type": {
1781
- "text": "MouseEvent"
1782
- }
1783
- }
1784
- ],
1785
- "inheritedFrom": {
1786
- "name": "ButtonBase",
1787
- "module": "src/ButtonBase.js"
1788
- }
1789
- },
1790
- {
1791
- "kind": "method",
1792
- "name": "renderAnchor",
1793
- "privacy": "public",
1794
- "return": {
1795
- "type": {
1796
- "text": "TemplateResult"
1797
- }
1798
- },
1799
- "inheritedFrom": {
1800
- "name": "ButtonBase",
1801
- "module": "src/ButtonBase.js"
1802
- }
1803
- },
1804
- {
1805
- "kind": "method",
1806
- "name": "renderButton",
1807
- "privacy": "protected",
1808
- "return": {
1809
- "type": {
1810
- "text": "TemplateResult"
1811
- }
1812
- },
1813
- "inheritedFrom": {
1814
- "name": "ButtonBase",
1815
- "module": "src/ButtonBase.js"
1816
- }
1817
- },
1818
- {
1819
- "kind": "method",
1820
- "name": "handleKeydown",
1821
- "privacy": "protected",
1822
- "return": {
1823
- "type": {
1824
- "text": "void"
1825
- }
1826
- },
1827
- "parameters": [
1828
- {
1829
- "name": "event",
1830
- "type": {
1831
- "text": "KeyboardEvent"
1832
- }
1833
- }
1834
- ],
1835
- "inheritedFrom": {
1836
- "name": "ButtonBase",
1837
- "module": "src/ButtonBase.js"
1838
- }
1839
- },
1840
- {
1841
- "kind": "method",
1842
- "name": "handleKeypress",
1843
- "privacy": "private",
1844
- "return": {
1845
- "type": {
1846
- "text": "void"
1847
- }
1848
- },
1849
- "parameters": [
1850
- {
1851
- "name": "event",
1852
- "type": {
1853
- "text": "KeyboardEvent"
1854
- }
1855
- }
1856
- ],
1857
- "inheritedFrom": {
1858
- "name": "ButtonBase",
1859
- "module": "src/ButtonBase.js"
1860
- }
1861
- },
1862
- {
1863
- "kind": "method",
1864
- "name": "handleKeyup",
1865
- "privacy": "protected",
1866
- "return": {
1867
- "type": {
1868
- "text": "void"
1869
- }
1870
- },
1871
- "parameters": [
1872
- {
1873
- "name": "event",
1874
- "type": {
1875
- "text": "KeyboardEvent"
1876
- }
1877
- }
1878
- ],
1879
- "inheritedFrom": {
1880
- "name": "ButtonBase",
1881
- "module": "src/ButtonBase.js"
1882
- }
1883
- },
1884
- {
1885
- "kind": "method",
1886
- "name": "manageAnchor",
1887
- "privacy": "private",
1888
- "return": {
1889
- "type": {
1890
- "text": "void"
1891
- }
1892
- },
1893
- "inheritedFrom": {
1894
- "name": "ButtonBase",
1895
- "module": "src/ButtonBase.js"
1896
- }
1897
- }
1898
- ]
1899
- }
1900
- ],
1901
- "exports": [
1902
- {
1903
- "kind": "js",
1904
- "name": "StyledButton",
1905
- "declaration": {
1906
- "name": "StyledButton",
1907
- "module": "src/StyledButton.js"
1908
- }
1909
- }
1910
- ]
1911
- }
1912
- ]
1913
- }