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