@instructure/ui-number-input 11.7.3-snapshot-37 → 11.7.3-snapshot-38
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/v1/README.md +1 -0
- package/src/NumberInput/v2/README.md +1 -0
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-38](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-38) (2026-05-07)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
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-38",
|
|
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/emotion": "11.7.3-snapshot-
|
|
20
|
-
"@instructure/shared-types": "11.7.3-snapshot-
|
|
21
|
-
"@instructure/ui-a11y-utils": "11.7.3-snapshot-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-react-utils": "11.7.3-snapshot-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/uid": "11.7.3-snapshot-
|
|
19
|
+
"@instructure/emotion": "11.7.3-snapshot-38",
|
|
20
|
+
"@instructure/shared-types": "11.7.3-snapshot-38",
|
|
21
|
+
"@instructure/ui-a11y-utils": "11.7.3-snapshot-38",
|
|
22
|
+
"@instructure/ui-icons": "11.7.3-snapshot-38",
|
|
23
|
+
"@instructure/ui-form-field": "11.7.3-snapshot-38",
|
|
24
|
+
"@instructure/ui-react-utils": "11.7.3-snapshot-38",
|
|
25
|
+
"@instructure/ui-utils": "11.7.3-snapshot-38",
|
|
26
|
+
"@instructure/ui-themes": "11.7.3-snapshot-38",
|
|
27
|
+
"@instructure/uid": "11.7.3-snapshot-38"
|
|
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-babel-preset": "11.7.3-snapshot-38",
|
|
35
|
+
"@instructure/ui-scripts": "11.7.3-snapshot-38"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=18 <=19"
|
|
@@ -125,6 +125,7 @@ const Example = () => {
|
|
|
125
125
|
label="Inline display"
|
|
126
126
|
onChange={toggleInline}
|
|
127
127
|
/>
|
|
128
|
+
<Text>Fields marked with an asterisk <span aria-hidden="true">(*)</span> are required.</Text>
|
|
128
129
|
<NumberInput
|
|
129
130
|
renderLabel={`How old are you? (${MIN}-${MAX})`}
|
|
130
131
|
display={inline ? 'inline-block' : null}
|
|
@@ -123,6 +123,7 @@ const Example = () => {
|
|
|
123
123
|
label="Inline display"
|
|
124
124
|
onChange={toggleInline}
|
|
125
125
|
/>
|
|
126
|
+
<Text>Fields marked with an asterisk <span aria-hidden="true">(*)</span> are required.</Text>
|
|
126
127
|
<NumberInput
|
|
127
128
|
renderLabel={`How old are you? (${MIN}-${MAX})`}
|
|
128
129
|
display={inline ? 'inline-block' : null}
|