@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 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 {};
@@ -7,5 +7,6 @@ export interface LuiCheckboxProps {
7
7
  isDisabled?: boolean;
8
8
  error?: string;
9
9
  inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
10
+ className?: string;
10
11
  }
11
12
  export declare const LuiCheckboxInput: (props: LuiCheckboxProps) => JSX.Element;
@@ -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;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface ILuiHeaderGlobalPublic {
3
+ children?: React.ReactNode;
4
+ mainTitle: string;
5
+ }
6
+ export declare const LuiHeaderGlobalPublic: ({ mainTitle, }: ILuiHeaderGlobalPublic) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export interface ILuiMenuTrigger {
3
+ className?: string;
4
+ }
5
+ export declare const LuiMenuTrigger: ({ className }: ILuiMenuTrigger) => JSX.Element;