@commercetools-frontend/experimental-components 5.4.0 → 5.4.1

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.
@@ -7630,10 +7630,12 @@ const CustomFieldsInternal = props => {
7630
7630
  return jsxRuntime.jsx(formik.FastField, {
7631
7631
  name: fieldName,
7632
7632
  validate: validate,
7633
- children: () => {
7634
- var _context3;
7635
- return jsxRuntime.jsxs(uiKit.Spacings.Stack, {
7636
- scale: "xs",
7633
+ children: () => jsxRuntime.jsx(uiKit.Spacings.Stack, {
7634
+ scale: "xs",
7635
+ children: jsxRuntime.jsxs("div", {
7636
+ "aria-invalid": _Object$keys__default["default"](fieldErrors !== null && fieldErrors !== void 0 ? fieldErrors : {}).length > 0,
7637
+ "aria-errormessage": "".concat(fieldName, "-error"),
7638
+ id: "".concat(fieldName, "-error"),
7637
7639
  children: [jsxRuntime.jsx(CustomFieldsLabel, {
7638
7640
  name: fieldName,
7639
7641
  fieldDefinition: fieldDefinition
@@ -7648,26 +7650,22 @@ const CustomFieldsInternal = props => {
7648
7650
  isReadOnly: props.isReadOnly,
7649
7651
  onBlur: handleBlur,
7650
7652
  setFieldValue: props.setFieldValue
7651
- }) : jsxRuntime.jsx("div", {
7652
- "aria-invalid": _Object$keys__default["default"](fieldErrors !== null && fieldErrors !== void 0 ? fieldErrors : {}).length > 0,
7653
- "aria-errormessage": "".concat(fieldName, "-error"),
7654
- children: jsxRuntime.jsx(CustomFieldInput, {
7655
- name: fieldName,
7656
- value: value,
7657
- fieldDefinition: fieldDefinition,
7658
- isDisabled: props.isDisabled,
7659
- isReadOnly: props.isReadOnly,
7660
- onBlur: handleBlur,
7661
- setFieldValue: props.setFieldValue,
7662
- hasError: hasError
7663
- })
7664
- }, _concatInstanceProperty__default["default"](_context3 = "".concat(fieldName, "-")).call(_context3, index)), jsxRuntime.jsx(CustomFieldErrors, {
7653
+ }) : jsxRuntime.jsx(CustomFieldInput, {
7654
+ name: fieldName,
7655
+ value: value,
7656
+ fieldDefinition: fieldDefinition,
7657
+ isDisabled: props.isDisabled,
7658
+ isReadOnly: props.isReadOnly,
7659
+ onBlur: handleBlur,
7660
+ setFieldValue: props.setFieldValue,
7661
+ hasError: hasError
7662
+ }), jsxRuntime.jsx(CustomFieldErrors, {
7665
7663
  isTouched: isTouched,
7666
7664
  errors: fieldErrors
7667
7665
  })]
7668
7666
  })]
7669
- });
7670
- }
7667
+ })
7668
+ })
7671
7669
  }, _concatInstanceProperty__default["default"](_context2 = "".concat(fieldName, "-")).call(_context2, index));
7672
7670
  })
7673
7671
  });
@@ -11341,6 +11339,10 @@ const ScrollToFieldError = () => {
11341
11339
  const formik$1 = formik.useFormikContext();
11342
11340
  const isValid = formik$1.isValid,
11343
11341
  submitCount = formik$1.submitCount;
11342
+ const _useApplicationContex = applicationShellConnectors.useApplicationContext(applicationContext => ({
11343
+ dataLocale: applicationContext.dataLocale
11344
+ })),
11345
+ dataLocale = _useApplicationContex.dataLocale;
11344
11346
  React.useEffect(() => {
11345
11347
  // Do not run the effect if the form hasn't been submitted yet.
11346
11348
  if (submitCount === 0) return;
@@ -11348,17 +11350,23 @@ const ScrollToFieldError = () => {
11348
11350
  if (isValid) return;
11349
11351
  const firstErrorElement = document.querySelector('[aria-invalid="true"]');
11350
11352
  if (firstErrorElement) {
11351
- var _ref, _document$querySelect, _elementToScrollTo$sc;
11353
+ var _ref, _ref2, _document$querySelect, _elementToScrollTo$sc;
11352
11354
  // Get a reference to the label.
11353
- const id = firstErrorElement.getAttribute('id');
11355
+ const firstElementId = firstErrorElement.getAttribute('id');
11356
+ const localizedInputIndex = _indexOfInstanceProperty__default["default"](firstElementId).call(firstElementId, ".".concat(dataLocale));
11357
+
11358
+ // check if locale is appended then remove it from id
11359
+ const id = localizedInputIndex > -1 ? firstElementId.replace(".".concat(dataLocale), '') : firstElementId;
11354
11360
 
11355
11361
  // Scroll to the label (if found), otherwise to the input element itself.
11356
- const elementToScrollTo = (_ref = (_document$querySelect = document.querySelector("label[for=\"".concat(id, "\"]"))) !== null && _document$querySelect !== void 0 ? _document$querySelect : document.querySelector("label#".concat(id))) !== null && _ref !== void 0 ? _ref : firstErrorElement;
11362
+
11363
+ const elementToScrollTo = // div is used only for custom fields
11364
+ (_ref = (_ref2 = (_document$querySelect = document.querySelector("div[aria-errormessage=\"".concat(firstElementId, "\"]"))) !== null && _document$querySelect !== void 0 ? _document$querySelect : document.querySelector("label[for=\"".concat(id, "\"]"))) !== null && _ref2 !== void 0 ? _ref2 : document.querySelector("label#".concat(id))) !== null && _ref !== void 0 ? _ref : firstErrorElement;
11357
11365
  (_elementToScrollTo$sc = elementToScrollTo.scrollIntoView) === null || _elementToScrollTo$sc === void 0 || _elementToScrollTo$sc.call(elementToScrollTo, {
11358
11366
  behavior: 'smooth'
11359
11367
  });
11360
11368
  }
11361
- }, [isValid, submitCount]);
11369
+ }, [dataLocale, isValid, submitCount]);
11362
11370
  return null;
11363
11371
  };
11364
11372
 
@@ -7623,10 +7623,12 @@ const CustomFieldsInternal = props => {
7623
7623
  return jsxRuntime.jsx(formik.FastField, {
7624
7624
  name: fieldName,
7625
7625
  validate: validate,
7626
- children: () => {
7627
- var _context3;
7628
- return jsxRuntime.jsxs(uiKit.Spacings.Stack, {
7629
- scale: "xs",
7626
+ children: () => jsxRuntime.jsx(uiKit.Spacings.Stack, {
7627
+ scale: "xs",
7628
+ children: jsxRuntime.jsxs("div", {
7629
+ "aria-invalid": _Object$keys__default["default"](fieldErrors !== null && fieldErrors !== void 0 ? fieldErrors : {}).length > 0,
7630
+ "aria-errormessage": "".concat(fieldName, "-error"),
7631
+ id: "".concat(fieldName, "-error"),
7630
7632
  children: [jsxRuntime.jsx(CustomFieldsLabel, {
7631
7633
  name: fieldName,
7632
7634
  fieldDefinition: fieldDefinition
@@ -7641,26 +7643,22 @@ const CustomFieldsInternal = props => {
7641
7643
  isReadOnly: props.isReadOnly,
7642
7644
  onBlur: handleBlur,
7643
7645
  setFieldValue: props.setFieldValue
7644
- }) : jsxRuntime.jsx("div", {
7645
- "aria-invalid": _Object$keys__default["default"](fieldErrors !== null && fieldErrors !== void 0 ? fieldErrors : {}).length > 0,
7646
- "aria-errormessage": "".concat(fieldName, "-error"),
7647
- children: jsxRuntime.jsx(CustomFieldInput, {
7648
- name: fieldName,
7649
- value: value,
7650
- fieldDefinition: fieldDefinition,
7651
- isDisabled: props.isDisabled,
7652
- isReadOnly: props.isReadOnly,
7653
- onBlur: handleBlur,
7654
- setFieldValue: props.setFieldValue,
7655
- hasError: hasError
7656
- })
7657
- }, _concatInstanceProperty__default["default"](_context3 = "".concat(fieldName, "-")).call(_context3, index)), jsxRuntime.jsx(CustomFieldErrors, {
7646
+ }) : jsxRuntime.jsx(CustomFieldInput, {
7647
+ name: fieldName,
7648
+ value: value,
7649
+ fieldDefinition: fieldDefinition,
7650
+ isDisabled: props.isDisabled,
7651
+ isReadOnly: props.isReadOnly,
7652
+ onBlur: handleBlur,
7653
+ setFieldValue: props.setFieldValue,
7654
+ hasError: hasError
7655
+ }), jsxRuntime.jsx(CustomFieldErrors, {
7658
7656
  isTouched: isTouched,
7659
7657
  errors: fieldErrors
7660
7658
  })]
7661
7659
  })]
7662
- });
7663
- }
7660
+ })
7661
+ })
7664
7662
  }, _concatInstanceProperty__default["default"](_context2 = "".concat(fieldName, "-")).call(_context2, index));
7665
7663
  })
7666
7664
  });
@@ -11334,6 +11332,10 @@ const ScrollToFieldError = () => {
11334
11332
  const formik$1 = formik.useFormikContext();
11335
11333
  const isValid = formik$1.isValid,
11336
11334
  submitCount = formik$1.submitCount;
11335
+ const _useApplicationContex = applicationShellConnectors.useApplicationContext(applicationContext => ({
11336
+ dataLocale: applicationContext.dataLocale
11337
+ })),
11338
+ dataLocale = _useApplicationContex.dataLocale;
11337
11339
  React.useEffect(() => {
11338
11340
  // Do not run the effect if the form hasn't been submitted yet.
11339
11341
  if (submitCount === 0) return;
@@ -11341,17 +11343,23 @@ const ScrollToFieldError = () => {
11341
11343
  if (isValid) return;
11342
11344
  const firstErrorElement = document.querySelector('[aria-invalid="true"]');
11343
11345
  if (firstErrorElement) {
11344
- var _ref, _document$querySelect, _elementToScrollTo$sc;
11346
+ var _ref, _ref2, _document$querySelect, _elementToScrollTo$sc;
11345
11347
  // Get a reference to the label.
11346
- const id = firstErrorElement.getAttribute('id');
11348
+ const firstElementId = firstErrorElement.getAttribute('id');
11349
+ const localizedInputIndex = _indexOfInstanceProperty__default["default"](firstElementId).call(firstElementId, ".".concat(dataLocale));
11350
+
11351
+ // check if locale is appended then remove it from id
11352
+ const id = localizedInputIndex > -1 ? firstElementId.replace(".".concat(dataLocale), '') : firstElementId;
11347
11353
 
11348
11354
  // Scroll to the label (if found), otherwise to the input element itself.
11349
- const elementToScrollTo = (_ref = (_document$querySelect = document.querySelector("label[for=\"".concat(id, "\"]"))) !== null && _document$querySelect !== void 0 ? _document$querySelect : document.querySelector("label#".concat(id))) !== null && _ref !== void 0 ? _ref : firstErrorElement;
11355
+
11356
+ const elementToScrollTo = // div is used only for custom fields
11357
+ (_ref = (_ref2 = (_document$querySelect = document.querySelector("div[aria-errormessage=\"".concat(firstElementId, "\"]"))) !== null && _document$querySelect !== void 0 ? _document$querySelect : document.querySelector("label[for=\"".concat(id, "\"]"))) !== null && _ref2 !== void 0 ? _ref2 : document.querySelector("label#".concat(id))) !== null && _ref !== void 0 ? _ref : firstErrorElement;
11350
11358
  (_elementToScrollTo$sc = elementToScrollTo.scrollIntoView) === null || _elementToScrollTo$sc === void 0 || _elementToScrollTo$sc.call(elementToScrollTo, {
11351
11359
  behavior: 'smooth'
11352
11360
  });
11353
11361
  }
11354
- }, [isValid, submitCount]);
11362
+ }, [dataLocale, isValid, submitCount]);
11355
11363
  return null;
11356
11364
  };
11357
11365
 
@@ -7547,10 +7547,12 @@ const CustomFieldsInternal = props => {
7547
7547
  return jsx(FastField, {
7548
7548
  name: fieldName,
7549
7549
  validate: validate,
7550
- children: () => {
7551
- var _context3;
7552
- return jsxs(Spacings.Stack, {
7553
- scale: "xs",
7550
+ children: () => jsx(Spacings.Stack, {
7551
+ scale: "xs",
7552
+ children: jsxs("div", {
7553
+ "aria-invalid": _Object$keys(fieldErrors !== null && fieldErrors !== void 0 ? fieldErrors : {}).length > 0,
7554
+ "aria-errormessage": "".concat(fieldName, "-error"),
7555
+ id: "".concat(fieldName, "-error"),
7554
7556
  children: [jsx(CustomFieldsLabel, {
7555
7557
  name: fieldName,
7556
7558
  fieldDefinition: fieldDefinition
@@ -7565,26 +7567,22 @@ const CustomFieldsInternal = props => {
7565
7567
  isReadOnly: props.isReadOnly,
7566
7568
  onBlur: handleBlur,
7567
7569
  setFieldValue: props.setFieldValue
7568
- }) : jsx("div", {
7569
- "aria-invalid": _Object$keys(fieldErrors !== null && fieldErrors !== void 0 ? fieldErrors : {}).length > 0,
7570
- "aria-errormessage": "".concat(fieldName, "-error"),
7571
- children: jsx(CustomFieldInput, {
7572
- name: fieldName,
7573
- value: value,
7574
- fieldDefinition: fieldDefinition,
7575
- isDisabled: props.isDisabled,
7576
- isReadOnly: props.isReadOnly,
7577
- onBlur: handleBlur,
7578
- setFieldValue: props.setFieldValue,
7579
- hasError: hasError
7580
- })
7581
- }, _concatInstanceProperty(_context3 = "".concat(fieldName, "-")).call(_context3, index)), jsx(CustomFieldErrors, {
7570
+ }) : jsx(CustomFieldInput, {
7571
+ name: fieldName,
7572
+ value: value,
7573
+ fieldDefinition: fieldDefinition,
7574
+ isDisabled: props.isDisabled,
7575
+ isReadOnly: props.isReadOnly,
7576
+ onBlur: handleBlur,
7577
+ setFieldValue: props.setFieldValue,
7578
+ hasError: hasError
7579
+ }), jsx(CustomFieldErrors, {
7582
7580
  isTouched: isTouched,
7583
7581
  errors: fieldErrors
7584
7582
  })]
7585
7583
  })]
7586
- });
7587
- }
7584
+ })
7585
+ })
7588
7586
  }, _concatInstanceProperty(_context2 = "".concat(fieldName, "-")).call(_context2, index));
7589
7587
  })
7590
7588
  });
@@ -11258,6 +11256,10 @@ const ScrollToFieldError = () => {
11258
11256
  const formik = useFormikContext();
11259
11257
  const isValid = formik.isValid,
11260
11258
  submitCount = formik.submitCount;
11259
+ const _useApplicationContex = useApplicationContext(applicationContext => ({
11260
+ dataLocale: applicationContext.dataLocale
11261
+ })),
11262
+ dataLocale = _useApplicationContex.dataLocale;
11261
11263
  useEffect(() => {
11262
11264
  // Do not run the effect if the form hasn't been submitted yet.
11263
11265
  if (submitCount === 0) return;
@@ -11265,17 +11267,23 @@ const ScrollToFieldError = () => {
11265
11267
  if (isValid) return;
11266
11268
  const firstErrorElement = document.querySelector('[aria-invalid="true"]');
11267
11269
  if (firstErrorElement) {
11268
- var _ref, _document$querySelect, _elementToScrollTo$sc;
11270
+ var _ref, _ref2, _document$querySelect, _elementToScrollTo$sc;
11269
11271
  // Get a reference to the label.
11270
- const id = firstErrorElement.getAttribute('id');
11272
+ const firstElementId = firstErrorElement.getAttribute('id');
11273
+ const localizedInputIndex = _indexOfInstanceProperty(firstElementId).call(firstElementId, ".".concat(dataLocale));
11274
+
11275
+ // check if locale is appended then remove it from id
11276
+ const id = localizedInputIndex > -1 ? firstElementId.replace(".".concat(dataLocale), '') : firstElementId;
11271
11277
 
11272
11278
  // Scroll to the label (if found), otherwise to the input element itself.
11273
- const elementToScrollTo = (_ref = (_document$querySelect = document.querySelector("label[for=\"".concat(id, "\"]"))) !== null && _document$querySelect !== void 0 ? _document$querySelect : document.querySelector("label#".concat(id))) !== null && _ref !== void 0 ? _ref : firstErrorElement;
11279
+
11280
+ const elementToScrollTo = // div is used only for custom fields
11281
+ (_ref = (_ref2 = (_document$querySelect = document.querySelector("div[aria-errormessage=\"".concat(firstElementId, "\"]"))) !== null && _document$querySelect !== void 0 ? _document$querySelect : document.querySelector("label[for=\"".concat(id, "\"]"))) !== null && _ref2 !== void 0 ? _ref2 : document.querySelector("label#".concat(id))) !== null && _ref !== void 0 ? _ref : firstErrorElement;
11274
11282
  (_elementToScrollTo$sc = elementToScrollTo.scrollIntoView) === null || _elementToScrollTo$sc === void 0 || _elementToScrollTo$sc.call(elementToScrollTo, {
11275
11283
  behavior: 'smooth'
11276
11284
  });
11277
11285
  }
11278
- }, [isValid, submitCount]);
11286
+ }, [dataLocale, isValid, submitCount]);
11279
11287
  return null;
11280
11288
  };
11281
11289
 
package/dist/styles.css CHANGED
@@ -1,3 +1,55 @@
1
+ /* imported from label-range.module.css */
2
+
3
+ .label-range-module__label___3Tb0p {
4
+ font-size: 0.9rem;
5
+ font-weight: bold;
6
+ }
7
+ /* imported from multi-value-search-input.module.css */
8
+
9
+ .multi-value-search-input-module__container___2u64d {
10
+ position: relative;
11
+ }
12
+
13
+ .multi-value-search-input-module__searchInput___363nj input {
14
+ border-color: var(--border-color-for-input);
15
+ }
16
+
17
+ .multi-value-search-input-module__searchInput___363nj input::placeholder {
18
+ color: var(--font-color-for-input-when-disabled);
19
+ }
20
+
21
+ .multi-value-search-input-module__submittingTip___2339U {
22
+ margin-top: var(--spacing-xs);
23
+ background: var(--background-color-for-input);
24
+ border: solid 1px var(--border-color-for-input-when-focused);
25
+ border-radius: var(--border-radius-for-input);
26
+ position: relative;
27
+ cursor: default;
28
+ }
29
+
30
+ .multi-value-search-input-module__submitting-tip-single___1LcNy {
31
+ padding: var(--spacing-s);
32
+ color: var(--font-color-for-input-when-disabled);
33
+ }
34
+
35
+ .multi-value-search-input-module__submitting-tip-content___IyuVb {
36
+ padding: var(--spacing-s);
37
+ }
38
+
39
+ .multi-value-search-input-module__submitting-tip-content-separate___3Y_CI {
40
+ padding-top: var(--spacing-s);
41
+ }
42
+
43
+ .multi-value-search-input-module__submitting-tip-content-hoverable___2TK6S:hover {
44
+ background-color: var(--color-neutral-95);
45
+ border-radius: var(--border-radius-for-input);
46
+ }
47
+
48
+ .multi-value-search-input-module__submitting-tip-content-separate-hoverable___3VUnV:hover {
49
+ background-color: var(--color-neutral-95);
50
+ border-bottom-left-radius: var(--border-radius-for-input);
51
+ border-bottom-right-radius: var(--border-radius-for-input);
52
+ }
1
53
  /* imported from search-input.module.css */
2
54
 
3
55
  .search-input-module__block___1uM-y {
@@ -125,58 +177,6 @@
125
177
  .validated-input-module__container___3L2KB {
126
178
  display: inline;
127
179
  }
128
- /* imported from label-range.module.css */
129
-
130
- .label-range-module__label___3Tb0p {
131
- font-size: 0.9rem;
132
- font-weight: bold;
133
- }
134
- /* imported from multi-value-search-input.module.css */
135
-
136
- .multi-value-search-input-module__container___2u64d {
137
- position: relative;
138
- }
139
-
140
- .multi-value-search-input-module__searchInput___363nj input {
141
- border-color: var(--border-color-for-input);
142
- }
143
-
144
- .multi-value-search-input-module__searchInput___363nj input::placeholder {
145
- color: var(--font-color-for-input-when-disabled);
146
- }
147
-
148
- .multi-value-search-input-module__submittingTip___2339U {
149
- margin-top: var(--spacing-xs);
150
- background: var(--background-color-for-input);
151
- border: solid 1px var(--border-color-for-input-when-focused);
152
- border-radius: var(--border-radius-for-input);
153
- position: relative;
154
- cursor: default;
155
- }
156
-
157
- .multi-value-search-input-module__submitting-tip-single___1LcNy {
158
- padding: var(--spacing-s);
159
- color: var(--font-color-for-input-when-disabled);
160
- }
161
-
162
- .multi-value-search-input-module__submitting-tip-content___IyuVb {
163
- padding: var(--spacing-s);
164
- }
165
-
166
- .multi-value-search-input-module__submitting-tip-content-separate___3Y_CI {
167
- padding-top: var(--spacing-s);
168
- }
169
-
170
- .multi-value-search-input-module__submitting-tip-content-hoverable___2TK6S:hover {
171
- background-color: var(--color-neutral-95);
172
- border-radius: var(--border-radius-for-input);
173
- }
174
-
175
- .multi-value-search-input-module__submitting-tip-content-separate-hoverable___3VUnV:hover {
176
- background-color: var(--color-neutral-95);
177
- border-bottom-left-radius: var(--border-radius-for-input);
178
- border-bottom-right-radius: var(--border-radius-for-input);
179
- }
180
180
  /* imported from numeric-format-input.module.css */
181
181
 
182
182
  .numeric-format-input-module__invalid___3LcyE {
@@ -261,42 +261,6 @@
261
261
  border-bottom-left-radius: 0;
262
262
  margin-left: 0;
263
263
  }
264
- /* imported from file-input.module.css */
265
-
266
- /** Button */
267
-
268
- .file-input-module__button___2KypN {
269
- display: inline-flex;
270
- background-color: var(--color-surface);
271
- border: var(--border-for-button-as-secondary);
272
- box-shadow: none;
273
- border-radius: var(--border-radius-4);
274
- color: var(--color-solid);
275
- height: var(--height-for-button-as-big);
276
- font-size: var(--font-size-20);
277
- font-weight: var(--font-weight-500);
278
- align-items: center;
279
- transition: background-color var(--transition-linear-80ms);
280
- padding: 0 var(--spacing-m);
281
- }
282
-
283
- .file-input-module__button___2KypN:hover,
284
- .file-input-module__button___2KypN:focus {
285
- cursor: pointer;
286
- background-color: var(--background-color-for-button-when-hovered);
287
- box-shadow: none;
288
- }
289
-
290
- .file-input-module__button___2KypN:active {
291
- box-shadow: var(--shadow-9);
292
- background-color: var(--color-surface);
293
- }
294
-
295
- .file-input-module__input___3MP4D {
296
- visibility: hidden;
297
- width: 1px;
298
- height: 1px;
299
- }
300
264
  /* imported from button.module.css */
301
265
 
302
266
  /* Generic button */
@@ -500,6 +464,42 @@
500
464
  .button-module__add-button___1f093 {
501
465
  min-height: 32px;
502
466
  }
467
+ /* imported from file-input.module.css */
468
+
469
+ /** Button */
470
+
471
+ .file-input-module__button___2KypN {
472
+ display: inline-flex;
473
+ background-color: var(--color-surface);
474
+ border: var(--border-for-button-as-secondary);
475
+ box-shadow: none;
476
+ border-radius: var(--border-radius-4);
477
+ color: var(--color-solid);
478
+ height: var(--height-for-button-as-big);
479
+ font-size: var(--font-size-20);
480
+ font-weight: var(--font-weight-500);
481
+ align-items: center;
482
+ transition: background-color var(--transition-linear-80ms);
483
+ padding: 0 var(--spacing-m);
484
+ }
485
+
486
+ .file-input-module__button___2KypN:hover,
487
+ .file-input-module__button___2KypN:focus {
488
+ cursor: pointer;
489
+ background-color: var(--background-color-for-button-when-hovered);
490
+ box-shadow: none;
491
+ }
492
+
493
+ .file-input-module__button___2KypN:active {
494
+ box-shadow: var(--shadow-9);
495
+ background-color: var(--color-surface);
496
+ }
497
+
498
+ .file-input-module__input___3MP4D {
499
+ visibility: hidden;
500
+ width: 1px;
501
+ height: 1px;
502
+ }
503
503
  /* imported from centered-loading-spinner.module.css */
504
504
 
505
505
  .centered-loading-spinner-module__loading-container___3_9-h {
@@ -556,23 +556,23 @@
556
556
  .set-buttons-module__gap___38Qr0 {
557
557
  padding: 20px;
558
558
  }
559
- /* imported from platform-limits-customer-groups-status.module.css */
559
+ /* imported from platform-limits-customers-status.module.css */
560
560
 
561
- .platform-limits-customer-groups-status-module__status___6099G {
561
+ .platform-limits-customers-status-module__status___3rXYM {
562
562
  min-width: max-content;
563
563
  }
564
- /* imported from platform-limits-customer-groups-combined.module.css */
564
+ /* imported from platform-limits-customers-combined.module.css */
565
565
 
566
- .platform-limits-customer-groups-combined-module__combined___WjRoI {
566
+ .platform-limits-customers-combined-module__combined___OszDd {
567
567
  margin-bottom: var(--spacing-s);
568
568
  }
569
- /* imported from platform-limits-customers-status.module.css */
569
+ /* imported from platform-limits-customer-groups-status.module.css */
570
570
 
571
- .platform-limits-customers-status-module__status___3rXYM {
571
+ .platform-limits-customer-groups-status-module__status___6099G {
572
572
  min-width: max-content;
573
573
  }
574
- /* imported from platform-limits-customers-combined.module.css */
574
+ /* imported from platform-limits-customer-groups-combined.module.css */
575
575
 
576
- .platform-limits-customers-combined-module__combined___OszDd {
576
+ .platform-limits-customer-groups-combined-module__combined___WjRoI {
577
577
  margin-bottom: var(--spacing-s);
578
578
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/experimental-components",
3
- "version": "5.4.0",
3
+ "version": "5.4.1",
4
4
  "description": "",
5
5
  "main": "dist/commercetools-frontend-experimental-components.cjs.js",
6
6
  "module": "dist/commercetools-frontend-experimental-components.esm.js",
@@ -13,18 +13,18 @@
13
13
  "@babel/core": "^7.22.11",
14
14
  "@babel/runtime": "^7.21.0",
15
15
  "@babel/runtime-corejs3": "^7.21.0",
16
- "@commercetools-frontend/actions-global": "^22.7.1",
17
- "@commercetools-frontend/application-components": "^22.7.1",
18
- "@commercetools-frontend/application-shell": "^22.7.1",
19
- "@commercetools-frontend/application-shell-connectors": "^22.7.1",
20
- "@commercetools-frontend/constants": "^22.7.1",
21
- "@commercetools-frontend/l10n": "^22.7.1",
22
- "@commercetools-frontend/sdk": "^22.7.1",
23
- "@commercetools-frontend/sentry": "^22.7.1",
24
- "@commercetools-frontend/ui-kit": "^16.7.4",
25
- "@commercetools-uikit/design-system": "^16.7.4",
26
- "@commercetools-uikit/select-utils": "^16.7.4",
27
- "@commercetools-uikit/utils": "^16.7.4",
16
+ "@commercetools-frontend/actions-global": "^22.8.2",
17
+ "@commercetools-frontend/application-components": "^22.8.2",
18
+ "@commercetools-frontend/application-shell": "^22.8.2",
19
+ "@commercetools-frontend/application-shell-connectors": "^22.8.2",
20
+ "@commercetools-frontend/constants": "^22.8.2",
21
+ "@commercetools-frontend/l10n": "^22.8.2",
22
+ "@commercetools-frontend/sdk": "^22.8.2",
23
+ "@commercetools-frontend/sentry": "^22.8.2",
24
+ "@commercetools-frontend/ui-kit": "^16.7.5",
25
+ "@commercetools-uikit/design-system": "^16.7.5",
26
+ "@commercetools-uikit/select-utils": "^16.7.5",
27
+ "@commercetools-uikit/utils": "^16.7.5",
28
28
  "@emotion/react": "^11.11.1",
29
29
  "classnames": "2.3.2",
30
30
  "cleave.js": "1.5.10",
@@ -65,10 +65,10 @@
65
65
  "react-router-dom": "^5.3.4",
66
66
  "react-test-renderer": "^17.0.2",
67
67
  "redux": "^4.2.1",
68
- "typescript": "5.1.6",
68
+ "typescript": "5.2.2",
69
69
  "xhr-mock": "^2.5.1",
70
- "@commercetools-local/test-data": "1.2.1",
71
- "@commercetools-local/test-utils": "1.2.1"
70
+ "@commercetools-local/test-data": "1.2.2",
71
+ "@commercetools-local/test-utils": "1.2.2"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "@apollo/client": "3.x",