@instructure/ui-text-input 7.13.0 → 7.14.0
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 +6 -0
- package/es/TextInput/index.js +1 -1
- package/lib/TextInput/index.js +1 -1
- package/package.json +16 -16
- package/src/TextInput/index.js +1 -1
- package/types/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
# [7.14.0](https://github.com/instructure/instructure-ui/compare/v7.13.0...v7.14.0) (2021-12-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **ui-form-field:** make FormField messages accept `node` text, not just `string` ([d9e1a7a](https://github.com/instructure/instructure-ui/commit/d9e1a7a)), closes [PR#819](https://github.com/PR/issues/819)
|
|
11
|
+
|
|
6
12
|
# [7.13.0](https://github.com/instructure/instructure-ui/compare/v7.12.0...v7.13.0) (2021-11-18)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @instructure/ui-text-input
|
package/es/TextInput/index.js
CHANGED
package/lib/TextInput/index.js
CHANGED
|
@@ -300,7 +300,7 @@ var TextInput = (_dec = (0, _deprecated.deprecated)('8.0.0', {
|
|
|
300
300
|
|
|
301
301
|
/**
|
|
302
302
|
* object with shape: `{
|
|
303
|
-
* text: PropTypes.
|
|
303
|
+
* text: PropTypes.node,
|
|
304
304
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
305
305
|
* }`
|
|
306
306
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-text-input",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.14.0",
|
|
4
4
|
"description": "A styled HTML text input component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -23,24 +23,24 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "^7.
|
|
27
|
-
"@instructure/ui-badge": "^7.
|
|
28
|
-
"@instructure/ui-color-utils": "^7.
|
|
29
|
-
"@instructure/ui-test-utils": "^7.
|
|
26
|
+
"@instructure/ui-babel-preset": "^7.14.0",
|
|
27
|
+
"@instructure/ui-badge": "^7.14.0",
|
|
28
|
+
"@instructure/ui-color-utils": "^7.14.0",
|
|
29
|
+
"@instructure/ui-test-utils": "^7.14.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/runtime": "^7.9.2",
|
|
33
|
-
"@instructure/ui-dom-utils": "^7.
|
|
34
|
-
"@instructure/ui-flex": "^7.
|
|
35
|
-
"@instructure/ui-form-field": "^7.
|
|
36
|
-
"@instructure/ui-icons": "^7.
|
|
37
|
-
"@instructure/ui-prop-types": "^7.
|
|
38
|
-
"@instructure/ui-react-utils": "^7.
|
|
39
|
-
"@instructure/ui-tag": "^7.
|
|
40
|
-
"@instructure/ui-testable": "^7.
|
|
41
|
-
"@instructure/ui-themeable": "^7.
|
|
42
|
-
"@instructure/ui-utils": "^7.
|
|
43
|
-
"@instructure/uid": "^7.
|
|
33
|
+
"@instructure/ui-dom-utils": "^7.14.0",
|
|
34
|
+
"@instructure/ui-flex": "^7.14.0",
|
|
35
|
+
"@instructure/ui-form-field": "^7.14.0",
|
|
36
|
+
"@instructure/ui-icons": "^7.14.0",
|
|
37
|
+
"@instructure/ui-prop-types": "^7.14.0",
|
|
38
|
+
"@instructure/ui-react-utils": "^7.14.0",
|
|
39
|
+
"@instructure/ui-tag": "^7.14.0",
|
|
40
|
+
"@instructure/ui-testable": "^7.14.0",
|
|
41
|
+
"@instructure/ui-themeable": "^7.14.0",
|
|
42
|
+
"@instructure/ui-utils": "^7.14.0",
|
|
43
|
+
"@instructure/uid": "^7.14.0",
|
|
44
44
|
"classnames": "^2",
|
|
45
45
|
"prop-types": "^15"
|
|
46
46
|
},
|
package/src/TextInput/index.js
CHANGED
|
@@ -92,7 +92,7 @@ class TextInput extends Component {
|
|
|
92
92
|
interaction: PropTypes.oneOf(['enabled', 'disabled', 'readonly']),
|
|
93
93
|
/**
|
|
94
94
|
* object with shape: `{
|
|
95
|
-
* text: PropTypes.
|
|
95
|
+
* text: PropTypes.node,
|
|
96
96
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
97
97
|
* }`
|
|
98
98
|
*/
|
package/types/index.d.ts
CHANGED