@instructure/ui-tabs 11.6.1-snapshot-0 → 11.6.1-snapshot-130

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 (134) hide show
  1. package/CHANGELOG.md +46 -314
  2. package/es/Tabs/{Panel → v1/Panel}/index.js +2 -2
  3. package/es/Tabs/{Tab → v1/Tab}/index.js +2 -2
  4. package/es/Tabs/{index.js → v1/index.js} +2 -2
  5. package/es/Tabs/v2/Panel/index.js +126 -0
  6. package/es/Tabs/v2/Panel/props.js +26 -0
  7. package/es/Tabs/v2/Panel/styles.js +81 -0
  8. package/es/Tabs/v2/Tab/index.js +118 -0
  9. package/es/Tabs/v2/Tab/props.js +26 -0
  10. package/es/Tabs/v2/Tab/styles.js +145 -0
  11. package/es/Tabs/v2/index.js +396 -0
  12. package/es/Tabs/v2/props.js +26 -0
  13. package/es/Tabs/v2/styles.js +145 -0
  14. package/es/{index.js → exports/a.js} +3 -3
  15. package/es/exports/b.js +26 -0
  16. package/lib/Tabs/v1/Panel/index.js +132 -0
  17. package/lib/Tabs/v1/Tab/index.js +125 -0
  18. package/lib/Tabs/v1/index.js +410 -0
  19. package/lib/Tabs/{Panel → v2/Panel}/index.js +3 -4
  20. package/lib/Tabs/v2/Panel/props.js +31 -0
  21. package/lib/Tabs/v2/Panel/styles.js +87 -0
  22. package/lib/Tabs/{Tab → v2/Tab}/index.js +3 -4
  23. package/lib/Tabs/v2/Tab/props.js +31 -0
  24. package/lib/Tabs/v2/Tab/styles.js +151 -0
  25. package/lib/Tabs/{index.js → v2/index.js} +5 -6
  26. package/lib/Tabs/v2/props.js +31 -0
  27. package/lib/Tabs/v2/styles.js +151 -0
  28. package/lib/{index.js → exports/a.js} +4 -4
  29. package/lib/exports/b.js +26 -0
  30. package/package.json +46 -24
  31. package/src/Tabs/{Panel → v1/Panel}/index.tsx +2 -2
  32. package/src/Tabs/{Tab → v1/Tab}/index.tsx +3 -3
  33. package/src/Tabs/{Tab → v1/Tab}/props.ts +1 -1
  34. package/src/Tabs/{index.tsx → v1/index.tsx} +3 -3
  35. package/src/Tabs/{props.ts → v1/props.ts} +1 -1
  36. package/src/Tabs/v2/Panel/index.tsx +138 -0
  37. package/src/Tabs/v2/Panel/props.ts +100 -0
  38. package/src/Tabs/v2/Panel/styles.ts +92 -0
  39. package/src/Tabs/v2/README.md +559 -0
  40. package/src/Tabs/v2/Tab/index.tsx +123 -0
  41. package/src/Tabs/v2/Tab/props.ts +80 -0
  42. package/src/Tabs/v2/Tab/styles.ts +161 -0
  43. package/src/Tabs/v2/index.tsx +547 -0
  44. package/src/Tabs/v2/props.ts +126 -0
  45. package/src/Tabs/v2/styles.ts +156 -0
  46. package/src/{index.ts → exports/a.ts} +6 -6
  47. package/src/exports/b.ts +31 -0
  48. package/tsconfig.build.tsbuildinfo +1 -1
  49. package/types/Tabs/v1/Panel/index.d.ts.map +1 -0
  50. package/types/Tabs/v1/Panel/props.d.ts.map +1 -0
  51. package/types/Tabs/v1/Panel/styles.d.ts.map +1 -0
  52. package/types/Tabs/v1/Panel/theme.d.ts.map +1 -0
  53. package/types/Tabs/{Tab → v1/Tab}/index.d.ts +1 -1
  54. package/types/Tabs/v1/Tab/index.d.ts.map +1 -0
  55. package/types/Tabs/{Tab → v1/Tab}/props.d.ts +1 -1
  56. package/types/Tabs/v1/Tab/props.d.ts.map +1 -0
  57. package/types/Tabs/v1/Tab/styles.d.ts.map +1 -0
  58. package/types/Tabs/v1/Tab/theme.d.ts.map +1 -0
  59. package/types/Tabs/{index.d.ts → v1/index.d.ts} +1 -1
  60. package/types/Tabs/v1/index.d.ts.map +1 -0
  61. package/types/Tabs/{props.d.ts → v1/props.d.ts} +1 -1
  62. package/types/Tabs/v1/props.d.ts.map +1 -0
  63. package/types/Tabs/v1/styles.d.ts.map +1 -0
  64. package/types/Tabs/v1/theme.d.ts.map +1 -0
  65. package/types/Tabs/v2/Panel/index.d.ts +46 -0
  66. package/types/Tabs/v2/Panel/index.d.ts.map +1 -0
  67. package/types/Tabs/v2/Panel/props.d.ts +46 -0
  68. package/types/Tabs/v2/Panel/props.d.ts.map +1 -0
  69. package/types/Tabs/v2/Panel/styles.d.ts +19 -0
  70. package/types/Tabs/v2/Panel/styles.d.ts.map +1 -0
  71. package/types/Tabs/v2/Tab/index.d.ts +43 -0
  72. package/types/Tabs/v2/Tab/index.d.ts.map +1 -0
  73. package/types/Tabs/v2/Tab/props.d.ts +33 -0
  74. package/types/Tabs/v2/Tab/props.d.ts.map +1 -0
  75. package/types/Tabs/v2/Tab/styles.d.ts +20 -0
  76. package/types/Tabs/v2/Tab/styles.d.ts.map +1 -0
  77. package/types/Tabs/v2/index.d.ts +80 -0
  78. package/types/Tabs/v2/index.d.ts.map +1 -0
  79. package/types/Tabs/v2/props.d.ts +68 -0
  80. package/types/Tabs/v2/props.d.ts.map +1 -0
  81. package/types/Tabs/v2/styles.d.ts +19 -0
  82. package/types/Tabs/v2/styles.d.ts.map +1 -0
  83. package/types/exports/a.d.ts +7 -0
  84. package/types/exports/a.d.ts.map +1 -0
  85. package/types/exports/b.d.ts +7 -0
  86. package/types/exports/b.d.ts.map +1 -0
  87. package/types/Tabs/Panel/index.d.ts.map +0 -1
  88. package/types/Tabs/Panel/props.d.ts.map +0 -1
  89. package/types/Tabs/Panel/styles.d.ts.map +0 -1
  90. package/types/Tabs/Panel/theme.d.ts.map +0 -1
  91. package/types/Tabs/Tab/index.d.ts.map +0 -1
  92. package/types/Tabs/Tab/props.d.ts.map +0 -1
  93. package/types/Tabs/Tab/styles.d.ts.map +0 -1
  94. package/types/Tabs/Tab/theme.d.ts.map +0 -1
  95. package/types/Tabs/index.d.ts.map +0 -1
  96. package/types/Tabs/props.d.ts.map +0 -1
  97. package/types/Tabs/styles.d.ts.map +0 -1
  98. package/types/Tabs/theme.d.ts.map +0 -1
  99. package/types/index.d.ts +0 -7
  100. package/types/index.d.ts.map +0 -1
  101. /package/es/Tabs/{Panel → v1/Panel}/props.js +0 -0
  102. /package/es/Tabs/{Panel → v1/Panel}/styles.js +0 -0
  103. /package/es/Tabs/{Panel → v1/Panel}/theme.js +0 -0
  104. /package/es/Tabs/{Tab → v1/Tab}/props.js +0 -0
  105. /package/es/Tabs/{Tab → v1/Tab}/styles.js +0 -0
  106. /package/es/Tabs/{Tab → v1/Tab}/theme.js +0 -0
  107. /package/es/Tabs/{props.js → v1/props.js} +0 -0
  108. /package/es/Tabs/{styles.js → v1/styles.js} +0 -0
  109. /package/es/Tabs/{theme.js → v1/theme.js} +0 -0
  110. /package/lib/Tabs/{Panel → v1/Panel}/props.js +0 -0
  111. /package/lib/Tabs/{Panel → v1/Panel}/styles.js +0 -0
  112. /package/lib/Tabs/{Panel → v1/Panel}/theme.js +0 -0
  113. /package/lib/Tabs/{Tab → v1/Tab}/props.js +0 -0
  114. /package/lib/Tabs/{Tab → v1/Tab}/styles.js +0 -0
  115. /package/lib/Tabs/{Tab → v1/Tab}/theme.js +0 -0
  116. /package/lib/Tabs/{props.js → v1/props.js} +0 -0
  117. /package/lib/Tabs/{styles.js → v1/styles.js} +0 -0
  118. /package/lib/Tabs/{theme.js → v1/theme.js} +0 -0
  119. /package/src/Tabs/{Panel → v1/Panel}/props.ts +0 -0
  120. /package/src/Tabs/{Panel → v1/Panel}/styles.ts +0 -0
  121. /package/src/Tabs/{Panel → v1/Panel}/theme.ts +0 -0
  122. /package/src/Tabs/{README.md → v1/README.md} +0 -0
  123. /package/src/Tabs/{Tab → v1/Tab}/styles.ts +0 -0
  124. /package/src/Tabs/{Tab → v1/Tab}/theme.ts +0 -0
  125. /package/src/Tabs/{styles.ts → v1/styles.ts} +0 -0
  126. /package/src/Tabs/{theme.ts → v1/theme.ts} +0 -0
  127. /package/types/Tabs/{Panel → v1/Panel}/index.d.ts +0 -0
  128. /package/types/Tabs/{Panel → v1/Panel}/props.d.ts +0 -0
  129. /package/types/Tabs/{Panel → v1/Panel}/styles.d.ts +0 -0
  130. /package/types/Tabs/{Panel → v1/Panel}/theme.d.ts +0 -0
  131. /package/types/Tabs/{Tab → v1/Tab}/styles.d.ts +0 -0
  132. /package/types/Tabs/{Tab → v1/Tab}/theme.d.ts +0 -0
  133. /package/types/Tabs/{styles.d.ts → v1/styles.d.ts} +0 -0
  134. /package/types/Tabs/{theme.d.ts → v1/theme.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,617 +3,349 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [11.6.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-0) (2026-02-24)
6
+ ## [11.6.1-snapshot-130](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-130) (2026-03-16)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-tabs
9
8
 
9
+ ### Bug Fixes
10
10
 
11
+ * **ui-many:** fix imports of the multiversion support ([ff5f2b3](https://github.com/instructure/instructure-ui/commit/ff5f2b38660ddae432edd32b98eedae586589977))
11
12
 
12
13
 
14
+ ### Features
13
15
 
14
- # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
16
+ * **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
17
+ * **many:** refactor theme parser and implement tray and tabs ([ef28373](https://github.com/instructure/instructure-ui/commit/ef283736fd76fbdcc674854916b298c199f8df50))
15
18
 
16
- **Note:** Version bump only for package @instructure/ui-tabs
17
19
 
18
20
 
19
21
 
20
22
 
21
-
22
- # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
23
+ # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
23
24
 
24
25
  **Note:** Version bump only for package @instructure/ui-tabs
25
26
 
27
+ # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
26
28
 
27
-
28
-
29
+ **Note:** Version bump only for package @instructure/ui-tabs
29
30
 
30
31
  # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
31
32
 
32
33
  **Note:** Version bump only for package @instructure/ui-tabs
33
34
 
34
-
35
-
36
-
37
-
38
35
  # [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
39
36
 
40
-
41
37
  ### Features
42
38
 
43
- * **ui-tabs:** add tabIndex prop to the Panel for WCAG-compliant focus control (defaults to 0 for backward compatibility) ([9b2121f](https://github.com/instructure/instructure-ui/commit/9b2121f3e0f5fb0abf4ad12158f9972aa1acc5a4))
44
-
45
-
46
-
47
-
39
+ - **ui-tabs:** add tabIndex prop to the Panel for WCAG-compliant focus control (defaults to 0 for backward compatibility) ([9b2121f](https://github.com/instructure/instructure-ui/commit/9b2121f3e0f5fb0abf4ad12158f9972aa1acc5a4))
48
40
 
49
41
  # [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
50
42
 
51
-
52
43
  ### Bug Fixes
53
44
 
54
- * fix themes for subcomponents displaying wrong in the docs app ([d0d821e](https://github.com/instructure/instructure-ui/commit/d0d821edbc9eb90b3a1217b20d412e1a86a93fd7))
55
-
45
+ - fix themes for subcomponents displaying wrong in the docs app ([d0d821e](https://github.com/instructure/instructure-ui/commit/d0d821edbc9eb90b3a1217b20d412e1a86a93fd7))
56
46
 
57
47
  ### Features
58
48
 
59
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
60
-
61
-
62
-
63
-
49
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
64
50
 
65
51
  # [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
66
52
 
67
-
68
53
  ### Bug Fixes
69
54
 
70
- * fix themes for subcomponents displaying wrong in the docs app ([d0d821e](https://github.com/instructure/instructure-ui/commit/d0d821edbc9eb90b3a1217b20d412e1a86a93fd7))
71
-
55
+ - fix themes for subcomponents displaying wrong in the docs app ([d0d821e](https://github.com/instructure/instructure-ui/commit/d0d821edbc9eb90b3a1217b20d412e1a86a93fd7))
72
56
 
73
57
  ### Features
74
58
 
75
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
76
-
77
-
78
-
79
-
59
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
80
60
 
81
61
  ## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
82
62
 
83
63
  **Note:** Version bump only for package @instructure/ui-tabs
84
64
 
85
-
86
-
87
-
88
-
89
65
  # [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
90
66
 
91
-
92
67
  ### Features
93
68
 
94
- * **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
95
-
69
+ - **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
96
70
 
97
71
  ### BREAKING CHANGES
98
72
 
99
- * **many:** InstUI v11 contains the following breaking changes:
100
- - React 16 and 17 are no longer supported
101
- - remove `PropTypes` from all packages
102
- - remove `CodeEditor` component
103
- - remove `@instui/theme-registry` package
104
- - remove `@testable`, `@experimental`, `@hack` decorators
105
- - InstUISettingsProvider's `as` prop is removed
106
- - `canvas.use()`, `canvasHighContrast.use()` functions are removed
107
- - `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
108
- - `variables` field on theme objects are removed
109
- - remove deprecated props from Table: Row's `isStacked`, Body's
73
+ - **many:** InstUI v11 contains the following breaking changes:
74
+
75
+ * React 16 and 17 are no longer supported
76
+ * remove `PropTypes` from all packages
77
+ * remove `CodeEditor` component
78
+ * remove `@instui/theme-registry` package
79
+ * remove `@testable`, `@experimental`, `@hack` decorators
80
+ * InstUISettingsProvider's `as` prop is removed
81
+ * `canvas.use()`, `canvasHighContrast.use()` functions are removed
82
+ * `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
83
+ * `variables` field on theme objects are removed
84
+ * remove deprecated props from Table: Row's `isStacked`, Body's
110
85
  `isStacked`, `hover`, and `headers`
111
- - `Table`'s `caption` prop is now required
112
- - `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
113
-
114
-
115
-
116
-
86
+ * `Table`'s `caption` prop is now required
87
+ * `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
117
88
 
118
89
  # [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
119
90
 
120
91
  **Note:** Version bump only for package @instructure/ui-tabs
121
92
 
122
-
123
-
124
-
125
-
126
93
  # [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
127
94
 
128
-
129
95
  ### Bug Fixes
130
96
 
131
- * **ui-tabs,shared-types:** color tabs.panel focus outline from the theme and make it overridable by brand overrides ([b4f9893](https://github.com/instructure/instructure-ui/commit/b4f989343019620c2a25275eab7beba21230b158))
132
-
133
-
134
-
135
-
97
+ - **ui-tabs,shared-types:** color tabs.panel focus outline from the theme and make it overridable by brand overrides ([b4f9893](https://github.com/instructure/instructure-ui/commit/b4f989343019620c2a25275eab7beba21230b158))
136
98
 
137
99
  ## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
138
100
 
139
101
  **Note:** Version bump only for package @instructure/ui-tabs
140
102
 
141
-
142
-
143
-
144
-
145
103
  ## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
146
104
 
147
105
  **Note:** Version bump only for package @instructure/ui-tabs
148
106
 
149
-
150
-
151
-
152
-
153
107
  # [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
154
108
 
155
109
  **Note:** Version bump only for package @instructure/ui-tabs
156
110
 
157
-
158
-
159
-
160
-
161
111
  # [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
162
112
 
163
113
  **Note:** Version bump only for package @instructure/ui-tabs
164
114
 
165
-
166
-
167
-
168
-
169
115
  # [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
170
116
 
171
117
  **Note:** Version bump only for package @instructure/ui-tabs
172
118
 
173
-
174
-
175
-
176
-
177
119
  # [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
178
120
 
179
-
180
121
  ### Bug Fixes
181
122
 
182
- * **ui-tabs:** fix bottom border of Tab with scrolling overflow in secondary variant ([dabd148](https://github.com/instructure/instructure-ui/commit/dabd14809ce6372b2605aea6edb6ea1a58c86b13))
183
-
184
-
185
-
186
-
123
+ - **ui-tabs:** fix bottom border of Tab with scrolling overflow in secondary variant ([dabd148](https://github.com/instructure/instructure-ui/commit/dabd14809ce6372b2605aea6edb6ea1a58c86b13))
187
124
 
188
125
  ## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
189
126
 
190
127
  **Note:** Version bump only for package @instructure/ui-tabs
191
128
 
192
-
193
-
194
-
195
-
196
129
  # [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
197
130
 
198
-
199
131
  ### Bug Fixes
200
132
 
201
- * **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
202
-
203
-
204
-
205
-
133
+ - **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
206
134
 
207
135
  ## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
208
136
 
209
137
  **Note:** Version bump only for package @instructure/ui-tabs
210
138
 
211
-
212
-
213
-
214
-
215
139
  # [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
216
140
 
217
-
218
141
  ### Bug Fixes
219
142
 
220
- * **many:** fix "not a valid selector" exception when an option ID contains quotes ([78e0b96](https://github.com/instructure/instructure-ui/commit/78e0b96edf29f3d476ba30b03134f1726bbdd0f4))
221
-
222
-
223
-
224
-
143
+ - **many:** fix "not a valid selector" exception when an option ID contains quotes ([78e0b96](https://github.com/instructure/instructure-ui/commit/78e0b96edf29f3d476ba30b03134f1726bbdd0f4))
225
144
 
226
145
  ## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
227
146
 
228
-
229
147
  ### Bug Fixes
230
148
 
231
- * **ui-tabs:** remove scrollbar from tabs ([7c4e5be](https://github.com/instructure/instructure-ui/commit/7c4e5bedba8c1e9d1972eb702ccacb60c34eb513))
232
-
233
-
234
-
235
-
149
+ - **ui-tabs:** remove scrollbar from tabs ([7c4e5be](https://github.com/instructure/instructure-ui/commit/7c4e5bedba8c1e9d1972eb702ccacb60c34eb513))
236
150
 
237
151
  # [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
238
152
 
239
153
  **Note:** Version bump only for package @instructure/ui-tabs
240
154
 
241
-
242
-
243
-
244
-
245
155
  # [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
246
156
 
247
157
  **Note:** Version bump only for package @instructure/ui-tabs
248
158
 
249
-
250
-
251
-
252
-
253
159
  ## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
254
160
 
255
161
  **Note:** Version bump only for package @instructure/ui-tabs
256
162
 
257
-
258
-
259
-
260
-
261
163
  ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
262
164
 
263
165
  **Note:** Version bump only for package @instructure/ui-tabs
264
166
 
265
-
266
-
267
-
268
-
269
167
  ## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
270
168
 
271
169
  **Note:** Version bump only for package @instructure/ui-tabs
272
170
 
273
-
274
-
275
-
276
-
277
171
  ## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
278
172
 
279
173
  **Note:** Version bump only for package @instructure/ui-tabs
280
174
 
281
-
282
-
283
-
284
-
285
175
  # [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
286
176
 
287
177
  **Note:** Version bump only for package @instructure/ui-tabs
288
178
 
289
-
290
-
291
-
292
-
293
179
  ## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
294
180
 
295
-
296
181
  ### Bug Fixes
297
182
 
298
- * update PropTypes to align with the new spacing tokens ([223d55b](https://github.com/instructure/instructure-ui/commit/223d55bad95e2a3a8b298d622e5b1d0fbab6b289))
299
-
300
-
301
-
302
-
183
+ - update PropTypes to align with the new spacing tokens ([223d55b](https://github.com/instructure/instructure-ui/commit/223d55bad95e2a3a8b298d622e5b1d0fbab6b289))
303
184
 
304
185
  ## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
305
186
 
306
187
  **Note:** Version bump only for package @instructure/ui-tabs
307
188
 
308
-
309
-
310
-
311
-
312
189
  # [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
313
190
 
314
191
  **Note:** Version bump only for package @instructure/ui-tabs
315
192
 
316
-
317
-
318
-
319
-
320
193
  # [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
321
194
 
322
195
  **Note:** Version bump only for package @instructure/ui-tabs
323
196
 
324
-
325
-
326
-
327
-
328
197
  # [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
329
198
 
330
199
  **Note:** Version bump only for package @instructure/ui-tabs
331
200
 
332
-
333
-
334
-
335
-
336
201
  # [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
337
202
 
338
203
  **Note:** Version bump only for package @instructure/ui-tabs
339
204
 
340
-
341
-
342
-
343
-
344
205
  # [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
345
206
 
346
207
  **Note:** Version bump only for package @instructure/ui-tabs
347
208
 
348
-
349
-
350
-
351
-
352
209
  # [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
353
210
 
354
211
  **Note:** Version bump only for package @instructure/ui-tabs
355
212
 
356
-
357
-
358
-
359
-
360
213
  # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
361
214
 
362
-
363
215
  ### Features
364
216
 
365
- * **many:** make meta package export every component and type definition ([dee9abb](https://github.com/instructure/instructure-ui/commit/dee9abb9cbffa4abc9edf48fb7d8ad41fea385b4))
366
-
367
-
368
-
369
-
217
+ - **many:** make meta package export every component and type definition ([dee9abb](https://github.com/instructure/instructure-ui/commit/dee9abb9cbffa4abc9edf48fb7d8ad41fea385b4))
370
218
 
371
219
  # [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
372
220
 
373
221
  **Note:** Version bump only for package @instructure/ui-tabs
374
222
 
375
-
376
-
377
-
378
-
379
223
  # [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
380
224
 
381
225
  **Note:** Version bump only for package @instructure/ui-tabs
382
226
 
383
-
384
-
385
-
386
-
387
227
  ## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
388
228
 
389
229
  **Note:** Version bump only for package @instructure/ui-tabs
390
230
 
391
-
392
-
393
-
394
-
395
231
  # [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
396
232
 
397
-
398
233
  ### Bug Fixes
399
234
 
400
- * **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
401
-
402
-
403
-
404
-
235
+ - **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
405
236
 
406
237
  # [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
407
238
 
408
-
409
239
  ### Bug Fixes
410
240
 
411
- * **ui-tabs:** tabpanel content is not accessible with keyboard navigation when it does not have focusable element ([297cd03](https://github.com/instructure/instructure-ui/commit/297cd039228cda5bf742f3c0ca5d1cbf6a253893))
412
-
413
-
414
-
415
-
241
+ - **ui-tabs:** tabpanel content is not accessible with keyboard navigation when it does not have focusable element ([297cd03](https://github.com/instructure/instructure-ui/commit/297cd039228cda5bf742f3c0ca5d1cbf6a253893))
416
242
 
417
243
  ## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
418
244
 
419
-
420
245
  ### Bug Fixes
421
246
 
422
- * docs screenreader alerts are no longer screendeader focusable ([c225853](https://github.com/instructure/instructure-ui/commit/c2258531aa377b698fe932012112704f1879b501))
423
- * update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
424
-
425
-
426
-
427
-
247
+ - docs screenreader alerts are no longer screendeader focusable ([c225853](https://github.com/instructure/instructure-ui/commit/c2258531aa377b698fe932012112704f1879b501))
248
+ - update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
428
249
 
429
250
  # [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
430
251
 
431
252
  **Note:** Version bump only for package @instructure/ui-tabs
432
253
 
433
-
434
-
435
-
436
-
437
254
  # [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
438
255
 
439
256
  **Note:** Version bump only for package @instructure/ui-tabs
440
257
 
441
-
442
-
443
-
444
-
445
258
  ## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
446
259
 
447
260
  **Note:** Version bump only for package @instructure/ui-tabs
448
261
 
449
-
450
-
451
-
452
-
453
262
  ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
454
263
 
455
264
  **Note:** Version bump only for package @instructure/ui-tabs
456
265
 
457
-
458
-
459
-
460
-
461
266
  # [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
462
267
 
463
268
  **Note:** Version bump only for package @instructure/ui-tabs
464
269
 
465
-
466
-
467
-
468
-
469
270
  # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
470
271
 
471
272
  **Note:** Version bump only for package @instructure/ui-tabs
472
273
 
473
-
474
-
475
-
476
-
477
274
  # [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
478
275
 
479
-
480
276
  ### Features
481
277
 
482
- * **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
483
-
278
+ - **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
484
279
 
485
280
  ### BREAKING CHANGES
486
281
 
487
- * **many:** Breaks color overrides in certain cases
488
-
489
-
490
-
491
-
282
+ - **many:** Breaks color overrides in certain cases
492
283
 
493
284
  ## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
494
285
 
495
286
  **Note:** Version bump only for package @instructure/ui-tabs
496
287
 
497
-
498
-
499
-
500
-
501
288
  # [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
502
289
 
503
290
  **Note:** Version bump only for package @instructure/ui-tabs
504
291
 
505
-
506
-
507
-
508
-
509
292
  # [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
510
293
 
511
294
  **Note:** Version bump only for package @instructure/ui-tabs
512
295
 
513
-
514
-
515
-
516
-
517
296
  # [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
518
297
 
519
298
  **Note:** Version bump only for package @instructure/ui-tabs
520
299
 
521
-
522
-
523
-
524
-
525
300
  # [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
526
301
 
527
302
  **Note:** Version bump only for package @instructure/ui-tabs
528
303
 
529
-
530
-
531
-
532
-
533
304
  # [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
534
305
 
535
-
536
306
  ### Bug Fixes
537
307
 
538
- * **ui-tabs:** fix horizontal scrolling with keyboard navigation ([a25c7db](https://github.com/instructure/instructure-ui/commit/a25c7db1ebede622f489dd65872ed8fc5a1b9651))
539
- * **ui-tabs:** fix id generation when null is present as children ([85765ae](https://github.com/instructure/instructure-ui/commit/85765ae3183ac121714cd814a322dcc012ed2f72))
540
-
308
+ - **ui-tabs:** fix horizontal scrolling with keyboard navigation ([a25c7db](https://github.com/instructure/instructure-ui/commit/a25c7db1ebede622f489dd65872ed8fc5a1b9651))
309
+ - **ui-tabs:** fix id generation when null is present as children ([85765ae](https://github.com/instructure/instructure-ui/commit/85765ae3183ac121714cd814a322dcc012ed2f72))
541
310
 
542
311
  ### Features
543
312
 
544
- * **ui-tabs:** add option for persisting tabpanels ([6fe73a3](https://github.com/instructure/instructure-ui/commit/6fe73a3ec76c88fcc7baf2f587276de595316dbc))
545
-
546
-
547
-
548
-
313
+ - **ui-tabs:** add option for persisting tabpanels ([6fe73a3](https://github.com/instructure/instructure-ui/commit/6fe73a3ec76c88fcc7baf2f587276de595316dbc))
549
314
 
550
315
  ## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
551
316
 
552
317
  **Note:** Version bump only for package @instructure/ui-tabs
553
318
 
554
-
555
-
556
-
557
-
558
319
  # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
559
320
 
560
321
  **Note:** Version bump only for package @instructure/ui-tabs
561
322
 
562
-
563
-
564
-
565
-
566
323
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
567
324
 
568
325
  **Note:** Version bump only for package @instructure/ui-tabs
569
326
 
570
-
571
-
572
-
573
-
574
327
  ## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
575
328
 
576
329
  **Note:** Version bump only for package @instructure/ui-tabs
577
330
 
578
-
579
-
580
-
581
-
582
331
  # [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
583
332
 
584
-
585
333
  ### Bug Fixes
586
334
 
587
- * **ui-tabs:** fix automatic id generation ([4645981](https://github.com/instructure/instructure-ui/commit/464598168ff9a2fd76fe2e02a8bc7b89f9c1f68f))
588
-
589
-
590
-
591
-
335
+ - **ui-tabs:** fix automatic id generation ([4645981](https://github.com/instructure/instructure-ui/commit/464598168ff9a2fd76fe2e02a8bc7b89f9c1f68f))
592
336
 
593
337
  # [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
594
338
 
595
339
  **Note:** Version bump only for package @instructure/ui-tabs
596
340
 
597
-
598
-
599
-
600
-
601
341
  ## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
602
342
 
603
343
  **Note:** Version bump only for package @instructure/ui-tabs
604
344
 
605
-
606
-
607
-
608
-
609
345
  ## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
610
346
 
611
347
  **Note:** Version bump only for package @instructure/ui-tabs
612
348
 
613
-
614
-
615
-
616
-
617
349
  # [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
618
350
 
619
351
  **Note:** Version bump only for package @instructure/ui-tabs
@@ -26,10 +26,10 @@ var _dec, _class, _Panel;
26
26
  */
27
27
 
28
28
  import { Component } from 'react';
29
- import { View } from '@instructure/ui-view';
29
+ import { View } from '@instructure/ui-view/v11_6';
30
30
  import { passthroughProps } from '@instructure/ui-react-utils';
31
31
  import { Transition } from '@instructure/ui-motion';
32
- import { withStyle } from '@instructure/emotion';
32
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
33
33
  import generateStyle from "./styles.js";
34
34
  import generateComponentTheme from "./theme.js";
35
35
  import { allowedProps } from "./props.js";
@@ -27,8 +27,8 @@ var _dec, _class, _Tab;
27
27
 
28
28
  import { Component } from 'react';
29
29
  import { passthroughProps, callRenderProp } from '@instructure/ui-react-utils';
30
- import { View } from '@instructure/ui-view';
31
- import { withStyle } from '@instructure/emotion';
30
+ import { View } from '@instructure/ui-view/v11_6';
31
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
32
32
  import generateStyle from "./styles.js";
33
33
  import generateComponentTheme from "./theme.js";
34
34
  import { allowedProps } from "./props.js";