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