@instructure/ui-text-area 8.12.1-snapshot.46 → 8.12.1-snapshot.52

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.
@@ -63,7 +63,7 @@ const propTypes = {
63
63
 
64
64
  /**
65
65
  * object with shape: `{
66
- * text: PropTypes.string,
66
+ * text: PropTypes.node,
67
67
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
68
68
  * }`
69
69
  */
@@ -75,7 +75,7 @@ const propTypes = {
75
75
 
76
76
  /**
77
77
  * object with shape: `{
78
- * text: PropTypes.string,
78
+ * text: PropTypes.node,
79
79
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
80
80
  * }`
81
81
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-text-area",
3
- "version": "8.12.1-snapshot.46+51e6aff75",
3
+ "version": "8.12.1-snapshot.52+07b0037b0",
4
4
  "description": "A styled HTML text area component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -25,24 +25,24 @@
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
27
  "@babel/runtime": "^7.13.10",
28
- "@instructure/debounce": "8.12.1-snapshot.46+51e6aff75",
29
- "@instructure/emotion": "8.12.1-snapshot.46+51e6aff75",
30
- "@instructure/shared-types": "8.12.1-snapshot.46+51e6aff75",
31
- "@instructure/ui-dom-utils": "8.12.1-snapshot.46+51e6aff75",
32
- "@instructure/ui-form-field": "8.12.1-snapshot.46+51e6aff75",
33
- "@instructure/ui-prop-types": "8.12.1-snapshot.46+51e6aff75",
34
- "@instructure/ui-react-utils": "8.12.1-snapshot.46+51e6aff75",
35
- "@instructure/ui-testable": "8.12.1-snapshot.46+51e6aff75",
36
- "@instructure/ui-utils": "8.12.1-snapshot.46+51e6aff75",
37
- "@instructure/uid": "8.12.1-snapshot.46+51e6aff75",
28
+ "@instructure/debounce": "8.12.1-snapshot.52+07b0037b0",
29
+ "@instructure/emotion": "8.12.1-snapshot.52+07b0037b0",
30
+ "@instructure/shared-types": "8.12.1-snapshot.52+07b0037b0",
31
+ "@instructure/ui-dom-utils": "8.12.1-snapshot.52+07b0037b0",
32
+ "@instructure/ui-form-field": "8.12.1-snapshot.52+07b0037b0",
33
+ "@instructure/ui-prop-types": "8.12.1-snapshot.52+07b0037b0",
34
+ "@instructure/ui-react-utils": "8.12.1-snapshot.52+07b0037b0",
35
+ "@instructure/ui-testable": "8.12.1-snapshot.52+07b0037b0",
36
+ "@instructure/ui-utils": "8.12.1-snapshot.52+07b0037b0",
37
+ "@instructure/uid": "8.12.1-snapshot.52+07b0037b0",
38
38
  "prop-types": "^15"
39
39
  },
40
40
  "devDependencies": {
41
- "@instructure/ui-babel-preset": "8.12.1-snapshot.46+51e6aff75",
42
- "@instructure/ui-color-utils": "8.12.1-snapshot.46+51e6aff75",
43
- "@instructure/ui-test-locator": "8.12.1-snapshot.46+51e6aff75",
44
- "@instructure/ui-test-utils": "8.12.1-snapshot.46+51e6aff75",
45
- "@instructure/ui-themes": "8.12.1-snapshot.46+51e6aff75"
41
+ "@instructure/ui-babel-preset": "8.12.1-snapshot.52+07b0037b0",
42
+ "@instructure/ui-color-utils": "8.12.1-snapshot.52+07b0037b0",
43
+ "@instructure/ui-test-locator": "8.12.1-snapshot.52+07b0037b0",
44
+ "@instructure/ui-test-utils": "8.12.1-snapshot.52+07b0037b0",
45
+ "@instructure/ui-themes": "8.12.1-snapshot.52+07b0037b0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": ">=16.8 <=17"
@@ -51,5 +51,5 @@
51
51
  "access": "public"
52
52
  },
53
53
  "sideEffects": false,
54
- "gitHead": "51e6aff7502e7b0b22b107c9d39c2a8dc2c267f4"
54
+ "gitHead": "07b0037b0ddaf6d4f19cca140fc82fc9a2f1efc9"
55
55
  }
@@ -105,7 +105,7 @@ const propTypes: PropValidators<PropKeys> = {
105
105
  maxHeight: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
106
106
  /**
107
107
  * object with shape: `{
108
- * text: PropTypes.string,
108
+ * text: PropTypes.node,
109
109
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
110
110
  * }`
111
111
  */
@@ -20,7 +20,7 @@ declare class TextArea extends Component<TextAreaProps> {
20
20
  width?: string | undefined;
21
21
  height?: string | undefined;
22
22
  maxHeight?: string | number | undefined;
23
- messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
23
+ messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
24
24
  inline?: boolean | undefined;
25
25
  placeholder?: string | undefined;
26
26
  disabled?: boolean | undefined;
@@ -41,7 +41,7 @@ declare class TextArea extends Component<TextAreaProps> {
41
41
  width?: string | undefined;
42
42
  height?: string | undefined;
43
43
  maxHeight?: string | number | undefined;
44
- messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
44
+ messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
45
45
  inline?: boolean | undefined;
46
46
  placeholder?: string | undefined;
47
47
  disabled?: boolean | undefined;