@commercetools-frontend/application-components 22.41.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.
- package/dist/commercetools-frontend-application-components.cjs.dev.js +23 -43
- package/dist/commercetools-frontend-application-components.cjs.prod.js +3 -3
- package/dist/commercetools-frontend-application-components.esm.js +23 -43
- package/dist/{custom-views-selector-feec1e5d.cjs.dev.js → custom-views-selector-266e6025.cjs.dev.js} +2 -4
- package/dist/{custom-views-selector-67fa3f78.esm.js → custom-views-selector-8d9caad0.esm.js} +2 -4
- package/dist/declarations/src/components/custom-views/custom-view-loader/custom-view-loader.d.ts +1 -1
- package/dist/declarations/src/components/custom-views/custom-views-selector/custom-views-selector.d.ts +1 -1
- package/dist/declarations/src/components/custom-views/custom-views-selector/index.d.ts +1 -1
- package/dist/declarations/src/components/detail-pages/custom-form-detail-page/custom-form-detail-page.d.ts +5 -5
- package/dist/declarations/src/components/detail-pages/form-detail-page/form-detail-page.d.ts +2 -2
- package/dist/declarations/src/components/detail-pages/info-detail-page/info-detail-page.d.ts +2 -2
- package/dist/declarations/src/components/detail-pages/tabular-detail-page/tabular-detail-page.d.ts +5 -5
- package/dist/declarations/src/components/dialogs/confirmation-dialog/confirmation-dialog.d.ts +2 -2
- package/dist/declarations/src/components/dialogs/form-dialog/form-dialog.d.ts +2 -2
- package/dist/declarations/src/components/dialogs/info-dialog/info-dialog.d.ts +2 -2
- package/dist/declarations/src/components/dialogs/internals/dialog-container.d.ts +1 -1
- package/dist/declarations/src/components/dialogs/internals/dialog-footer.d.ts +1 -1
- package/dist/declarations/src/components/dialogs/internals/dialog-header.d.ts +2 -2
- package/dist/declarations/src/components/drawer/drawer.d.ts +3 -3
- package/dist/declarations/src/components/internals/default-form-buttons.d.ts +3 -3
- package/dist/declarations/src/components/internals/page-header-title.d.ts +1 -1
- package/dist/declarations/src/components/internals/page-header.d.ts +1 -1
- package/dist/declarations/src/components/internals/page-top-bar.d.ts +1 -1
- package/dist/declarations/src/components/internals/tabular-page.d.ts +1 -1
- package/dist/declarations/src/components/main-pages/custom-form-main-page/custom-form-main-page.d.ts +5 -5
- package/dist/declarations/src/components/main-pages/form-main-page/form-main-page.d.ts +2 -2
- package/dist/declarations/src/components/main-pages/info-main-page/info-main-page.d.ts +2 -2
- package/dist/declarations/src/components/main-pages/tabular-main-page/tabular-main-page.d.ts +5 -5
- package/dist/declarations/src/components/maintenance-page-layout/maintenance-page-layout.d.ts +1 -1
- package/dist/declarations/src/components/modal-pages/custom-form-modal-page/custom-form-modal-page.d.ts +4 -4
- package/dist/declarations/src/components/modal-pages/form-modal-page/form-modal-page.d.ts +1 -1
- package/dist/declarations/src/components/modal-pages/info-modal-page/info-modal-page.d.ts +1 -1
- package/dist/declarations/src/components/modal-pages/internals/modal-page.d.ts +1 -1
- package/dist/declarations/src/components/modal-pages/tabular-modal-page/tabular-modal-page.d.ts +4 -4
- package/dist/declarations/src/components/modal-pages/utils/modal-page-top-bar.d.ts +2 -2
- package/dist/declarations/src/components/page-content-containers/page-content-full/page-content-full.d.ts +1 -1
- package/dist/declarations/src/components/page-content-containers/page-content-narrow/page-content-narrow.d.ts +1 -1
- package/dist/declarations/src/components/page-content-containers/page-content-wide/page-content-wide.d.ts +1 -1
- package/dist/declarations/src/components/page-not-found/page-not-found.d.ts +1 -1
- package/dist/declarations/src/components/page-unauthorized/page-unauthorized.d.ts +1 -1
- package/dist/declarations/src/components/project-stamp/project-stamp.d.ts +4 -4
- package/dist/declarations/src/components/tab-header/tab-header.d.ts +1 -1
- package/package.json +28 -28
- /package/dist/{custom-views-selector-4a4c5740.cjs.prod.js → custom-views-selector-6520d960.cjs.prod.js} +0 -0
package/dist/declarations/src/components/main-pages/tabular-main-page/tabular-main-page.d.ts
CHANGED
|
@@ -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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
105
|
+
}): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
106
106
|
displayName: string;
|
|
107
107
|
};
|
|
108
108
|
Intl: {
|
package/dist/declarations/src/components/maintenance-page-layout/maintenance-page-layout.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type Props = {
|
|
|
9
9
|
children?: never;
|
|
10
10
|
};
|
|
11
11
|
declare const MaintenancePageLayout: {
|
|
12
|
-
(props: Props): import("@emotion/react/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
35
|
+
(props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
36
36
|
displayName: string;
|
|
37
37
|
};
|
|
38
38
|
export default InfoModalPage;
|
|
@@ -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/
|
|
36
|
+
({ size, getParentSelector, shouldDelayOnClose, ...props }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
37
37
|
displayName: string;
|
|
38
38
|
};
|
|
39
39
|
export default ModalPage;
|
package/dist/declarations/src/components/modal-pages/tabular-modal-page/tabular-modal-page.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ type Props = {
|
|
|
37
37
|
hideControls?: boolean;
|
|
38
38
|
};
|
|
39
39
|
declare const TabularModalPage: {
|
|
40
|
-
({ hideControls, ...props }: Props): import("@emotion/react/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
8
|
+
declare function PageContentWide({ columns, gapSize, ...props }: TPageContentWide): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default PageContentWide;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const ProjectStamp: {
|
|
2
|
-
IsProduction: () => import("@emotion/react/
|
|
3
|
-
IsSuspended: () => import("@emotion/react/
|
|
4
|
-
IsExpired: () => import("@emotion/react/
|
|
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/
|
|
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/
|
|
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.
|
|
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,33 +36,33 @@
|
|
|
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
|
-
"@commercetools-frontend/application-config": "22.
|
|
41
|
-
"@commercetools-frontend/application-shell-connectors": "22.
|
|
42
|
-
"@commercetools-frontend/assets": "22.
|
|
43
|
-
"@commercetools-frontend/constants": "22.
|
|
44
|
-
"@commercetools-frontend/i18n": "22.
|
|
45
|
-
"@commercetools-frontend/l10n": "22.
|
|
46
|
-
"@commercetools-frontend/sentry": "22.
|
|
47
|
-
"@commercetools-uikit/accessible-button": "^19.
|
|
48
|
-
"@commercetools-uikit/card": "^19.
|
|
49
|
-
"@commercetools-uikit/constraints": "^19.
|
|
50
|
-
"@commercetools-uikit/design-system": "^19.
|
|
51
|
-
"@commercetools-uikit/flat-button": "^19.
|
|
52
|
-
"@commercetools-uikit/hooks": "^19.
|
|
53
|
-
"@commercetools-uikit/icon-button": "^19.
|
|
54
|
-
"@commercetools-uikit/icons": "^19.
|
|
55
|
-
"@commercetools-uikit/label": "^19.
|
|
56
|
-
"@commercetools-uikit/messages": "^19.
|
|
57
|
-
"@commercetools-uikit/primary-button": "^19.
|
|
58
|
-
"@commercetools-uikit/secondary-button": "^19.
|
|
59
|
-
"@commercetools-uikit/secondary-icon-button": "^19.
|
|
60
|
-
"@commercetools-uikit/spacings": "^19.
|
|
61
|
-
"@commercetools-uikit/stamp": "^19.
|
|
62
|
-
"@commercetools-uikit/text": "^19.
|
|
63
|
-
"@commercetools-uikit/utils": "^19.
|
|
64
|
-
"@emotion/react": "^11.
|
|
65
|
-
"@emotion/styled": "^11.
|
|
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
67
|
"@radix-ui/react-dialog": "1.1.4",
|
|
68
68
|
"@react-hook/latest": "1.0.3",
|
|
File without changes
|