@commercetools-frontend/application-components 22.40.0 → 22.42.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.
Files changed (46) hide show
  1. package/dist/commercetools-frontend-application-components.cjs.dev.js +295 -241
  2. package/dist/commercetools-frontend-application-components.cjs.prod.js +244 -176
  3. package/dist/commercetools-frontend-application-components.esm.js +297 -242
  4. package/dist/{custom-views-selector-473e176e.cjs.dev.js → custom-views-selector-266e6025.cjs.dev.js} +3 -5
  5. package/dist/{custom-views-selector-36368b71.cjs.prod.js → custom-views-selector-6520d960.cjs.prod.js} +1 -1
  6. package/dist/{custom-views-selector-f8bc3071.esm.js → custom-views-selector-8d9caad0.esm.js} +3 -5
  7. package/dist/declarations/src/components/custom-views/custom-view-loader/custom-view-loader.d.ts +1 -1
  8. package/dist/declarations/src/components/custom-views/custom-views-selector/custom-views-selector.d.ts +1 -1
  9. package/dist/declarations/src/components/custom-views/custom-views-selector/index.d.ts +1 -1
  10. package/dist/declarations/src/components/detail-pages/custom-form-detail-page/custom-form-detail-page.d.ts +5 -5
  11. package/dist/declarations/src/components/detail-pages/form-detail-page/form-detail-page.d.ts +2 -2
  12. package/dist/declarations/src/components/detail-pages/info-detail-page/info-detail-page.d.ts +2 -2
  13. package/dist/declarations/src/components/detail-pages/tabular-detail-page/tabular-detail-page.d.ts +5 -5
  14. package/dist/declarations/src/components/dialogs/confirmation-dialog/confirmation-dialog.d.ts +2 -2
  15. package/dist/declarations/src/components/dialogs/form-dialog/form-dialog.d.ts +2 -2
  16. package/dist/declarations/src/components/dialogs/info-dialog/info-dialog.d.ts +3 -3
  17. package/dist/declarations/src/components/dialogs/internals/dialog-container.d.ts +2 -2
  18. package/dist/declarations/src/components/dialogs/internals/dialog-footer.d.ts +1 -1
  19. package/dist/declarations/src/components/dialogs/internals/dialog-header.d.ts +2 -2
  20. package/dist/declarations/src/components/dialogs/internals/dialog.styles.d.ts +12 -1
  21. package/dist/declarations/src/components/drawer/drawer.d.ts +3 -3
  22. package/dist/declarations/src/components/internals/default-form-buttons.d.ts +3 -3
  23. package/dist/declarations/src/components/internals/page-header-title.d.ts +1 -1
  24. package/dist/declarations/src/components/internals/page-header.d.ts +1 -1
  25. package/dist/declarations/src/components/internals/page-top-bar.d.ts +1 -1
  26. package/dist/declarations/src/components/internals/tabular-page.d.ts +1 -1
  27. package/dist/declarations/src/components/main-pages/custom-form-main-page/custom-form-main-page.d.ts +5 -5
  28. package/dist/declarations/src/components/main-pages/form-main-page/form-main-page.d.ts +2 -2
  29. package/dist/declarations/src/components/main-pages/info-main-page/info-main-page.d.ts +2 -2
  30. package/dist/declarations/src/components/main-pages/tabular-main-page/tabular-main-page.d.ts +5 -5
  31. package/dist/declarations/src/components/maintenance-page-layout/maintenance-page-layout.d.ts +1 -1
  32. package/dist/declarations/src/components/modal-pages/custom-form-modal-page/custom-form-modal-page.d.ts +4 -4
  33. package/dist/declarations/src/components/modal-pages/form-modal-page/form-modal-page.d.ts +1 -1
  34. package/dist/declarations/src/components/modal-pages/info-modal-page/info-modal-page.d.ts +1 -1
  35. package/dist/declarations/src/components/modal-pages/internals/modal-page.d.ts +2 -2
  36. package/dist/declarations/src/components/modal-pages/internals/modal-page.styles.d.ts +13 -12
  37. package/dist/declarations/src/components/modal-pages/tabular-modal-page/tabular-modal-page.d.ts +4 -4
  38. package/dist/declarations/src/components/modal-pages/utils/modal-page-top-bar.d.ts +2 -2
  39. package/dist/declarations/src/components/page-content-containers/page-content-full/page-content-full.d.ts +1 -1
  40. package/dist/declarations/src/components/page-content-containers/page-content-narrow/page-content-narrow.d.ts +1 -1
  41. package/dist/declarations/src/components/page-content-containers/page-content-wide/page-content-wide.d.ts +1 -1
  42. package/dist/declarations/src/components/page-not-found/page-not-found.d.ts +1 -1
  43. package/dist/declarations/src/components/page-unauthorized/page-unauthorized.d.ts +1 -1
  44. package/dist/declarations/src/components/project-stamp/project-stamp.d.ts +4 -4
  45. package/dist/declarations/src/components/tab-header/tab-header.d.ts +1 -1
  46. package/package.json +30 -30
@@ -72,7 +72,7 @@ type FormMainPageProps = {
72
72
  onSecondaryButtonClick: (event: SyntheticEvent) => void;
73
73
  };
74
74
  declare const FormMainPage: {
75
- ({ hideControls, ...props }: FormMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
75
+ ({ hideControls, ...props }: FormMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
76
76
  displayName: string;
77
77
  PageHeaderTitle: {
78
78
  ({ titleSize, truncate, ...props }: {
@@ -81,7 +81,7 @@ declare const FormMainPage: {
81
81
  truncate?: boolean | undefined;
82
82
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
83
83
  children?: undefined;
84
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
84
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
85
85
  displayName: string;
86
86
  };
87
87
  Intl: {
@@ -22,7 +22,7 @@ type InfoMainPageProps = {
22
22
  children: ReactNode;
23
23
  };
24
24
  declare const InfoMainPage: {
25
- (props: InfoMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
25
+ (props: InfoMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
26
26
  displayName: string;
27
27
  PageHeaderTitle: {
28
28
  ({ titleSize, truncate, ...props }: {
@@ -31,7 +31,7 @@ declare const InfoMainPage: {
31
31
  truncate?: boolean | undefined;
32
32
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
33
33
  children?: undefined;
34
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
34
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
35
35
  displayName: string;
36
36
  };
37
37
  };
@@ -35,7 +35,7 @@ type TTabularMainPageProps = {
35
35
  customViewLocatorCodes?: TCustomViewSelectorProps['customViewLocatorCodes'];
36
36
  };
37
37
  declare const TabularMainPage: {
38
- ({ hideControls, ...props }: TTabularMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
38
+ ({ hideControls, ...props }: TTabularMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
39
39
  displayName: string;
40
40
  FormPrimaryButton: {
41
41
  ({ label, isDisabled, dataAttributes, ...props }: {
@@ -54,7 +54,7 @@ declare const TabularMainPage: {
54
54
  * The title of the page.
55
55
  */
56
56
  children?: undefined;
57
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
57
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  FormSecondaryButton: {
@@ -74,7 +74,7 @@ declare const TabularMainPage: {
74
74
  * The title of the page.
75
75
  */
76
76
  children?: undefined;
77
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
77
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
78
78
  displayName: string;
79
79
  };
80
80
  FormDeleteButton: {
@@ -92,7 +92,7 @@ declare const TabularMainPage: {
92
92
  * The title of the page.
93
93
  */
94
94
  children?: undefined;
95
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
95
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
96
96
  displayName: string;
97
97
  };
98
98
  PageHeaderTitle: {
@@ -102,7 +102,7 @@ declare const TabularMainPage: {
102
102
  truncate?: boolean | undefined;
103
103
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
104
104
  children?: undefined;
105
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
105
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
106
106
  displayName: string;
107
107
  };
108
108
  Intl: {
@@ -9,7 +9,7 @@ export type Props = {
9
9
  children?: never;
10
10
  };
11
11
  declare const MaintenancePageLayout: {
12
- (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
12
+ (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  export default MaintenancePageLayout;
@@ -34,7 +34,7 @@ type Props = {
34
34
  hideControls?: boolean;
35
35
  };
36
36
  declare const CustomFormModalPage: {
37
- (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
37
+ (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
38
38
  displayName: string;
39
39
  FormPrimaryButton: {
40
40
  ({ label, isDisabled, dataAttributes, ...props }: {
@@ -51,7 +51,7 @@ declare const CustomFormModalPage: {
51
51
  [key: string]: string;
52
52
  } | undefined;
53
53
  children?: undefined;
54
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
54
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
55
55
  displayName: string;
56
56
  };
57
57
  FormSecondaryButton: {
@@ -69,7 +69,7 @@ declare const CustomFormModalPage: {
69
69
  [key: string]: string;
70
70
  } | undefined;
71
71
  children?: undefined;
72
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
72
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
73
73
  displayName: string;
74
74
  };
75
75
  FormDeleteButton: {
@@ -85,7 +85,7 @@ declare const CustomFormModalPage: {
85
85
  [key: string]: string;
86
86
  } | undefined;
87
87
  children?: undefined;
88
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
88
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
89
89
  displayName: string;
90
90
  };
91
91
  Intl: {
@@ -46,7 +46,7 @@ type Props = {
46
46
  iconLeftSecondaryButton?: ReactElement;
47
47
  };
48
48
  declare const FormModalPage: {
49
- ({ hideControls, ...props }: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
49
+ ({ hideControls, ...props }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
50
50
  displayName: string;
51
51
  Intl: {
52
52
  cancel: {
@@ -32,7 +32,7 @@ type Props = {
32
32
  subtitle?: string | ReactElement;
33
33
  };
34
34
  declare const InfoModalPage: {
35
- (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
35
+ (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  export default InfoModalPage;
@@ -1,5 +1,5 @@
1
1
  import { type ReactNode, type SyntheticEvent } from 'react';
2
- import { type CSSObject } from '@emotion/react';
2
+ import type { CSSObject } from '@emotion/react';
3
3
  declare const getDefaultParentSelector: () => HTMLElement;
4
4
  type MessageDescriptor = {
5
5
  id: string;
@@ -33,7 +33,7 @@ type Props = {
33
33
  hideTopBar?: boolean;
34
34
  };
35
35
  declare const ModalPage: {
36
- ({ size, getParentSelector, shouldDelayOnClose, ...props }: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
36
+ ({ size, getParentSelector, shouldDelayOnClose, ...props }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
37
37
  displayName: string;
38
38
  };
39
39
  export default ModalPage;
@@ -1,9 +1,5 @@
1
- import { type SerializedStyles } from '@emotion/react';
1
+ /// <reference types="react" />
2
2
  import type { TModalPageSize } from './modal-page';
3
- type StyleProps = {
4
- zIndex?: number;
5
- size: TModalPageSize;
6
- };
7
3
  export declare const stylesBySize: {
8
4
  '10': {
9
5
  width: string;
@@ -22,10 +18,15 @@ export declare const stylesBySize: {
22
18
  transitionTime: number;
23
19
  };
24
20
  };
25
- export declare const getContainerStyles: (props: StyleProps) => SerializedStyles;
26
- export declare const getOverlayStyles: (props: StyleProps) => SerializedStyles;
27
- export declare const getAfterOpenContainerAnimation: () => SerializedStyles;
28
- export declare const getAfterOpenOverlayAnimation: () => SerializedStyles;
29
- export declare const getBeforeCloseContainerAnimation: (props: StyleProps) => SerializedStyles;
30
- export declare const getBeforeCloseOverlayAnimation: () => SerializedStyles;
31
- export {};
21
+ export declare const ModalOverlay: import("@emotion/styled").StyledComponent<{
22
+ theme?: import("@emotion/react").Theme | undefined;
23
+ as?: import("react").ElementType<any> | undefined;
24
+ } & {
25
+ size: TModalPageSize;
26
+ zIndex?: number | undefined;
27
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
28
+ export declare const ModalContent: import("@emotion/styled").StyledComponent<import("@radix-ui/react-dialog").DialogContentProps & import("react").RefAttributes<HTMLDivElement> & {
29
+ theme?: import("@emotion/react").Theme | undefined;
30
+ } & {
31
+ size: TModalPageSize;
32
+ }, {}, {}>;
@@ -37,7 +37,7 @@ type Props = {
37
37
  hideControls?: boolean;
38
38
  };
39
39
  declare const TabularModalPage: {
40
- ({ hideControls, ...props }: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
40
+ ({ hideControls, ...props }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
41
41
  displayName: string;
42
42
  FormPrimaryButton: {
43
43
  ({ label, isDisabled, dataAttributes, ...props }: {
@@ -54,7 +54,7 @@ declare const TabularModalPage: {
54
54
  [key: string]: string;
55
55
  } | undefined;
56
56
  children?: undefined;
57
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
57
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  FormSecondaryButton: {
@@ -72,7 +72,7 @@ declare const TabularModalPage: {
72
72
  [key: string]: string;
73
73
  } | undefined;
74
74
  children?: undefined;
75
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
75
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
76
76
  displayName: string;
77
77
  };
78
78
  FormDeleteButton: {
@@ -88,7 +88,7 @@ declare const TabularModalPage: {
88
88
  [key: string]: string;
89
89
  } | undefined;
90
90
  children?: undefined;
91
- }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
91
+ }): import("@emotion/react/jsx-runtime").JSX.Element;
92
92
  displayName: string;
93
93
  };
94
94
  Intl: {
@@ -4,7 +4,7 @@ type TLargeIconWrapperProps = {
4
4
  children: ReactElement;
5
5
  size?: TSecondaryButtonIconProps['size'];
6
6
  };
7
- export declare const LargeIconWrapper: (props: TLargeIconWrapperProps) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
7
+ export declare const LargeIconWrapper: (props: TLargeIconWrapperProps) => import("@emotion/react/jsx-runtime").JSX.Element;
8
8
  type MessageDescriptor = {
9
9
  id: string;
10
10
  description?: string | object;
@@ -20,7 +20,7 @@ type Props = {
20
20
  children?: never;
21
21
  };
22
22
  declare const ModalPageTopBar: {
23
- ({ color, previousPathLabel, hidePathLabel, ...props }: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
23
+ ({ color, previousPathLabel, hidePathLabel, ...props }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
24
24
  displayName: string;
25
25
  };
26
26
  export default ModalPageTopBar;
@@ -2,5 +2,5 @@ import type { ReactNode } from 'react';
2
2
  export type TPageContentFull = {
3
3
  children: ReactNode;
4
4
  };
5
- declare function PageContentFull(props: TPageContentFull): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
5
+ declare function PageContentFull(props: TPageContentFull): import("@emotion/react/jsx-runtime").JSX.Element;
6
6
  export default PageContentFull;
@@ -2,5 +2,5 @@ import type { ReactNode } from 'react';
2
2
  export type TPageContentNarrow = {
3
3
  children: ReactNode;
4
4
  };
5
- declare function PageContentNarrow(props: TPageContentNarrow): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
5
+ declare function PageContentNarrow(props: TPageContentNarrow): import("@emotion/react/jsx-runtime").JSX.Element;
6
6
  export default PageContentNarrow;
@@ -5,5 +5,5 @@ export type TPageContentWide = {
5
5
  children: ReactNode;
6
6
  themeParentSelector?: () => HTMLElement | null;
7
7
  };
8
- declare function PageContentWide({ columns, gapSize, ...props }: TPageContentWide): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
8
+ declare function PageContentWide({ columns, gapSize, ...props }: TPageContentWide): import("@emotion/react/jsx-runtime").JSX.Element;
9
9
  export default PageContentWide;
@@ -1,5 +1,5 @@
1
1
  declare const PageNotFound: {
2
- (): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
2
+ (): import("@emotion/react/jsx-runtime").JSX.Element;
3
3
  displayName: string;
4
4
  };
5
5
  export default PageNotFound;
@@ -1,5 +1,5 @@
1
1
  export declare const PageUnauthorized: {
2
- (): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
2
+ (): import("@emotion/react/jsx-runtime").JSX.Element;
3
3
  displayName: string;
4
4
  };
5
5
  export default PageUnauthorized;
@@ -1,9 +1,9 @@
1
1
  declare const ProjectStamp: {
2
- IsProduction: () => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
3
- IsSuspended: () => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
4
- IsExpired: () => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
2
+ IsProduction: () => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ IsSuspended: () => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ IsExpired: () => import("@emotion/react/jsx-runtime").JSX.Element;
5
5
  WillExpire: (props: {
6
6
  daysLeft: number;
7
- }) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
7
+ }) => import("@emotion/react/jsx-runtime").JSX.Element;
8
8
  };
9
9
  export default ProjectStamp;
@@ -30,7 +30,7 @@ export type TTabHeaderProps = {
30
30
  exactPathMatch?: boolean;
31
31
  };
32
32
  export declare const TabHeader: {
33
- ({ isDisabled, exactPathMatch, ...props }: TTabHeaderProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
33
+ ({ isDisabled, exactPathMatch, ...props }: TTabHeaderProps): import("@emotion/react/jsx-runtime").JSX.Element;
34
34
  displayName: string;
35
35
  };
36
36
  export default TabHeader;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/application-components",
3
- "version": "22.40.0",
3
+ "version": "22.42.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,34 +36,35 @@
36
36
  "dependencies": {
37
37
  "@babel/runtime": "^7.22.15",
38
38
  "@babel/runtime-corejs3": "^7.22.15",
39
- "@commercetools-frontend/actions-global": "22.40.0",
40
- "@commercetools-frontend/application-config": "22.40.0",
41
- "@commercetools-frontend/application-shell-connectors": "22.40.0",
42
- "@commercetools-frontend/assets": "22.40.0",
43
- "@commercetools-frontend/constants": "22.40.0",
44
- "@commercetools-frontend/i18n": "22.40.0",
45
- "@commercetools-frontend/l10n": "22.40.0",
46
- "@commercetools-frontend/sentry": "22.40.0",
47
- "@commercetools-uikit/accessible-button": "^19.17.1",
48
- "@commercetools-uikit/card": "^19.17.1",
49
- "@commercetools-uikit/constraints": "^19.17.1",
50
- "@commercetools-uikit/design-system": "^19.17.1",
51
- "@commercetools-uikit/flat-button": "^19.17.1",
52
- "@commercetools-uikit/hooks": "^19.17.1",
53
- "@commercetools-uikit/icon-button": "^19.17.1",
54
- "@commercetools-uikit/icons": "^19.17.1",
55
- "@commercetools-uikit/label": "^19.17.1",
56
- "@commercetools-uikit/messages": "^19.17.1",
57
- "@commercetools-uikit/primary-button": "^19.17.1",
58
- "@commercetools-uikit/secondary-button": "^19.17.1",
59
- "@commercetools-uikit/secondary-icon-button": "^19.17.1",
60
- "@commercetools-uikit/spacings": "^19.17.1",
61
- "@commercetools-uikit/stamp": "^19.17.1",
62
- "@commercetools-uikit/text": "^19.17.1",
63
- "@commercetools-uikit/utils": "^19.17.1",
64
- "@emotion/react": "^11.11.4",
65
- "@emotion/styled": "^11.11.0",
39
+ "@commercetools-frontend/actions-global": "22.42.0",
40
+ "@commercetools-frontend/application-config": "22.42.0",
41
+ "@commercetools-frontend/application-shell-connectors": "22.42.0",
42
+ "@commercetools-frontend/assets": "22.42.0",
43
+ "@commercetools-frontend/constants": "22.42.0",
44
+ "@commercetools-frontend/i18n": "22.42.0",
45
+ "@commercetools-frontend/l10n": "22.42.0",
46
+ "@commercetools-frontend/sentry": "22.42.0",
47
+ "@commercetools-uikit/accessible-button": "^19.22.3",
48
+ "@commercetools-uikit/card": "^19.22.3",
49
+ "@commercetools-uikit/constraints": "^19.22.3",
50
+ "@commercetools-uikit/design-system": "^19.22.3",
51
+ "@commercetools-uikit/flat-button": "^19.22.3",
52
+ "@commercetools-uikit/hooks": "^19.22.3",
53
+ "@commercetools-uikit/icon-button": "^19.22.3",
54
+ "@commercetools-uikit/icons": "^19.22.3",
55
+ "@commercetools-uikit/label": "^19.22.3",
56
+ "@commercetools-uikit/messages": "^19.22.3",
57
+ "@commercetools-uikit/primary-button": "^19.22.3",
58
+ "@commercetools-uikit/secondary-button": "^19.22.3",
59
+ "@commercetools-uikit/secondary-icon-button": "^19.22.3",
60
+ "@commercetools-uikit/spacings": "^19.22.3",
61
+ "@commercetools-uikit/stamp": "^19.22.3",
62
+ "@commercetools-uikit/text": "^19.22.3",
63
+ "@commercetools-uikit/utils": "^19.22.3",
64
+ "@emotion/react": "^11.14.0",
65
+ "@emotion/styled": "^11.14.0",
66
66
  "@flopflip/react-broadcast": "14.0.2",
67
+ "@radix-ui/react-dialog": "1.1.4",
67
68
  "@react-hook/latest": "1.0.3",
68
69
  "@react-hook/resize-observer": "1.2.6",
69
70
  "@types/history": "^4.7.11",
@@ -76,8 +77,7 @@
76
77
  "history": "4.10.1",
77
78
  "lodash": "4.17.21",
78
79
  "prop-types": "15.8.1",
79
- "raf-schd": "^4.0.3",
80
- "react-modal": "3.16.1"
80
+ "raf-schd": "^4.0.3"
81
81
  },
82
82
  "devDependencies": {
83
83
  "@apollo/client": "3.7.14",