@amateescu/portal-ui-components 0.0.10-beta0 → 0.0.10-beta2
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/main.d.ts +1 -0
- package/dist/main.js +18 -16
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { ConfirmationModal } from './components/ConfirmationModal/ConfirmationModal';
|
|
2
2
|
export { CustomButton } from './components/CustomButton';
|
|
3
|
+
export { CustomFooter } from './components/CustomFooter/CustomFooter';
|
|
3
4
|
export { CustomPagination } from './components/CustomPagination/CustomPagination';
|
|
4
5
|
export { ErrorModal } from './components/ErrorModal/ErrorModal';
|
|
5
6
|
export { InfoModal } from './components/InfoModal';
|
package/dist/main.js
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
import { ConfirmationModal as t } from "./components/ConfirmationModal/ConfirmationModal.js";
|
|
2
|
-
import { CustomButton as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
2
|
+
import { CustomButton as p } from "./components/CustomButton/index.js";
|
|
3
|
+
import { CustomFooter as e } from "./components/CustomFooter/CustomFooter.js";
|
|
4
|
+
import { CustomPagination as i } from "./components/CustomPagination/CustomPagination.js";
|
|
5
|
+
import { ErrorModal as n } from "./components/ErrorModal/ErrorModal.js";
|
|
6
|
+
import { InfoModal as C } from "./components/InfoModal/index.js";
|
|
7
|
+
import { KpiCard as u } from "./components/KpiCard/index.js";
|
|
8
|
+
import { KpiWrapper as M } from "./components/KpiWrapper/index.js";
|
|
9
|
+
import { LoadingAnimation as K } from "./components/LoadingAnimation/index.js";
|
|
10
|
+
import { TotalDataGrid as B } from "./components/TotalDataGrid/TotalDataGrid.js";
|
|
10
11
|
export {
|
|
11
12
|
t as ConfirmationModal,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
i as
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
u as
|
|
18
|
-
|
|
19
|
-
K as
|
|
13
|
+
p as CustomButton,
|
|
14
|
+
e as CustomFooter,
|
|
15
|
+
i as CustomPagination,
|
|
16
|
+
n as ErrorModal,
|
|
17
|
+
C as InfoModal,
|
|
18
|
+
u as KpiCard,
|
|
19
|
+
M as KpiWrapper,
|
|
20
|
+
K as LoadingAnimation,
|
|
21
|
+
B as TotalDataGrid
|
|
20
22
|
};
|