@amateescu/portal-ui-components 0.0.16-beta0 → 0.0.16-beta1
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/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +8 -6
- package/dist/main.js +26 -22
- package/dist/utils/chunkArray.d.ts +1 -0
- package/dist/utils/chunkArray.js +10 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +14 -12
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export { InfoModal } from './InfoModal/InfoModal';
|
|
|
7
7
|
export { KpiCard } from './KpiCard/KpiCard';
|
|
8
8
|
export { KpiWrapper } from './KpiWrapper/KpiWrapper';
|
|
9
9
|
export { LoadingAnimation } from './LoadingAnimation/LoadingAnimation';
|
|
10
|
+
export { Login } from './Login/Login';
|
|
10
11
|
export { SideMenu } from './SideMenu/SideMenu';
|
|
11
12
|
export { TotalDataGrid } from './TotalDataGrid/TotalDataGrid';
|
|
12
13
|
export { UserInfoDropdown } from './UserInfoDropdown/UserInfoDropdown';
|
package/dist/components/index.js
CHANGED
|
@@ -7,9 +7,10 @@ import { InfoModal as s } from "./InfoModal/InfoModal.js";
|
|
|
7
7
|
import { KpiCard as C } from "./KpiCard/KpiCard.js";
|
|
8
8
|
import { KpiWrapper as M } from "./KpiWrapper/KpiWrapper.js";
|
|
9
9
|
import { LoadingAnimation as D } from "./LoadingAnimation/LoadingAnimation.js";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
10
|
+
import { Login as K } from "./Login/Login.js";
|
|
11
|
+
import { SideMenu as U } from "./SideMenu/SideMenu.js";
|
|
12
|
+
import { TotalDataGrid as A } from "./TotalDataGrid/TotalDataGrid.js";
|
|
13
|
+
import { U as E } from "../UserInfoDropdown-CTLrKtZM.js";
|
|
13
14
|
export {
|
|
14
15
|
t as ConfirmationModal,
|
|
15
16
|
m as CustomButton,
|
|
@@ -20,7 +21,8 @@ export {
|
|
|
20
21
|
C as KpiCard,
|
|
21
22
|
M as KpiWrapper,
|
|
22
23
|
D as LoadingAnimation,
|
|
23
|
-
K as
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
K as Login,
|
|
25
|
+
U as SideMenu,
|
|
26
|
+
A as TotalDataGrid,
|
|
27
|
+
E as UserInfoDropdown
|
|
26
28
|
};
|
package/dist/main.js
CHANGED
|
@@ -4,15 +4,17 @@ import { CustomFooter as p } from "./components/CustomFooter/CustomFooter.js";
|
|
|
4
4
|
import { CustomPagination as n } from "./components/CustomPagination/CustomPagination.js";
|
|
5
5
|
import { ErrorModal as x } from "./components/ErrorModal/ErrorModal.js";
|
|
6
6
|
import { InfoModal as d } from "./components/InfoModal/InfoModal.js";
|
|
7
|
-
import { KpiCard as
|
|
8
|
-
import { KpiWrapper as
|
|
7
|
+
import { KpiCard as c } from "./components/KpiCard/KpiCard.js";
|
|
8
|
+
import { KpiWrapper as C } from "./components/KpiWrapper/KpiWrapper.js";
|
|
9
9
|
import { LoadingAnimation as M } from "./components/LoadingAnimation/LoadingAnimation.js";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
10
|
+
import { Login as U } from "./components/Login/Login.js";
|
|
11
|
+
import { SideMenu as y } from "./components/SideMenu/SideMenu.js";
|
|
12
|
+
import { TotalDataGrid as D } from "./components/TotalDataGrid/TotalDataGrid.js";
|
|
13
|
+
import { U as K } from "./UserInfoDropdown-CTLrKtZM.js";
|
|
14
|
+
import { chunkArray as b } from "./utils/chunkArray.js";
|
|
13
15
|
import { cn as w } from "./utils/cn.js";
|
|
14
|
-
import { currency as
|
|
15
|
-
import { getPageCount as
|
|
16
|
+
import { currency as E, date as F, datetime as G, decimal as S, fuelUnitPrice as T, fuelVolume as V, hours as W, number as j, time as q } from "./utils/formatters.js";
|
|
17
|
+
import { getPageCount as z } from "./utils/pageCount.js";
|
|
16
18
|
export {
|
|
17
19
|
e as ConfirmationModal,
|
|
18
20
|
m as CustomButton,
|
|
@@ -20,21 +22,23 @@ export {
|
|
|
20
22
|
n as CustomPagination,
|
|
21
23
|
x as ErrorModal,
|
|
22
24
|
d as InfoModal,
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
c as KpiCard,
|
|
26
|
+
C as KpiWrapper,
|
|
25
27
|
M as LoadingAnimation,
|
|
26
|
-
U as
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
U as Login,
|
|
29
|
+
y as SideMenu,
|
|
30
|
+
D as TotalDataGrid,
|
|
31
|
+
K as UserInfoDropdown,
|
|
32
|
+
b as chunkArray,
|
|
29
33
|
w as cn,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
E as currency,
|
|
35
|
+
F as date,
|
|
36
|
+
G as datetime,
|
|
37
|
+
S as decimal,
|
|
38
|
+
T as fuelUnitPrice,
|
|
39
|
+
V as fuelVolume,
|
|
40
|
+
z as getPageCount,
|
|
41
|
+
W as hours,
|
|
42
|
+
j as number,
|
|
43
|
+
q as time
|
|
40
44
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function chunkArray<T>(array: T[], chunkSize: number): T[][];
|
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { chunkArray as o } from "./chunkArray.js";
|
|
2
|
+
import { cn as m } from "./cn.js";
|
|
3
|
+
import { currency as c, date as f, datetime as n, decimal as a, fuelUnitPrice as i, fuelVolume as l, hours as p, number as x, time as d } from "./formatters.js";
|
|
4
|
+
import { getPageCount as h } from "./pageCount.js";
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
-
m as
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
o as chunkArray,
|
|
7
|
+
m as cn,
|
|
8
|
+
c as currency,
|
|
9
|
+
f as date,
|
|
10
|
+
n as datetime,
|
|
11
|
+
a as decimal,
|
|
10
12
|
i as fuelUnitPrice,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
l as fuelVolume,
|
|
14
|
+
h as getPageCount,
|
|
15
|
+
p as hours,
|
|
16
|
+
x as number,
|
|
15
17
|
d as time
|
|
16
18
|
};
|