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