@instructure/ui-text-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 +13 -13
- package/src/TextInput/v2/README.md +8 -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-text-input",
|
|
3
|
-
"version": "11.7.3-snapshot-
|
|
3
|
+
"version": "11.7.3-snapshot-38",
|
|
4
4
|
"description": "A styled HTML text input component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"@testing-library/react": "15.0.7",
|
|
19
19
|
"@testing-library/user-event": "^14.6.1",
|
|
20
20
|
"vitest": "^3.2.2",
|
|
21
|
-
"@instructure/ui-axe-check": "11.7.3-snapshot-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-color-utils": "11.7.3-snapshot-
|
|
21
|
+
"@instructure/ui-axe-check": "11.7.3-snapshot-38",
|
|
22
|
+
"@instructure/ui-babel-preset": "11.7.3-snapshot-38",
|
|
23
|
+
"@instructure/ui-badge": "11.7.3-snapshot-38",
|
|
24
|
+
"@instructure/ui-color-utils": "11.7.3-snapshot-38"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.29.2",
|
|
28
|
-
"@instructure/
|
|
29
|
-
"@instructure/
|
|
30
|
-
"@instructure/ui-a11y-utils": "11.7.3-snapshot-
|
|
31
|
-
"@instructure/ui-dom-utils": "11.7.3-snapshot-
|
|
32
|
-
"@instructure/ui-form-field": "11.7.3-snapshot-
|
|
33
|
-
"@instructure/ui-react-utils": "11.7.3-snapshot-
|
|
34
|
-
"@instructure/ui-
|
|
35
|
-
"@instructure/ui-
|
|
28
|
+
"@instructure/emotion": "11.7.3-snapshot-38",
|
|
29
|
+
"@instructure/shared-types": "11.7.3-snapshot-38",
|
|
30
|
+
"@instructure/ui-a11y-utils": "11.7.3-snapshot-38",
|
|
31
|
+
"@instructure/ui-dom-utils": "11.7.3-snapshot-38",
|
|
32
|
+
"@instructure/ui-form-field": "11.7.3-snapshot-38",
|
|
33
|
+
"@instructure/ui-react-utils": "11.7.3-snapshot-38",
|
|
34
|
+
"@instructure/ui-tag": "11.7.3-snapshot-38",
|
|
35
|
+
"@instructure/ui-themes": "11.7.3-snapshot-38"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=18 <=19"
|
|
@@ -317,6 +317,14 @@ type: example
|
|
|
317
317
|
placeholder="placeholder"
|
|
318
318
|
size='small'
|
|
319
319
|
/>
|
|
320
|
+
<View as="div">
|
|
321
|
+
<Text>Fields marked with an asterisk <span aria-hidden="true">(*)</span> are required.</Text>
|
|
322
|
+
<TextInput
|
|
323
|
+
renderLabel='required'
|
|
324
|
+
placeholder="placeholder"
|
|
325
|
+
isRequired
|
|
326
|
+
/>
|
|
327
|
+
</View>
|
|
320
328
|
</Flex>
|
|
321
329
|
```
|
|
322
330
|
|