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