@amateescu/portal-ui-components 0.0.2 → 0.0.4
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.
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
import { default as KpiCardProps } from './types';
|
|
2
|
-
declare function KpiCard({ title, content, icon, menuCollapsed }: KpiCardProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export default KpiCard;
|
|
2
|
+
export declare function KpiCard({ title, content, icon, menuCollapsed }: KpiCardProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/main.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { CustomButton } from './components/CustomButton';
|
|
2
2
|
export { InfoModal } from './components/InfoModal';
|
|
3
|
+
export { KpiCard } from './components/KpiCard';
|
|
3
4
|
export { KpiWrapper } from './components/KpiWrapper';
|
|
4
5
|
export { LoadingAnimation } from './components/LoadingAnimation';
|
package/dist/main.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { CustomButton as
|
|
1
|
+
import { CustomButton as p } from "./components/CustomButton/index.js";
|
|
2
2
|
import { InfoModal as m } from "./components/InfoModal/index.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { KpiCard as f } from "./components/KpiCard/index.js";
|
|
4
|
+
import { KpiWrapper as i } from "./components/KpiWrapper/index.js";
|
|
5
|
+
import { LoadingAnimation as x } from "./components/LoadingAnimation/index.js";
|
|
5
6
|
export {
|
|
6
|
-
|
|
7
|
+
p as CustomButton,
|
|
7
8
|
m as InfoModal,
|
|
8
|
-
f as
|
|
9
|
-
|
|
9
|
+
f as KpiCard,
|
|
10
|
+
i as KpiWrapper,
|
|
11
|
+
x as LoadingAnimation
|
|
10
12
|
};
|