@instructure/ui-simple-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 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-simple-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-simple-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-simple-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-simple-select
@@ -498,7 +498,7 @@ var SimpleSelect = (_dec = testable(), _dec(_class = (_temp = _class2 = /*#__PUR
498
498
  * Displays messages and validation for the input. It should be an object
499
499
  * with the following shape:
500
500
  * `{
501
- * text: PropTypes.string,
501
+ * text: PropTypes.node,
502
502
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
503
503
  * }`
504
504
  */
@@ -506,7 +506,7 @@ var SimpleSelect = (_dec = (0, _testable.testable)(), _dec(_class = (_temp = _cl
506
506
  * Displays messages and validation for the input. It should be an object
507
507
  * with the following shape:
508
508
  * `{
509
- * text: PropTypes.string,
509
+ * text: PropTypes.node,
510
510
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
511
511
  * }`
512
512
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-simple-select",
3
- "version": "7.10.0",
3
+ "version": "7.14.0",
4
4
  "description": "A component for standard select element behavior.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -24,22 +24,22 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.9.2",
27
- "@instructure/console": "^7.10.0",
28
- "@instructure/ui-form-field": "^7.10.0",
29
- "@instructure/ui-position": "^7.10.0",
30
- "@instructure/ui-prop-types": "^7.10.0",
31
- "@instructure/ui-react-utils": "^7.10.0",
32
- "@instructure/ui-select": "^7.10.0",
33
- "@instructure/ui-testable": "^7.10.0",
34
- "@instructure/ui-themeable": "^7.10.0",
35
- "@instructure/uid": "^7.10.0",
27
+ "@instructure/console": "^7.14.0",
28
+ "@instructure/ui-form-field": "^7.14.0",
29
+ "@instructure/ui-position": "^7.14.0",
30
+ "@instructure/ui-prop-types": "^7.14.0",
31
+ "@instructure/ui-react-utils": "^7.14.0",
32
+ "@instructure/ui-select": "^7.14.0",
33
+ "@instructure/ui-testable": "^7.14.0",
34
+ "@instructure/ui-themeable": "^7.14.0",
35
+ "@instructure/uid": "^7.14.0",
36
36
  "prop-types": "^15"
37
37
  },
38
38
  "devDependencies": {
39
- "@instructure/ui-babel-preset": "^7.10.0",
40
- "@instructure/ui-color-utils": "^7.10.0",
41
- "@instructure/ui-test-locator": "^7.10.0",
42
- "@instructure/ui-test-utils": "^7.10.0"
39
+ "@instructure/ui-babel-preset": "^7.14.0",
40
+ "@instructure/ui-color-utils": "^7.14.0",
41
+ "@instructure/ui-test-locator": "^7.14.0",
42
+ "@instructure/ui-test-utils": "^7.14.0"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": "^16.8"
@@ -120,7 +120,7 @@ class SimpleSelect extends Component {
120
120
  * Displays messages and validation for the input. It should be an object
121
121
  * with the following shape:
122
122
  * `{
123
- * text: PropTypes.string,
123
+ * text: PropTypes.node,
124
124
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
125
125
  * }`
126
126
  */
package/types/index.d.ts CHANGED
@@ -77,7 +77,7 @@ export interface SimpleSelectProps {
77
77
  * Displays messages and validation for the input. It should be an object
78
78
  * with the following shape:
79
79
  * `{
80
- * text: PropTypes.string,
80
+ * text: PropTypes.node,
81
81
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
82
82
  * }`
83
83
  */