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