@instructure/ui-radio-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.
@@ -49,7 +49,7 @@ const propTypes = {
49
49
 
50
50
  /**
51
51
  * object with shape: `{
52
- * text: PropTypes.string,
52
+ * text: PropTypes.node,
53
53
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
54
54
  * }`
55
55
  */
@@ -61,7 +61,7 @@ const propTypes = {
61
61
 
62
62
  /**
63
63
  * object with shape: `{
64
- * text: PropTypes.string,
64
+ * text: PropTypes.node,
65
65
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
66
66
  * }`
67
67
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-radio-input",
3
- "version": "8.12.1-snapshot.46+51e6aff75",
3
+ "version": "8.12.1-snapshot.52+07b0037b0",
4
4
  "description": "A styled HTML input type='radio' element",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -25,22 +25,22 @@
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
27
  "@babel/runtime": "^7.13.10",
28
- "@instructure/emotion": "8.12.1-snapshot.46+51e6aff75",
29
- "@instructure/shared-types": "8.12.1-snapshot.46+51e6aff75",
30
- "@instructure/ui-dom-utils": "8.12.1-snapshot.46+51e6aff75",
31
- "@instructure/ui-form-field": "8.12.1-snapshot.46+51e6aff75",
32
- "@instructure/ui-prop-types": "8.12.1-snapshot.46+51e6aff75",
33
- "@instructure/ui-react-utils": "8.12.1-snapshot.46+51e6aff75",
34
- "@instructure/ui-testable": "8.12.1-snapshot.46+51e6aff75",
35
- "@instructure/uid": "8.12.1-snapshot.46+51e6aff75",
28
+ "@instructure/emotion": "8.12.1-snapshot.52+07b0037b0",
29
+ "@instructure/shared-types": "8.12.1-snapshot.52+07b0037b0",
30
+ "@instructure/ui-dom-utils": "8.12.1-snapshot.52+07b0037b0",
31
+ "@instructure/ui-form-field": "8.12.1-snapshot.52+07b0037b0",
32
+ "@instructure/ui-prop-types": "8.12.1-snapshot.52+07b0037b0",
33
+ "@instructure/ui-react-utils": "8.12.1-snapshot.52+07b0037b0",
34
+ "@instructure/ui-testable": "8.12.1-snapshot.52+07b0037b0",
35
+ "@instructure/uid": "8.12.1-snapshot.52+07b0037b0",
36
36
  "prop-types": "^15"
37
37
  },
38
38
  "devDependencies": {
39
- "@instructure/ui-babel-preset": "8.12.1-snapshot.46+51e6aff75",
40
- "@instructure/ui-color-utils": "8.12.1-snapshot.46+51e6aff75",
41
- "@instructure/ui-test-locator": "8.12.1-snapshot.46+51e6aff75",
42
- "@instructure/ui-test-utils": "8.12.1-snapshot.46+51e6aff75",
43
- "@instructure/ui-themes": "8.12.1-snapshot.46+51e6aff75"
39
+ "@instructure/ui-babel-preset": "8.12.1-snapshot.52+07b0037b0",
40
+ "@instructure/ui-color-utils": "8.12.1-snapshot.52+07b0037b0",
41
+ "@instructure/ui-test-locator": "8.12.1-snapshot.52+07b0037b0",
42
+ "@instructure/ui-test-utils": "8.12.1-snapshot.52+07b0037b0",
43
+ "@instructure/ui-themes": "8.12.1-snapshot.52+07b0037b0"
44
44
  },
45
45
  "peerDependencies": {
46
46
  "react": ">=16.8 <=17"
@@ -49,5 +49,5 @@
49
49
  "access": "public"
50
50
  },
51
51
  "sideEffects": false,
52
- "gitHead": "51e6aff7502e7b0b22b107c9d39c2a8dc2c267f4"
52
+ "gitHead": "07b0037b0ddaf6d4f19cca140fc82fc9a2f1efc9"
53
53
  }
@@ -78,7 +78,7 @@ const propTypes: PropValidators<PropKeys> = {
78
78
  readOnly: PropTypes.bool,
79
79
  /**
80
80
  * object with shape: `{
81
- * text: PropTypes.string,
81
+ * text: PropTypes.node,
82
82
  * type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
83
83
  * }`
84
84
  */
@@ -15,7 +15,7 @@ declare class RadioInputGroup extends Component<RadioInputGroupProps> {
15
15
  onChange?: ((...args: any[]) => any) | undefined;
16
16
  disabled?: boolean | undefined;
17
17
  readOnly?: boolean | undefined;
18
- messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
18
+ messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
19
19
  variant?: "simple" | "toggle" | undefined;
20
20
  size?: "small" | "medium" | "large" | undefined;
21
21
  layout?: "inline" | "columns" | "stacked" | undefined;
@@ -29,7 +29,7 @@ declare class RadioInputGroup extends Component<RadioInputGroupProps> {
29
29
  onChange?: ((...args: any[]) => any) | undefined;
30
30
  disabled?: boolean | undefined;
31
31
  readOnly?: boolean | undefined;
32
- messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
32
+ messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
33
33
  variant?: "simple" | "toggle" | undefined;
34
34
  size?: "small" | "medium" | "large" | undefined;
35
35
  layout?: "inline" | "columns" | "stacked" | undefined;