@blaze-cms/plugin-admin-core-ui 0.127.0-project-admin-customisations.0 → 0.127.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/CHANGELOG.md +2 -17
- package/lib/components/Header/Header.js +3 -3
- package/lib/components/Header/Header.js.map +1 -1
- package/lib/components/Layout/Layout.js +4 -5
- package/lib/components/Layout/Layout.js.map +1 -1
- package/lib/components/Layout/components/Grid/Grid.js +1 -3
- package/lib/components/Layout/components/Grid/Grid.js.map +1 -1
- package/lib/components/SideBar/SideBar.js +5 -1
- package/lib/components/SideBar/SideBar.js.map +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/containers/Home/Home.js +1 -1
- package/lib/containers/Home/Home.js.map +1 -1
- package/lib-es/components/Header/Header.js +3 -3
- package/lib-es/components/Header/Header.js.map +1 -1
- package/lib-es/components/Layout/Layout.js +4 -5
- package/lib-es/components/Layout/Layout.js.map +1 -1
- package/lib-es/components/Layout/components/Grid/Grid.js +1 -3
- package/lib-es/components/Layout/components/Grid/Grid.js.map +1 -1
- package/lib-es/components/SideBar/SideBar.js +5 -1
- package/lib-es/components/SideBar/SideBar.js.map +1 -1
- package/lib-es/constants.js +1 -1
- package/lib-es/constants.js.map +1 -1
- package/lib-es/containers/Home/Home.js +1 -1
- package/lib-es/containers/Home/Home.js.map +1 -1
- package/package.json +8 -8
- package/src/components/Header/Header.js +7 -9
- package/src/components/Layout/Layout.js +7 -11
- package/src/components/Layout/components/Grid/Grid.js +1 -1
- package/src/components/SideBar/SideBar.js +3 -2
- package/src/constants.js +1 -3
- package/src/containers/Home/Home.js +1 -1
- package/lib/components/Layout/Background.js +0 -26
- package/lib/components/Layout/Background.js.map +0 -1
- package/lib-es/components/Layout/Background.js +0 -16
- package/lib-es/components/Layout/Background.js.map +0 -1
- package/src/components/Layout/Background.js +0 -16
- package/src/components/Layout/bg.svg +0 -22
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
require("core-js/modules/es.object.define-property.js");
|
|
4
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
var _react = _interopRequireDefault(require("react"));
|
|
10
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
|
-
// import Svg from './bg.svg';
|
|
12
|
-
|
|
13
|
-
var Background = function Background(_ref) {
|
|
14
|
-
var children = _ref.children;
|
|
15
|
-
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
16
|
-
className: "bg-blue-900 h-full w-full relative"
|
|
17
|
-
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
18
|
-
className: "login-container"
|
|
19
|
-
}, children));
|
|
20
|
-
};
|
|
21
|
-
Background.propTypes = {
|
|
22
|
-
children: _propTypes["default"].oneOfType([_propTypes["default"].arrayOf(_propTypes["default"].node), _propTypes["default"].node]).isRequired
|
|
23
|
-
};
|
|
24
|
-
var _default = Background;
|
|
25
|
-
exports["default"] = _default;
|
|
26
|
-
//# sourceMappingURL=Background.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Background.js","names":["Background","children","propTypes","PropTypes","oneOfType","arrayOf","node","isRequired"],"sources":["../../../src/components/Layout/Background.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\n// import Svg from './bg.svg';\n\nconst Background = ({ children }) => (\n <div className=\"bg-blue-900 h-full w-full relative\">\n {/* <Svg /> */}\n <div className=\"login-container\">{children}</div>\n </div>\n);\n\nBackground.propTypes = {\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired\n};\n\nexport default Background;\n"],"mappings":";;;;;;;;AAAA;AACA;AACA;;AAEA,IAAMA,UAAU,GAAG,SAAbA,UAAU;EAAA,IAAMC,QAAQ,QAARA,QAAQ;EAAA,oBAC5B;IAAK,SAAS,EAAC;EAAoC,gBAEjD;IAAK,SAAS,EAAC;EAAiB,GAAEA,QAAQ,CAAO,CAC7C;AAAA,CACP;AAEDD,UAAU,CAACE,SAAS,GAAG;EACrBD,QAAQ,EAAEE,qBAAS,CAACC,SAAS,CAAC,CAACD,qBAAS,CAACE,OAAO,CAACF,qBAAS,CAACG,IAAI,CAAC,EAAEH,qBAAS,CAACG,IAAI,CAAC,CAAC,CAACC;AACrF,CAAC;AAAC,eAEaP,UAAU;AAAA"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
// import Svg from './bg.svg';
|
|
4
|
-
|
|
5
|
-
const Background = ({
|
|
6
|
-
children
|
|
7
|
-
}) => /*#__PURE__*/React.createElement("div", {
|
|
8
|
-
className: "bg-blue-900 h-full w-full relative"
|
|
9
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
10
|
-
className: "login-container"
|
|
11
|
-
}, children));
|
|
12
|
-
Background.propTypes = {
|
|
13
|
-
children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired
|
|
14
|
-
};
|
|
15
|
-
export default Background;
|
|
16
|
-
//# sourceMappingURL=Background.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Background.js","names":["React","PropTypes","Background","children","propTypes","oneOfType","arrayOf","node","isRequired"],"sources":["../../../src/components/Layout/Background.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\n// import Svg from './bg.svg';\n\nconst Background = ({ children }) => (\n <div className=\"bg-blue-900 h-full w-full relative\">\n {/* <Svg /> */}\n <div className=\"login-container\">{children}</div>\n </div>\n);\n\nBackground.propTypes = {\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired\n};\n\nexport default Background;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,SAAS,MAAM,YAAY;AAClC;;AAEA,MAAMC,UAAU,GAAG,CAAC;EAAEC;AAAS,CAAC,kBAC9B;EAAK,SAAS,EAAC;AAAoC,gBAEjD;EAAK,SAAS,EAAC;AAAiB,GAAEA,QAAQ,CAAO,CAEpD;AAEDD,UAAU,CAACE,SAAS,GAAG;EACrBD,QAAQ,EAAEF,SAAS,CAACI,SAAS,CAAC,CAACJ,SAAS,CAACK,OAAO,CAACL,SAAS,CAACM,IAAI,CAAC,EAAEN,SAAS,CAACM,IAAI,CAAC,CAAC,CAACC;AACrF,CAAC;AAED,eAAeN,UAAU"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
// import Svg from './bg.svg';
|
|
4
|
-
|
|
5
|
-
const Background = ({ children }) => (
|
|
6
|
-
<div className="bg-blue-900 h-full w-full relative">
|
|
7
|
-
{/* <Svg /> */}
|
|
8
|
-
<div className="login-container">{children}</div>
|
|
9
|
-
</div>
|
|
10
|
-
);
|
|
11
|
-
|
|
12
|
-
Background.propTypes = {
|
|
13
|
-
children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
export default Background;
|