@instructure/ui-select 7.11.0 → 7.14.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 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.1](https://github.com/instructure/instructure-ui/compare/v7.14.0...v7.14.1) (2021-12-06)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-select
9
+
10
+ # [7.14.0](https://github.com/instructure/instructure-ui/compare/v7.13.0...v7.14.0) (2021-12-01)
11
+
12
+ ### Features
13
+
14
+ - **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)
15
+
16
+ # [7.13.0](https://github.com/instructure/instructure-ui/compare/v7.12.0...v7.13.0) (2021-11-18)
17
+
18
+ **Note:** Version bump only for package @instructure/ui-select
19
+
20
+ # [7.12.0](https://github.com/instructure/instructure-ui/compare/v7.11.0...v7.12.0) (2021-10-15)
21
+
22
+ **Note:** Version bump only for package @instructure/ui-select
23
+
6
24
  # [7.11.0](https://github.com/instructure/instructure-ui/compare/v7.10.0...v7.11.0) (2021-09-17)
7
25
 
8
26
  **Note:** Version bump only for package @instructure/ui-select
@@ -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.string,
671
+ * text: PropTypes.node,
672
672
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
673
673
  * }`
674
674
  */
@@ -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.string,
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.11.0",
3
+ "version": "7.14.1",
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.11.0",
27
- "@instructure/ui-color-utils": "^7.11.0",
28
- "@instructure/ui-test-locator": "^7.11.0",
29
- "@instructure/ui-test-utils": "^7.11.0"
26
+ "@instructure/ui-babel-preset": "^7.14.1",
27
+ "@instructure/ui-color-utils": "^7.14.1",
28
+ "@instructure/ui-test-locator": "^7.14.1",
29
+ "@instructure/ui-test-utils": "^7.14.1"
30
30
  },
31
31
  "dependencies": {
32
32
  "@babel/runtime": "^7.9.2",
33
- "@instructure/ui-dom-utils": "^7.11.0",
34
- "@instructure/ui-form-field": "^7.11.0",
35
- "@instructure/ui-icons": "^7.11.0",
36
- "@instructure/ui-options": "^7.11.0",
37
- "@instructure/ui-popover": "^7.11.0",
38
- "@instructure/ui-position": "^7.11.0",
39
- "@instructure/ui-prop-types": "^7.11.0",
40
- "@instructure/ui-react-utils": "^7.11.0",
41
- "@instructure/ui-selectable": "^7.11.0",
42
- "@instructure/ui-testable": "^7.11.0",
43
- "@instructure/ui-text-input": "^7.11.0",
44
- "@instructure/ui-themeable": "^7.11.0",
45
- "@instructure/ui-utils": "^7.11.0",
46
- "@instructure/ui-view": "^7.11.0",
47
- "@instructure/uid": "^7.11.0",
33
+ "@instructure/ui-dom-utils": "^7.14.1",
34
+ "@instructure/ui-form-field": "^7.14.1",
35
+ "@instructure/ui-icons": "^7.14.1",
36
+ "@instructure/ui-options": "^7.14.1",
37
+ "@instructure/ui-popover": "^7.14.1",
38
+ "@instructure/ui-position": "^7.14.1",
39
+ "@instructure/ui-prop-types": "^7.14.1",
40
+ "@instructure/ui-react-utils": "^7.14.1",
41
+ "@instructure/ui-selectable": "^7.14.1",
42
+ "@instructure/ui-testable": "^7.14.1",
43
+ "@instructure/ui-text-input": "^7.14.1",
44
+ "@instructure/ui-themeable": "^7.14.1",
45
+ "@instructure/ui-utils": "^7.14.1",
46
+ "@instructure/ui-view": "^7.14.1",
47
+ "@instructure/uid": "^7.14.1",
48
48
  "classnames": "^2",
49
49
  "prop-types": "^15"
50
50
  },
@@ -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.string,
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.string,
84
+ * text: PropTypes.node,
85
85
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
86
86
  * }`
87
87
  */