@instructure/ui-number-input 11.7.4-snapshot-49 → 11.7.4-snapshot-52
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
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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.7.4-snapshot-
|
|
6
|
+
## [11.7.4-snapshot-52](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-52) (2026-06-19)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-number-input
|
|
9
9
|
|
|
@@ -266,6 +266,9 @@ const NumberInput = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
266
266
|
})
|
|
267
267
|
});
|
|
268
268
|
});
|
|
269
|
-
NumberInput.displayName = 'NumberInput'
|
|
269
|
+
NumberInput.displayName = 'NumberInput'
|
|
270
|
+
// Uses TextInput's tokens; tell Document where to look for theme variables
|
|
271
|
+
;
|
|
272
|
+
NumberInput.themeId = 'TextInput';
|
|
270
273
|
export default NumberInput;
|
|
271
274
|
export { NumberInput };
|
|
@@ -277,5 +277,8 @@ const NumberInput = exports.NumberInput = /*#__PURE__*/(0, _react.forwardRef)((p
|
|
|
277
277
|
})
|
|
278
278
|
});
|
|
279
279
|
});
|
|
280
|
-
NumberInput.displayName = 'NumberInput'
|
|
280
|
+
NumberInput.displayName = 'NumberInput'
|
|
281
|
+
// Uses TextInput's tokens; tell Document where to look for theme variables
|
|
282
|
+
;
|
|
283
|
+
NumberInput.themeId = 'TextInput';
|
|
281
284
|
var _default = exports.default = NumberInput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-number-input",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-52",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -16,23 +16,23 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.2",
|
|
18
18
|
"keycode": "^2",
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/ui-icons": "11.7.4-snapshot-
|
|
23
|
-
"@instructure/
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-utils": "11.7.4-snapshot-
|
|
27
|
-
"@instructure/uid": "11.7.4-snapshot-
|
|
19
|
+
"@instructure/emotion": "11.7.4-snapshot-52",
|
|
20
|
+
"@instructure/shared-types": "11.7.4-snapshot-52",
|
|
21
|
+
"@instructure/ui-a11y-utils": "11.7.4-snapshot-52",
|
|
22
|
+
"@instructure/ui-icons": "11.7.4-snapshot-52",
|
|
23
|
+
"@instructure/ui-form-field": "11.7.4-snapshot-52",
|
|
24
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-52",
|
|
25
|
+
"@instructure/ui-themes": "11.7.4-snapshot-52",
|
|
26
|
+
"@instructure/ui-utils": "11.7.4-snapshot-52",
|
|
27
|
+
"@instructure/uid": "11.7.4-snapshot-52"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@testing-library/jest-dom": "^6.6.3",
|
|
31
31
|
"@testing-library/react": "15.0.7",
|
|
32
32
|
"@testing-library/user-event": "^14.6.1",
|
|
33
33
|
"vitest": "^3.2.2",
|
|
34
|
-
"@instructure/ui-
|
|
35
|
-
"@instructure/ui-
|
|
34
|
+
"@instructure/ui-scripts": "11.7.4-snapshot-52",
|
|
35
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-52"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=18 <=19"
|
|
@@ -371,6 +371,8 @@ const NumberInput = forwardRef<NumberInputHandle, NumberInputProps>(
|
|
|
371
371
|
)
|
|
372
372
|
|
|
373
373
|
NumberInput.displayName = 'NumberInput'
|
|
374
|
+
// Uses TextInput's tokens; tell Document where to look for theme variables
|
|
375
|
+
;(NumberInput as typeof NumberInput & { themeId: string }).themeId = 'TextInput'
|
|
374
376
|
|
|
375
377
|
export interface NumberInputHandle {
|
|
376
378
|
focus: () => void
|