@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.
package/es/NumberInput/props.js
CHANGED
package/lib/NumberInput/props.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-number-input",
|
|
3
|
-
"version": "8.12.1-snapshot.
|
|
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.
|
|
28
|
-
"@instructure/ui-test-locator": "8.12.1-snapshot.
|
|
29
|
-
"@instructure/ui-test-utils": "8.12.1-snapshot.
|
|
30
|
-
"@instructure/ui-themes": "8.12.1-snapshot.
|
|
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.
|
|
35
|
-
"@instructure/shared-types": "8.12.1-snapshot.
|
|
36
|
-
"@instructure/ui-form-field": "8.12.1-snapshot.
|
|
37
|
-
"@instructure/ui-icons": "8.12.1-snapshot.
|
|
38
|
-
"@instructure/ui-react-utils": "8.12.1-snapshot.
|
|
39
|
-
"@instructure/ui-testable": "8.12.1-snapshot.
|
|
40
|
-
"@instructure/ui-utils": "8.12.1-snapshot.
|
|
41
|
-
"@instructure/uid": "8.12.1-snapshot.
|
|
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": "
|
|
52
|
+
"gitHead": "07b0037b0ddaf6d4f19cca140fc82fc9a2f1efc9"
|
|
53
53
|
}
|
package/src/NumberInput/props.ts
CHANGED
|
@@ -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.
|
|
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;
|