@lotte-innovate/ui-component-test 0.0.131 → 0.0.133
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +12 -8
- package/dist/globals.css +1 -1
- package/dist/lib/components/BarChart/index.js +1 -0
- package/dist/lib/components/BarChart/index.mjs +1 -0
- package/dist/lib/components/BarChart/index.mjs.map +1 -1
- package/dist/lib/components/BubbleChart/index.js +1 -0
- package/dist/lib/components/BubbleChart/index.mjs +1 -0
- package/dist/lib/components/BubbleChart/index.mjs.map +1 -1
- package/dist/lib/components/Calendar/index.d.ts +5 -2
- package/dist/lib/components/Calendar/index.js +2 -3
- package/dist/lib/components/Calendar/index.mjs +1 -1
- package/dist/lib/components/Container/index.d.ts +9 -0
- package/dist/lib/components/Container/index.js +47 -0
- package/dist/lib/components/Container/index.mjs +2 -0
- package/dist/lib/components/Container/index.mjs.map +1 -0
- package/dist/lib/components/Datepicker/index.d.ts +6 -3
- package/dist/lib/components/Datepicker/index.js +2 -3
- package/dist/lib/components/Datepicker/index.mjs +1 -1
- package/dist/lib/components/Dialog/DialogAction.mjs +1 -1
- package/dist/lib/components/Dialog/DialogCancel.mjs +1 -1
- package/dist/lib/components/DoughnutChart/index.js +1 -0
- package/dist/lib/components/DoughnutChart/index.mjs +1 -0
- package/dist/lib/components/DoughnutChart/index.mjs.map +1 -1
- package/dist/lib/components/Flex/index.d.ts +9 -0
- package/dist/lib/components/Flex/index.js +47 -0
- package/dist/lib/components/Flex/index.mjs +2 -0
- package/dist/lib/components/Flex/index.mjs.map +1 -0
- package/dist/lib/components/Grid/useGrid.d.ts +1 -1
- package/dist/lib/components/Grid/useGrid.js +2 -3
- package/dist/lib/components/Grid/useGrid.mjs +1 -1
- package/dist/lib/components/GridLayout/index.d.ts +9 -0
- package/dist/lib/components/GridLayout/index.js +47 -0
- package/dist/lib/components/GridLayout/index.mjs +2 -0
- package/dist/lib/components/GridLayout/index.mjs.map +1 -0
- package/dist/lib/components/LineChart/index.js +1 -0
- package/dist/lib/components/LineChart/index.mjs +1 -0
- package/dist/lib/components/LineChart/index.mjs.map +1 -1
- package/dist/lib/components/Modal/ModalAction.mjs +1 -1
- package/dist/lib/components/Modal/ModalCancel.mjs +1 -1
- package/dist/lib/components/Modal/ModalTitle.mjs +1 -1
- package/dist/lib/components/PieChart/index.js +1 -0
- package/dist/lib/components/PieChart/index.mjs +1 -0
- package/dist/lib/components/PieChart/index.mjs.map +1 -1
- package/dist/lib/components/Popover/index.mjs.map +1 -1
- package/dist/lib/components/RadarChart/index.js +1 -0
- package/dist/lib/components/RadarChart/index.mjs +1 -0
- package/dist/lib/components/RadarChart/index.mjs.map +1 -1
- package/dist/lib/components/SearchBar/index.js +2 -2
- package/dist/lib/components/SearchBar/index.mjs +1 -1
- package/dist/lib/components/TextField/index.js +6 -6
- package/dist/lib/components/TextField/index.mjs +1 -1
- package/dist/lib/components/Tree/index.d.ts +19 -0
- package/dist/lib/components/Tree/index.js +190 -0
- package/dist/lib/components/index.d.ts +3 -0
- package/dist/lib/components/index.js +3 -0
- package/dist/lib/index.mjs +1 -1
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/dist/lib/utils/useWindowSize.js +3 -1
- package/dist/lib/utils/useWindowSize.mjs +1 -1
- package/dist/lib/utils/useWindowSize.mjs.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
@@ -4,6 +4,8 @@ export function useWindowSize() {
|
|
4
4
|
var _a = useState(MIN_SIZE), size = _a[0], setSize = _a[1];
|
5
5
|
useEffect(function () {
|
6
6
|
function handleResize() {
|
7
|
+
if (!window)
|
8
|
+
return;
|
7
9
|
var width = 130 + window.innerWidth * 0.15;
|
8
10
|
width = Math.max(width, MIN_SIZE);
|
9
11
|
width = Math.min(width, 300);
|
@@ -12,6 +14,6 @@ export function useWindowSize() {
|
|
12
14
|
window.addEventListener('resize', handleResize);
|
13
15
|
handleResize();
|
14
16
|
return function () { return window.removeEventListener('resize', handleResize); };
|
15
|
-
}, []);
|
17
|
+
}, [window]);
|
16
18
|
return size;
|
17
19
|
}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import{useState as n,useEffect as e}from"react";function
|
1
|
+
import{useState as n,useEffect as e}from"react";function i(){var i=n(250),r=i[0],t=i[1];return e((function(){function n(){if(window){var n=130+.15*window.innerWidth;n=Math.max(n,250),n=Math.min(n,300),t(n)}}return window.addEventListener("resize",n),n(),function(){return window.removeEventListener("resize",n)}}),[window]),r}export{i as useWindowSize};
|
2
2
|
//# sourceMappingURL=useWindowSize.mjs.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useWindowSize.mjs","sources":["../../lib/utils/useWindowSize.js"],"sourcesContent":["import { useState, useEffect } from 'react';\nvar MIN_SIZE = 250;\nexport function useWindowSize() {\n var _a = useState(MIN_SIZE), size = _a[0], setSize = _a[1];\n useEffect(function () {\n function handleResize() {\n var width = 130 + window.innerWidth * 0.15;\n width = Math.max(width, MIN_SIZE);\n width = Math.min(width, 300);\n setSize(width);\n }\n window.addEventListener('resize', handleResize);\n handleResize();\n return function () { return window.removeEventListener('resize', handleResize); };\n }, []);\n return size;\n}\n"],"names":["useWindowSize","_a","useState","size","setSize","useEffect","handleResize","
|
1
|
+
{"version":3,"file":"useWindowSize.mjs","sources":["../../lib/utils/useWindowSize.js"],"sourcesContent":["import { useState, useEffect } from 'react';\nvar MIN_SIZE = 250;\nexport function useWindowSize() {\n var _a = useState(MIN_SIZE), size = _a[0], setSize = _a[1];\n useEffect(function () {\n function handleResize() {\n if (!window)\n return;\n var width = 130 + window.innerWidth * 0.15;\n width = Math.max(width, MIN_SIZE);\n width = Math.min(width, 300);\n setSize(width);\n }\n window.addEventListener('resize', handleResize);\n handleResize();\n return function () { return window.removeEventListener('resize', handleResize); };\n }, [window]);\n return size;\n}\n"],"names":["useWindowSize","_a","useState","size","setSize","useEffect","handleResize","window","width","innerWidth","Math","max","min","addEventListener","removeEventListener"],"mappings":"gDAEO,SAASA,IACZ,IAAIC,EAAKC,EAFE,KAEkBC,EAAOF,EAAG,GAAIG,EAAUH,EAAG,GAcxD,OAbAI,GAAU,WACN,SAASC,IACL,GAAKC,OAAL,CAEA,IAAIC,EAAQ,IAA0B,IAApBD,OAAOE,WACzBD,EAAQE,KAAKC,IAAIH,EARd,KASHA,EAAQE,KAAKE,IAAIJ,EAAO,KACxBJ,EAAQI,EAJG,CAKd,CAGD,OAFAD,OAAOM,iBAAiB,SAAUP,GAClCA,IACO,WAAc,OAAOC,OAAOO,oBAAoB,SAAUR,GACzE,GAAO,CAACC,SACGJ,CACX"}
|