@amateescu/portal-ui-components 0.0.13 → 0.0.15-beta0
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/EllipsisOutlined-Cm0_b9Em.js +2469 -0
- package/dist/PurePanel-CEtW2cn_.js +4781 -0
- package/dist/Skeleton-CxzINLDP.js +565 -0
- package/dist/UserInfoDropdown-B4K8MPdS.js +3761 -0
- package/dist/assets/SideMenu.css +1 -0
- package/dist/assets/UserInfoDropdown.css +1 -0
- package/dist/components/ConfirmationModal/ConfirmationModal.js +1 -1
- package/dist/components/ErrorModal/ErrorModal.js +1 -1
- package/dist/components/InfoModal/InfoModal.js +1 -1
- package/dist/components/KpiCard/KpiCard.js +974 -3419
- package/dist/components/SideMenu/SideMenu.d.ts +2 -0
- package/dist/components/SideMenu/SideMenu.js +202 -0
- package/dist/components/SideMenu/SideMenu.types.d.ts +17 -0
- package/dist/components/SideMenu/SideMenu.types.js +1 -0
- package/dist/components/UserInfoDropdown/UserInfoDropdown.d.ts +3 -0
- package/dist/components/UserInfoDropdown/UserInfoDropdown.js +6 -0
- package/dist/components/UserInfoDropdown/UserInfoDropdown.types.d.ts +9 -0
- package/dist/components/UserInfoDropdown/UserInfoDropdown.types.js +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +20 -16
- package/dist/index-BJyEP8DX.js +1551 -0
- package/dist/main.js +20 -16
- package/dist/{Skeleton-g81JQrtl.js → useId-D0OLY2mt.js} +9493 -10017
- package/package.json +64 -62
- package/dist/index-BczMuCik.js +0 -6111
package/dist/main.js
CHANGED
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
import { ConfirmationModal as t } from "./components/ConfirmationModal/ConfirmationModal.js";
|
|
2
|
-
import { CustomButton as
|
|
3
|
-
import { CustomFooter as
|
|
4
|
-
import { CustomPagination as
|
|
5
|
-
import { ErrorModal as
|
|
6
|
-
import { InfoModal as
|
|
7
|
-
import { KpiCard as
|
|
2
|
+
import { CustomButton as m } from "./components/CustomButton/CustomButton.js";
|
|
3
|
+
import { CustomFooter as f } from "./components/CustomFooter/CustomFooter.js";
|
|
4
|
+
import { CustomPagination as n } from "./components/CustomPagination/CustomPagination.js";
|
|
5
|
+
import { ErrorModal as i } from "./components/ErrorModal/ErrorModal.js";
|
|
6
|
+
import { InfoModal as s } from "./components/InfoModal/InfoModal.js";
|
|
7
|
+
import { KpiCard as C } from "./components/KpiCard/KpiCard.js";
|
|
8
8
|
import { KpiWrapper as M } from "./components/KpiWrapper/KpiWrapper.js";
|
|
9
|
-
import { LoadingAnimation as
|
|
10
|
-
import {
|
|
9
|
+
import { LoadingAnimation as D } from "./components/LoadingAnimation/LoadingAnimation.js";
|
|
10
|
+
import { SideMenu as K } from "./components/SideMenu/SideMenu.js";
|
|
11
|
+
import { TotalDataGrid as w } from "./components/TotalDataGrid/TotalDataGrid.js";
|
|
12
|
+
import { U as B } from "./UserInfoDropdown-B4K8MPdS.js";
|
|
11
13
|
export {
|
|
12
14
|
t as ConfirmationModal,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
m as CustomButton,
|
|
16
|
+
f as CustomFooter,
|
|
17
|
+
n as CustomPagination,
|
|
18
|
+
i as ErrorModal,
|
|
19
|
+
s as InfoModal,
|
|
20
|
+
C as KpiCard,
|
|
19
21
|
M as KpiWrapper,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
D as LoadingAnimation,
|
|
23
|
+
K as SideMenu,
|
|
24
|
+
w as TotalDataGrid,
|
|
25
|
+
B as UserInfoDropdown
|
|
22
26
|
};
|