@commercetools-frontend/application-components 21.24.2 → 21.25.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 +8 -8
- package/dist/commercetools-frontend-application-components.cjs.prod.js +8 -8
- package/dist/commercetools-frontend-application-components.esm.js +6 -6
- package/dist/{public-page-layout-eff6dd7d.cjs.prod.js → public-page-layout-1e0c321d.cjs.prod.js} +1 -1
- package/dist/{public-page-layout-34db656f.esm.js → public-page-layout-6a0225c9.esm.js} +1 -1
- package/dist/{public-page-layout-692fd21c.cjs.dev.js → public-page-layout-d4b7aa13.cjs.dev.js} +1 -1
- package/package.json +6 -6
|
@@ -39,8 +39,8 @@ var _setTimeout = require('@babel/runtime-corejs3/core-js-stable/set-timeout');
|
|
|
39
39
|
var FlatButton = require('@commercetools-uikit/flat-button');
|
|
40
40
|
var IconButton = require('@commercetools-uikit/icon-button');
|
|
41
41
|
var Constraints = require('@commercetools-uikit/constraints');
|
|
42
|
-
var
|
|
43
|
-
var
|
|
42
|
+
var PageNotFoundIllustration = require('@commercetools-frontend/assets/images/page-application-disabled.svg');
|
|
43
|
+
var FailedAuthorizationIllustration = require('@commercetools-frontend/assets/images/folder-full-locked.svg');
|
|
44
44
|
var _mapInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/map');
|
|
45
45
|
var useResizeObserver = require('@react-hook/resize-observer');
|
|
46
46
|
var _Map = require('@babel/runtime-corejs3/core-js-stable/map');
|
|
@@ -76,8 +76,8 @@ var _setTimeout__default = /*#__PURE__*/_interopDefault(_setTimeout);
|
|
|
76
76
|
var FlatButton__default = /*#__PURE__*/_interopDefault(FlatButton);
|
|
77
77
|
var IconButton__default = /*#__PURE__*/_interopDefault(IconButton);
|
|
78
78
|
var Constraints__default = /*#__PURE__*/_interopDefault(Constraints);
|
|
79
|
-
var
|
|
80
|
-
var
|
|
79
|
+
var PageNotFoundIllustration__default = /*#__PURE__*/_interopDefault(PageNotFoundIllustration);
|
|
80
|
+
var FailedAuthorizationIllustration__default = /*#__PURE__*/_interopDefault(FailedAuthorizationIllustration);
|
|
81
81
|
var _mapInstanceProperty__default = /*#__PURE__*/_interopDefault(_mapInstanceProperty);
|
|
82
82
|
var useResizeObserver__default = /*#__PURE__*/_interopDefault(useResizeObserver);
|
|
83
83
|
var _Map__default = /*#__PURE__*/_interopDefault(_Map);
|
|
@@ -87,7 +87,7 @@ var useLatest__default = /*#__PURE__*/_interopDefault(useLatest);
|
|
|
87
87
|
var rafSchd__default = /*#__PURE__*/_interopDefault(rafSchd);
|
|
88
88
|
|
|
89
89
|
// NOTE: This string will be replaced on build time with the package version.
|
|
90
|
-
var version = "21.
|
|
90
|
+
var version = "21.25.0";
|
|
91
91
|
|
|
92
92
|
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12;
|
|
93
93
|
const appKitSpacing55 = '40px'; // TODO: move to uikit?
|
|
@@ -1785,7 +1785,7 @@ TabularDetailPage.PageHeaderTitle = PageHeaderTitle; // This is a convenience pr
|
|
|
1785
1785
|
|
|
1786
1786
|
TabularDetailPage.Intl = i18n.sharedMessages;
|
|
1787
1787
|
|
|
1788
|
-
const PublicPageLayout = /*#__PURE__*/react$1.lazy(() => Promise.resolve().then(function () { return require('./public-page-layout-
|
|
1788
|
+
const PublicPageLayout = /*#__PURE__*/react$1.lazy(() => Promise.resolve().then(function () { return require('./public-page-layout-d4b7aa13.cjs.dev.js'
|
|
1789
1789
|
/* webpackChunkName: "public-page-layout" */
|
|
1790
1790
|
); }));
|
|
1791
1791
|
|
|
@@ -2083,7 +2083,7 @@ const PageNotFound = () => {
|
|
|
2083
2083
|
a: getLink
|
|
2084
2084
|
});
|
|
2085
2085
|
return jsxRuntime.jsx(MaintenancePageLayout, {
|
|
2086
|
-
imageSrc:
|
|
2086
|
+
imageSrc: PageNotFoundIllustration__default["default"],
|
|
2087
2087
|
title: jsxRuntime.jsx(reactIntl.FormattedMessage, _objectSpread$1({}, messages$1.title)),
|
|
2088
2088
|
label: intl.formatMessage(messages$1.title),
|
|
2089
2089
|
paragraph1: paragraph1Message
|
|
@@ -2121,7 +2121,7 @@ const getSupportUrlLink = msg => jsxRuntime.jsx("a", {
|
|
|
2121
2121
|
const PageUnauthorized = () => {
|
|
2122
2122
|
const intl = reactIntl.useIntl();
|
|
2123
2123
|
return jsxRuntime.jsx(MaintenancePageLayout, {
|
|
2124
|
-
imageSrc:
|
|
2124
|
+
imageSrc: FailedAuthorizationIllustration__default["default"],
|
|
2125
2125
|
title: jsxRuntime.jsx(reactIntl.FormattedMessage, _objectSpread({}, messages.title)),
|
|
2126
2126
|
label: intl.formatMessage(messages.title),
|
|
2127
2127
|
paragraph1: jsxRuntime.jsx(reactIntl.FormattedMessage, _objectSpread({}, messages.paragraph1)),
|
|
@@ -39,8 +39,8 @@ var _setTimeout = require('@babel/runtime-corejs3/core-js-stable/set-timeout');
|
|
|
39
39
|
var FlatButton = require('@commercetools-uikit/flat-button');
|
|
40
40
|
var IconButton = require('@commercetools-uikit/icon-button');
|
|
41
41
|
var Constraints = require('@commercetools-uikit/constraints');
|
|
42
|
-
var
|
|
43
|
-
var
|
|
42
|
+
var PageNotFoundIllustration = require('@commercetools-frontend/assets/images/page-application-disabled.svg');
|
|
43
|
+
var FailedAuthorizationIllustration = require('@commercetools-frontend/assets/images/folder-full-locked.svg');
|
|
44
44
|
var _mapInstanceProperty = require('@babel/runtime-corejs3/core-js-stable/instance/map');
|
|
45
45
|
var useResizeObserver = require('@react-hook/resize-observer');
|
|
46
46
|
var _Map = require('@babel/runtime-corejs3/core-js-stable/map');
|
|
@@ -75,8 +75,8 @@ var _setTimeout__default = /*#__PURE__*/_interopDefault(_setTimeout);
|
|
|
75
75
|
var FlatButton__default = /*#__PURE__*/_interopDefault(FlatButton);
|
|
76
76
|
var IconButton__default = /*#__PURE__*/_interopDefault(IconButton);
|
|
77
77
|
var Constraints__default = /*#__PURE__*/_interopDefault(Constraints);
|
|
78
|
-
var
|
|
79
|
-
var
|
|
78
|
+
var PageNotFoundIllustration__default = /*#__PURE__*/_interopDefault(PageNotFoundIllustration);
|
|
79
|
+
var FailedAuthorizationIllustration__default = /*#__PURE__*/_interopDefault(FailedAuthorizationIllustration);
|
|
80
80
|
var _mapInstanceProperty__default = /*#__PURE__*/_interopDefault(_mapInstanceProperty);
|
|
81
81
|
var useResizeObserver__default = /*#__PURE__*/_interopDefault(useResizeObserver);
|
|
82
82
|
var _Map__default = /*#__PURE__*/_interopDefault(_Map);
|
|
@@ -86,7 +86,7 @@ var useLatest__default = /*#__PURE__*/_interopDefault(useLatest);
|
|
|
86
86
|
var rafSchd__default = /*#__PURE__*/_interopDefault(rafSchd);
|
|
87
87
|
|
|
88
88
|
// NOTE: This string will be replaced on build time with the package version.
|
|
89
|
-
var version = "21.
|
|
89
|
+
var version = "21.25.0";
|
|
90
90
|
|
|
91
91
|
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12;
|
|
92
92
|
const appKitSpacing55 = '40px'; // TODO: move to uikit?
|
|
@@ -1342,7 +1342,7 @@ TabularDetailPage.PageHeaderTitle = PageHeaderTitle; // This is a convenience pr
|
|
|
1342
1342
|
|
|
1343
1343
|
TabularDetailPage.Intl = i18n.sharedMessages;
|
|
1344
1344
|
|
|
1345
|
-
const PublicPageLayout = /*#__PURE__*/react$1.lazy(() => Promise.resolve().then(function () { return require('./public-page-layout-
|
|
1345
|
+
const PublicPageLayout = /*#__PURE__*/react$1.lazy(() => Promise.resolve().then(function () { return require('./public-page-layout-1e0c321d.cjs.prod.js'
|
|
1346
1346
|
/* webpackChunkName: "public-page-layout" */
|
|
1347
1347
|
); }));
|
|
1348
1348
|
|
|
@@ -1564,7 +1564,7 @@ const PageNotFound = () => {
|
|
|
1564
1564
|
a: getLink
|
|
1565
1565
|
});
|
|
1566
1566
|
return jsxRuntime.jsx(MaintenancePageLayout, {
|
|
1567
|
-
imageSrc:
|
|
1567
|
+
imageSrc: PageNotFoundIllustration__default["default"],
|
|
1568
1568
|
title: jsxRuntime.jsx(reactIntl.FormattedMessage, _objectSpread$1({}, messages$1.title)),
|
|
1569
1569
|
label: intl.formatMessage(messages$1.title),
|
|
1570
1570
|
paragraph1: paragraph1Message
|
|
@@ -1602,7 +1602,7 @@ const getSupportUrlLink = msg => jsxRuntime.jsx("a", {
|
|
|
1602
1602
|
const PageUnauthorized = () => {
|
|
1603
1603
|
const intl = reactIntl.useIntl();
|
|
1604
1604
|
return jsxRuntime.jsx(MaintenancePageLayout, {
|
|
1605
|
-
imageSrc:
|
|
1605
|
+
imageSrc: FailedAuthorizationIllustration__default["default"],
|
|
1606
1606
|
title: jsxRuntime.jsx(reactIntl.FormattedMessage, _objectSpread({}, messages.title)),
|
|
1607
1607
|
label: intl.formatMessage(messages.title),
|
|
1608
1608
|
paragraph1: jsxRuntime.jsx(reactIntl.FormattedMessage, _objectSpread({}, messages.paragraph1)),
|
|
@@ -35,8 +35,8 @@ import _setTimeout from '@babel/runtime-corejs3/core-js-stable/set-timeout';
|
|
|
35
35
|
import FlatButton from '@commercetools-uikit/flat-button';
|
|
36
36
|
import IconButton from '@commercetools-uikit/icon-button';
|
|
37
37
|
import Constraints from '@commercetools-uikit/constraints';
|
|
38
|
-
import
|
|
39
|
-
import
|
|
38
|
+
import PageNotFoundIllustration from '@commercetools-frontend/assets/images/page-application-disabled.svg';
|
|
39
|
+
import FailedAuthorizationIllustration from '@commercetools-frontend/assets/images/folder-full-locked.svg';
|
|
40
40
|
import _mapInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/map';
|
|
41
41
|
import useResizeObserver from '@react-hook/resize-observer';
|
|
42
42
|
import _Map from '@babel/runtime-corejs3/core-js-stable/map';
|
|
@@ -46,7 +46,7 @@ import useLatest from '@react-hook/latest';
|
|
|
46
46
|
import rafSchd from 'raf-schd';
|
|
47
47
|
|
|
48
48
|
// NOTE: This string will be replaced on build time with the package version.
|
|
49
|
-
var version = "21.
|
|
49
|
+
var version = "21.25.0";
|
|
50
50
|
|
|
51
51
|
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12;
|
|
52
52
|
const appKitSpacing55 = '40px'; // TODO: move to uikit?
|
|
@@ -1744,7 +1744,7 @@ TabularDetailPage.PageHeaderTitle = PageHeaderTitle; // This is a convenience pr
|
|
|
1744
1744
|
|
|
1745
1745
|
TabularDetailPage.Intl = sharedMessages;
|
|
1746
1746
|
|
|
1747
|
-
const PublicPageLayout = /*#__PURE__*/lazy(() => import('./public-page-layout-
|
|
1747
|
+
const PublicPageLayout = /*#__PURE__*/lazy(() => import('./public-page-layout-6a0225c9.esm.js'
|
|
1748
1748
|
/* webpackChunkName: "public-page-layout" */
|
|
1749
1749
|
));
|
|
1750
1750
|
|
|
@@ -2042,7 +2042,7 @@ const PageNotFound = () => {
|
|
|
2042
2042
|
a: getLink
|
|
2043
2043
|
});
|
|
2044
2044
|
return jsx(MaintenancePageLayout, {
|
|
2045
|
-
imageSrc:
|
|
2045
|
+
imageSrc: PageNotFoundIllustration,
|
|
2046
2046
|
title: jsx(FormattedMessage, _objectSpread$1({}, messages$1.title)),
|
|
2047
2047
|
label: intl.formatMessage(messages$1.title),
|
|
2048
2048
|
paragraph1: paragraph1Message
|
|
@@ -2080,7 +2080,7 @@ const getSupportUrlLink = msg => jsx("a", {
|
|
|
2080
2080
|
const PageUnauthorized = () => {
|
|
2081
2081
|
const intl = useIntl();
|
|
2082
2082
|
return jsx(MaintenancePageLayout, {
|
|
2083
|
-
imageSrc:
|
|
2083
|
+
imageSrc: FailedAuthorizationIllustration,
|
|
2084
2084
|
title: jsx(FormattedMessage, _objectSpread({}, messages.title)),
|
|
2085
2085
|
label: intl.formatMessage(messages.title),
|
|
2086
2086
|
paragraph1: jsx(FormattedMessage, _objectSpread({}, messages.paragraph1)),
|
package/dist/{public-page-layout-eff6dd7d.cjs.prod.js → public-page-layout-1e0c321d.cjs.prod.js}
RENAMED
|
@@ -41,7 +41,7 @@ require('@babel/runtime-corejs3/core-js-stable/set-timeout');
|
|
|
41
41
|
require('@commercetools-uikit/flat-button');
|
|
42
42
|
require('@commercetools-uikit/icon-button');
|
|
43
43
|
require('@commercetools-uikit/constraints');
|
|
44
|
-
require('@commercetools-frontend/assets/images/
|
|
44
|
+
require('@commercetools-frontend/assets/images/page-application-disabled.svg');
|
|
45
45
|
require('@commercetools-frontend/assets/images/folder-full-locked.svg');
|
|
46
46
|
require('@babel/runtime-corejs3/core-js-stable/instance/map');
|
|
47
47
|
require('@react-hook/resize-observer');
|
|
@@ -39,7 +39,7 @@ import '@babel/runtime-corejs3/core-js-stable/set-timeout';
|
|
|
39
39
|
import '@commercetools-uikit/flat-button';
|
|
40
40
|
import '@commercetools-uikit/icon-button';
|
|
41
41
|
import '@commercetools-uikit/constraints';
|
|
42
|
-
import '@commercetools-frontend/assets/images/
|
|
42
|
+
import '@commercetools-frontend/assets/images/page-application-disabled.svg';
|
|
43
43
|
import '@commercetools-frontend/assets/images/folder-full-locked.svg';
|
|
44
44
|
import '@babel/runtime-corejs3/core-js-stable/instance/map';
|
|
45
45
|
import '@react-hook/resize-observer';
|
package/dist/{public-page-layout-692fd21c.cjs.dev.js → public-page-layout-d4b7aa13.cjs.dev.js}
RENAMED
|
@@ -41,7 +41,7 @@ require('@babel/runtime-corejs3/core-js-stable/set-timeout');
|
|
|
41
41
|
require('@commercetools-uikit/flat-button');
|
|
42
42
|
require('@commercetools-uikit/icon-button');
|
|
43
43
|
require('@commercetools-uikit/constraints');
|
|
44
|
-
require('@commercetools-frontend/assets/images/
|
|
44
|
+
require('@commercetools-frontend/assets/images/page-application-disabled.svg');
|
|
45
45
|
require('@commercetools-frontend/assets/images/folder-full-locked.svg');
|
|
46
46
|
require('@babel/runtime-corejs3/core-js-stable/instance/map');
|
|
47
47
|
require('@react-hook/resize-observer');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/application-components",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.25.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": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/runtime": "^7.20.13",
|
|
31
31
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
32
|
-
"@commercetools-frontend/application-shell-connectors": "21.
|
|
33
|
-
"@commercetools-frontend/assets": "21.
|
|
34
|
-
"@commercetools-frontend/constants": "21.
|
|
35
|
-
"@commercetools-frontend/i18n": "21.
|
|
36
|
-
"@commercetools-frontend/l10n": "21.
|
|
32
|
+
"@commercetools-frontend/application-shell-connectors": "21.25.0",
|
|
33
|
+
"@commercetools-frontend/assets": "21.25.0",
|
|
34
|
+
"@commercetools-frontend/constants": "21.25.0",
|
|
35
|
+
"@commercetools-frontend/i18n": "21.25.0",
|
|
36
|
+
"@commercetools-frontend/l10n": "21.25.0",
|
|
37
37
|
"@commercetools-uikit/card": "^15.14.3",
|
|
38
38
|
"@commercetools-uikit/constraints": "^15.14.3",
|
|
39
39
|
"@commercetools-uikit/design-system": "^15.14.3",
|