@instructure/ui-date-input 7.13.0 → 7.16.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.16.0](https://github.com/instructure/instructure-ui/compare/v7.15.0...v7.16.0) (2022-02-08)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-date-input
9
+
10
+ # [7.15.0](https://github.com/instructure/instructure-ui/compare/v7.14.1...v7.15.0) (2022-02-03)
11
+
12
+ **Note:** Version bump only for package @instructure/ui-date-input
13
+
14
+ ## [7.14.1](https://github.com/instructure/instructure-ui/compare/v7.14.0...v7.14.1) (2021-12-06)
15
+
16
+ **Note:** Version bump only for package @instructure/ui-date-input
17
+
18
+ # [7.14.0](https://github.com/instructure/instructure-ui/compare/v7.13.0...v7.14.0) (2021-12-01)
19
+
20
+ ### Features
21
+
22
+ - **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)
23
+
6
24
  # [7.13.0](https://github.com/instructure/instructure-ui/compare/v7.12.0...v7.13.0) (2021-11-18)
7
25
 
8
26
  **Note:** Version bump only for package @instructure/ui-date-input
@@ -406,7 +406,7 @@ var DateInput = (_dec = deprecated('8.0.0', {
406
406
  * Displays messages and validation for the input. It should be an object
407
407
  * with the following shape:
408
408
  * `{
409
- * text: PropTypes.string,
409
+ * text: PropTypes.node,
410
410
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
411
411
  * }`
412
412
  */
@@ -423,7 +423,7 @@ var DateInput = (_dec = (0, _deprecated.deprecated)('8.0.0', {
423
423
  * Displays messages and validation for the input. It should be an object
424
424
  * with the following shape:
425
425
  * `{
426
- * text: PropTypes.string,
426
+ * text: PropTypes.node,
427
427
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
428
428
  * }`
429
429
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-date-input",
3
- "version": "7.13.0",
3
+ "version": "7.16.0",
4
4
  "description": "A UI component library made by Instructure Inc.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -22,24 +22,24 @@
22
22
  },
23
23
  "license": "MIT",
24
24
  "devDependencies": {
25
- "@instructure/ui-babel-preset": "^7.13.0",
26
- "@instructure/ui-test-locator": "^7.13.0",
27
- "@instructure/ui-test-utils": "^7.13.0"
25
+ "@instructure/ui-babel-preset": "^7.16.0",
26
+ "@instructure/ui-test-locator": "^7.16.0",
27
+ "@instructure/ui-test-utils": "^7.16.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.9.2",
31
- "@instructure/ui-calendar": "^7.13.0",
32
- "@instructure/ui-form-field": "^7.13.0",
33
- "@instructure/ui-icons": "^7.13.0",
34
- "@instructure/ui-popover": "^7.13.0",
35
- "@instructure/ui-position": "^7.13.0",
36
- "@instructure/ui-prop-types": "^7.13.0",
37
- "@instructure/ui-react-utils": "^7.13.0",
38
- "@instructure/ui-selectable": "^7.13.0",
39
- "@instructure/ui-testable": "^7.13.0",
40
- "@instructure/ui-text-input": "^7.13.0",
41
- "@instructure/ui-themeable": "^7.13.0",
42
- "@instructure/ui-utils": "^7.13.0",
31
+ "@instructure/ui-calendar": "^7.16.0",
32
+ "@instructure/ui-form-field": "^7.16.0",
33
+ "@instructure/ui-icons": "^7.16.0",
34
+ "@instructure/ui-popover": "^7.16.0",
35
+ "@instructure/ui-position": "^7.16.0",
36
+ "@instructure/ui-prop-types": "^7.16.0",
37
+ "@instructure/ui-react-utils": "^7.16.0",
38
+ "@instructure/ui-selectable": "^7.16.0",
39
+ "@instructure/ui-testable": "^7.16.0",
40
+ "@instructure/ui-text-input": "^7.16.0",
41
+ "@instructure/ui-themeable": "^7.16.0",
42
+ "@instructure/ui-utils": "^7.16.0",
43
43
  "prop-types": "^15"
44
44
  },
45
45
  "peerDependencies": {
@@ -134,7 +134,7 @@ class DateInput extends Component {
134
134
  * Displays messages and validation for the input. It should be an object
135
135
  * with the following shape:
136
136
  * `{
137
- * text: PropTypes.string,
137
+ * text: PropTypes.node,
138
138
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
139
139
  * }`
140
140
  */
package/types/index.d.ts CHANGED
@@ -89,7 +89,7 @@ export interface DateInputProps {
89
89
  * Displays messages and validation for the input. It should be an object
90
90
  * with the following shape:
91
91
  * `{
92
- * text: PropTypes.string,
92
+ * text: PropTypes.node,
93
93
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
94
94
  * }`
95
95
  */