@commercetools-frontend/application-components 22.2.0 → 22.3.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 (41) hide show
  1. package/dist/commercetools-frontend-application-components.cjs.dev.js +125 -286
  2. package/dist/commercetools-frontend-application-components.cjs.prod.js +117 -267
  3. package/dist/commercetools-frontend-application-components.esm.js +125 -286
  4. package/dist/declarations/src/components/detail-pages/custom-form-detail-page/custom-form-detail-page.d.ts +5 -5
  5. package/dist/declarations/src/components/detail-pages/form-detail-page/form-detail-page.d.ts +2 -2
  6. package/dist/declarations/src/components/detail-pages/info-detail-page/info-detail-page.d.ts +2 -2
  7. package/dist/declarations/src/components/detail-pages/tabular-detail-page/tabular-detail-page.d.ts +5 -5
  8. package/dist/declarations/src/components/dialogs/confirmation-dialog/confirmation-dialog.d.ts +1 -1
  9. package/dist/declarations/src/components/dialogs/form-dialog/form-dialog.d.ts +1 -1
  10. package/dist/declarations/src/components/dialogs/info-dialog/info-dialog.d.ts +1 -1
  11. package/dist/declarations/src/components/dialogs/internals/dialog-container.d.ts +1 -1
  12. package/dist/declarations/src/components/dialogs/internals/dialog-footer.d.ts +1 -1
  13. package/dist/declarations/src/components/dialogs/internals/dialog-header.d.ts +1 -1
  14. package/dist/declarations/src/components/dialogs/internals/dialog.styles.d.ts +3 -2
  15. package/dist/declarations/src/components/internals/default-form-buttons.d.ts +3 -3
  16. package/dist/declarations/src/components/internals/page-header-title.d.ts +1 -1
  17. package/dist/declarations/src/components/internals/page-header.d.ts +1 -1
  18. package/dist/declarations/src/components/internals/page-top-bar.d.ts +1 -1
  19. package/dist/declarations/src/components/internals/tabular-page.d.ts +2 -2
  20. package/dist/declarations/src/components/main-pages/custom-form-main-page/custom-form-main-page.d.ts +5 -5
  21. package/dist/declarations/src/components/main-pages/form-main-page/form-main-page.d.ts +2 -2
  22. package/dist/declarations/src/components/main-pages/info-main-page/info-main-page.d.ts +2 -2
  23. package/dist/declarations/src/components/main-pages/tabular-main-page/tabular-main-page.d.ts +5 -5
  24. package/dist/declarations/src/components/maintenance-page-layout/maintenance-page-layout.d.ts +1 -1
  25. package/dist/declarations/src/components/modal-pages/custom-form-modal-page/custom-form-modal-page.d.ts +4 -4
  26. package/dist/declarations/src/components/modal-pages/form-modal-page/form-modal-page.d.ts +1 -1
  27. package/dist/declarations/src/components/modal-pages/info-modal-page/info-modal-page.d.ts +1 -1
  28. package/dist/declarations/src/components/modal-pages/internals/modal-page-top-bar.d.ts +1 -1
  29. package/dist/declarations/src/components/modal-pages/internals/modal-page.d.ts +1 -1
  30. package/dist/declarations/src/components/modal-pages/internals/modal-page.styles.d.ts +7 -6
  31. package/dist/declarations/src/components/modal-pages/tabular-modal-page/tabular-modal-page.d.ts +4 -4
  32. package/dist/declarations/src/components/page-content-containers/page-content-full/page-content-full.d.ts +1 -1
  33. package/dist/declarations/src/components/page-content-containers/page-content-narrow/page-content-narrow.d.ts +1 -1
  34. package/dist/declarations/src/components/page-content-containers/page-content-wide/page-content-wide.d.ts +1 -1
  35. package/dist/declarations/src/components/page-not-found/page-not-found.d.ts +1 -1
  36. package/dist/declarations/src/components/page-unauthorized/page-unauthorized.d.ts +1 -1
  37. package/dist/declarations/src/components/tab-header/tab-header.d.ts +1 -1
  38. package/dist/{public-page-layout-c90a4de4.cjs.prod.js → public-page-layout-5d02cff6.cjs.prod.js} +3 -10
  39. package/dist/{public-page-layout-0956bc6c.cjs.dev.js → public-page-layout-697e0764.cjs.dev.js} +3 -10
  40. package/dist/{public-page-layout-857b0af3.esm.js → public-page-layout-8490a9a8.esm.js} +3 -10
  41. package/package.json +26 -12
@@ -16,7 +16,7 @@ type CustomFormDetailPageProps = {
16
16
  onPreviousPathClick: (event: MouseEvent<HTMLButtonElement> | KeyboardEvent<HTMLButtonElement>) => void;
17
17
  };
18
18
  declare const CustomFormDetailPage: {
19
- (props: CustomFormDetailPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
19
+ (props: CustomFormDetailPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
20
20
  displayName: string;
21
21
  defaultProps: Pick<CustomFormDetailPageProps, "hideControls">;
22
22
  PageHeaderTitle: {
@@ -26,7 +26,7 @@ declare const CustomFormDetailPage: {
26
26
  truncate: boolean;
27
27
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
28
28
  children?: undefined;
29
- }): import("@emotion/react/jsx-runtime").JSX.Element;
29
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
30
30
  displayName: string;
31
31
  defaultProps: Pick<{
32
32
  title: string;
@@ -49,7 +49,7 @@ declare const CustomFormDetailPage: {
49
49
  [key: string]: string;
50
50
  };
51
51
  children?: undefined;
52
- }): import("@emotion/react/jsx-runtime").JSX.Element;
52
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
53
53
  displayName: string;
54
54
  defaultProps: Pick<{
55
55
  label: string | {
@@ -80,7 +80,7 @@ declare const CustomFormDetailPage: {
80
80
  [key: string]: string;
81
81
  };
82
82
  children?: undefined;
83
- }): import("@emotion/react/jsx-runtime").JSX.Element;
83
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
84
84
  displayName: string;
85
85
  defaultProps: Pick<{
86
86
  iconLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -111,7 +111,7 @@ declare const CustomFormDetailPage: {
111
111
  [key: string]: string;
112
112
  };
113
113
  children?: undefined;
114
- }): import("@emotion/react/jsx-runtime").JSX.Element;
114
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
115
115
  displayName: string;
116
116
  defaultProps: Pick<{
117
117
  label: string | {
@@ -28,7 +28,7 @@ type FormDetailPageProps = {
28
28
  iconLeftSecondaryButton?: ReactElement;
29
29
  };
30
30
  declare const FormDetailPage: {
31
- (props: FormDetailPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
31
+ (props: FormDetailPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
32
32
  displayName: string;
33
33
  defaultProps: Pick<FormDetailPageProps, "hideControls">;
34
34
  PageHeaderTitle: {
@@ -38,7 +38,7 @@ declare const FormDetailPage: {
38
38
  truncate: boolean;
39
39
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
40
40
  children?: undefined;
41
- }): import("@emotion/react/jsx-runtime").JSX.Element;
41
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
42
42
  displayName: string;
43
43
  defaultProps: Pick<{
44
44
  title: string;
@@ -14,7 +14,7 @@ type InfoDetailPageProps = {
14
14
  onPreviousPathClick: (event: MouseEvent<HTMLButtonElement> | KeyboardEvent<HTMLButtonElement>) => void;
15
15
  };
16
16
  declare const InfoDetailPage: {
17
- (props: InfoDetailPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
17
+ (props: InfoDetailPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
18
18
  displayName: string;
19
19
  PageHeaderTitle: {
20
20
  (props: {
@@ -23,7 +23,7 @@ declare const InfoDetailPage: {
23
23
  truncate: boolean;
24
24
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
25
25
  children?: undefined;
26
- }): import("@emotion/react/jsx-runtime").JSX.Element;
26
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
27
27
  displayName: string;
28
28
  defaultProps: Pick<{
29
29
  title: string;
@@ -17,7 +17,7 @@ type TTabularDetailPageProps = {
17
17
  onPreviousPathClick: (event: MouseEvent<HTMLButtonElement> | KeyboardEvent<HTMLButtonElement>) => void;
18
18
  };
19
19
  declare const TabularDetailPage: {
20
- (props: TTabularDetailPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
20
+ (props: TTabularDetailPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
21
21
  displayName: string;
22
22
  defaultProps: Pick<TTabularDetailPageProps, "hideControls">;
23
23
  FormPrimaryButton: {
@@ -33,7 +33,7 @@ declare const TabularDetailPage: {
33
33
  [key: string]: string;
34
34
  };
35
35
  children?: undefined;
36
- }): import("@emotion/react/jsx-runtime").JSX.Element;
36
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
37
37
  displayName: string;
38
38
  defaultProps: Pick<{
39
39
  label: string | {
@@ -64,7 +64,7 @@ declare const TabularDetailPage: {
64
64
  [key: string]: string;
65
65
  };
66
66
  children?: undefined;
67
- }): import("@emotion/react/jsx-runtime").JSX.Element;
67
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
68
68
  displayName: string;
69
69
  defaultProps: Pick<{
70
70
  iconLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -95,7 +95,7 @@ declare const TabularDetailPage: {
95
95
  [key: string]: string;
96
96
  };
97
97
  children?: undefined;
98
- }): import("@emotion/react/jsx-runtime").JSX.Element;
98
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
99
99
  displayName: string;
100
100
  defaultProps: Pick<{
101
101
  label: string | {
@@ -118,7 +118,7 @@ declare const TabularDetailPage: {
118
118
  truncate: boolean;
119
119
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
120
120
  children?: undefined;
121
- }): import("@emotion/react/jsx-runtime").JSX.Element;
121
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
122
122
  displayName: string;
123
123
  defaultProps: Pick<{
124
124
  title: string;
@@ -26,7 +26,7 @@ type Props = {
26
26
  getParentSelector?: () => HTMLElement;
27
27
  };
28
28
  declare const ConfirmationDialog: {
29
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
29
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
30
30
  displayName: string;
31
31
  defaultProps: Pick<Props, "labelSecondary" | "labelPrimary">;
32
32
  Intl: {
@@ -27,7 +27,7 @@ type Props = {
27
27
  iconLeftSecondaryButton?: ReactElement;
28
28
  };
29
29
  declare const FormDialog: {
30
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
30
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
31
31
  displayName: string;
32
32
  defaultProps: Pick<Props, "labelSecondary" | "labelPrimary">;
33
33
  Intl: {
@@ -9,7 +9,7 @@ type Props = {
9
9
  getParentSelector?: () => HTMLElement;
10
10
  };
11
11
  declare const InfoDialog: {
12
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
12
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  export default InfoDialog;
@@ -10,7 +10,7 @@ type Props = {
10
10
  getParentSelector: typeof getDefaultParentSelector;
11
11
  };
12
12
  declare const DialogContainer: {
13
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
13
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
14
14
  displayName: string;
15
15
  defaultProps: Pick<Props, "size" | "getParentSelector">;
16
16
  };
@@ -21,7 +21,7 @@ type Props = {
21
21
  iconLeftSecondaryButton?: ReactElement;
22
22
  };
23
23
  declare const DialogFooter: {
24
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
24
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
25
25
  displayName: string;
26
26
  defaultProps: Pick<Props, "isPrimaryButtonDisabled" | "dataAttributesSecondaryButton" | "dataAttributesPrimaryButton">;
27
27
  };
@@ -5,7 +5,7 @@ type Props = {
5
5
  children?: never;
6
6
  };
7
7
  declare const DialogHeader: {
8
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
8
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  export default DialogHeader;
@@ -1,7 +1,8 @@
1
+ import { type SerializedStyles } from '@emotion/react';
1
2
  type StyleProps = {
2
3
  size: 'm' | 'l' | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 'scale';
3
4
  zIndex?: number;
4
5
  };
5
- export declare const getModalContentStyles: (props: StyleProps) => import("@emotion/utils").SerializedStyles;
6
- export declare const getOverlayStyles: (props: StyleProps) => import("@emotion/utils").SerializedStyles;
6
+ export declare const getModalContentStyles: (props: StyleProps) => SerializedStyles;
7
+ export declare const getOverlayStyles: (props: StyleProps) => SerializedStyles;
7
8
  export {};
@@ -15,7 +15,7 @@ type Props = {
15
15
  children?: never;
16
16
  };
17
17
  declare const FormPrimaryButton: {
18
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
18
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
19
19
  displayName: string;
20
20
  defaultProps: Pick<Props, "label" | "isDisabled" | "dataAttributes">;
21
21
  };
@@ -23,12 +23,12 @@ type SecondaryButtonProps = {
23
23
  iconLeft?: ReactElement;
24
24
  } & Props;
25
25
  declare const FormSecondaryButton: {
26
- (props: SecondaryButtonProps): import("@emotion/react/jsx-runtime").JSX.Element;
26
+ (props: SecondaryButtonProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
27
27
  displayName: string;
28
28
  defaultProps: Pick<SecondaryButtonProps, "label" | "isDisabled" | "dataAttributes">;
29
29
  };
30
30
  declare const FormDeleteButton: {
31
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
31
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
32
32
  displayName: string;
33
33
  defaultProps: Pick<Props, "label" | "isDisabled" | "dataAttributes">;
34
34
  };
@@ -7,7 +7,7 @@ type Props = {
7
7
  children?: never;
8
8
  };
9
9
  declare const PageHeaderTitle: {
10
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
10
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
11
11
  displayName: string;
12
12
  defaultProps: Pick<Props, "truncate" | "titleSize">;
13
13
  };
@@ -5,7 +5,7 @@ type Props = {
5
5
  children?: ReactNode;
6
6
  };
7
7
  declare const PageHeader: {
8
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
8
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  export default PageHeader;
@@ -13,7 +13,7 @@ type Props = {
13
13
  children?: never;
14
14
  };
15
15
  declare const PageTopBar: {
16
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
16
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
17
17
  displayName: string;
18
18
  defaultProps: Pick<Props, "color" | "previousPathLabel">;
19
19
  };
@@ -5,7 +5,7 @@ type TControlsContainterProps = {
5
5
  children?: never;
6
6
  };
7
7
  declare const ControlsContainter: {
8
- (props: TControlsContainterProps): import("@emotion/react/jsx-runtime").JSX.Element;
8
+ (props: TControlsContainterProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  type TTabularPageContainerProps = {
@@ -13,7 +13,7 @@ type TTabularPageContainerProps = {
13
13
  color: 'surface' | 'neutral';
14
14
  };
15
15
  declare const TabularPageContainer: {
16
- (props: TTabularPageContainerProps): import("@emotion/react/jsx-runtime").JSX.Element;
16
+ (props: TTabularPageContainerProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
17
17
  displayName: string;
18
18
  defaultProps: Pick<TTabularPageContainerProps, "color">;
19
19
  };
@@ -9,7 +9,7 @@ type CustomFormMainPageProps = {
9
9
  hideDivider?: boolean;
10
10
  };
11
11
  declare const CustomFormMainPage: {
12
- (props: CustomFormMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
12
+ (props: CustomFormMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
13
13
  displayName: string;
14
14
  defaultProps: Pick<CustomFormMainPageProps, "hideControls" | "hideDivider">;
15
15
  PageHeaderTitle: {
@@ -19,7 +19,7 @@ declare const CustomFormMainPage: {
19
19
  truncate: boolean;
20
20
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
21
21
  children?: undefined;
22
- }): import("@emotion/react/jsx-runtime").JSX.Element;
22
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
23
23
  displayName: string;
24
24
  defaultProps: Pick<{
25
25
  title: string;
@@ -42,7 +42,7 @@ declare const CustomFormMainPage: {
42
42
  [key: string]: string;
43
43
  };
44
44
  children?: undefined;
45
- }): import("@emotion/react/jsx-runtime").JSX.Element;
45
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
46
46
  displayName: string;
47
47
  defaultProps: Pick<{
48
48
  label: string | {
@@ -73,7 +73,7 @@ declare const CustomFormMainPage: {
73
73
  [key: string]: string;
74
74
  };
75
75
  children?: undefined;
76
- }): import("@emotion/react/jsx-runtime").JSX.Element;
76
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
77
77
  displayName: string;
78
78
  defaultProps: Pick<{
79
79
  iconLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -104,7 +104,7 @@ declare const CustomFormMainPage: {
104
104
  [key: string]: string;
105
105
  };
106
106
  children?: undefined;
107
- }): import("@emotion/react/jsx-runtime").JSX.Element;
107
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
108
108
  displayName: string;
109
109
  defaultProps: Pick<{
110
110
  label: string | {
@@ -26,7 +26,7 @@ type FormMainPageProps = {
26
26
  onSecondaryButtonClick: (event: SyntheticEvent) => void;
27
27
  };
28
28
  declare const FormMainPage: {
29
- (props: FormMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
29
+ (props: FormMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
30
30
  displayName: string;
31
31
  defaultProps: Pick<FormMainPageProps, "hideControls">;
32
32
  PageHeaderTitle: {
@@ -36,7 +36,7 @@ declare const FormMainPage: {
36
36
  truncate: boolean;
37
37
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
38
38
  children?: undefined;
39
- }): import("@emotion/react/jsx-runtime").JSX.Element;
39
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
40
40
  displayName: string;
41
41
  defaultProps: Pick<{
42
42
  title: string;
@@ -6,7 +6,7 @@ type InfoMainPageProps = {
6
6
  children: ReactNode;
7
7
  };
8
8
  declare const InfoMainPage: {
9
- (props: InfoMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
9
+ (props: InfoMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
10
10
  displayName: string;
11
11
  PageHeaderTitle: {
12
12
  (props: {
@@ -15,7 +15,7 @@ declare const InfoMainPage: {
15
15
  truncate: boolean;
16
16
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
17
17
  children?: undefined;
18
- }): import("@emotion/react/jsx-runtime").JSX.Element;
18
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
19
19
  displayName: string;
20
20
  defaultProps: Pick<{
21
21
  title: string;
@@ -9,7 +9,7 @@ type TTabularMainPageProps = {
9
9
  hideControls: boolean;
10
10
  };
11
11
  declare const TabularMainPage: {
12
- (props: TTabularMainPageProps): import("@emotion/react/jsx-runtime").JSX.Element;
12
+ (props: TTabularMainPageProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
13
13
  displayName: string;
14
14
  defaultProps: Pick<TTabularMainPageProps, "hideControls">;
15
15
  FormPrimaryButton: {
@@ -25,7 +25,7 @@ declare const TabularMainPage: {
25
25
  [key: string]: string;
26
26
  };
27
27
  children?: undefined;
28
- }): import("@emotion/react/jsx-runtime").JSX.Element;
28
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
29
29
  displayName: string;
30
30
  defaultProps: Pick<{
31
31
  label: string | {
@@ -56,7 +56,7 @@ declare const TabularMainPage: {
56
56
  [key: string]: string;
57
57
  };
58
58
  children?: undefined;
59
- }): import("@emotion/react/jsx-runtime").JSX.Element;
59
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
60
60
  displayName: string;
61
61
  defaultProps: Pick<{
62
62
  iconLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -87,7 +87,7 @@ declare const TabularMainPage: {
87
87
  [key: string]: string;
88
88
  };
89
89
  children?: undefined;
90
- }): import("@emotion/react/jsx-runtime").JSX.Element;
90
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
91
91
  displayName: string;
92
92
  defaultProps: Pick<{
93
93
  label: string | {
@@ -110,7 +110,7 @@ declare const TabularMainPage: {
110
110
  truncate: boolean;
111
111
  subtitle?: string | ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
112
112
  children?: undefined;
113
- }): import("@emotion/react/jsx-runtime").JSX.Element;
113
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
114
114
  displayName: string;
115
115
  defaultProps: Pick<{
116
116
  title: string;
@@ -9,7 +9,7 @@ export type Props = {
9
9
  children?: never;
10
10
  };
11
11
  declare const MaintenancePageLayout: {
12
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
12
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
13
13
  displayName: string;
14
14
  };
15
15
  export default MaintenancePageLayout;
@@ -24,7 +24,7 @@ type Props = {
24
24
  hideControls?: boolean;
25
25
  };
26
26
  declare const CustomFormModalPage: {
27
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
27
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
28
28
  displayName: string;
29
29
  FormPrimaryButton: {
30
30
  (props: {
@@ -39,7 +39,7 @@ declare const CustomFormModalPage: {
39
39
  [key: string]: string;
40
40
  };
41
41
  children?: undefined;
42
- }): import("@emotion/react/jsx-runtime").JSX.Element;
42
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
43
43
  displayName: string;
44
44
  defaultProps: Pick<{
45
45
  label: string | {
@@ -70,7 +70,7 @@ declare const CustomFormModalPage: {
70
70
  [key: string]: string;
71
71
  };
72
72
  children?: undefined;
73
- }): import("@emotion/react/jsx-runtime").JSX.Element;
73
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
74
74
  displayName: string;
75
75
  defaultProps: Pick<{
76
76
  iconLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -101,7 +101,7 @@ declare const CustomFormModalPage: {
101
101
  [key: string]: string;
102
102
  };
103
103
  children?: undefined;
104
- }): import("@emotion/react/jsx-runtime").JSX.Element;
104
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
105
105
  displayName: string;
106
106
  defaultProps: Pick<{
107
107
  label: string | {
@@ -36,7 +36,7 @@ type Props = {
36
36
  iconLeftSecondaryButton?: ReactElement;
37
37
  };
38
38
  declare const FormModalPage: {
39
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
39
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
40
40
  displayName: string;
41
41
  defaultProps: Pick<Props, "hideControls">;
42
42
  Intl: {
@@ -22,7 +22,7 @@ type Props = {
22
22
  subtitle?: string | ReactElement;
23
23
  };
24
24
  declare const InfoModalPage: {
25
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
25
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
26
26
  displayName: string;
27
27
  };
28
28
  export default InfoModalPage;
@@ -13,7 +13,7 @@ type Props = {
13
13
  children?: never;
14
14
  };
15
15
  declare const ModalPageTopBar: {
16
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
16
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
17
17
  displayName: string;
18
18
  defaultProps: Pick<Props, "color" | "previousPathLabel">;
19
19
  };
@@ -23,7 +23,7 @@ type Props = {
23
23
  previousPathLabel?: Label;
24
24
  };
25
25
  declare const ModalPage: {
26
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
26
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
27
27
  displayName: string;
28
28
  defaultProps: Pick<Props, "getParentSelector" | "shouldDelayOnClose">;
29
29
  };
@@ -1,11 +1,12 @@
1
+ import { type SerializedStyles } from '@emotion/react';
1
2
  export declare const TRANSITION_DURATION = 200;
2
3
  type StyleProps = {
3
4
  zIndex?: number;
4
5
  };
5
- export declare const getContainerStyles: (_props: StyleProps) => import("@emotion/utils").SerializedStyles;
6
- export declare const getOverlayStyles: (props: StyleProps) => import("@emotion/utils").SerializedStyles;
7
- export declare const getAfterOpenContainerAnimation: () => import("@emotion/utils").SerializedStyles;
8
- export declare const getAfterOpenOverlayAnimation: () => import("@emotion/utils").SerializedStyles;
9
- export declare const getBeforeCloseContainerAnimation: () => import("@emotion/utils").SerializedStyles;
10
- export declare const getBeforeCloseOverlayAnimation: () => import("@emotion/utils").SerializedStyles;
6
+ export declare const getContainerStyles: (_props: StyleProps) => SerializedStyles;
7
+ export declare const getOverlayStyles: (props: StyleProps) => SerializedStyles;
8
+ export declare const getAfterOpenContainerAnimation: () => SerializedStyles;
9
+ export declare const getAfterOpenOverlayAnimation: () => SerializedStyles;
10
+ export declare const getBeforeCloseContainerAnimation: () => SerializedStyles;
11
+ export declare const getBeforeCloseOverlayAnimation: () => SerializedStyles;
11
12
  export {};
@@ -26,7 +26,7 @@ type Props = {
26
26
  hideControls: boolean;
27
27
  };
28
28
  declare const TabularModalPage: {
29
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
29
+ (props: Props): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
30
30
  displayName: string;
31
31
  defaultProps: Pick<Props, "hideControls">;
32
32
  FormPrimaryButton: {
@@ -42,7 +42,7 @@ declare const TabularModalPage: {
42
42
  [key: string]: string;
43
43
  };
44
44
  children?: undefined;
45
- }): import("@emotion/react/jsx-runtime").JSX.Element;
45
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
46
46
  displayName: string;
47
47
  defaultProps: Pick<{
48
48
  label: string | {
@@ -73,7 +73,7 @@ declare const TabularModalPage: {
73
73
  [key: string]: string;
74
74
  };
75
75
  children?: undefined;
76
- }): import("@emotion/react/jsx-runtime").JSX.Element;
76
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
77
77
  displayName: string;
78
78
  defaultProps: Pick<{
79
79
  iconLeft?: ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -104,7 +104,7 @@ declare const TabularModalPage: {
104
104
  [key: string]: string;
105
105
  };
106
106
  children?: undefined;
107
- }): import("@emotion/react/jsx-runtime").JSX.Element;
107
+ }): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
108
108
  displayName: string;
109
109
  defaultProps: Pick<{
110
110
  label: string | {
@@ -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/jsx-runtime").JSX.Element;
5
+ declare function PageContentFull(props: TPageContentFull): import("@emotion/react/types/jsx-namespace").EmotionJSX.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/jsx-runtime").JSX.Element;
5
+ declare function PageContentNarrow(props: TPageContentNarrow): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
6
6
  export default PageContentNarrow;
@@ -5,7 +5,7 @@ export type TPageContentWide = {
5
5
  children: ReactNode;
6
6
  themeParentSelector?: () => HTMLElement | null;
7
7
  };
8
- declare function PageContentWide(props: TPageContentWide): import("@emotion/react/jsx-runtime").JSX.Element;
8
+ declare function PageContentWide(props: TPageContentWide): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
9
9
  declare namespace PageContentWide {
10
10
  var defaultProps: Pick<TPageContentWide, "columns" | "gapSize">;
11
11
  }
@@ -1,5 +1,5 @@
1
1
  declare const PageNotFound: {
2
- (): import("@emotion/react/jsx-runtime").JSX.Element;
2
+ (): import("@emotion/react/types/jsx-namespace").EmotionJSX.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/jsx-runtime").JSX.Element;
2
+ (): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
3
3
  displayName: string;
4
4
  };
5
5
  export default PageUnauthorized;
@@ -11,7 +11,7 @@ export type TTabHeaderProps = {
11
11
  exactPathMatch: boolean;
12
12
  };
13
13
  export declare const TabHeader: {
14
- (props: TTabHeaderProps): import("@emotion/react/jsx-runtime").JSX.Element;
14
+ (props: TTabHeaderProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
15
15
  displayName: string;
16
16
  defaultProps: Pick<TTabHeaderProps, "isDisabled" | "exactPathMatch">;
17
17
  };