@instructure/ui-number-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-number-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-number-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-number-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-number-input
@@ -273,7 +273,7 @@ var NumberInput = (_dec = deprecated('8.0.0', {
273
273
 
274
274
  /**
275
275
  * Object with shape: `{
276
- * text: PropTypes.string,
276
+ * text: PropTypes.node,
277
277
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
278
278
  * }`
279
279
  */
@@ -288,7 +288,7 @@ var NumberInput = (_dec = (0, _deprecated.deprecated)('8.0.0', {
288
288
 
289
289
  /**
290
290
  * Object with shape: `{
291
- * text: PropTypes.string,
291
+ * text: PropTypes.node,
292
292
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
293
293
  * }`
294
294
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-number-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
  "homepage": "https://instructure.github.io/instructure-ui/",
@@ -23,19 +23,19 @@
23
23
  "build:types": "ui-scripts --types"
24
24
  },
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "^7.13.0",
27
- "@instructure/ui-test-locator": "^7.13.0",
28
- "@instructure/ui-test-utils": "^7.13.0"
26
+ "@instructure/ui-babel-preset": "^7.16.0",
27
+ "@instructure/ui-test-locator": "^7.16.0",
28
+ "@instructure/ui-test-utils": "^7.16.0"
29
29
  },
30
30
  "dependencies": {
31
31
  "@babel/runtime": "^7.9.2",
32
- "@instructure/ui-form-field": "^7.13.0",
33
- "@instructure/ui-icons": "^7.13.0",
34
- "@instructure/ui-react-utils": "^7.13.0",
35
- "@instructure/ui-testable": "^7.13.0",
36
- "@instructure/ui-themeable": "^7.13.0",
37
- "@instructure/ui-utils": "^7.13.0",
38
- "@instructure/uid": "^7.13.0",
32
+ "@instructure/ui-form-field": "^7.16.0",
33
+ "@instructure/ui-icons": "^7.16.0",
34
+ "@instructure/ui-react-utils": "^7.16.0",
35
+ "@instructure/ui-testable": "^7.16.0",
36
+ "@instructure/ui-themeable": "^7.16.0",
37
+ "@instructure/ui-utils": "^7.16.0",
38
+ "@instructure/uid": "^7.16.0",
39
39
  "classnames": "^2",
40
40
  "keycode": "^2",
41
41
  "prop-types": "^15"
@@ -79,7 +79,7 @@ class NumberInput extends Component {
79
79
  interaction: PropTypes.oneOf(['enabled', 'disabled', 'readonly']),
80
80
  /**
81
81
  * Object with shape: `{
82
- * text: PropTypes.string,
82
+ * text: PropTypes.node,
83
83
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
84
84
  * }`
85
85
  */
package/types/index.d.ts CHANGED
@@ -30,7 +30,7 @@ export interface NumberInputProps {
30
30
  interaction?: NumberInputInteraction;
31
31
  /**
32
32
  * Object with shape: `{
33
- * text: PropTypes.string,
33
+ * text: PropTypes.node,
34
34
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
35
35
  * }`
36
36
  */