@instructure/ui-time-select 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/TimeSelect/props.js
CHANGED
|
@@ -111,7 +111,7 @@ const propTypes = {
|
|
|
111
111
|
* Displays messages and validation for the input. It should be an object
|
|
112
112
|
* with the following shape:
|
|
113
113
|
* `{
|
|
114
|
-
* text: PropTypes.
|
|
114
|
+
* text: PropTypes.node,
|
|
115
115
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
116
116
|
* }`
|
|
117
117
|
*/
|
package/lib/TimeSelect/props.js
CHANGED
|
@@ -125,7 +125,7 @@ const propTypes = {
|
|
|
125
125
|
* Displays messages and validation for the input. It should be an object
|
|
126
126
|
* with the following shape:
|
|
127
127
|
* `{
|
|
128
|
-
* text: PropTypes.
|
|
128
|
+
* text: PropTypes.node,
|
|
129
129
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
130
130
|
* }`
|
|
131
131
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-time-select",
|
|
3
|
-
"version": "8.12.1-snapshot.
|
|
3
|
+
"version": "8.12.1-snapshot.52+07b0037b0",
|
|
4
4
|
"description": "A component for selecting time values.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.13.10",
|
|
28
|
-
"@instructure/console": "8.12.1-snapshot.
|
|
29
|
-
"@instructure/ui-form-field": "8.12.1-snapshot.
|
|
30
|
-
"@instructure/ui-i18n": "8.12.1-snapshot.
|
|
31
|
-
"@instructure/ui-position": "8.12.1-snapshot.
|
|
32
|
-
"@instructure/ui-prop-types": "8.12.1-snapshot.
|
|
33
|
-
"@instructure/ui-react-utils": "8.12.1-snapshot.
|
|
34
|
-
"@instructure/ui-select": "8.12.1-snapshot.
|
|
35
|
-
"@instructure/ui-test-locator": "8.12.1-snapshot.
|
|
36
|
-
"@instructure/ui-testable": "8.12.1-snapshot.
|
|
37
|
-
"@instructure/uid": "8.12.1-snapshot.
|
|
28
|
+
"@instructure/console": "8.12.1-snapshot.52+07b0037b0",
|
|
29
|
+
"@instructure/ui-form-field": "8.12.1-snapshot.52+07b0037b0",
|
|
30
|
+
"@instructure/ui-i18n": "8.12.1-snapshot.52+07b0037b0",
|
|
31
|
+
"@instructure/ui-position": "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-select": "8.12.1-snapshot.52+07b0037b0",
|
|
35
|
+
"@instructure/ui-test-locator": "8.12.1-snapshot.52+07b0037b0",
|
|
36
|
+
"@instructure/ui-testable": "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.
|
|
42
|
-
"@instructure/ui-test-utils": "8.12.1-snapshot.
|
|
41
|
+
"@instructure/ui-babel-preset": "8.12.1-snapshot.52+07b0037b0",
|
|
42
|
+
"@instructure/ui-test-utils": "8.12.1-snapshot.52+07b0037b0",
|
|
43
43
|
"moment-timezone": "^0.5.33"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"sideEffects": false,
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "07b0037b0ddaf6d4f19cca140fc82fc9a2f1efc9"
|
|
53
53
|
}
|
package/src/TimeSelect/props.ts
CHANGED
|
@@ -153,7 +153,7 @@ const propTypes: PropValidators<PropKeys> = {
|
|
|
153
153
|
* Displays messages and validation for the input. It should be an object
|
|
154
154
|
* with the following shape:
|
|
155
155
|
* `{
|
|
156
|
-
* text: PropTypes.
|
|
156
|
+
* text: PropTypes.node,
|
|
157
157
|
* type: PropTypes.oneOf(['error', 'hint', 'success', 'screenreader-only'])
|
|
158
158
|
* }`
|
|
159
159
|
*/
|
|
@@ -36,7 +36,7 @@ declare class TimeSelect extends Component<TimeSelectProps, TimeSelectState> {
|
|
|
36
36
|
width?: string | undefined;
|
|
37
37
|
optionsMaxWidth?: string | undefined;
|
|
38
38
|
visibleOptionsCount?: number | undefined;
|
|
39
|
-
messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
|
|
39
|
+
messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
|
|
40
40
|
placement?: import("@instructure/ui-position").PlacementPropValues | undefined;
|
|
41
41
|
constrain?: import("@instructure/ui-position").PositionConstraint | undefined;
|
|
42
42
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -67,7 +67,7 @@ declare class TimeSelect extends Component<TimeSelectProps, TimeSelectState> {
|
|
|
67
67
|
width?: string | undefined;
|
|
68
68
|
optionsMaxWidth?: string | undefined;
|
|
69
69
|
visibleOptionsCount?: number | undefined;
|
|
70
|
-
messages?: import("@instructure/ui-form-field").FormMessage[] | undefined;
|
|
70
|
+
messages?: import("@instructure/ui-form-field/types/FormPropTypes").FormMessage[] | undefined;
|
|
71
71
|
placement?: import("@instructure/ui-position").PlacementPropValues | undefined;
|
|
72
72
|
constrain?: import("@instructure/ui-position").PositionConstraint | undefined;
|
|
73
73
|
onChange?: ((...args: any[]) => any) | undefined;
|