@spectrum-web-components/tabs 0.31.1-overlay.29 → 0.31.1-react.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,903 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-tab-panel.ts",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-tab-panel",
13
+ "declaration": {
14
+ "name": "TabPanel",
15
+ "module": "/src/TabPanel.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "sp-tab.ts",
23
+ "declarations": [],
24
+ "exports": [
25
+ {
26
+ "kind": "custom-element-definition",
27
+ "name": "sp-tab",
28
+ "declaration": {
29
+ "name": "Tab",
30
+ "module": "/src/Tab.js"
31
+ }
32
+ }
33
+ ]
34
+ },
35
+ {
36
+ "kind": "javascript-module",
37
+ "path": "sp-tabs-overflow.ts",
38
+ "declarations": [],
39
+ "exports": [
40
+ {
41
+ "kind": "custom-element-definition",
42
+ "name": "sp-tabs-overflow",
43
+ "declaration": {
44
+ "name": "TabsOverflow",
45
+ "module": "/src/TabsOverflow.js"
46
+ }
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ "kind": "javascript-module",
52
+ "path": "sp-tabs.ts",
53
+ "declarations": [],
54
+ "exports": [
55
+ {
56
+ "kind": "custom-element-definition",
57
+ "name": "sp-tabs",
58
+ "declaration": {
59
+ "name": "Tabs",
60
+ "module": "/src/Tabs.js"
61
+ }
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "kind": "javascript-module",
67
+ "path": "src/Tab.ts",
68
+ "declarations": [
69
+ {
70
+ "kind": "class",
71
+ "description": "",
72
+ "name": "Tab",
73
+ "slots": [
74
+ {
75
+ "description": "text label of the Tab",
76
+ "name": ""
77
+ },
78
+ {
79
+ "description": "The icon that appears on the left of the label",
80
+ "name": "icon"
81
+ }
82
+ ],
83
+ "members": [
84
+ {
85
+ "kind": "field",
86
+ "name": "instanceCount",
87
+ "type": {
88
+ "text": "number"
89
+ },
90
+ "static": true,
91
+ "default": "0",
92
+ "privacy": "private"
93
+ },
94
+ {
95
+ "kind": "field",
96
+ "name": "hasIcon",
97
+ "type": {
98
+ "text": "boolean"
99
+ },
100
+ "privacy": "protected",
101
+ "readonly": true
102
+ },
103
+ {
104
+ "kind": "field",
105
+ "name": "hasLabel",
106
+ "type": {
107
+ "text": "boolean"
108
+ },
109
+ "privacy": "protected",
110
+ "readonly": true
111
+ },
112
+ {
113
+ "kind": "field",
114
+ "name": "disabled",
115
+ "type": {
116
+ "text": "boolean"
117
+ },
118
+ "privacy": "public",
119
+ "default": "false",
120
+ "attribute": "disabled",
121
+ "reflects": true
122
+ },
123
+ {
124
+ "kind": "field",
125
+ "name": "label",
126
+ "type": {
127
+ "text": "string"
128
+ },
129
+ "privacy": "public",
130
+ "default": "''",
131
+ "attribute": "label",
132
+ "reflects": true
133
+ },
134
+ {
135
+ "kind": "field",
136
+ "name": "selected",
137
+ "type": {
138
+ "text": "boolean"
139
+ },
140
+ "privacy": "public",
141
+ "default": "false",
142
+ "attribute": "selected",
143
+ "reflects": true
144
+ },
145
+ {
146
+ "kind": "field",
147
+ "name": "vertical",
148
+ "type": {
149
+ "text": "boolean"
150
+ },
151
+ "privacy": "public",
152
+ "default": "false",
153
+ "attribute": "vertical",
154
+ "reflects": true
155
+ },
156
+ {
157
+ "kind": "field",
158
+ "name": "value",
159
+ "type": {
160
+ "text": "string"
161
+ },
162
+ "privacy": "public",
163
+ "default": "''",
164
+ "attribute": "value",
165
+ "reflects": true
166
+ }
167
+ ],
168
+ "attributes": [
169
+ {
170
+ "name": "disabled",
171
+ "type": {
172
+ "text": "boolean"
173
+ },
174
+ "default": "false",
175
+ "fieldName": "disabled"
176
+ },
177
+ {
178
+ "name": "label",
179
+ "type": {
180
+ "text": "string"
181
+ },
182
+ "default": "''",
183
+ "fieldName": "label"
184
+ },
185
+ {
186
+ "name": "selected",
187
+ "type": {
188
+ "text": "boolean"
189
+ },
190
+ "default": "false",
191
+ "fieldName": "selected"
192
+ },
193
+ {
194
+ "name": "vertical",
195
+ "type": {
196
+ "text": "boolean"
197
+ },
198
+ "default": "false",
199
+ "fieldName": "vertical"
200
+ },
201
+ {
202
+ "name": "value",
203
+ "type": {
204
+ "text": "string"
205
+ },
206
+ "default": "''",
207
+ "fieldName": "value"
208
+ }
209
+ ],
210
+ "mixins": [
211
+ {
212
+ "name": "FocusVisiblePolyfillMixin",
213
+ "package": "@spectrum-web-components/shared"
214
+ },
215
+ {
216
+ "name": "ObserveSlotText",
217
+ "package": "@spectrum-web-components/shared"
218
+ },
219
+ {
220
+ "name": "ObserveSlotPresence",
221
+ "package": "@spectrum-web-components/shared"
222
+ }
223
+ ],
224
+ "superclass": {
225
+ "name": "SpectrumElement",
226
+ "package": "@spectrum-web-components/base"
227
+ },
228
+ "tagName": "sp-tab",
229
+ "customElement": true
230
+ }
231
+ ],
232
+ "exports": [
233
+ {
234
+ "kind": "js",
235
+ "name": "Tab",
236
+ "declaration": {
237
+ "name": "Tab",
238
+ "module": "src/Tab.ts"
239
+ }
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "kind": "javascript-module",
245
+ "path": "src/TabPanel.ts",
246
+ "declarations": [
247
+ {
248
+ "kind": "class",
249
+ "description": "",
250
+ "name": "TabPanel",
251
+ "slots": [
252
+ {
253
+ "description": "content of the Tab Panel",
254
+ "name": ""
255
+ }
256
+ ],
257
+ "members": [
258
+ {
259
+ "kind": "field",
260
+ "name": "instanceCount",
261
+ "type": {
262
+ "text": "number"
263
+ },
264
+ "static": true,
265
+ "default": "0",
266
+ "privacy": "private"
267
+ },
268
+ {
269
+ "kind": "field",
270
+ "name": "selected",
271
+ "type": {
272
+ "text": "boolean"
273
+ },
274
+ "privacy": "public",
275
+ "default": "false",
276
+ "attribute": "selected",
277
+ "reflects": true
278
+ },
279
+ {
280
+ "kind": "field",
281
+ "name": "value",
282
+ "type": {
283
+ "text": "string"
284
+ },
285
+ "privacy": "public",
286
+ "default": "''",
287
+ "attribute": "value",
288
+ "reflects": true
289
+ }
290
+ ],
291
+ "attributes": [
292
+ {
293
+ "name": "selected",
294
+ "type": {
295
+ "text": "boolean"
296
+ },
297
+ "default": "false",
298
+ "fieldName": "selected"
299
+ },
300
+ {
301
+ "name": "value",
302
+ "type": {
303
+ "text": "string"
304
+ },
305
+ "default": "''",
306
+ "fieldName": "value"
307
+ }
308
+ ],
309
+ "superclass": {
310
+ "name": "SpectrumElement",
311
+ "package": "@spectrum-web-components/base"
312
+ },
313
+ "tagName": "sp-tab-panel",
314
+ "customElement": true
315
+ }
316
+ ],
317
+ "exports": [
318
+ {
319
+ "kind": "js",
320
+ "name": "TabPanel",
321
+ "declaration": {
322
+ "name": "TabPanel",
323
+ "module": "src/TabPanel.ts"
324
+ }
325
+ }
326
+ ]
327
+ },
328
+ {
329
+ "kind": "javascript-module",
330
+ "path": "src/Tabs.ts",
331
+ "declarations": [
332
+ {
333
+ "kind": "variable",
334
+ "name": "ScaledIndicator",
335
+ "type": {
336
+ "text": "object"
337
+ },
338
+ "default": "{\n baseSize: 100 as const,\n noSelectionStyle: 'transform: translateX(0px) scaleX(0) scaleY(0)',\n\n transformX(left: number, width: number): string {\n const scale = width / this.baseSize;\n return `transform: translateX(${left}px) scaleX(${scale});`;\n },\n\n transformY(top: number, height: number): string {\n const scale = height / this.baseSize;\n return `transform: translateY(${top}px) scaleY(${scale});`;\n },\n\n baseStyles(): CSSResult {\n return css`\n :host([direction='vertical-right']) #selection-indicator,\n :host([direction='vertical']) #selection-indicator {\n height: ${this.baseSize}px;\n }\n :host([dir][direction='horizontal']) #selection-indicator {\n width: ${this.baseSize}px;\n }\n `;\n },\n}"
339
+ },
340
+ {
341
+ "kind": "class",
342
+ "description": "",
343
+ "name": "Tabs",
344
+ "cssParts": [
345
+ {
346
+ "description": "Container element for the slotted sp-tab elements",
347
+ "name": "tablist"
348
+ }
349
+ ],
350
+ "slots": [
351
+ {
352
+ "description": "Tab elements to manage as a group",
353
+ "name": ""
354
+ },
355
+ {
356
+ "description": "Tab Panel elements related to the listed Tab elements",
357
+ "name": "tab-panel"
358
+ }
359
+ ],
360
+ "members": [
361
+ {
362
+ "kind": "field",
363
+ "name": "auto",
364
+ "type": {
365
+ "text": "boolean"
366
+ },
367
+ "privacy": "public",
368
+ "default": "false",
369
+ "description": "Whether to activate a tab on keyboard focus or not.\n\nBy default a tab is activated via a \"click\" interaction. This is specifically intended for when\ntab content cannot be displayed instantly, e.g. not all of the DOM content is available, etc.\nTo learn more about \"Deciding When to Make Selection Automatically Follow Focus\", visit:\nhttps://w3c.github.io/aria-practices/#kbd_selection_follows_focus",
370
+ "attribute": "auto"
371
+ },
372
+ {
373
+ "kind": "field",
374
+ "name": "compact",
375
+ "type": {
376
+ "text": "boolean"
377
+ },
378
+ "privacy": "public",
379
+ "default": "false",
380
+ "description": "The tab items are displayed closer together.",
381
+ "attribute": "compact",
382
+ "reflects": true
383
+ },
384
+ {
385
+ "kind": "field",
386
+ "name": "dir",
387
+ "type": {
388
+ "text": "'ltr' | 'rtl'"
389
+ },
390
+ "privacy": "public",
391
+ "attribute": "dir",
392
+ "reflects": true
393
+ },
394
+ {
395
+ "kind": "field",
396
+ "name": "direction",
397
+ "type": {
398
+ "text": "'vertical' | 'vertical-right' | 'horizontal'"
399
+ },
400
+ "privacy": "public",
401
+ "default": "'horizontal'",
402
+ "attribute": "direction",
403
+ "reflects": true
404
+ },
405
+ {
406
+ "kind": "field",
407
+ "name": "emphasized",
408
+ "type": {
409
+ "text": "boolean"
410
+ },
411
+ "privacy": "public",
412
+ "default": "false",
413
+ "attribute": "emphasized",
414
+ "reflects": true
415
+ },
416
+ {
417
+ "kind": "field",
418
+ "name": "label",
419
+ "type": {
420
+ "text": "string"
421
+ },
422
+ "privacy": "public",
423
+ "default": "''",
424
+ "attribute": "label"
425
+ },
426
+ {
427
+ "kind": "field",
428
+ "name": "enableTabsScroll",
429
+ "type": {
430
+ "text": "boolean"
431
+ },
432
+ "privacy": "public",
433
+ "default": "false",
434
+ "attribute": "enableTabsScroll"
435
+ },
436
+ {
437
+ "kind": "field",
438
+ "name": "quiet",
439
+ "type": {
440
+ "text": "boolean"
441
+ },
442
+ "privacy": "public",
443
+ "default": "false",
444
+ "description": "The tab list is displayed without a border.",
445
+ "attribute": "quiet",
446
+ "reflects": true
447
+ },
448
+ {
449
+ "kind": "field",
450
+ "name": "selectionIndicatorStyle",
451
+ "privacy": "public"
452
+ },
453
+ {
454
+ "kind": "field",
455
+ "name": "shouldAnimate",
456
+ "type": {
457
+ "text": "boolean"
458
+ },
459
+ "privacy": "public",
460
+ "default": "false"
461
+ },
462
+ {
463
+ "kind": "field",
464
+ "name": "slotEl",
465
+ "type": {
466
+ "text": "HTMLSlotElement"
467
+ },
468
+ "privacy": "private"
469
+ },
470
+ {
471
+ "kind": "field",
472
+ "name": "tabList",
473
+ "type": {
474
+ "text": "HTMLDivElement"
475
+ },
476
+ "privacy": "private"
477
+ },
478
+ {
479
+ "kind": "field",
480
+ "name": "selected",
481
+ "type": {
482
+ "text": "string"
483
+ },
484
+ "default": "''",
485
+ "attribute": "selected",
486
+ "reflects": true
487
+ },
488
+ {
489
+ "kind": "field",
490
+ "name": "tabs",
491
+ "privacy": "private",
492
+ "type": {
493
+ "text": "Tab[]"
494
+ }
495
+ },
496
+ {
497
+ "kind": "field",
498
+ "name": "_tabs",
499
+ "type": {
500
+ "text": "Tab[]"
501
+ },
502
+ "privacy": "private",
503
+ "default": "[]"
504
+ },
505
+ {
506
+ "kind": "field",
507
+ "name": "resizeController",
508
+ "privacy": "protected",
509
+ "default": "new ResizeController(this, {\n callback: () => {\n this.updateSelectionIndicator();\n },\n })"
510
+ },
511
+ {
512
+ "kind": "field",
513
+ "name": "rovingTabindexController",
514
+ "default": "new RovingTabindexController<Tab>(this, {\n focusInIndex: (elements) => {\n let focusInIndex = 0;\n const firstFocusableElement = elements.find((el, index) => {\n const focusInElement = this.selected\n ? !el.disabled && el.value === this.selected\n : !el.disabled;\n focusInIndex = index;\n return focusInElement;\n });\n return firstFocusableElement ? focusInIndex : -1;\n },\n direction: () =>\n this.direction === 'horizontal' ? 'horizontal' : 'vertical',\n elementEnterAction: (el) => {\n if (!this.auto) return;\n\n this.shouldAnimate = true;\n this.selectTarget(el);\n },\n elements: () => this.tabs,\n isFocusableElement: (el) => !el.disabled,\n listenerScope: () => this.tabList,\n })"
515
+ },
516
+ {
517
+ "kind": "field",
518
+ "name": "focusElement",
519
+ "type": {
520
+ "text": "Tab | this"
521
+ },
522
+ "privacy": "private",
523
+ "readonly": true
524
+ },
525
+ {
526
+ "kind": "method",
527
+ "name": "scrollTabs",
528
+ "privacy": "public",
529
+ "return": {
530
+ "type": {
531
+ "text": "void"
532
+ }
533
+ },
534
+ "parameters": [
535
+ {
536
+ "name": "delta",
537
+ "type": {
538
+ "text": "number"
539
+ }
540
+ },
541
+ {
542
+ "name": "behavior",
543
+ "default": "'smooth'",
544
+ "type": {
545
+ "text": "ScrollBehavior"
546
+ }
547
+ }
548
+ ]
549
+ },
550
+ {
551
+ "kind": "field",
552
+ "name": "scrollState",
553
+ "type": {
554
+ "text": "Record<string, boolean>"
555
+ },
556
+ "privacy": "public",
557
+ "readonly": true
558
+ },
559
+ {
560
+ "kind": "method",
561
+ "name": "manageAutoFocus",
562
+ "privacy": "protected",
563
+ "return": {
564
+ "type": {
565
+ "text": "void"
566
+ }
567
+ }
568
+ },
569
+ {
570
+ "kind": "method",
571
+ "name": "managePanels",
572
+ "privacy": "protected",
573
+ "return": {
574
+ "type": {
575
+ "text": "void"
576
+ }
577
+ },
578
+ "parameters": [
579
+ {
580
+ "name": "{\n target,\n }",
581
+ "type": {
582
+ "text": "Event & { target: HTMLSlotElement }"
583
+ }
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "kind": "field",
589
+ "name": "onTabsScroll",
590
+ "privacy": "private"
591
+ },
592
+ {
593
+ "kind": "field",
594
+ "name": "onClick",
595
+ "privacy": "private"
596
+ },
597
+ {
598
+ "kind": "field",
599
+ "name": "onKeyDown",
600
+ "privacy": "private"
601
+ },
602
+ {
603
+ "kind": "method",
604
+ "name": "selectTarget",
605
+ "privacy": "private",
606
+ "return": {
607
+ "type": {
608
+ "text": "void"
609
+ }
610
+ },
611
+ "parameters": [
612
+ {
613
+ "name": "target",
614
+ "type": {
615
+ "text": "HTMLElement"
616
+ }
617
+ }
618
+ ]
619
+ },
620
+ {
621
+ "kind": "method",
622
+ "name": "onSlotChange",
623
+ "privacy": "private",
624
+ "return": {
625
+ "type": {
626
+ "text": "void"
627
+ }
628
+ }
629
+ },
630
+ {
631
+ "kind": "field",
632
+ "name": "updateCheckedState",
633
+ "privacy": "private"
634
+ },
635
+ {
636
+ "kind": "field",
637
+ "name": "updateSelectionIndicator",
638
+ "privacy": "private"
639
+ }
640
+ ],
641
+ "events": [
642
+ {
643
+ "name": "change",
644
+ "type": {
645
+ "text": "Event"
646
+ },
647
+ "description": "The selected Tab child has changed."
648
+ }
649
+ ],
650
+ "attributes": [
651
+ {
652
+ "name": "auto",
653
+ "type": {
654
+ "text": "boolean"
655
+ },
656
+ "default": "false",
657
+ "description": "Whether to activate a tab on keyboard focus or not.\n\nBy default a tab is activated via a \"click\" interaction. This is specifically intended for when\ntab content cannot be displayed instantly, e.g. not all of the DOM content is available, etc.\nTo learn more about \"Deciding When to Make Selection Automatically Follow Focus\", visit:\nhttps://w3c.github.io/aria-practices/#kbd_selection_follows_focus",
658
+ "fieldName": "auto"
659
+ },
660
+ {
661
+ "name": "compact",
662
+ "type": {
663
+ "text": "boolean"
664
+ },
665
+ "default": "false",
666
+ "description": "The tab items are displayed closer together.",
667
+ "fieldName": "compact"
668
+ },
669
+ {
670
+ "name": "dir",
671
+ "type": {
672
+ "text": "'ltr' | 'rtl'"
673
+ },
674
+ "fieldName": "dir"
675
+ },
676
+ {
677
+ "name": "direction",
678
+ "type": {
679
+ "text": "'vertical' | 'vertical-right' | 'horizontal'"
680
+ },
681
+ "default": "'horizontal'",
682
+ "fieldName": "direction"
683
+ },
684
+ {
685
+ "name": "emphasized",
686
+ "type": {
687
+ "text": "boolean"
688
+ },
689
+ "default": "false",
690
+ "fieldName": "emphasized"
691
+ },
692
+ {
693
+ "name": "label",
694
+ "type": {
695
+ "text": "string"
696
+ },
697
+ "default": "''",
698
+ "fieldName": "label"
699
+ },
700
+ {
701
+ "name": "enableTabsScroll",
702
+ "type": {
703
+ "text": "boolean"
704
+ },
705
+ "default": "false",
706
+ "fieldName": "enableTabsScroll"
707
+ },
708
+ {
709
+ "name": "quiet",
710
+ "type": {
711
+ "text": "boolean"
712
+ },
713
+ "default": "false",
714
+ "description": "The tab list is displayed without a border.",
715
+ "fieldName": "quiet"
716
+ },
717
+ {
718
+ "name": "selected",
719
+ "type": {
720
+ "text": "string"
721
+ },
722
+ "default": "''",
723
+ "fieldName": "selected"
724
+ }
725
+ ],
726
+ "mixins": [
727
+ {
728
+ "name": "SizedMixin",
729
+ "package": "@spectrum-web-components/base"
730
+ }
731
+ ],
732
+ "superclass": {
733
+ "name": "Focusable",
734
+ "package": "@spectrum-web-components/shared"
735
+ },
736
+ "tagName": "sp-tabs",
737
+ "customElement": true
738
+ }
739
+ ],
740
+ "exports": [
741
+ {
742
+ "kind": "js",
743
+ "name": "ScaledIndicator",
744
+ "declaration": {
745
+ "name": "ScaledIndicator",
746
+ "module": "src/Tabs.ts"
747
+ }
748
+ },
749
+ {
750
+ "kind": "js",
751
+ "name": "Tabs",
752
+ "declaration": {
753
+ "name": "Tabs",
754
+ "module": "src/Tabs.ts"
755
+ }
756
+ }
757
+ ]
758
+ },
759
+ {
760
+ "kind": "javascript-module",
761
+ "path": "src/TabsOverflow.ts",
762
+ "declarations": [
763
+ {
764
+ "kind": "class",
765
+ "description": "",
766
+ "name": "TabsOverflow",
767
+ "members": [
768
+ {
769
+ "kind": "field",
770
+ "name": "compact",
771
+ "type": {
772
+ "text": "boolean"
773
+ },
774
+ "default": "false",
775
+ "attribute": "compact",
776
+ "reflects": true
777
+ },
778
+ {
779
+ "kind": "field",
780
+ "name": "dir",
781
+ "type": {
782
+ "text": "'ltr' | 'rtl'"
783
+ },
784
+ "privacy": "public",
785
+ "attribute": "dir",
786
+ "reflects": true
787
+ },
788
+ {
789
+ "kind": "field",
790
+ "name": "overflowState",
791
+ "type": {
792
+ "text": "TabsOverflowState"
793
+ },
794
+ "privacy": "private",
795
+ "default": "{\n canScrollLeft: false,\n canScrollRight: false,\n }"
796
+ },
797
+ {
798
+ "kind": "field",
799
+ "name": "scrollContent",
800
+ "type": {
801
+ "text": "Tabs[]"
802
+ },
803
+ "privacy": "private"
804
+ },
805
+ {
806
+ "kind": "field",
807
+ "name": "overflowContainer",
808
+ "type": {
809
+ "text": "HTMLDivElement"
810
+ },
811
+ "privacy": "private"
812
+ },
813
+ {
814
+ "kind": "field",
815
+ "name": "resizeController",
816
+ "type": {
817
+ "text": "ResizeController"
818
+ },
819
+ "default": "new ResizeController(this, {\n target: this,\n callback: (): void => {\n this._updateScrollState();\n },\n })"
820
+ },
821
+ {
822
+ "kind": "method",
823
+ "name": "_handleSlotChange",
824
+ "privacy": "private",
825
+ "return": {
826
+ "type": {
827
+ "text": "Promise<void>"
828
+ }
829
+ }
830
+ },
831
+ {
832
+ "kind": "method",
833
+ "name": "_updateScrollState",
834
+ "privacy": "private",
835
+ "return": {
836
+ "type": {
837
+ "text": "void"
838
+ }
839
+ }
840
+ },
841
+ {
842
+ "kind": "method",
843
+ "name": "_handleScrollClick",
844
+ "privacy": "private",
845
+ "return": {
846
+ "type": {
847
+ "text": "void"
848
+ }
849
+ },
850
+ "parameters": [
851
+ {
852
+ "name": "event",
853
+ "type": {
854
+ "text": "MouseEvent"
855
+ }
856
+ }
857
+ ]
858
+ }
859
+ ],
860
+ "attributes": [
861
+ {
862
+ "name": "compact",
863
+ "type": {
864
+ "text": "boolean"
865
+ },
866
+ "default": "false",
867
+ "fieldName": "compact"
868
+ },
869
+ {
870
+ "name": "dir",
871
+ "type": {
872
+ "text": "'ltr' | 'rtl'"
873
+ },
874
+ "fieldName": "dir"
875
+ }
876
+ ],
877
+ "mixins": [
878
+ {
879
+ "name": "SizedMixin",
880
+ "package": "@spectrum-web-components/base"
881
+ }
882
+ ],
883
+ "superclass": {
884
+ "name": "SpectrumElement",
885
+ "package": "@spectrum-web-components/base"
886
+ },
887
+ "tagName": "sp-tabs-overflow",
888
+ "customElement": true
889
+ }
890
+ ],
891
+ "exports": [
892
+ {
893
+ "kind": "js",
894
+ "name": "TabsOverflow",
895
+ "declaration": {
896
+ "name": "TabsOverflow",
897
+ "module": "src/TabsOverflow.ts"
898
+ }
899
+ }
900
+ ]
901
+ }
902
+ ]
903
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/tabs",
3
- "version": "0.31.1-overlay.29+93d3f11dd",
3
+ "version": "0.31.1-react.21+44f0b1df9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -86,14 +86,14 @@
86
86
  ],
87
87
  "dependencies": {
88
88
  "@lit-labs/observers": "^2.0.0",
89
- "@spectrum-web-components/base": "^0.31.1-overlay.29+93d3f11dd",
90
- "@spectrum-web-components/icon": "^0.31.1-overlay.29+93d3f11dd",
91
- "@spectrum-web-components/icons-ui": "^0.31.1-overlay.29+93d3f11dd",
92
- "@spectrum-web-components/reactive-controllers": "^0.31.1-overlay.29+93d3f11dd",
93
- "@spectrum-web-components/shared": "^0.31.1-overlay.29+93d3f11dd"
89
+ "@spectrum-web-components/base": "^0.31.1-react.21+44f0b1df9",
90
+ "@spectrum-web-components/icon": "^0.31.1-react.21+44f0b1df9",
91
+ "@spectrum-web-components/icons-ui": "^0.31.1-react.21+44f0b1df9",
92
+ "@spectrum-web-components/reactive-controllers": "^0.31.1-react.21+44f0b1df9",
93
+ "@spectrum-web-components/shared": "^0.31.1-react.21+44f0b1df9"
94
94
  },
95
95
  "devDependencies": {
96
- "@spectrum-css/tabs": "^3.2.43"
96
+ "@spectrum-css/tabs": "^3.2.52"
97
97
  },
98
98
  "types": "./src/index.d.ts",
99
99
  "customElements": "custom-elements.json",
@@ -101,5 +101,5 @@
101
101
  "./sp-*.js",
102
102
  "./**/*.dev.js"
103
103
  ],
104
- "gitHead": "93d3f11dde0f578bd1ddcf7fbb78b02916fdfbe0"
104
+ "gitHead": "44f0b1df9e1ea77d9e931629a63918ceee2744c2"
105
105
  }