@commercetools-uikit/time-field 12.2.3 → 12.2.7
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.
|
@@ -53,19 +53,19 @@ var FieldLabel__default = /*#__PURE__*/_interopDefault(FieldLabel);
|
|
|
53
53
|
var TimeInput__default = /*#__PURE__*/_interopDefault(TimeInput);
|
|
54
54
|
var FieldErrors__default = /*#__PURE__*/_interopDefault(FieldErrors);
|
|
55
55
|
|
|
56
|
-
function ownKeys(object, enumerableOnly) { var keys = _Object$keys__default[
|
|
56
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys__default["default"](object); if (_Object$getOwnPropertySymbols__default["default"]) { var symbols = _Object$getOwnPropertySymbols__default["default"](object); if (enumerableOnly) { symbols = _filterInstanceProperty__default["default"](symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor__default["default"](object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
57
57
|
|
|
58
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { var _context3; _forEachInstanceProperty__default[
|
|
58
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { var _context3; _forEachInstanceProperty__default["default"](_context3 = ownKeys(Object(source), true)).call(_context3, function (key) { _defineProperty(target, key, source[key]); }); } else if (_Object$getOwnPropertyDescriptors__default["default"]) { _Object$defineProperties__default["default"](target, _Object$getOwnPropertyDescriptors__default["default"](source)); } else { var _context4; _forEachInstanceProperty__default["default"](_context4 = ownKeys(Object(source))).call(_context4, function (key) { _Object$defineProperty__default["default"](target, key, _Object$getOwnPropertyDescriptor__default["default"](source, key)); }); } } return target; }
|
|
59
59
|
|
|
60
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct__default[
|
|
60
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct__default["default"](Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
61
61
|
|
|
62
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct__default[
|
|
62
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct__default["default"]) return false; if (_Reflect$construct__default["default"].sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct__default["default"](Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
63
63
|
var sequentialId = utils.createSequentialId('time-field-');
|
|
64
64
|
|
|
65
65
|
var hasErrors = function hasErrors(errors) {
|
|
66
66
|
var _context;
|
|
67
67
|
|
|
68
|
-
return errors && _someInstanceProperty__default[
|
|
68
|
+
return errors && _someInstanceProperty__default["default"](_context = _Object$values__default["default"](errors)).call(_context, Boolean);
|
|
69
69
|
};
|
|
70
70
|
|
|
71
71
|
var TimeField = /*#__PURE__*/function (_Component) {
|
|
@@ -84,7 +84,7 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
84
84
|
args[_key] = arguments[_key];
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
_this = _super.call.apply(_super, _concatInstanceProperty__default[
|
|
87
|
+
_this = _super.call.apply(_super, _concatInstanceProperty__default["default"](_context2 = [this]).call(_context2, args));
|
|
88
88
|
_this.state = {
|
|
89
89
|
// We generate an id in case no id is provided by the parent to attach the
|
|
90
90
|
// label to the input component.
|
|
@@ -97,11 +97,11 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
97
97
|
key: "render",
|
|
98
98
|
value: function render() {
|
|
99
99
|
var hasError = this.props.touched && hasErrors(this.props.errors);
|
|
100
|
-
return jsxRuntime.jsx(Constraints__default[
|
|
100
|
+
return jsxRuntime.jsx(Constraints__default["default"].Horizontal, {
|
|
101
101
|
max: this.props.horizontalConstraint,
|
|
102
|
-
children: jsxRuntime.jsxs(Stack__default[
|
|
102
|
+
children: jsxRuntime.jsxs(Stack__default["default"], {
|
|
103
103
|
scale: "xs",
|
|
104
|
-
children: [jsxRuntime.jsx(FieldLabel__default[
|
|
104
|
+
children: [jsxRuntime.jsx(FieldLabel__default["default"], {
|
|
105
105
|
title: this.props.title,
|
|
106
106
|
hint: this.props.hint,
|
|
107
107
|
description: this.props.description,
|
|
@@ -110,7 +110,7 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
110
110
|
badge: this.props.badge,
|
|
111
111
|
hasRequiredIndicator: this.props.isRequired,
|
|
112
112
|
htmlFor: this.state.id
|
|
113
|
-
}), jsxRuntime.jsx(TimeInput__default[
|
|
113
|
+
}), jsxRuntime.jsx(TimeInput__default["default"], _objectSpread({
|
|
114
114
|
id: this.state.id,
|
|
115
115
|
name: this.props.name,
|
|
116
116
|
autoComplete: this.props.autoComplete,
|
|
@@ -123,7 +123,7 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
123
123
|
hasError: hasError,
|
|
124
124
|
placeholder: this.props.placeholder,
|
|
125
125
|
horizontalConstraint: "scale"
|
|
126
|
-
}, utils.filterDataAttributes(this.props))), jsxRuntime.jsx(FieldErrors__default[
|
|
126
|
+
}, utils.filterDataAttributes(this.props))), jsxRuntime.jsx(FieldErrors__default["default"], {
|
|
127
127
|
errors: this.props.errors,
|
|
128
128
|
isVisible: hasError,
|
|
129
129
|
renderError: this.props.renderError
|
|
@@ -153,20 +153,20 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
153
153
|
/**
|
|
154
154
|
* Used as HTML id property. An id is auto-generated when it is not specified.
|
|
155
155
|
*/
|
|
156
|
-
id: PropTypes__default[
|
|
156
|
+
id: PropTypes__default["default"].string,
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
159
|
* Horizontal size limit of the input fields.
|
|
160
160
|
*/
|
|
161
|
-
horizontalConstraint: PropTypes__default[
|
|
161
|
+
horizontalConstraint: PropTypes__default["default"].oneOf([3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 'scale', 'auto']),
|
|
162
162
|
|
|
163
163
|
/**
|
|
164
164
|
* A map of errors. Error messages for known errors are rendered automatically.
|
|
165
165
|
* <br/>
|
|
166
166
|
* Unknown errors will be forwarded to renderError.
|
|
167
167
|
*/
|
|
168
|
-
errors: PropTypes__default[
|
|
169
|
-
missing: PropTypes__default[
|
|
168
|
+
errors: PropTypes__default["default"].shape({
|
|
169
|
+
missing: PropTypes__default["default"].bool
|
|
170
170
|
}),
|
|
171
171
|
|
|
172
172
|
/**
|
|
@@ -176,33 +176,33 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
176
176
|
* <br />
|
|
177
177
|
* Signature: `(key, error) => React.node`
|
|
178
178
|
*/
|
|
179
|
-
renderError: PropTypes__default[
|
|
179
|
+
renderError: PropTypes__default["default"].func,
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
182
|
* Indicates if the value is required. Shows an the "required asterisk" if so.
|
|
183
183
|
*/
|
|
184
|
-
isRequired: PropTypes__default[
|
|
184
|
+
isRequired: PropTypes__default["default"].bool,
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
187
|
* Indicates whether the field was touched. Errors will only be shown when the field was touched.
|
|
188
188
|
*/
|
|
189
|
-
touched: PropTypes__default[
|
|
189
|
+
touched: PropTypes__default["default"].bool,
|
|
190
190
|
// TimeInput
|
|
191
191
|
|
|
192
192
|
/**
|
|
193
193
|
* Used as HTML name of the input component.
|
|
194
194
|
*/
|
|
195
|
-
name: PropTypes__default[
|
|
195
|
+
name: PropTypes__default["default"].string,
|
|
196
196
|
|
|
197
197
|
/**
|
|
198
198
|
* Used as HTML autocomplete of the input component.
|
|
199
199
|
*/
|
|
200
|
-
autoComplete: PropTypes__default[
|
|
200
|
+
autoComplete: PropTypes__default["default"].string,
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
203
|
* Value of the input
|
|
204
204
|
*/
|
|
205
|
-
value: PropTypes__default[
|
|
205
|
+
value: PropTypes__default["default"].string.isRequired,
|
|
206
206
|
|
|
207
207
|
/**
|
|
208
208
|
* Called with an event holding the new value.
|
|
@@ -211,7 +211,7 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
211
211
|
* <br />
|
|
212
212
|
* Signature: `(event) => void`
|
|
213
213
|
*/
|
|
214
|
-
onChange: requiredIf__default[
|
|
214
|
+
onChange: requiredIf__default["default"](PropTypes__default["default"].func, function (props) {
|
|
215
215
|
return !props.isReadOnly;
|
|
216
216
|
}),
|
|
217
217
|
|
|
@@ -220,72 +220,72 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
220
220
|
* <br/>
|
|
221
221
|
* Signature: `(event) => void`
|
|
222
222
|
*/
|
|
223
|
-
onBlur: PropTypes__default[
|
|
223
|
+
onBlur: PropTypes__default["default"].func,
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Called when input is focused
|
|
227
227
|
* <br/>
|
|
228
228
|
* Signature: `(event) => void`
|
|
229
229
|
*/
|
|
230
|
-
onFocus: PropTypes__default[
|
|
230
|
+
onFocus: PropTypes__default["default"].func,
|
|
231
231
|
|
|
232
232
|
/**
|
|
233
233
|
* Focus the input on initial render
|
|
234
234
|
*/
|
|
235
|
-
isAutofocussed: PropTypes__default[
|
|
235
|
+
isAutofocussed: PropTypes__default["default"].bool,
|
|
236
236
|
|
|
237
237
|
/**
|
|
238
238
|
* Indicates that the input cannot be modified (e.g not authorized, or changes currently saving).
|
|
239
239
|
*/
|
|
240
|
-
isDisabled: PropTypes__default[
|
|
240
|
+
isDisabled: PropTypes__default["default"].bool,
|
|
241
241
|
|
|
242
242
|
/**
|
|
243
243
|
* Placeholder text for the input
|
|
244
244
|
*/
|
|
245
|
-
placeholder: PropTypes__default[
|
|
245
|
+
placeholder: PropTypes__default["default"].string,
|
|
246
246
|
// LabelField
|
|
247
247
|
|
|
248
248
|
/**
|
|
249
249
|
* Title of the label
|
|
250
250
|
*/
|
|
251
|
-
title: PropTypes__default[
|
|
251
|
+
title: PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].node]).isRequired,
|
|
252
252
|
|
|
253
253
|
/**
|
|
254
254
|
* 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),
|
|
255
255
|
* whereas description can describe it in more depth. Can also receive a hintIcon.
|
|
256
256
|
*/
|
|
257
|
-
hint: requiredIf__default[
|
|
257
|
+
hint: requiredIf__default["default"](PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].node]), function (props) {
|
|
258
258
|
return props.hintIcon;
|
|
259
259
|
}),
|
|
260
260
|
|
|
261
261
|
/**
|
|
262
262
|
* Provides a description for the title.
|
|
263
263
|
*/
|
|
264
|
-
description: PropTypes__default[
|
|
264
|
+
description: PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].node]),
|
|
265
265
|
|
|
266
266
|
/**
|
|
267
267
|
* Function called when info button is pressed.
|
|
268
268
|
* <br/>
|
|
269
269
|
* Info button will only be visible when this prop is passed.
|
|
270
270
|
*/
|
|
271
|
-
onInfoButtonClick: PropTypes__default[
|
|
271
|
+
onInfoButtonClick: PropTypes__default["default"].func,
|
|
272
272
|
|
|
273
273
|
/**
|
|
274
274
|
* Icon to be displayed beside the hint text. Will only get rendered when hint is passed as well.
|
|
275
275
|
*/
|
|
276
|
-
hintIcon: PropTypes__default[
|
|
276
|
+
hintIcon: PropTypes__default["default"].node,
|
|
277
277
|
|
|
278
278
|
/**
|
|
279
279
|
* Badge to be displayed beside the label.
|
|
280
280
|
* <br/>
|
|
281
281
|
* Might be used to display additional information about the content of the field (E.g verified email)
|
|
282
282
|
*/
|
|
283
|
-
badge: PropTypes__default[
|
|
283
|
+
badge: PropTypes__default["default"].node
|
|
284
284
|
} : {};
|
|
285
285
|
var TimeField$1 = TimeField;
|
|
286
286
|
|
|
287
|
-
// NOTE: This string will be replaced
|
|
288
|
-
var version =
|
|
287
|
+
// NOTE: This string will be replaced on build time with the package version.
|
|
288
|
+
var version = "12.2.7";
|
|
289
289
|
|
|
290
|
-
exports[
|
|
290
|
+
exports["default"] = TimeField$1;
|
|
291
291
|
exports.version = version;
|
|
@@ -51,19 +51,19 @@ var FieldLabel__default = /*#__PURE__*/_interopDefault(FieldLabel);
|
|
|
51
51
|
var TimeInput__default = /*#__PURE__*/_interopDefault(TimeInput);
|
|
52
52
|
var FieldErrors__default = /*#__PURE__*/_interopDefault(FieldErrors);
|
|
53
53
|
|
|
54
|
-
function ownKeys(object, enumerableOnly) { var keys = _Object$keys__default[
|
|
54
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys__default["default"](object); if (_Object$getOwnPropertySymbols__default["default"]) { var symbols = _Object$getOwnPropertySymbols__default["default"](object); if (enumerableOnly) { symbols = _filterInstanceProperty__default["default"](symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor__default["default"](object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
55
55
|
|
|
56
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { var _context3; _forEachInstanceProperty__default[
|
|
56
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { var _context3; _forEachInstanceProperty__default["default"](_context3 = ownKeys(Object(source), true)).call(_context3, function (key) { _defineProperty(target, key, source[key]); }); } else if (_Object$getOwnPropertyDescriptors__default["default"]) { _Object$defineProperties__default["default"](target, _Object$getOwnPropertyDescriptors__default["default"](source)); } else { var _context4; _forEachInstanceProperty__default["default"](_context4 = ownKeys(Object(source))).call(_context4, function (key) { _Object$defineProperty__default["default"](target, key, _Object$getOwnPropertyDescriptor__default["default"](source, key)); }); } } return target; }
|
|
57
57
|
|
|
58
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct__default[
|
|
58
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct__default["default"](Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
59
59
|
|
|
60
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct__default[
|
|
60
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct__default["default"]) return false; if (_Reflect$construct__default["default"].sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct__default["default"](Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
61
61
|
var sequentialId = utils.createSequentialId('time-field-');
|
|
62
62
|
|
|
63
63
|
var hasErrors = function hasErrors(errors) {
|
|
64
64
|
var _context;
|
|
65
65
|
|
|
66
|
-
return errors && _someInstanceProperty__default[
|
|
66
|
+
return errors && _someInstanceProperty__default["default"](_context = _Object$values__default["default"](errors)).call(_context, Boolean);
|
|
67
67
|
};
|
|
68
68
|
|
|
69
69
|
var TimeField = /*#__PURE__*/function (_Component) {
|
|
@@ -82,7 +82,7 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
82
82
|
args[_key] = arguments[_key];
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
_this = _super.call.apply(_super, _concatInstanceProperty__default[
|
|
85
|
+
_this = _super.call.apply(_super, _concatInstanceProperty__default["default"](_context2 = [this]).call(_context2, args));
|
|
86
86
|
_this.state = {
|
|
87
87
|
// We generate an id in case no id is provided by the parent to attach the
|
|
88
88
|
// label to the input component.
|
|
@@ -95,11 +95,11 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
95
95
|
key: "render",
|
|
96
96
|
value: function render() {
|
|
97
97
|
var hasError = this.props.touched && hasErrors(this.props.errors);
|
|
98
|
-
return jsxRuntime.jsx(Constraints__default[
|
|
98
|
+
return jsxRuntime.jsx(Constraints__default["default"].Horizontal, {
|
|
99
99
|
max: this.props.horizontalConstraint,
|
|
100
|
-
children: jsxRuntime.jsxs(Stack__default[
|
|
100
|
+
children: jsxRuntime.jsxs(Stack__default["default"], {
|
|
101
101
|
scale: "xs",
|
|
102
|
-
children: [jsxRuntime.jsx(FieldLabel__default[
|
|
102
|
+
children: [jsxRuntime.jsx(FieldLabel__default["default"], {
|
|
103
103
|
title: this.props.title,
|
|
104
104
|
hint: this.props.hint,
|
|
105
105
|
description: this.props.description,
|
|
@@ -108,7 +108,7 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
108
108
|
badge: this.props.badge,
|
|
109
109
|
hasRequiredIndicator: this.props.isRequired,
|
|
110
110
|
htmlFor: this.state.id
|
|
111
|
-
}), jsxRuntime.jsx(TimeInput__default[
|
|
111
|
+
}), jsxRuntime.jsx(TimeInput__default["default"], _objectSpread({
|
|
112
112
|
id: this.state.id,
|
|
113
113
|
name: this.props.name,
|
|
114
114
|
autoComplete: this.props.autoComplete,
|
|
@@ -121,7 +121,7 @@ var TimeField = /*#__PURE__*/function (_Component) {
|
|
|
121
121
|
hasError: hasError,
|
|
122
122
|
placeholder: this.props.placeholder,
|
|
123
123
|
horizontalConstraint: "scale"
|
|
124
|
-
}, utils.filterDataAttributes(this.props))), jsxRuntime.jsx(FieldErrors__default[
|
|
124
|
+
}, utils.filterDataAttributes(this.props))), jsxRuntime.jsx(FieldErrors__default["default"], {
|
|
125
125
|
errors: this.props.errors,
|
|
126
126
|
isVisible: hasError,
|
|
127
127
|
renderError: this.props.renderError
|
|
@@ -148,8 +148,8 @@ TimeField.getDerivedStateFromProps = function (props, state) {
|
|
|
148
148
|
TimeField.propTypes = {};
|
|
149
149
|
var TimeField$1 = TimeField;
|
|
150
150
|
|
|
151
|
-
// NOTE: This string will be replaced
|
|
152
|
-
var version =
|
|
151
|
+
// NOTE: This string will be replaced on build time with the package version.
|
|
152
|
+
var version = "12.2.7";
|
|
153
153
|
|
|
154
|
-
exports[
|
|
154
|
+
exports["default"] = TimeField$1;
|
|
155
155
|
exports.version = version;
|
|
@@ -258,7 +258,7 @@ TimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
258
258
|
} : {};
|
|
259
259
|
var TimeField$1 = TimeField;
|
|
260
260
|
|
|
261
|
-
// NOTE: This string will be replaced
|
|
262
|
-
var version =
|
|
261
|
+
// NOTE: This string will be replaced on build time with the package version.
|
|
262
|
+
var version = "12.2.7";
|
|
263
263
|
|
|
264
264
|
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": "12.2.
|
|
4
|
+
"version": "12.2.7",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"homepage": "https://uikit.commercetools.com",
|
|
12
12
|
"keywords": ["javascript", "design system", "react", "uikit"],
|
|
13
13
|
"license": "MIT",
|
|
14
|
-
"private": false,
|
|
15
14
|
"publishConfig": {
|
|
16
15
|
"access": "public"
|
|
17
16
|
},
|
|
@@ -19,19 +18,16 @@
|
|
|
19
18
|
"main": "dist/commercetools-uikit-time-field.cjs.js",
|
|
20
19
|
"module": "dist/commercetools-uikit-time-field.esm.js",
|
|
21
20
|
"files": ["dist"],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"prepare": "../../../../scripts/version.js replace"
|
|
24
|
-
},
|
|
25
21
|
"dependencies": {
|
|
26
|
-
"@babel/runtime": "7.
|
|
27
|
-
"@babel/runtime-corejs3": "7.
|
|
28
|
-
"@commercetools-uikit/constraints": "12.2.
|
|
29
|
-
"@commercetools-uikit/design-system": "12.2.
|
|
30
|
-
"@commercetools-uikit/field-errors": "12.2.
|
|
31
|
-
"@commercetools-uikit/field-label": "12.2.
|
|
32
|
-
"@commercetools-uikit/spacings-stack": "12.2.
|
|
33
|
-
"@commercetools-uikit/time-input": "12.2.
|
|
34
|
-
"@commercetools-uikit/utils": "12.2.
|
|
22
|
+
"@babel/runtime": "7.16.3",
|
|
23
|
+
"@babel/runtime-corejs3": "7.16.3",
|
|
24
|
+
"@commercetools-uikit/constraints": "12.2.5",
|
|
25
|
+
"@commercetools-uikit/design-system": "12.2.5",
|
|
26
|
+
"@commercetools-uikit/field-errors": "12.2.5",
|
|
27
|
+
"@commercetools-uikit/field-label": "12.2.7",
|
|
28
|
+
"@commercetools-uikit/spacings-stack": "12.2.5",
|
|
29
|
+
"@commercetools-uikit/time-input": "12.2.7",
|
|
30
|
+
"@commercetools-uikit/utils": "12.2.5",
|
|
35
31
|
"@emotion/react": "^11.4.0",
|
|
36
32
|
"@emotion/styled": "^11.3.0",
|
|
37
33
|
"prop-types": "15.7.2",
|