@commercetools-uikit/date-time-field 12.2.3 → 12.2.4
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 DateTimeInput__default = /*#__PURE__*/_interopDefault(DateTimeInput);
|
|
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('date-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 DateTimeField = /*#__PURE__*/function (_Component) {
|
|
@@ -84,7 +84,7 @@ var DateTimeField = /*#__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 DateTimeField = /*#__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(Spacings__default[
|
|
102
|
+
children: jsxRuntime.jsxs(Spacings__default["default"].Stack, {
|
|
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 DateTimeField = /*#__PURE__*/function (_Component) {
|
|
|
110
110
|
badge: this.props.badge,
|
|
111
111
|
hasRequiredIndicator: this.props.isRequired,
|
|
112
112
|
htmlFor: this.state.id
|
|
113
|
-
}), jsxRuntime.jsx(DateTimeInput__default[
|
|
113
|
+
}), jsxRuntime.jsx(DateTimeInput__default["default"], _objectSpread({
|
|
114
114
|
id: this.state.id,
|
|
115
115
|
name: this.props.name,
|
|
116
116
|
timeZone: this.props.timeZone,
|
|
@@ -123,7 +123,7 @@ var DateTimeField = /*#__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 @@ DateTimeField.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([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
|
/**
|
|
@@ -174,28 +174,28 @@ DateTimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
174
174
|
* <br />
|
|
175
175
|
* Signature: `(key, error) => React.node`
|
|
176
176
|
*/
|
|
177
|
-
renderError: PropTypes__default[
|
|
177
|
+
renderError: PropTypes__default["default"].func,
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
180
|
* Indicates if the value is required. Shows an the "required asterisk" if so.
|
|
181
181
|
*/
|
|
182
|
-
isRequired: PropTypes__default[
|
|
182
|
+
isRequired: PropTypes__default["default"].bool,
|
|
183
183
|
|
|
184
184
|
/**
|
|
185
185
|
* Indicates whether the field was touched. Errors will only be shown when the field was touched.
|
|
186
186
|
*/
|
|
187
|
-
touched: PropTypes__default[
|
|
187
|
+
touched: PropTypes__default["default"].bool,
|
|
188
188
|
// DateTimeInput
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Used as HTML name of the input component.
|
|
192
192
|
*/
|
|
193
|
-
name: PropTypes__default[
|
|
193
|
+
name: PropTypes__default["default"].string,
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
196
|
* Value of the input
|
|
197
197
|
*/
|
|
198
|
-
value: PropTypes__default[
|
|
198
|
+
value: PropTypes__default["default"].string.isRequired,
|
|
199
199
|
|
|
200
200
|
/**
|
|
201
201
|
* Called with an event holding the new value.
|
|
@@ -204,7 +204,7 @@ DateTimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
204
204
|
* <br />
|
|
205
205
|
* Signature: `(event) => void`
|
|
206
206
|
*/
|
|
207
|
-
onChange: requiredIf__default[
|
|
207
|
+
onChange: requiredIf__default["default"](PropTypes__default["default"].func, function (props) {
|
|
208
208
|
return !props.isReadOnly;
|
|
209
209
|
}),
|
|
210
210
|
|
|
@@ -213,54 +213,54 @@ DateTimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
213
213
|
* <br/>
|
|
214
214
|
* Signature: `(event) => void`
|
|
215
215
|
*/
|
|
216
|
-
onBlur: PropTypes__default[
|
|
216
|
+
onBlur: PropTypes__default["default"].func,
|
|
217
217
|
|
|
218
218
|
/**
|
|
219
219
|
* Called when input is focused
|
|
220
220
|
* <br/>
|
|
221
221
|
* Signature: `(event) => void`
|
|
222
222
|
*/
|
|
223
|
-
onFocus: PropTypes__default[
|
|
223
|
+
onFocus: PropTypes__default["default"].func,
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Indicates that the input cannot be modified (e.g not authorized, or changes currently saving).
|
|
227
227
|
*/
|
|
228
|
-
isDisabled: PropTypes__default[
|
|
228
|
+
isDisabled: PropTypes__default["default"].bool,
|
|
229
229
|
|
|
230
230
|
/**
|
|
231
231
|
* Indicates that the field is displaying read-only content
|
|
232
232
|
*/
|
|
233
|
-
isReadOnly: PropTypes__default[
|
|
233
|
+
isReadOnly: PropTypes__default["default"].bool,
|
|
234
234
|
|
|
235
235
|
/**
|
|
236
236
|
* Placeholder text for the input
|
|
237
237
|
*/
|
|
238
|
-
placeholder: PropTypes__default[
|
|
238
|
+
placeholder: PropTypes__default["default"].string,
|
|
239
239
|
|
|
240
240
|
/**
|
|
241
241
|
* Specifies the time zone in which the calendar and selected values are shown. It also influences how entered dates and times are parsed.
|
|
242
242
|
* <br />
|
|
243
243
|
* See the `DateTimeInput` docs for more information.
|
|
244
244
|
*/
|
|
245
|
-
timeZone: PropTypes__default[
|
|
245
|
+
timeZone: PropTypes__default["default"].string.isRequired,
|
|
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), whereas `description` can describe it in more depth. Can also receive a `hintIcon`.
|
|
255
255
|
*/
|
|
256
|
-
hint: requiredIf__default[
|
|
256
|
+
hint: requiredIf__default["default"](PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].node]), function (props) {
|
|
257
257
|
return props.hintIcon;
|
|
258
258
|
}),
|
|
259
259
|
|
|
260
260
|
/**
|
|
261
261
|
* Provides a description for the title.
|
|
262
262
|
*/
|
|
263
|
-
description: PropTypes__default[
|
|
263
|
+
description: PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].node]),
|
|
264
264
|
|
|
265
265
|
/**
|
|
266
266
|
* Function called when info button is pressed.
|
|
@@ -269,26 +269,26 @@ DateTimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
269
269
|
* <br />
|
|
270
270
|
* Signature: `(event) => void`
|
|
271
271
|
*/
|
|
272
|
-
onInfoButtonClick: PropTypes__default[
|
|
272
|
+
onInfoButtonClick: PropTypes__default["default"].func,
|
|
273
273
|
|
|
274
274
|
/**
|
|
275
275
|
* Icon to be displayed beside the hint text.
|
|
276
276
|
* <br />
|
|
277
277
|
* Will only get rendered when `hint` is passed as well.
|
|
278
278
|
*/
|
|
279
|
-
hintIcon: PropTypes__default[
|
|
279
|
+
hintIcon: PropTypes__default["default"].node,
|
|
280
280
|
|
|
281
281
|
/**
|
|
282
282
|
* Badge to be displayed beside the label.
|
|
283
283
|
* <br />
|
|
284
284
|
* Might be used to display additional information about the content of the field (E.g verified email)
|
|
285
285
|
*/
|
|
286
|
-
badge: PropTypes__default[
|
|
286
|
+
badge: PropTypes__default["default"].node
|
|
287
287
|
} : {};
|
|
288
288
|
var DateTimeField$1 = DateTimeField;
|
|
289
289
|
|
|
290
290
|
// NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
|
|
291
|
-
var version = '12.2.
|
|
291
|
+
var version = '12.2.4';
|
|
292
292
|
|
|
293
|
-
exports[
|
|
293
|
+
exports["default"] = DateTimeField$1;
|
|
294
294
|
exports.version = version;
|
|
@@ -51,19 +51,19 @@ var FieldLabel__default = /*#__PURE__*/_interopDefault(FieldLabel);
|
|
|
51
51
|
var DateTimeInput__default = /*#__PURE__*/_interopDefault(DateTimeInput);
|
|
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('date-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 DateTimeField = /*#__PURE__*/function (_Component) {
|
|
@@ -82,7 +82,7 @@ var DateTimeField = /*#__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 DateTimeField = /*#__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(Spacings__default[
|
|
100
|
+
children: jsxRuntime.jsxs(Spacings__default["default"].Stack, {
|
|
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 DateTimeField = /*#__PURE__*/function (_Component) {
|
|
|
108
108
|
badge: this.props.badge,
|
|
109
109
|
hasRequiredIndicator: this.props.isRequired,
|
|
110
110
|
htmlFor: this.state.id
|
|
111
|
-
}), jsxRuntime.jsx(DateTimeInput__default[
|
|
111
|
+
}), jsxRuntime.jsx(DateTimeInput__default["default"], _objectSpread({
|
|
112
112
|
id: this.state.id,
|
|
113
113
|
name: this.props.name,
|
|
114
114
|
timeZone: this.props.timeZone,
|
|
@@ -121,7 +121,7 @@ var DateTimeField = /*#__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
|
|
@@ -149,7 +149,7 @@ DateTimeField.propTypes = {};
|
|
|
149
149
|
var DateTimeField$1 = DateTimeField;
|
|
150
150
|
|
|
151
151
|
// NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
|
|
152
|
-
var version = '12.2.
|
|
152
|
+
var version = '12.2.4';
|
|
153
153
|
|
|
154
|
-
exports[
|
|
154
|
+
exports["default"] = DateTimeField$1;
|
|
155
155
|
exports.version = version;
|
|
@@ -262,6 +262,6 @@ DateTimeField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
262
262
|
var DateTimeField$1 = DateTimeField;
|
|
263
263
|
|
|
264
264
|
// NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
|
|
265
|
-
var version = '12.2.
|
|
265
|
+
var version = '12.2.4';
|
|
266
266
|
|
|
267
267
|
export { DateTimeField$1 as default, version };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/date-time-field",
|
|
3
3
|
"description": "A controlled date time input component for single date, with validation states and a label.",
|
|
4
|
-
"version": "12.2.
|
|
4
|
+
"version": "12.2.4",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"prepare": "../../../../scripts/version.js replace"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@babel/runtime": "7.
|
|
27
|
-
"@babel/runtime-corejs3": "7.
|
|
28
|
-
"@commercetools-uikit/constraints": "12.2.
|
|
29
|
-
"@commercetools-uikit/date-time-input": "12.2.
|
|
30
|
-
"@commercetools-uikit/design-system": "12.2.
|
|
31
|
-
"@commercetools-uikit/field-errors": "12.2.
|
|
32
|
-
"@commercetools-uikit/field-label": "12.2.
|
|
33
|
-
"@commercetools-uikit/spacings": "12.2.
|
|
26
|
+
"@babel/runtime": "7.15.4",
|
|
27
|
+
"@babel/runtime-corejs3": "7.15.4",
|
|
28
|
+
"@commercetools-uikit/constraints": "12.2.4",
|
|
29
|
+
"@commercetools-uikit/date-time-input": "12.2.4",
|
|
30
|
+
"@commercetools-uikit/design-system": "12.2.4",
|
|
31
|
+
"@commercetools-uikit/field-errors": "12.2.4",
|
|
32
|
+
"@commercetools-uikit/field-label": "12.2.4",
|
|
33
|
+
"@commercetools-uikit/spacings": "12.2.4",
|
|
34
34
|
"@commercetools-uikit/utils": "12.2.0",
|
|
35
35
|
"@emotion/react": "^11.4.0",
|
|
36
36
|
"@emotion/styled": "^11.3.0",
|