@instructure/ui-select 7.10.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 +18 -0
- package/es/Select/index.js +1 -1
- package/lib/Select/index.js +1 -1
- package/package.json +20 -20
- package/src/Select/index.js +1 -1
- package/types/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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
|
+
|
|
12
|
+
# [7.13.0](https://github.com/instructure/instructure-ui/compare/v7.12.0...v7.13.0) (2021-11-18)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @instructure/ui-select
|
|
15
|
+
|
|
16
|
+
# [7.12.0](https://github.com/instructure/instructure-ui/compare/v7.11.0...v7.12.0) (2021-10-15)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @instructure/ui-select
|
|
19
|
+
|
|
20
|
+
# [7.11.0](https://github.com/instructure/instructure-ui/compare/v7.10.0...v7.11.0) (2021-09-17)
|
|
21
|
+
|
|
22
|
+
**Note:** Version bump only for package @instructure/ui-select
|
|
23
|
+
|
|
6
24
|
# [7.10.0](https://github.com/instructure/instructure-ui/compare/v7.9.0...v7.10.0) (2021-08-27)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @instructure/ui-select
|
package/es/Select/index.js
CHANGED
|
@@ -668,7 +668,7 @@ var Select = (_dec = testable(), _dec2 = themeable(theme, styles), _dec(_class =
|
|
|
668
668
|
* Displays messages and validation for the input. It should be an object
|
|
669
669
|
* with the following shape:
|
|
670
670
|
* `{
|
|
671
|
-
* text: PropTypes.
|
|
671
|
+
* text: PropTypes.node,
|
|
672
672
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
673
673
|
* }`
|
|
674
674
|
*/
|
package/lib/Select/index.js
CHANGED
|
@@ -688,7 +688,7 @@ var Select = (_dec = (0, _testable.testable)(), _dec2 = (0, _themeable.themeable
|
|
|
688
688
|
* Displays messages and validation for the input. It should be an object
|
|
689
689
|
* with the following shape:
|
|
690
690
|
* `{
|
|
691
|
-
* text: PropTypes.
|
|
691
|
+
* text: PropTypes.node,
|
|
692
692
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
693
693
|
* }`
|
|
694
694
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-select",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.14.0",
|
|
4
4
|
"description": "A component for select and autocomplete behavior.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -23,28 +23,28 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "^7.
|
|
27
|
-
"@instructure/ui-color-utils": "^7.
|
|
28
|
-
"@instructure/ui-test-locator": "^7.
|
|
29
|
-
"@instructure/ui-test-utils": "^7.
|
|
26
|
+
"@instructure/ui-babel-preset": "^7.14.0",
|
|
27
|
+
"@instructure/ui-color-utils": "^7.14.0",
|
|
28
|
+
"@instructure/ui-test-locator": "^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-form-field": "^7.
|
|
35
|
-
"@instructure/ui-icons": "^7.
|
|
36
|
-
"@instructure/ui-options": "^7.
|
|
37
|
-
"@instructure/ui-popover": "^7.
|
|
38
|
-
"@instructure/ui-position": "^7.
|
|
39
|
-
"@instructure/ui-prop-types": "^7.
|
|
40
|
-
"@instructure/ui-react-utils": "^7.
|
|
41
|
-
"@instructure/ui-selectable": "^7.
|
|
42
|
-
"@instructure/ui-testable": "^7.
|
|
43
|
-
"@instructure/ui-text-input": "^7.
|
|
44
|
-
"@instructure/ui-themeable": "^7.
|
|
45
|
-
"@instructure/ui-utils": "^7.
|
|
46
|
-
"@instructure/ui-view": "^7.
|
|
47
|
-
"@instructure/uid": "^7.
|
|
33
|
+
"@instructure/ui-dom-utils": "^7.14.0",
|
|
34
|
+
"@instructure/ui-form-field": "^7.14.0",
|
|
35
|
+
"@instructure/ui-icons": "^7.14.0",
|
|
36
|
+
"@instructure/ui-options": "^7.14.0",
|
|
37
|
+
"@instructure/ui-popover": "^7.14.0",
|
|
38
|
+
"@instructure/ui-position": "^7.14.0",
|
|
39
|
+
"@instructure/ui-prop-types": "^7.14.0",
|
|
40
|
+
"@instructure/ui-react-utils": "^7.14.0",
|
|
41
|
+
"@instructure/ui-selectable": "^7.14.0",
|
|
42
|
+
"@instructure/ui-testable": "^7.14.0",
|
|
43
|
+
"@instructure/ui-text-input": "^7.14.0",
|
|
44
|
+
"@instructure/ui-themeable": "^7.14.0",
|
|
45
|
+
"@instructure/ui-utils": "^7.14.0",
|
|
46
|
+
"@instructure/ui-view": "^7.14.0",
|
|
47
|
+
"@instructure/uid": "^7.14.0",
|
|
48
48
|
"classnames": "^2",
|
|
49
49
|
"prop-types": "^15"
|
|
50
50
|
},
|
package/src/Select/index.js
CHANGED
|
@@ -140,7 +140,7 @@ class Select extends Component {
|
|
|
140
140
|
* Displays messages and validation for the input. It should be an object
|
|
141
141
|
* with the following shape:
|
|
142
142
|
* `{
|
|
143
|
-
* text: PropTypes.
|
|
143
|
+
* text: PropTypes.node,
|
|
144
144
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
145
145
|
* }`
|
|
146
146
|
*/
|
package/types/index.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export interface SelectProps {
|
|
|
81
81
|
* Displays messages and validation for the input. It should be an object
|
|
82
82
|
* with the following shape:
|
|
83
83
|
* `{
|
|
84
|
-
* text: PropTypes.
|
|
84
|
+
* text: PropTypes.node,
|
|
85
85
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
86
86
|
* }`
|
|
87
87
|
*/
|