@instructure/ui-text-input 9.10.2 → 9.11.1
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 +19 -0
- package/es/TextInput/index.js +0 -3
- package/lib/TextInput/index.js +0 -3
- package/package.json +16 -16
- package/src/TextInput/index.tsx +0 -7
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/TextInput/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [9.11.1](https://github.com/instructure/instructure-ui/compare/v9.11.0...v9.11.1) (2025-03-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix FormFieldLabel not read on NVDA hover ([c29b6ab](https://github.com/instructure/instructure-ui/commit/c29b6ab989266c6a7875e3f0dbdee3efbf18606a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [9.11.0](https://github.com/instructure/instructure-ui/compare/v9.10.2...v9.11.0) (2025-02-12)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @instructure/ui-text-input
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [9.10.2](https://github.com/instructure/instructure-ui/compare/v9.10.1...v9.10.2) (2024-12-19)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @instructure/ui-text-input
|
package/es/TextInput/index.js
CHANGED
|
@@ -195,9 +195,6 @@ let TextInput = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
195
195
|
if (props['aria-describedby']) {
|
|
196
196
|
descriptionIds = `${props['aria-describedby']}`;
|
|
197
197
|
}
|
|
198
|
-
if (this.hasMessages) {
|
|
199
|
-
descriptionIds = descriptionIds !== '' ? `${descriptionIds} ${this._messagesId}` : this._messagesId;
|
|
200
|
-
}
|
|
201
198
|
return jsx("input", Object.assign({}, props, {
|
|
202
199
|
css: (_this$props$styles = this.props.styles) === null || _this$props$styles === void 0 ? void 0 : _this$props$styles.textInput,
|
|
203
200
|
defaultValue: defaultValue,
|
package/lib/TextInput/index.js
CHANGED
|
@@ -205,9 +205,6 @@ let TextInput = exports.TextInput = (_dec = (0, _withDeterministicId.withDetermi
|
|
|
205
205
|
if (props['aria-describedby']) {
|
|
206
206
|
descriptionIds = `${props['aria-describedby']}`;
|
|
207
207
|
}
|
|
208
|
-
if (this.hasMessages) {
|
|
209
|
-
descriptionIds = descriptionIds !== '' ? `${descriptionIds} ${this._messagesId}` : this._messagesId;
|
|
210
|
-
}
|
|
211
208
|
return (0, _emotion.jsx)("input", Object.assign({}, props, {
|
|
212
209
|
css: (_this$props$styles = this.props.styles) === null || _this$props$styles === void 0 ? void 0 : _this$props$styles.textInput,
|
|
213
210
|
defaultValue: defaultValue,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-text-input",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.11.1",
|
|
4
4
|
"description": "A styled HTML text input component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -23,25 +23,25 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "9.
|
|
27
|
-
"@instructure/ui-badge": "9.
|
|
28
|
-
"@instructure/ui-color-utils": "9.
|
|
29
|
-
"@instructure/ui-test-utils": "9.
|
|
30
|
-
"@instructure/ui-themes": "9.
|
|
26
|
+
"@instructure/ui-babel-preset": "9.11.1",
|
|
27
|
+
"@instructure/ui-badge": "9.11.1",
|
|
28
|
+
"@instructure/ui-color-utils": "9.11.1",
|
|
29
|
+
"@instructure/ui-test-utils": "9.11.1",
|
|
30
|
+
"@instructure/ui-themes": "9.11.1",
|
|
31
31
|
"react-dom": "^18.3.1"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.24.5",
|
|
35
|
-
"@instructure/emotion": "9.
|
|
36
|
-
"@instructure/shared-types": "9.
|
|
37
|
-
"@instructure/ui-a11y-utils": "9.
|
|
38
|
-
"@instructure/ui-dom-utils": "9.
|
|
39
|
-
"@instructure/ui-form-field": "9.
|
|
40
|
-
"@instructure/ui-icons": "9.
|
|
41
|
-
"@instructure/ui-prop-types": "9.
|
|
42
|
-
"@instructure/ui-react-utils": "9.
|
|
43
|
-
"@instructure/ui-tag": "9.
|
|
44
|
-
"@instructure/ui-testable": "9.
|
|
35
|
+
"@instructure/emotion": "9.11.1",
|
|
36
|
+
"@instructure/shared-types": "9.11.1",
|
|
37
|
+
"@instructure/ui-a11y-utils": "9.11.1",
|
|
38
|
+
"@instructure/ui-dom-utils": "9.11.1",
|
|
39
|
+
"@instructure/ui-form-field": "9.11.1",
|
|
40
|
+
"@instructure/ui-icons": "9.11.1",
|
|
41
|
+
"@instructure/ui-prop-types": "9.11.1",
|
|
42
|
+
"@instructure/ui-react-utils": "9.11.1",
|
|
43
|
+
"@instructure/ui-tag": "9.11.1",
|
|
44
|
+
"@instructure/ui-testable": "9.11.1",
|
|
45
45
|
"prop-types": "^15.8.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
package/src/TextInput/index.tsx
CHANGED
|
@@ -253,13 +253,6 @@ class TextInput extends Component<TextInputProps, TextInputState> {
|
|
|
253
253
|
descriptionIds = `${props['aria-describedby']}`
|
|
254
254
|
}
|
|
255
255
|
|
|
256
|
-
if (this.hasMessages) {
|
|
257
|
-
descriptionIds =
|
|
258
|
-
descriptionIds !== ''
|
|
259
|
-
? `${descriptionIds} ${this._messagesId}`
|
|
260
|
-
: this._messagesId
|
|
261
|
-
}
|
|
262
|
-
|
|
263
256
|
return (
|
|
264
257
|
<input
|
|
265
258
|
{...props}
|