@commercetools-uikit/time-field 19.22.5 → 19.22.6
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/README.md
CHANGED
|
@@ -51,8 +51,8 @@ export default Example;
|
|
|
51
51
|
| `horizontalConstraint` | `union`<br/>Possible values:<br/>`, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 'scale', 'auto'` | | `'scale'` | Horizontal size limit of the input fields. |
|
|
52
52
|
| `errors` | `Record` | | | A map of errors. Error messages for known errors are rendered automatically.
<br/>
Unknown errors will be forwarded to renderError. |
|
|
53
53
|
| `warnings` | `Record` | | | A map of warnings. Warning messages for known warnings are rendered automatically.
<br/>
Unknown warnings will be forwarded to renderWarning. |
|
|
54
|
-
| `renderError` | `Function`<br/>[See signature.](#signature-
|
|
55
|
-
| `renderWarning` | `Function`<br/>[See signature.](#signature-
|
|
54
|
+
| `renderError` | `Function`<br/>[See signature.](#signature-rendererror) | | | Called with custom errors, as renderError(key, error). This function can return a message which will be wrapped in an ErrorMessage.
<br />
It can also return null to show no error. |
|
|
55
|
+
| `renderWarning` | `Function`<br/>[See signature.](#signature-renderwarning) | | | Called with custom warnings, as renderWarning(key, warning). This function can return a message which will be wrapped in a WarningMessage.
<br />
It can also return null to show no warning. |
|
|
56
56
|
| `isRequired` | `boolean` | | | Indicates if the value is required. Shows an the "required asterisk" if so. |
|
|
57
57
|
| `touched` | `boolean` | | | Indicates whether the field was touched. Errors will only be shown when the field was touched. |
|
|
58
58
|
| `name` | `string` | | | Used as HTML name of the input component. |
|
|
@@ -69,7 +69,7 @@ export default Example;
|
|
|
69
69
|
| `title` | `ReactNode` | ✅ | | Title of the label |
|
|
70
70
|
| `hint` | `ReactNode` | | | Hint for the label. Provides a supplementary but important information regarding the behaviour of the input (e.g warn about uniqueness of a field, when it can only be set once),
whereas description can describe it in more depth. Can also receive a hintIcon. |
|
|
71
71
|
| `description` | `ReactNode` | | | Provides a description for the title. |
|
|
72
|
-
| `onInfoButtonClick` | `Function`<br/>[See signature.](#signature-
|
|
72
|
+
| `onInfoButtonClick` | `Function`<br/>[See signature.](#signature-oninfobuttonclick) | | | Function called when info button is pressed.
<br/>
Info button will only be visible when this prop is passed. |
|
|
73
73
|
| `hintIcon` | `ReactElement` | | | Icon to be displayed beside the hint text. Will only get rendered when hint is passed as well. |
|
|
74
74
|
| `badge` | `ReactNode` | | | Badge to be displayed beside the label.
<br/>
Might be used to display additional information about the content of the field (E.g verified email) |
|
|
75
75
|
|
|
@@ -190,7 +190,7 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
190
190
|
var TimeField$1 = TimeField;
|
|
191
191
|
|
|
192
192
|
// NOTE: This string will be replaced on build time with the package version.
|
|
193
|
-
var version = "19.22.
|
|
193
|
+
var version = "19.22.6";
|
|
194
194
|
|
|
195
195
|
exports["default"] = TimeField$1;
|
|
196
196
|
exports.version = version;
|
|
@@ -159,7 +159,7 @@ TimeField.propTypes = {};
|
|
|
159
159
|
var TimeField$1 = TimeField;
|
|
160
160
|
|
|
161
161
|
// NOTE: This string will be replaced on build time with the package version.
|
|
162
|
-
var version = "19.22.
|
|
162
|
+
var version = "19.22.6";
|
|
163
163
|
|
|
164
164
|
exports["default"] = TimeField$1;
|
|
165
165
|
exports.version = version;
|
|
@@ -165,6 +165,6 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
165
165
|
var TimeField$1 = TimeField;
|
|
166
166
|
|
|
167
167
|
// NOTE: This string will be replaced on build time with the package version.
|
|
168
|
-
var version = "19.22.
|
|
168
|
+
var version = "19.22.6";
|
|
169
169
|
|
|
170
170
|
export { TimeField$1 as default, version };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/time-field",
|
|
3
3
|
"description": "A controlled date input component for single date.",
|
|
4
|
-
"version": "19.22.
|
|
4
|
+
"version": "19.22.6",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "^7.20.13",
|
|
23
23
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
24
|
-
"@commercetools-uikit/constraints": "19.22.
|
|
25
|
-
"@commercetools-uikit/design-system": "19.22.
|
|
26
|
-
"@commercetools-uikit/field-errors": "19.22.
|
|
27
|
-
"@commercetools-uikit/field-label": "19.22.
|
|
28
|
-
"@commercetools-uikit/field-warnings": "19.22.
|
|
29
|
-
"@commercetools-uikit/spacings-stack": "19.22.
|
|
30
|
-
"@commercetools-uikit/time-input": "19.22.
|
|
31
|
-
"@commercetools-uikit/utils": "19.22.
|
|
24
|
+
"@commercetools-uikit/constraints": "19.22.6",
|
|
25
|
+
"@commercetools-uikit/design-system": "19.22.6",
|
|
26
|
+
"@commercetools-uikit/field-errors": "19.22.6",
|
|
27
|
+
"@commercetools-uikit/field-label": "19.22.6",
|
|
28
|
+
"@commercetools-uikit/field-warnings": "19.22.6",
|
|
29
|
+
"@commercetools-uikit/spacings-stack": "19.22.6",
|
|
30
|
+
"@commercetools-uikit/time-input": "19.22.6",
|
|
31
|
+
"@commercetools-uikit/utils": "19.22.6",
|
|
32
32
|
"@emotion/react": "^11.10.5",
|
|
33
33
|
"@emotion/styled": "^11.10.5",
|
|
34
34
|
"prop-types": "15.8.1",
|