@instructure/ui-number-input 11.7.3-snapshot-4 → 11.7.3-snapshot-7
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 +1 -1
- package/package.json +12 -12
- package/src/NumberInput/v2/props.ts +6 -5
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/NumberInput/v2/index.d.ts +1 -3
- package/types/NumberInput/v2/index.d.ts.map +1 -1
- package/types/NumberInput/v2/props.d.ts +3 -4
- package/types/NumberInput/v2/props.d.ts.map +1 -1
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.3-snapshot-
|
|
6
|
+
## [11.7.3-snapshot-7](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-7) (2026-04-29)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-number-input
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-number-input",
|
|
3
|
-
"version": "11.7.3-snapshot-
|
|
3
|
+
"version": "11.7.3-snapshot-7",
|
|
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.27.6",
|
|
18
18
|
"keycode": "^2",
|
|
19
|
-
"@instructure/emotion": "11.7.3-snapshot-
|
|
20
|
-
"@instructure/shared-types": "11.7.3-snapshot-
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-icons": "11.7.3-snapshot-
|
|
24
|
-
"@instructure/ui-react-utils": "11.7.3-snapshot-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/
|
|
19
|
+
"@instructure/emotion": "11.7.3-snapshot-7",
|
|
20
|
+
"@instructure/shared-types": "11.7.3-snapshot-7",
|
|
21
|
+
"@instructure/ui-a11y-utils": "11.7.3-snapshot-7",
|
|
22
|
+
"@instructure/ui-form-field": "11.7.3-snapshot-7",
|
|
23
|
+
"@instructure/ui-icons": "11.7.3-snapshot-7",
|
|
24
|
+
"@instructure/ui-react-utils": "11.7.3-snapshot-7",
|
|
25
|
+
"@instructure/ui-themes": "11.7.3-snapshot-7",
|
|
26
|
+
"@instructure/ui-utils": "11.7.3-snapshot-7",
|
|
27
|
+
"@instructure/uid": "11.7.3-snapshot-7"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"@testing-library/jest-dom": "^6.6.3",
|
|
30
31
|
"@testing-library/react": "15.0.7",
|
|
31
32
|
"@testing-library/user-event": "^14.6.1",
|
|
32
33
|
"vitest": "^3.2.2",
|
|
33
|
-
"@instructure/ui-
|
|
34
|
-
"@instructure/ui-
|
|
35
|
-
"@instructure/ui-themes": "11.7.3-snapshot-4"
|
|
34
|
+
"@instructure/ui-scripts": "11.7.3-snapshot-7",
|
|
35
|
+
"@instructure/ui-babel-preset": "11.7.3-snapshot-7"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=18 <=19"
|
|
@@ -31,8 +31,8 @@ import type {
|
|
|
31
31
|
} from '@instructure/shared-types'
|
|
32
32
|
import type {
|
|
33
33
|
ComponentStyle,
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
NewThemeOverrideProp,
|
|
35
|
+
Spacing
|
|
36
36
|
} from '@instructure/emotion'
|
|
37
37
|
import type {
|
|
38
38
|
FormFieldOwnProps,
|
|
@@ -43,6 +43,7 @@ import type {
|
|
|
43
43
|
WithDeterministicIdProps
|
|
44
44
|
} from '@instructure/ui-react-utils'
|
|
45
45
|
import { Renderable } from '@instructure/shared-types'
|
|
46
|
+
import type { NewComponentTypes } from '@instructure/ui-themes'
|
|
46
47
|
|
|
47
48
|
type NumberInputOwnProps = {
|
|
48
49
|
/**
|
|
@@ -194,9 +195,9 @@ type NumberInputProps =
|
|
|
194
195
|
FormFieldOwnProps,
|
|
195
196
|
'label' | 'inline' | 'id' | 'elementRef'
|
|
196
197
|
> &
|
|
197
|
-
NumberInputOwnProps &
|
|
198
|
-
|
|
199
|
-
|
|
198
|
+
NumberInputOwnProps &
|
|
199
|
+
NewThemeOverrideProp<ReturnType<NewComponentTypes['TextInput']>> &
|
|
200
|
+
OtherHTMLAttributes<
|
|
200
201
|
NumberInputOwnProps,
|
|
201
202
|
InputHTMLAttributes<NumberInputOwnProps & Element>
|
|
202
203
|
> &
|