@linzjs/lui 15.1.7 → 15.1.10
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 +21 -0
- package/dist/components/LuiBanner/LuiBanner.d.ts +2 -1
- package/dist/components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput.d.ts +1 -0
- package/dist/components/LuiHeaderGlobal/LuiHeaderGlobal.d.ts +3 -1
- package/dist/components/LuiHeaderGlobal/LuiHeaderGlobalPublic.d.ts +6 -0
- package/dist/components/LuiMenuTrigger/LuiMenuTrigger.d.ts +5 -0
- package/dist/index.js +373 -373
- package/dist/index.js.map +1 -1
- package/dist/lui.css +103 -18
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +358 -358
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiHeaderGlobal/LuiHeaderGlobal.scss +14 -3
- package/dist/scss/Components/LuiIcon/LuiIcons.scss +2 -2
- package/dist/scss/Components/LuiMenuTrigger/LuiMenuTrigger.scss +129 -0
- package/dist/scss/Components/Messaging/messaging.scss +6 -4
- package/dist/scss/Elements/LuiButtons/LuiButton.scss +9 -0
- package/dist/scss/base.scss +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [15.1.10](https://github.com/linz/lui/compare/v15.1.9...v15.1.10) (2022-03-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* adds classnames to multiple levels of banner and swaps in LuiIcon ([#615](https://github.com/linz/lui/issues/615)) ([48fb5c8](https://github.com/linz/lui/commit/48fb5c8e26e99a443003930dffb54aab01434fd1))
|
|
7
|
+
|
|
8
|
+
## [15.1.9](https://github.com/linz/lui/compare/v15.1.8...v15.1.9) (2022-03-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* adding classname things to banner and checkbox ([#613](https://github.com/linz/lui/issues/613)) ([b8c097e](https://github.com/linz/lui/commit/b8c097e9d33c4ed2479e6780295ad55c79bde63c))
|
|
14
|
+
|
|
15
|
+
## [15.1.8](https://github.com/linz/lui/compare/v15.1.7...v15.1.8) (2022-03-09)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* Adds bits of the global header without tests ([#612](https://github.com/linz/lui/issues/612)) ([4f3a944](https://github.com/linz/lui/commit/4f3a94434c0929ec746382f2fdb51a674256fe3d))
|
|
21
|
+
|
|
1
22
|
## [15.1.7](https://github.com/linz/lui/compare/v15.1.6...v15.1.7) (2022-03-08)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -2,8 +2,9 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
declare type Props = {
|
|
3
3
|
level: 'success' | 'info' | 'warning' | 'error';
|
|
4
4
|
children: ReactNode;
|
|
5
|
+
className?: string;
|
|
5
6
|
};
|
|
7
|
+
export declare function getMaterialIconForLevel(level: 'success' | 'info' | 'warning' | 'error'): "info" | "warning" | "error" | "check_circle";
|
|
6
8
|
export declare const LuiBanner: (props: Props) => JSX.Element;
|
|
7
9
|
export declare const LuiBannerContent: (props: Props) => JSX.Element;
|
|
8
|
-
export declare function getMaterialIconForLevel(level: 'success' | 'info' | 'warning' | 'error'): "info" | "warning" | "error" | "check_circle";
|
|
9
10
|
export {};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface ILuiHeaderGlobal {
|
|
3
3
|
children?: React.ReactNode;
|
|
4
|
+
isPublic?: boolean;
|
|
5
|
+
mainTitle: string;
|
|
4
6
|
}
|
|
5
|
-
export declare const LuiHeaderGlobal: () => JSX.Element;
|
|
7
|
+
export declare const LuiHeaderGlobal: ({ isPublic, mainTitle }: ILuiHeaderGlobal) => JSX.Element;
|