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