@linzjs/lui 17.47.0 → 17.47.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 +14 -0
- package/dist/components/LuiFloatingWindow/LuiFloatingWindow.d.ts +3 -2
- package/dist/components/LuiTooltip/LuiTooltip.d.ts +1 -0
- package/dist/index.js +24461 -11946
- package/dist/index.js.map +1 -1
- package/dist/lui.esm.js +24166 -11651
- package/dist/lui.esm.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [17.47.2](https://github.com/linz/lui/compare/v17.47.1...v17.47.2) (2023-04-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **dev-dependency:** Use floating window v0.8.1 ([#917](https://github.com/linz/lui/issues/917)) ([1ba6570](https://github.com/linz/lui/commit/1ba65704a3a408f55dae63aa02e9131a64da171e))
|
|
7
|
+
|
|
8
|
+
## [17.47.1](https://github.com/linz/lui/compare/v17.47.0...v17.47.1) (2023-04-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* release luitooltip offset change ([#916](https://github.com/linz/lui/issues/916)) ([19a1f37](https://github.com/linz/lui/commit/19a1f37776e0736191359555d4fa163a58dee3c9))
|
|
14
|
+
|
|
1
15
|
# [17.47.0](https://github.com/linz/lui/compare/v17.46.0...v17.47.0) (2023-03-29)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactElement, ReactNode } from 'react';
|
|
2
2
|
export { FloatingWindowContextProvider as LuiFloatingWindowContextProvider, useFloatingWindow as useLuiFloatingWindow, } from '@linzjs/floating-windows';
|
|
3
3
|
export interface ILuiFloatingWindowProps {
|
|
4
4
|
callbackOnPopinFloatingWindow?: () => void;
|
|
@@ -10,6 +10,7 @@ export interface ILuiFloatingWindowProps {
|
|
|
10
10
|
rightSideHeader?: ReactElement | string;
|
|
11
11
|
leftSideHeader?: ReactElement | string;
|
|
12
12
|
startDisplayed?: boolean;
|
|
13
|
+
children?: ReactNode;
|
|
13
14
|
}
|
|
14
15
|
export declare const LUI_WINDOW_NAME = "luiFloatingWindow";
|
|
15
|
-
export declare const LuiFloatingWindow: (props:
|
|
16
|
+
export declare const LuiFloatingWindow: (props: ILuiFloatingWindowProps) => JSX.Element;
|