@instructure/ui-number-input 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 (56) hide show
  1. package/CHANGELOG.md +40 -299
  2. package/es/NumberInput/{index.js → v1/index.js} +2 -2
  3. package/es/NumberInput/v2/index.js +292 -0
  4. package/es/NumberInput/v2/props.js +26 -0
  5. package/es/NumberInput/v2/styles.js +208 -0
  6. package/es/{index.js → exports/a.js} +1 -1
  7. package/{src/index.ts → es/exports/b.js} +1 -2
  8. package/lib/NumberInput/{index.js → v1/index.js} +7 -7
  9. package/lib/NumberInput/v2/index.js +301 -0
  10. package/lib/NumberInput/v2/props.js +31 -0
  11. package/lib/NumberInput/v2/styles.js +214 -0
  12. package/lib/{index.js → exports/a.js} +2 -2
  13. package/lib/exports/b.js +12 -0
  14. package/package.json +41 -19
  15. package/src/NumberInput/{index.tsx → v1/index.tsx} +2 -2
  16. package/src/NumberInput/{props.ts → v1/props.ts} +4 -1
  17. package/src/NumberInput/v2/README.md +205 -0
  18. package/src/NumberInput/v2/index.tsx +382 -0
  19. package/src/NumberInput/v2/props.ts +240 -0
  20. package/src/NumberInput/v2/styles.ts +219 -0
  21. package/src/exports/a.ts +25 -0
  22. package/src/exports/b.ts +25 -0
  23. package/tsconfig.build.tsbuildinfo +1 -1
  24. package/types/NumberInput/{index.d.ts → v1/index.d.ts} +1 -1
  25. package/types/NumberInput/v1/index.d.ts.map +1 -0
  26. package/types/NumberInput/{props.d.ts → v1/props.d.ts} +1 -1
  27. package/types/NumberInput/v1/props.d.ts.map +1 -0
  28. package/types/NumberInput/v1/styles.d.ts.map +1 -0
  29. package/types/NumberInput/v1/theme.d.ts.map +1 -0
  30. package/types/NumberInput/v2/index.d.ts +104 -0
  31. package/types/NumberInput/v2/index.d.ts.map +1 -0
  32. package/types/NumberInput/v2/props.d.ts +127 -0
  33. package/types/NumberInput/v2/props.d.ts.map +1 -0
  34. package/types/NumberInput/v2/styles.d.ts +22 -0
  35. package/types/NumberInput/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/NumberInput/index.d.ts.map +0 -1
  41. package/types/NumberInput/props.d.ts.map +0 -1
  42. package/types/NumberInput/styles.d.ts.map +0 -1
  43. package/types/NumberInput/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/NumberInput/{props.js → v1/props.js} +0 -0
  47. /package/es/NumberInput/{styles.js → v1/styles.js} +0 -0
  48. /package/es/NumberInput/{theme.js → v1/theme.js} +0 -0
  49. /package/lib/NumberInput/{props.js → v1/props.js} +0 -0
  50. /package/lib/NumberInput/{styles.js → v1/styles.js} +0 -0
  51. /package/lib/NumberInput/{theme.js → v1/theme.js} +0 -0
  52. /package/src/NumberInput/{README.md → v1/README.md} +0 -0
  53. /package/src/NumberInput/{styles.ts → v1/styles.ts} +0 -0
  54. /package/src/NumberInput/{theme.ts → v1/theme.ts} +0 -0
  55. /package/types/NumberInput/{styles.d.ts → v1/styles.d.ts} +0 -0
  56. /package/types/NumberInput/{theme.d.ts → v1/theme.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,589 +3,330 @@
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-number-input
9
8
 
9
+ ### Features
10
10
 
11
+ * **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
12
+ * **many:** rework TextArea and dependent FormField components ([0f8c438](https://github.com/instructure/instructure-ui/commit/0f8c43803e3458bbf7b2dd266a9e246cb89b0d3c))
13
+ * **ui-number-input:** rewrite NumberInput to the new theming system ([500d4bc](https://github.com/instructure/instructure-ui/commit/500d4bc03037c2cc60bf83cd1e84b878bef87535))
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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-number-input
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
105
  **Note:** Version bump only for package @instructure/ui-number-input
156
106
 
157
-
158
-
159
-
160
-
161
107
  ## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
162
108
 
163
109
  **Note:** Version bump only for package @instructure/ui-number-input
164
110
 
165
-
166
-
167
-
168
-
169
111
  # [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
170
112
 
171
-
172
113
  ### Bug Fixes
173
114
 
174
- * **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
175
-
176
-
177
-
178
-
115
+ - **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
179
116
 
180
117
  ## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
181
118
 
182
119
  **Note:** Version bump only for package @instructure/ui-number-input
183
120
 
184
-
185
-
186
-
187
-
188
121
  # [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
189
122
 
190
123
  **Note:** Version bump only for package @instructure/ui-number-input
191
124
 
192
-
193
-
194
-
195
-
196
125
  ## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
197
126
 
198
127
  **Note:** Version bump only for package @instructure/ui-number-input
199
128
 
200
-
201
-
202
-
203
-
204
129
  # [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
205
130
 
206
131
  **Note:** Version bump only for package @instructure/ui-number-input
207
132
 
208
-
209
-
210
-
211
-
212
133
  # [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
213
134
 
214
135
  **Note:** Version bump only for package @instructure/ui-number-input
215
136
 
216
-
217
-
218
-
219
-
220
137
  ## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
221
138
 
222
139
  **Note:** Version bump only for package @instructure/ui-number-input
223
140
 
224
-
225
-
226
-
227
-
228
141
  ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
229
142
 
230
143
  **Note:** Version bump only for package @instructure/ui-number-input
231
144
 
232
-
233
-
234
-
235
-
236
145
  ## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
237
146
 
238
147
  **Note:** Version bump only for package @instructure/ui-number-input
239
148
 
240
-
241
-
242
-
243
-
244
149
  ## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
245
150
 
246
151
  **Note:** Version bump only for package @instructure/ui-number-input
247
152
 
248
-
249
-
250
-
251
-
252
153
  # [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
253
154
 
254
-
255
155
  ### Bug Fixes
256
156
 
257
- * **ui-buttons:** fix button border color ([5322f9c](https://github.com/instructure/instructure-ui/commit/5322f9c8d359a394e0ea4caa5dbab982169edddf))
258
-
259
-
260
-
261
-
157
+ - **ui-buttons:** fix button border color ([5322f9c](https://github.com/instructure/instructure-ui/commit/5322f9c8d359a394e0ea4caa5dbab982169edddf))
262
158
 
263
159
  ## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
264
160
 
265
161
  **Note:** Version bump only for package @instructure/ui-number-input
266
162
 
267
-
268
-
269
-
270
-
271
163
  ## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
272
164
 
273
165
  **Note:** Version bump only for package @instructure/ui-number-input
274
166
 
275
-
276
-
277
-
278
-
279
167
  # [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
280
168
 
281
169
  **Note:** Version bump only for package @instructure/ui-number-input
282
170
 
283
-
284
-
285
-
286
-
287
171
  # [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
288
172
 
289
173
  **Note:** Version bump only for package @instructure/ui-number-input
290
174
 
291
-
292
-
293
-
294
-
295
175
  # [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
296
176
 
297
-
298
177
  ### Bug Fixes
299
178
 
300
- * **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
301
-
302
-
303
-
304
-
179
+ - **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
305
180
 
306
181
  # [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
307
182
 
308
-
309
183
  ### Features
310
184
 
311
- * **many:** introduce new spacing tokens; add margin prop for more components ([048c902](https://github.com/instructure/instructure-ui/commit/048c902406c00611cd117fb2fb8164a6eba62fb8))
312
-
313
-
314
-
315
-
185
+ - **many:** introduce new spacing tokens; add margin prop for more components ([048c902](https://github.com/instructure/instructure-ui/commit/048c902406c00611cd117fb2fb8164a6eba62fb8))
316
186
 
317
187
  # [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
318
188
 
319
189
  **Note:** Version bump only for package @instructure/ui-number-input
320
190
 
321
-
322
-
323
-
324
-
325
191
  # [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
326
192
 
327
193
  **Note:** Version bump only for package @instructure/ui-number-input
328
194
 
329
-
330
-
331
-
332
-
333
195
  # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
334
196
 
335
-
336
197
  ### Features
337
198
 
338
- * **ui-number-input:** add customizable icons for increment and decrement buttons ([7be2226](https://github.com/instructure/instructure-ui/commit/7be222651902524f6c166e39f09878542a646d7c))
339
-
340
-
341
-
342
-
199
+ - **ui-number-input:** add customizable icons for increment and decrement buttons ([7be2226](https://github.com/instructure/instructure-ui/commit/7be222651902524f6c166e39f09878542a646d7c))
343
200
 
344
201
  # [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
345
202
 
346
203
  **Note:** Version bump only for package @instructure/ui-number-input
347
204
 
348
-
349
-
350
-
351
-
352
205
  # [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
353
206
 
354
-
355
207
  ### Bug Fixes
356
208
 
357
- * **many:** hide required asterisks from screenreaders ([78aec71](https://github.com/instructure/instructure-ui/commit/78aec71d1056df3a43ffd226d993c451a8fe9c1d))
358
-
209
+ - **many:** hide required asterisks from screenreaders ([78aec71](https://github.com/instructure/instructure-ui/commit/78aec71d1056df3a43ffd226d993c451a8fe9c1d))
359
210
 
360
211
  ### Features
361
212
 
362
- * **ui-number-input:** add back options for string input ([ce86cdb](https://github.com/instructure/instructure-ui/commit/ce86cdb91e016878edfeda3260f55bc7fd1db2e3))
363
-
364
-
365
-
366
-
213
+ - **ui-number-input:** add back options for string input ([ce86cdb](https://github.com/instructure/instructure-ui/commit/ce86cdb91e016878edfeda3260f55bc7fd1db2e3))
367
214
 
368
215
  ## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
369
216
 
370
217
  **Note:** Version bump only for package @instructure/ui-number-input
371
218
 
372
-
373
-
374
-
375
-
376
219
  # [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
377
220
 
378
-
379
221
  ### Bug Fixes
380
222
 
381
- * **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
382
- * **many:** fix regression where form elements without label got misaligned ([139f7f1](https://github.com/instructure/instructure-ui/commit/139f7f130cd7e8372af869a13cfd50cd6a97fd85))
383
-
384
-
385
-
386
-
223
+ - **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
224
+ - **many:** fix regression where form elements without label got misaligned ([139f7f1](https://github.com/instructure/instructure-ui/commit/139f7f130cd7e8372af869a13cfd50cd6a97fd85))
387
225
 
388
226
  # [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
389
227
 
390
-
391
228
  ### Features
392
229
 
393
- * **many:** add new form field error msg style + add asterisk for required fields ([9b03683](https://github.com/instructure/instructure-ui/commit/9b03683dadeef4c5deae2c60bea10686f143ff5d))
394
-
395
-
396
-
397
-
230
+ - **many:** add new form field error msg style + add asterisk for required fields ([9b03683](https://github.com/instructure/instructure-ui/commit/9b03683dadeef4c5deae2c60bea10686f143ff5d))
398
231
 
399
232
  ## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
400
233
 
401
-
402
234
  ### Bug Fixes
403
235
 
404
- * update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
405
-
406
-
407
-
408
-
236
+ - update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
409
237
 
410
238
  # [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
411
239
 
412
240
  **Note:** Version bump only for package @instructure/ui-number-input
413
241
 
414
-
415
-
416
-
417
-
418
242
  # [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
419
243
 
420
244
  **Note:** Version bump only for package @instructure/ui-number-input
421
245
 
422
-
423
-
424
-
425
-
426
246
  ## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
427
247
 
428
248
  **Note:** Version bump only for package @instructure/ui-number-input
429
249
 
430
-
431
-
432
-
433
-
434
250
  ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
435
251
 
436
252
  **Note:** Version bump only for package @instructure/ui-number-input
437
253
 
438
-
439
-
440
-
441
-
442
254
  # [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
443
255
 
444
256
  **Note:** Version bump only for package @instructure/ui-number-input
445
257
 
446
-
447
-
448
-
449
-
450
258
  # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
451
259
 
452
260
  **Note:** Version bump only for package @instructure/ui-number-input
453
261
 
454
-
455
-
456
-
457
-
458
262
  # [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
459
263
 
460
-
461
264
  ### Features
462
265
 
463
- * **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
464
-
266
+ - **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
465
267
 
466
268
  ### BREAKING CHANGES
467
269
 
468
- * **many:** Breaks color overrides in certain cases
469
-
470
-
471
-
472
-
270
+ - **many:** Breaks color overrides in certain cases
473
271
 
474
272
  ## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
475
273
 
476
274
  **Note:** Version bump only for package @instructure/ui-number-input
477
275
 
478
-
479
-
480
-
481
-
482
276
  # [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
483
277
 
484
278
  **Note:** Version bump only for package @instructure/ui-number-input
485
279
 
486
-
487
-
488
-
489
-
490
280
  # [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
491
281
 
492
282
  **Note:** Version bump only for package @instructure/ui-number-input
493
283
 
494
-
495
-
496
-
497
-
498
284
  # [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
499
285
 
500
286
  **Note:** Version bump only for package @instructure/ui-number-input
501
287
 
502
-
503
-
504
-
505
-
506
288
  # [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
507
289
 
508
-
509
290
  ### Bug Fixes
510
291
 
511
- * **ui-number-input,ui-pagination:** set numberinput type to number ([19f27f5](https://github.com/instructure/instructure-ui/commit/19f27f57470b4c9c5728009eae6b1fddcbb78695))
512
-
513
-
514
-
515
-
292
+ - **ui-number-input,ui-pagination:** set numberinput type to number ([19f27f5](https://github.com/instructure/instructure-ui/commit/19f27f57470b4c9c5728009eae6b1fddcbb78695))
516
293
 
517
294
  # [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
518
295
 
519
296
  **Note:** Version bump only for package @instructure/ui-number-input
520
297
 
521
-
522
-
523
-
524
-
525
298
  ## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
526
299
 
527
300
  **Note:** Version bump only for package @instructure/ui-number-input
528
301
 
529
-
530
-
531
-
532
-
533
302
  # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
534
303
 
535
304
  **Note:** Version bump only for package @instructure/ui-number-input
536
305
 
537
-
538
-
539
-
540
-
541
306
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
542
307
 
543
308
  **Note:** Version bump only for package @instructure/ui-number-input
544
309
 
545
-
546
-
547
-
548
-
549
310
  ## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
550
311
 
551
312
  **Note:** Version bump only for package @instructure/ui-number-input
552
313
 
553
-
554
-
555
-
556
-
557
314
  # [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
558
315
 
559
316
  **Note:** Version bump only for package @instructure/ui-number-input
560
317
 
561
-
562
-
563
-
564
-
565
318
  # [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
566
319
 
567
320
  **Note:** Version bump only for package @instructure/ui-number-input
568
321
 
569
-
570
-
571
-
572
-
573
322
  ## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
574
323
 
575
324
  **Note:** Version bump only for package @instructure/ui-number-input
576
325
 
577
-
578
-
579
-
580
-
581
326
  ## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
582
327
 
583
328
  **Note:** Version bump only for package @instructure/ui-number-input
584
329
 
585
-
586
-
587
-
588
-
589
330
  # [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
590
331
 
591
332
  **Note:** Version bump only for package @instructure/ui-number-input
@@ -25,11 +25,11 @@ var _dec, _dec2, _class, _NumberInput, _IconArrowOpenUpLine, _IconArrowOpenDownL
25
25
 
26
26
  import { Fragment, Component } from 'react';
27
27
  import keycode from 'keycode';
28
- import { FormField } from '@instructure/ui-form-field';
28
+ import { FormField } from '@instructure/ui-form-field/v11_6';
29
29
  import { IconArrowOpenDownLine, IconArrowOpenUpLine } from '@instructure/ui-icons';
30
30
  import { omitProps, pickProps, callRenderProp, getInteraction, withDeterministicId } from '@instructure/ui-react-utils';
31
31
  import { hasVisibleChildren } from '@instructure/ui-a11y-utils';
32
- import { withStyle } from '@instructure/emotion';
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";