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