@linzjs/lui 18.11.1 → 18.11.2
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 -3
- package/dist/index.js.map +1 -1
- package/dist/lui.css +12 -6
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +4 -3
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiLoadingSpinner/LuiLoadingSpinner.scss +22 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [18.11.2](https://github.com/linz/lui/compare/v18.11.1...v18.11.2) (2023-09-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* loading status spinner not centring vertically ([#1004](https://github.com/linz/lui/issues/1004)) ([85ee1f6](https://github.com/linz/lui/commit/85ee1f67416583b36ed122ca9f049d942dcbc379))
|
|
7
|
+
|
|
1
8
|
## [18.11.1](https://github.com/linz/lui/compare/v18.11.0...v18.11.1) (2023-09-10)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -52944,9 +52944,10 @@ var LuiLoadingSpinnerBase = function (props) {
|
|
|
52944
52944
|
* A LuiSpinner with a status message beneath it.
|
|
52945
52945
|
*/
|
|
52946
52946
|
var LuiStatusSpinner = function (props) {
|
|
52947
|
-
return (React__default["default"].createElement("div", { className: 'LuiLoadingSpinner-SupportText' },
|
|
52948
|
-
React__default["default"].createElement(
|
|
52949
|
-
|
|
52947
|
+
return (React__default["default"].createElement("div", { className: 'LuiLoadingSpinner-SupportText-container' },
|
|
52948
|
+
React__default["default"].createElement("div", { className: 'LuiLoadingSpinner-SupportText' },
|
|
52949
|
+
React__default["default"].createElement(LuiLoadingSpinner, null),
|
|
52950
|
+
React__default["default"].createElement("div", null, props.children))));
|
|
52950
52951
|
};
|
|
52951
52952
|
var LuiMiniSpinner = function (props) {
|
|
52952
52953
|
return (React__default["default"].createElement("div", __assign({}, props.divProps),
|