@instructure/ui-options 11.6.0 → 11.6.1-snapshot-129

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