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