@amateescu/portal-ui-components 0.0.7 → 0.0.9-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.
Files changed (38) hide show
  1. package/dist/ButtonBase-Dv90LYxj.js +956 -0
  2. package/dist/Skeleton-g81JQrtl.js +25004 -0
  3. package/dist/VModalIcon-D7L4bQLO.js +5 -0
  4. package/dist/assets/index2.css +1 -1
  5. package/dist/assets/index3.css +1 -1
  6. package/dist/components/ConfirmationModal/ConfirmationModal.d.ts +2 -0
  7. package/dist/components/ConfirmationModal/ConfirmationModal.js +50 -0
  8. package/dist/components/ConfirmationModal/ConfirmationModal.types.d.ts +11 -0
  9. package/dist/components/CustomButton/index.js +359 -9
  10. package/dist/components/CustomPagination/CustomPagination.d.ts +11 -0
  11. package/dist/components/CustomPagination/CustomPagination.js +948 -0
  12. package/dist/components/ErrorModal/ErrorModal.d.ts +2 -0
  13. package/dist/components/ErrorModal/ErrorModal.js +35 -0
  14. package/dist/components/ErrorModal/ErrorModal.types.d.ts +10 -0
  15. package/dist/components/ErrorModal/ErrorModal.types.js +1 -0
  16. package/dist/components/InfoModal/index.js +23 -6128
  17. package/dist/components/KpiCard/index.js +23 -24
  18. package/dist/components/LoadingAnimation/index.js +254 -37
  19. package/dist/components/TotalDataGrid/TotalDataGrid.d.ts +2 -0
  20. package/dist/components/TotalDataGrid/TotalDataGrid.js +125 -0
  21. package/dist/components/TotalDataGrid/TotalDataGrid.types.js +1 -0
  22. package/dist/generateUtilityClasses-CBdP3bZj.js +3259 -0
  23. package/dist/index-BczMuCik.js +6111 -0
  24. package/dist/main.d.ts +4 -1
  25. package/dist/main.js +18 -12
  26. package/dist/{index-kNWC7pFF.js → objectWithoutPropertiesLoose-CIT-1_kH.js} +25 -25
  27. package/dist/types/CustomSvg.d.ts +5 -0
  28. package/dist/types/CustomSvg.js +1 -0
  29. package/package.json +1 -1
  30. package/dist/Button-BgbkoKxR.js +0 -1314
  31. package/dist/CircularProgress-BsBIRj7X.js +0 -225
  32. package/dist/Skeleton-BB4Y_Her.js +0 -5898
  33. package/dist/components/TotalDataGrid/index.d.ts +0 -2
  34. package/dist/components/TotalDataGrid/index.js +0 -28058
  35. package/dist/generateUtilityClasses-sdN6xOVt.js +0 -3985
  36. package/dist/toPropertyKey-DMiYgyB_.js +0 -19113
  37. /package/dist/components/{TotalDataGrid/types.js → ConfirmationModal/ConfirmationModal.types.js} +0 -0
  38. /package/dist/components/TotalDataGrid/{types.d.ts → TotalDataGrid.types.d.ts} +0 -0
package/dist/main.d.ts CHANGED
@@ -1,6 +1,9 @@
1
+ export { ConfirmationModal } from './components/ConfirmationModal/ConfirmationModal';
1
2
  export { CustomButton } from './components/CustomButton';
3
+ export { CustomPagination } from './components/CustomPagination/CustomPagination';
4
+ export { ErrorModal } from './components/ErrorModal/ErrorModal';
2
5
  export { InfoModal } from './components/InfoModal';
3
6
  export { KpiCard } from './components/KpiCard';
4
7
  export { KpiWrapper } from './components/KpiWrapper';
5
8
  export { LoadingAnimation } from './components/LoadingAnimation';
6
- export { TotalDataGrid } from './components/TotalDataGrid';
9
+ export { TotalDataGrid } from './components/TotalDataGrid/TotalDataGrid';
package/dist/main.js CHANGED
@@ -1,14 +1,20 @@
1
- import { CustomButton as t } from "./components/CustomButton/index.js";
2
- import { InfoModal as a } from "./components/InfoModal/index.js";
3
- import { KpiCard as e } from "./components/KpiCard/index.js";
4
- import { KpiWrapper as i } from "./components/KpiWrapper/index.js";
5
- import { LoadingAnimation as n } from "./components/LoadingAnimation/index.js";
6
- import { TotalDataGrid as l } from "./components/TotalDataGrid/index.js";
1
+ import { ConfirmationModal as t } from "./components/ConfirmationModal/ConfirmationModal.js";
2
+ import { CustomButton as m } from "./components/CustomButton/index.js";
3
+ import { CustomPagination as f } from "./components/CustomPagination/CustomPagination.js";
4
+ import { ErrorModal as i } from "./components/ErrorModal/ErrorModal.js";
5
+ import { InfoModal as x } from "./components/InfoModal/index.js";
6
+ import { KpiCard as l } from "./components/KpiCard/index.js";
7
+ import { KpiWrapper as u } from "./components/KpiWrapper/index.js";
8
+ import { LoadingAnimation as g } from "./components/LoadingAnimation/index.js";
9
+ import { TotalDataGrid as K } from "./components/TotalDataGrid/TotalDataGrid.js";
7
10
  export {
8
- t as CustomButton,
9
- a as InfoModal,
10
- e as KpiCard,
11
- i as KpiWrapper,
12
- n as LoadingAnimation,
13
- l as TotalDataGrid
11
+ t as ConfirmationModal,
12
+ m as CustomButton,
13
+ f as CustomPagination,
14
+ i as ErrorModal,
15
+ x as InfoModal,
16
+ l as KpiCard,
17
+ u as KpiWrapper,
18
+ g as LoadingAnimation,
19
+ K as TotalDataGrid
14
20
  };
@@ -1,25 +1,7 @@
1
- function ce(o, i) {
2
- if (o == null) return {};
3
- var a = {};
4
- for (var s in o) if ({}.hasOwnProperty.call(o, s)) {
5
- if (i.includes(s)) continue;
6
- a[s] = o[s];
7
- }
8
- return a;
9
- }
10
- function O() {
11
- return O = Object.assign ? Object.assign.bind() : function(o) {
12
- for (var i = 1; i < arguments.length; i++) {
13
- var a = arguments[i];
14
- for (var s in a) ({}).hasOwnProperty.call(a, s) && (o[s] = a[s]);
15
- }
16
- return o;
17
- }, O.apply(null, arguments);
18
- }
19
- function ue(o) {
1
+ function ce(o) {
20
2
  return o && o.__esModule && Object.prototype.hasOwnProperty.call(o, "default") ? o.default : o;
21
3
  }
22
- function fe(o) {
4
+ function ue(o) {
23
5
  if (o.__esModule) return o;
24
6
  var i = o.default;
25
7
  if (typeof i == "function") {
@@ -38,6 +20,15 @@ function fe(o) {
38
20
  });
39
21
  }), a;
40
22
  }
23
+ function O() {
24
+ return O = Object.assign ? Object.assign.bind() : function(o) {
25
+ for (var i = 1; i < arguments.length; i++) {
26
+ var a = arguments[i];
27
+ for (var s in a) ({}).hasOwnProperty.call(a, s) && (o[s] = a[s]);
28
+ }
29
+ return o;
30
+ }, O.apply(null, arguments);
31
+ }
41
32
  var P = { exports: {} }, t = {};
42
33
  /**
43
34
  * @license React
@@ -217,11 +208,20 @@ function ie() {
217
208
  }()), n;
218
209
  }
219
210
  process.env.NODE_ENV === "production" ? P.exports = ae() : P.exports = ie();
220
- var le = P.exports;
211
+ var fe = P.exports;
212
+ function le(o, i) {
213
+ if (o == null) return {};
214
+ var a = {};
215
+ for (var s in o) if ({}.hasOwnProperty.call(o, s)) {
216
+ if (i.includes(s)) continue;
217
+ a[s] = o[s];
218
+ }
219
+ return a;
220
+ }
221
221
  export {
222
- ce as _,
222
+ le as _,
223
223
  O as a,
224
- fe as b,
225
- ue as g,
226
- le as r
224
+ ue as b,
225
+ ce as g,
226
+ fe as r
227
227
  };
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent, SVGProps } from 'react';
2
+ type CustomSvg = FunctionComponent<SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ }>;
5
+ export default CustomSvg;
@@ -0,0 +1 @@
1
+
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@amateescu/portal-ui-components",
3
3
  "main": "dist/main.js",
4
4
  "types": "dist/main.d.ts",
5
- "version": "0.0.7",
5
+ "version": "0.0.9-beta0",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist"