@instructure/ui-number-input 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.
@@ -44,7 +44,7 @@ const propTypes = {
44
44
 
45
45
  /**
46
46
  * Object with shape: `{
47
- * text: PropTypes.string,
47
+ * text: PropTypes.node,
48
48
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
49
49
  * }`
50
50
  */
@@ -55,7 +55,7 @@ const propTypes = {
55
55
 
56
56
  /**
57
57
  * Object with shape: `{
58
- * text: PropTypes.string,
58
+ * text: PropTypes.node,
59
59
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
60
60
  * }`
61
61
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-number-input",
3
- "version": "8.12.1-snapshot.46+51e6aff75",
3
+ "version": "8.12.1-snapshot.52+07b0037b0",
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/",
@@ -24,21 +24,21 @@
24
24
  "ts:check": "tsc -p tsconfig.build.json --noEmit --emitDeclarationOnly false"
25
25
  },
26
26
  "devDependencies": {
27
- "@instructure/ui-babel-preset": "8.12.1-snapshot.46+51e6aff75",
28
- "@instructure/ui-test-locator": "8.12.1-snapshot.46+51e6aff75",
29
- "@instructure/ui-test-utils": "8.12.1-snapshot.46+51e6aff75",
30
- "@instructure/ui-themes": "8.12.1-snapshot.46+51e6aff75"
27
+ "@instructure/ui-babel-preset": "8.12.1-snapshot.52+07b0037b0",
28
+ "@instructure/ui-test-locator": "8.12.1-snapshot.52+07b0037b0",
29
+ "@instructure/ui-test-utils": "8.12.1-snapshot.52+07b0037b0",
30
+ "@instructure/ui-themes": "8.12.1-snapshot.52+07b0037b0"
31
31
  },
32
32
  "dependencies": {
33
33
  "@babel/runtime": "^7.13.10",
34
- "@instructure/emotion": "8.12.1-snapshot.46+51e6aff75",
35
- "@instructure/shared-types": "8.12.1-snapshot.46+51e6aff75",
36
- "@instructure/ui-form-field": "8.12.1-snapshot.46+51e6aff75",
37
- "@instructure/ui-icons": "8.12.1-snapshot.46+51e6aff75",
38
- "@instructure/ui-react-utils": "8.12.1-snapshot.46+51e6aff75",
39
- "@instructure/ui-testable": "8.12.1-snapshot.46+51e6aff75",
40
- "@instructure/ui-utils": "8.12.1-snapshot.46+51e6aff75",
41
- "@instructure/uid": "8.12.1-snapshot.46+51e6aff75",
34
+ "@instructure/emotion": "8.12.1-snapshot.52+07b0037b0",
35
+ "@instructure/shared-types": "8.12.1-snapshot.52+07b0037b0",
36
+ "@instructure/ui-form-field": "8.12.1-snapshot.52+07b0037b0",
37
+ "@instructure/ui-icons": "8.12.1-snapshot.52+07b0037b0",
38
+ "@instructure/ui-react-utils": "8.12.1-snapshot.52+07b0037b0",
39
+ "@instructure/ui-testable": "8.12.1-snapshot.52+07b0037b0",
40
+ "@instructure/ui-utils": "8.12.1-snapshot.52+07b0037b0",
41
+ "@instructure/uid": "8.12.1-snapshot.52+07b0037b0",
42
42
  "keycode": "^2",
43
43
  "prop-types": "^15"
44
44
  },
@@ -49,5 +49,5 @@
49
49
  "access": "public"
50
50
  },
51
51
  "sideEffects": false,
52
- "gitHead": "51e6aff7502e7b0b22b107c9d39c2a8dc2c267f4"
52
+ "gitHead": "07b0037b0ddaf6d4f19cca140fc82fc9a2f1efc9"
53
53
  }
@@ -104,7 +104,7 @@ const propTypes: PropValidators<PropKeys> = {
104
104
  interaction: PropTypes.oneOf(['enabled', 'disabled', 'readonly']),
105
105
  /**
106
106
  * Object with shape: `{
107
- * text: PropTypes.string,
107
+ * text: PropTypes.node,
108
108
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
109
109
  * }`
110
110
  */
@@ -14,7 +14,7 @@ declare class NumberInput extends Component<NumberInputProps, NumberInputState>
14
14
  renderLabel: import("react").ReactNode | ((...args: any[]) => any);
15
15
  id?: string | undefined;
16
16
  interaction?: import("@instructure/ui-react-utils").InteractionType | undefined;
17
- messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
17
+ messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
18
18
  placeholder?: string | undefined;
19
19
  isRequired?: boolean | undefined;
20
20
  showArrows?: boolean | undefined;
@@ -35,7 +35,7 @@ declare class NumberInput extends Component<NumberInputProps, NumberInputState>
35
35
  renderLabel: import("react").ReactNode | ((...args: any[]) => any);
36
36
  id?: string | undefined;
37
37
  interaction?: import("@instructure/ui-react-utils").InteractionType | undefined;
38
- messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
38
+ messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
39
39
  placeholder?: string | undefined;
40
40
  isRequired?: boolean | undefined;
41
41
  showArrows?: boolean | undefined;