@commercetools-frontend/application-components 22.22.0 → 22.23.0

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.
@@ -95,7 +95,7 @@ var Stamp__default = /*#__PURE__*/_interopDefault(Stamp);
95
95
  var useResizeObserver__default = /*#__PURE__*/_interopDefault(useResizeObserver);
96
96
 
97
97
  // NOTE: This string will be replaced on build time with the package version.
98
- var version = "22.22.0";
98
+ var version = "22.23.0";
99
99
 
100
100
  var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11;
101
101
 
@@ -790,6 +790,7 @@ jsxRuntime.jsx("div", _objectSpread$5(_objectSpread$5({}, props), {}, {
790
790
  // NOTE: the `MessageDescriptor` type is exposed by `react-intl`.
791
791
  // However, we need to explicitly define this otherwise the prop-types babel plugin
792
792
  // does not recognize the object shape.
793
+
793
794
  const defaultProps$d = {
794
795
  size: 'scale',
795
796
  getParentSelector: getDefaultParentSelector,
@@ -1048,9 +1049,12 @@ var messages$3 = reactIntl.defineMessages({
1048
1049
 
1049
1050
  var FetchCustomViewsQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "FetchCustomViewsByLocator" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "customViewLocatorCode" } }, type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "allCustomViewsInstallationsByLocator" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "locator" }, value: { kind: "Variable", name: { kind: "Name", value: "customViewLocatorCode" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "customView" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "defaultLabel" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "url" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "type" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "typeSettings" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "size" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "locators" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "permissions" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "oAuthScopes" }, arguments: [], directives: [] }] } }] } }] } }] } }], loc: { start: 0, end: 405, source: { body: "query FetchCustomViewsByLocator($customViewLocatorCode: String!) {\n allCustomViewsInstallationsByLocator(locator: $customViewLocatorCode) {\n id\n customView {\n id\n defaultLabel\n labelAllLocales {\n locale\n value\n }\n url\n type\n typeSettings {\n size\n }\n locators\n permissions {\n name\n oAuthScopes\n }\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
1050
1051
  const useCustomViewsConnector = _ref => {
1051
- var _data$allCustomViewsI;
1052
+ var _enableCustomViews$va, _data$allCustomViewsI;
1052
1053
  let customViewLocatorCode = _ref.customViewLocatorCode;
1053
- const areCustomViewsEnabled = reactBroadcast.useFeatureToggle(constants.featureFlags.CUSTOM_VIEWS) && process.env.DISABLE_CUSTOM_VIEWS_FEATURE !== 'true';
1054
+ const enableCustomViews = reactBroadcast.useFlagVariation(constants.featureFlags.CUSTOM_VIEWS);
1055
+ const areCustomViewsEnabled =
1056
+ // @ts-ignore In case it's coming from the MC API, it's an object { value: boolean }.
1057
+ ((_enableCustomViews$va = enableCustomViews === null || enableCustomViews === void 0 ? void 0 : enableCustomViews.value) !== null && _enableCustomViews$va !== void 0 ? _enableCustomViews$va : enableCustomViews) && process.env.DISABLE_CUSTOM_VIEWS_FEATURE !== 'true';
1054
1058
  const _useMcQuery = applicationShellConnectors.useMcQuery(FetchCustomViewsQuery, {
1055
1059
  variables: {
1056
1060
  customViewLocatorCode
@@ -1809,6 +1813,7 @@ const getCustomViewsSelectorMargin = hasContentBelow => {
1809
1813
  // NOTE: the `MessageDescriptor` type is exposed by `react-intl`.
1810
1814
  // However, we need to explicitly define this otherwise the prop-types babel plugin
1811
1815
  // does not recognize the object shape.
1816
+
1812
1817
  const defaultProps$7 = {
1813
1818
  hideControls: false
1814
1819
  };
@@ -94,7 +94,7 @@ var Stamp__default = /*#__PURE__*/_interopDefault(Stamp);
94
94
  var useResizeObserver__default = /*#__PURE__*/_interopDefault(useResizeObserver);
95
95
 
96
96
  // NOTE: This string will be replaced on build time with the package version.
97
- var version = "22.22.0";
97
+ var version = "22.23.0";
98
98
 
99
99
  var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11;
100
100
 
@@ -629,6 +629,7 @@ jsxRuntime.jsx("div", _objectSpread$5(_objectSpread$5({}, props), {}, {
629
629
  // NOTE: the `MessageDescriptor` type is exposed by `react-intl`.
630
630
  // However, we need to explicitly define this otherwise the prop-types babel plugin
631
631
  // does not recognize the object shape.
632
+
632
633
  const defaultProps$d = {
633
634
  size: 'scale',
634
635
  getParentSelector: getDefaultParentSelector,
@@ -845,9 +846,12 @@ var messages$3 = reactIntl.defineMessages({
845
846
 
846
847
  var FetchCustomViewsQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "FetchCustomViewsByLocator" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "customViewLocatorCode" } }, type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "allCustomViewsInstallationsByLocator" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "locator" }, value: { kind: "Variable", name: { kind: "Name", value: "customViewLocatorCode" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "customView" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "defaultLabel" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "url" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "type" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "typeSettings" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "size" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "locators" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "permissions" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "oAuthScopes" }, arguments: [], directives: [] }] } }] } }] } }] } }], loc: { start: 0, end: 405, source: { body: "query FetchCustomViewsByLocator($customViewLocatorCode: String!) {\n allCustomViewsInstallationsByLocator(locator: $customViewLocatorCode) {\n id\n customView {\n id\n defaultLabel\n labelAllLocales {\n locale\n value\n }\n url\n type\n typeSettings {\n size\n }\n locators\n permissions {\n name\n oAuthScopes\n }\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
847
848
  const useCustomViewsConnector = _ref => {
848
- var _data$allCustomViewsI;
849
+ var _enableCustomViews$va, _data$allCustomViewsI;
849
850
  let customViewLocatorCode = _ref.customViewLocatorCode;
850
- const areCustomViewsEnabled = reactBroadcast.useFeatureToggle(constants.featureFlags.CUSTOM_VIEWS) && process.env.DISABLE_CUSTOM_VIEWS_FEATURE !== 'true';
851
+ const enableCustomViews = reactBroadcast.useFlagVariation(constants.featureFlags.CUSTOM_VIEWS);
852
+ const areCustomViewsEnabled =
853
+ // @ts-ignore In case it's coming from the MC API, it's an object { value: boolean }.
854
+ ((_enableCustomViews$va = enableCustomViews === null || enableCustomViews === void 0 ? void 0 : enableCustomViews.value) !== null && _enableCustomViews$va !== void 0 ? _enableCustomViews$va : enableCustomViews) && process.env.DISABLE_CUSTOM_VIEWS_FEATURE !== 'true';
851
855
  const _useMcQuery = applicationShellConnectors.useMcQuery(FetchCustomViewsQuery, {
852
856
  variables: {
853
857
  customViewLocatorCode
@@ -1376,6 +1380,7 @@ const getCustomViewsSelectorMargin = hasContentBelow => {
1376
1380
  // NOTE: the `MessageDescriptor` type is exposed by `react-intl`.
1377
1381
  // However, we need to explicitly define this otherwise the prop-types babel plugin
1378
1382
  // does not recognize the object shape.
1383
+
1379
1384
  const defaultProps$7 = {
1380
1385
  hideControls: false
1381
1386
  };
@@ -34,7 +34,7 @@ import _mapInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance
34
34
  import { reportErrorToSentry } from '@commercetools-frontend/sentry';
35
35
  import AccessibleButton from '@commercetools-uikit/accessible-button';
36
36
  import Constraints from '@commercetools-uikit/constraints';
37
- import { useAllFeatureToggles, useFeatureToggle } from '@flopflip/react-broadcast';
37
+ import { useAllFeatureToggles, useFlagVariation } from '@flopflip/react-broadcast';
38
38
  import { useShowNotification } from '@commercetools-frontend/actions-global';
39
39
  import { useApplicationContext, useMcQuery } from '@commercetools-frontend/application-shell-connectors';
40
40
  import _setTimeout from '@babel/runtime-corejs3/core-js-stable/set-timeout';
@@ -53,7 +53,7 @@ import useResizeObserver from '@react-hook/resize-observer';
53
53
  import { useMutationObserver } from '@commercetools-uikit/hooks';
54
54
 
55
55
  // NOTE: This string will be replaced on build time with the package version.
56
- var version = "22.22.0";
56
+ var version = "22.23.0";
57
57
 
58
58
  var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11;
59
59
 
@@ -748,6 +748,7 @@ jsx("div", _objectSpread$5(_objectSpread$5({}, props), {}, {
748
748
  // NOTE: the `MessageDescriptor` type is exposed by `react-intl`.
749
749
  // However, we need to explicitly define this otherwise the prop-types babel plugin
750
750
  // does not recognize the object shape.
751
+
751
752
  const defaultProps$d = {
752
753
  size: 'scale',
753
754
  getParentSelector: getDefaultParentSelector,
@@ -1006,9 +1007,12 @@ var messages$3 = defineMessages({
1006
1007
 
1007
1008
  var FetchCustomViewsQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "FetchCustomViewsByLocator" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "customViewLocatorCode" } }, type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "allCustomViewsInstallationsByLocator" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "locator" }, value: { kind: "Variable", name: { kind: "Name", value: "customViewLocatorCode" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "customView" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "defaultLabel" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "url" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "type" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "typeSettings" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "size" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "locators" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "permissions" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "oAuthScopes" }, arguments: [], directives: [] }] } }] } }] } }] } }], loc: { start: 0, end: 405, source: { body: "query FetchCustomViewsByLocator($customViewLocatorCode: String!) {\n allCustomViewsInstallationsByLocator(locator: $customViewLocatorCode) {\n id\n customView {\n id\n defaultLabel\n labelAllLocales {\n locale\n value\n }\n url\n type\n typeSettings {\n size\n }\n locators\n permissions {\n name\n oAuthScopes\n }\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
1008
1009
  const useCustomViewsConnector = _ref => {
1009
- var _data$allCustomViewsI;
1010
+ var _enableCustomViews$va, _data$allCustomViewsI;
1010
1011
  let customViewLocatorCode = _ref.customViewLocatorCode;
1011
- const areCustomViewsEnabled = useFeatureToggle(featureFlags.CUSTOM_VIEWS) && process.env.DISABLE_CUSTOM_VIEWS_FEATURE !== 'true';
1012
+ const enableCustomViews = useFlagVariation(featureFlags.CUSTOM_VIEWS);
1013
+ const areCustomViewsEnabled =
1014
+ // @ts-ignore In case it's coming from the MC API, it's an object { value: boolean }.
1015
+ ((_enableCustomViews$va = enableCustomViews === null || enableCustomViews === void 0 ? void 0 : enableCustomViews.value) !== null && _enableCustomViews$va !== void 0 ? _enableCustomViews$va : enableCustomViews) && process.env.DISABLE_CUSTOM_VIEWS_FEATURE !== 'true';
1012
1016
  const _useMcQuery = useMcQuery(FetchCustomViewsQuery, {
1013
1017
  variables: {
1014
1018
  customViewLocatorCode
@@ -1767,6 +1771,7 @@ const getCustomViewsSelectorMargin = hasContentBelow => {
1767
1771
  // NOTE: the `MessageDescriptor` type is exposed by `react-intl`.
1768
1772
  // However, we need to explicitly define this otherwise the prop-types babel plugin
1769
1773
  // does not recognize the object shape.
1774
+
1770
1775
  const defaultProps$7 = {
1771
1776
  hideControls: false
1772
1777
  };
@@ -26,18 +26,18 @@ export declare const themesOverrides: {
26
26
  paddingForDetailPageHeader: string;
27
27
  paddingForMainPageHeader: string;
28
28
  paddingForTabularPageHeader: string;
29
- backgroundColorForNavbar: "var(--color-primary-10, hsl(240, 66%, 19%))";
30
- backgroundColorForNavbarExpander: "var(--color-primary-10, hsl(240, 66%, 19%))";
31
- backgroundColorForNavbarExpanderWhenHovered: "var(--color-primary-10, hsl(240, 66%, 19%))";
32
- backgroundColorForNavbarHeader: "var(--color-primary-10, hsl(240, 66%, 19%))";
29
+ backgroundColorForNavbar: "var(--color-primary-10, hsl(175, 55%, 10%))";
30
+ backgroundColorForNavbarExpander: "var(--color-primary-10, hsl(175, 55%, 10%))";
31
+ backgroundColorForNavbarExpanderWhenHovered: "var(--color-primary-10, hsl(175, 55%, 10%))";
32
+ backgroundColorForNavbarHeader: "var(--color-primary-10, hsl(175, 55%, 10%))";
33
33
  backgroundColorForNavbarMenuItemWhenActive: "var(--color-primary-25, hsl(175, 55%, 25%))";
34
34
  backgroundColorForNavbarSubmenuItemWhenActive: "var(--color-primary-40, hsl(175, 55%, 40%))";
35
35
  backgroundColorForNavbarMenuItemWhenHovered: "var(--color-primary-20, hsl(175, 55%, 20%))";
36
- backgroundColorForNavbarSkeleton: "var(--color-primary-10, hsl(240, 66%, 19%))";
37
- backgroundColorForNavbarSkeletonFooter: "var(--color-primary-10, hsl(240, 66%, 19%))";
36
+ backgroundColorForNavbarSkeleton: "var(--color-primary-10, hsl(175, 55%, 10%))";
37
+ backgroundColorForNavbarSkeletonFooter: "var(--color-primary-10, hsl(175, 55%, 10%))";
38
38
  borderColorForNotificationWhenSuccess: "var(--color-success-85, hsl(144, 69%, 80%))";
39
39
  fontColorForNotificationWhenSuccess: "var(--color-success, hsl(152, 77%, 39%))";
40
- fontColorForNotificationWhenWarning: "var(--color-warning-60, hsl(35, 90%, 55%))";
40
+ fontColorForNotificationWhenWarning: "var(--color-warning-60, hsl(25.110132158590307, 90%, 60%))";
41
41
  fontColorForTabLabelWhenActive: "var(--color-primary, hsl(175, 55%, 45%))";
42
42
  visibilityForNavbarFaded: string;
43
43
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/application-components",
3
- "version": "22.22.0",
3
+ "version": "22.23.0",
4
4
  "description": "Generic components for building Merchant Center applications",
5
5
  "bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
6
6
  "repository": {
@@ -36,31 +36,31 @@
36
36
  "dependencies": {
37
37
  "@babel/runtime": "^7.22.15",
38
38
  "@babel/runtime-corejs3": "^7.22.15",
39
- "@commercetools-frontend/actions-global": "22.22.0",
40
- "@commercetools-frontend/application-config": "22.22.0",
41
- "@commercetools-frontend/application-shell-connectors": "22.22.0",
42
- "@commercetools-frontend/assets": "22.22.0",
43
- "@commercetools-frontend/constants": "22.22.0",
44
- "@commercetools-frontend/i18n": "22.22.0",
45
- "@commercetools-frontend/l10n": "22.22.0",
46
- "@commercetools-frontend/sentry": "22.22.0",
47
- "@commercetools-uikit/accessible-button": "^18.2.0",
48
- "@commercetools-uikit/card": "^18.2.0",
49
- "@commercetools-uikit/constraints": "^18.2.0",
50
- "@commercetools-uikit/design-system": "^18.2.0",
51
- "@commercetools-uikit/flat-button": "^18.2.0",
52
- "@commercetools-uikit/hooks": "^18.2.0",
53
- "@commercetools-uikit/icon-button": "^18.2.0",
54
- "@commercetools-uikit/icons": "^18.2.0",
55
- "@commercetools-uikit/label": "^18.2.0",
56
- "@commercetools-uikit/messages": "^18.2.0",
57
- "@commercetools-uikit/primary-button": "^18.2.0",
58
- "@commercetools-uikit/secondary-button": "^18.2.0",
59
- "@commercetools-uikit/secondary-icon-button": "^18.2.0",
60
- "@commercetools-uikit/spacings": "^18.2.0",
61
- "@commercetools-uikit/stamp": "^18.2.0",
62
- "@commercetools-uikit/text": "^18.2.0",
63
- "@commercetools-uikit/utils": "^18.2.0",
39
+ "@commercetools-frontend/actions-global": "22.23.0",
40
+ "@commercetools-frontend/application-config": "22.23.0",
41
+ "@commercetools-frontend/application-shell-connectors": "22.23.0",
42
+ "@commercetools-frontend/assets": "22.23.0",
43
+ "@commercetools-frontend/constants": "22.23.0",
44
+ "@commercetools-frontend/i18n": "22.23.0",
45
+ "@commercetools-frontend/l10n": "22.23.0",
46
+ "@commercetools-frontend/sentry": "22.23.0",
47
+ "@commercetools-uikit/accessible-button": "^19.0.0",
48
+ "@commercetools-uikit/card": "^19.0.0",
49
+ "@commercetools-uikit/constraints": "^19.0.0",
50
+ "@commercetools-uikit/design-system": "^19.0.0",
51
+ "@commercetools-uikit/flat-button": "^19.0.0",
52
+ "@commercetools-uikit/hooks": "^19.0.0",
53
+ "@commercetools-uikit/icon-button": "^19.0.0",
54
+ "@commercetools-uikit/icons": "^19.0.0",
55
+ "@commercetools-uikit/label": "^19.0.0",
56
+ "@commercetools-uikit/messages": "^19.0.0",
57
+ "@commercetools-uikit/primary-button": "^19.0.0",
58
+ "@commercetools-uikit/secondary-button": "^19.0.0",
59
+ "@commercetools-uikit/secondary-icon-button": "^19.0.0",
60
+ "@commercetools-uikit/spacings": "^19.0.0",
61
+ "@commercetools-uikit/stamp": "^19.0.0",
62
+ "@commercetools-uikit/text": "^19.0.0",
63
+ "@commercetools-uikit/utils": "^19.0.0",
64
64
  "@emotion/react": "^11.11.4",
65
65
  "@emotion/styled": "^11.11.0",
66
66
  "@flopflip/react-broadcast": "13.4.1",
@@ -87,11 +87,11 @@
87
87
  "@types/jest": "^29.5.4",
88
88
  "@types/raf-schd": "^4.0.1",
89
89
  "@types/testing-library__jest-dom": "^5.14.9",
90
- "jest": "29.5.0",
90
+ "jest": "29.7.0",
91
91
  "msw": "0.49.3",
92
92
  "react": "17.0.2",
93
93
  "react-dom": "17.0.2",
94
- "react-intl": "^6.4.5",
94
+ "react-intl": "^6.4.7",
95
95
  "react-router-dom": "5.3.4"
96
96
  },
97
97
  "peerDependencies": {