@linzjs/lui 11.1.3 → 11.1.7
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 +28 -0
- package/dist/components/LuiIcon/LuiIcon.d.ts +0 -1
- package/dist/components/LuiLoadingSpinner/LuiLoadingSpinner.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/lui.cjs.development.js +13204 -87
- package/dist/lui.cjs.development.js.map +1 -1
- package/dist/lui.cjs.production.min.js +1 -1
- package/dist/lui.cjs.production.min.js.map +1 -1
- package/dist/lui.css +76 -0
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +13202 -88
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiIcon/LuiIcons.scss +91 -0
- package/dist/scss/base.scss +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [11.1.7](https://github.com/linz/lui/compare/v11.1.6...v11.1.7) (2021-12-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Export Chritmas cheer ([#489](https://github.com/linz/lui/issues/489)) ([97738f9](https://github.com/linz/lui/commit/97738f9826f98e4cb9e96cd59e1cd3e97321417a))
|
|
7
|
+
|
|
8
|
+
## [11.1.6](https://github.com/linz/lui/compare/v11.1.5...v11.1.6) (2021-12-13)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Potential fix to SSR issue ([#488](https://github.com/linz/lui/issues/488)) ([2815707](https://github.com/linz/lui/commit/2815707cb496abcb60802fbc9226fb0d07d3aa60))
|
|
14
|
+
|
|
15
|
+
## [11.1.5](https://github.com/linz/lui/compare/v11.1.4...v11.1.5) (2021-12-08)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* fixing the centering of icons in lui icons ([#487](https://github.com/linz/lui/issues/487)) ([4e52d8b](https://github.com/linz/lui/commit/4e52d8b0fe92468c3ad3f15e540cc2f6224281c2))
|
|
21
|
+
|
|
22
|
+
## [11.1.4](https://github.com/linz/lui/compare/v11.1.3...v11.1.4) (2021-12-07)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* luiIcon sass not compiling ([#486](https://github.com/linz/lui/issues/486)) ([bc3433b](https://github.com/linz/lui/commit/bc3433b5f1111dc3e7e1538f694b4135472c70f0))
|
|
28
|
+
|
|
1
29
|
## [11.1.3](https://github.com/linz/lui/compare/v11.1.2...v11.1.3) (2021-12-07)
|
|
2
30
|
|
|
3
31
|
|
|
@@ -11,4 +11,5 @@ export declare const LuiMiniSpinner: (props: LuiMiniSpinnerProps) => JSX.Element
|
|
|
11
11
|
export declare const LuiLoadingSpinner: () => JSX.Element;
|
|
12
12
|
export declare const LuiLoadingSpinnerEaster: () => JSX.Element;
|
|
13
13
|
export declare const LuiLoadingSpinnerChristmas: () => JSX.Element;
|
|
14
|
+
export declare function isChromatic(): boolean;
|
|
14
15
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export * from './components/LuiHeaderMenu/LuiHeaderMenus';
|
|
|
35
35
|
export { LuiUpdatesSplashModal } from './components/LuiUpdateSplashModal/LuiUpdatesSplashModal';
|
|
36
36
|
export { LuiModal, LuiAlertModal, LuiAlertModalButtons, } from './components/LuiModal/LuiModal';
|
|
37
37
|
export { LuiErrorPage } from './components/LuiErrorPage/LuiErrorPage';
|
|
38
|
-
export
|
|
38
|
+
export * from './components/LuiLoadingSpinner/LuiLoadingSpinner';
|
|
39
39
|
export { LOLFirmSwitcherMenu } from './components/lol/LOLFirmSwitcher';
|
|
40
40
|
export { LOLLogoutLink } from './components/lol/LOLLogoutLink';
|
|
41
41
|
export { LOLUserLastLogin } from './components/lol/LOLUserLastLogin';
|