@instructure/ui-progress 11.6.0 → 11.6.1-snapshot-129

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