@linzjs/lui 18.4.3 → 18.4.4
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 +7 -0
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/dist/lui.css +23 -25
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +4 -5
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiErrorPage/LuiErrorPage.scss +27 -19
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [18.4.4](https://github.com/linz/lui/compare/v18.4.3...v18.4.4) (2023-08-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated error page layout to conform with FIGLUI version ([#979](https://github.com/linz/lui/issues/979)) ([a73f678](https://github.com/linz/lui/commit/a73f6784f146f0ffe1608c782667ad7c28dbd3d5))
|
|
7
|
+
|
|
1
8
|
## [18.4.3](https://github.com/linz/lui/compare/v18.4.2...v18.4.3) (2023-08-06)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -55887,11 +55887,10 @@ var maintenanceImage = 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbm
|
|
|
55887
55887
|
var LuiErrorPage = function (props) {
|
|
55888
55888
|
return (React__default["default"].createElement("div", { className: 'LuiErrorPage' },
|
|
55889
55889
|
props.header,
|
|
55890
|
-
React__default["default"].createElement("div", { className:
|
|
55891
|
-
React__default["default"].createElement("div", { className:
|
|
55892
|
-
|
|
55893
|
-
React__default["default"].createElement("
|
|
55894
|
-
React__default["default"].createElement("img", { src: maintenanceImage, alt: "The application is down for maintenance" })))),
|
|
55890
|
+
React__default["default"].createElement("div", { className: "LuiErrorPage-wrapper" },
|
|
55891
|
+
React__default["default"].createElement("div", { className: 'LuiErrorPage-content' }, props.content),
|
|
55892
|
+
React__default["default"].createElement("div", { className: 'LuiErrorPage-image' },
|
|
55893
|
+
React__default["default"].createElement("img", { src: maintenanceImage, alt: "The application is down for maintenance" }))),
|
|
55895
55894
|
props.footer));
|
|
55896
55895
|
};
|
|
55897
55896
|
|