analytica-frontend-lib 1.0.68 → 1.0.71

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 (59) hide show
  1. package/dist/Accordation/index.d.mts +12 -0
  2. package/dist/Accordation/index.d.ts +12 -0
  3. package/dist/Accordation/index.js +1663 -0
  4. package/dist/Accordation/index.js.map +1 -0
  5. package/dist/Accordation/index.mjs +1654 -0
  6. package/dist/Accordation/index.mjs.map +1 -0
  7. package/dist/AlertDialog/index.d.mts +40 -0
  8. package/dist/AlertDialog/index.d.ts +40 -0
  9. package/dist/AlertDialog/index.js +233 -0
  10. package/dist/AlertDialog/index.js.map +1 -0
  11. package/dist/AlertDialog/index.mjs +212 -0
  12. package/dist/AlertDialog/index.mjs.map +1 -0
  13. package/dist/Alternative/index.d.mts +81 -0
  14. package/dist/Alternative/index.d.ts +81 -0
  15. package/dist/Alternative/index.js +745 -0
  16. package/dist/Alternative/index.js.map +1 -0
  17. package/dist/Alternative/index.mjs +728 -0
  18. package/dist/Alternative/index.mjs.map +1 -0
  19. package/dist/Auth/index.d.mts +218 -0
  20. package/dist/Auth/index.d.ts +218 -0
  21. package/dist/Auth/index.js +190 -0
  22. package/dist/Auth/index.js.map +1 -0
  23. package/dist/Auth/index.mjs +166 -0
  24. package/dist/Auth/index.mjs.map +1 -0
  25. package/dist/Badge/index.js +1 -1
  26. package/dist/Badge/index.js.map +1 -1
  27. package/dist/Badge/index.mjs +1 -1
  28. package/dist/Badge/index.mjs.map +1 -1
  29. package/dist/Card/index.js +1 -1
  30. package/dist/Card/index.js.map +1 -1
  31. package/dist/Card/index.mjs +1 -1
  32. package/dist/Card/index.mjs.map +1 -1
  33. package/dist/Radio/index.d.mts +120 -2
  34. package/dist/Radio/index.d.ts +120 -2
  35. package/dist/Radio/index.js +176 -3
  36. package/dist/Radio/index.js.map +1 -1
  37. package/dist/Radio/index.mjs +176 -4
  38. package/dist/Radio/index.mjs.map +1 -1
  39. package/dist/Skeleton/index.d.mts +10 -9
  40. package/dist/Skeleton/index.d.ts +10 -9
  41. package/dist/Skeleton/index.js.map +1 -1
  42. package/dist/Skeleton/index.mjs.map +1 -1
  43. package/dist/Tab/index.d.mts +37 -0
  44. package/dist/Tab/index.d.ts +37 -0
  45. package/dist/Tab/index.js +182 -0
  46. package/dist/Tab/index.js.map +1 -0
  47. package/dist/Tab/index.mjs +161 -0
  48. package/dist/Tab/index.mjs.map +1 -0
  49. package/dist/index.css +261 -0
  50. package/dist/index.css.map +1 -1
  51. package/dist/index.d.mts +6 -1
  52. package/dist/index.d.ts +6 -1
  53. package/dist/index.js +2655 -1736
  54. package/dist/index.js.map +1 -1
  55. package/dist/index.mjs +2712 -1790
  56. package/dist/index.mjs.map +1 -1
  57. package/dist/styles.css +261 -0
  58. package/dist/styles.css.map +1 -1
  59. package/package.json +9 -2
@@ -0,0 +1,12 @@
1
+ import * as react from 'react';
2
+ import { HTMLAttributes, ReactNode } from 'react';
3
+
4
+ interface CardAccordationProps extends HTMLAttributes<HTMLDivElement> {
5
+ title: string;
6
+ children: ReactNode;
7
+ defaultExpanded?: boolean;
8
+ onToggleExpanded?: (isExpanded: boolean) => void;
9
+ }
10
+ declare const CardAccordation: react.ForwardRefExoticComponent<CardAccordationProps & react.RefAttributes<HTMLDivElement>>;
11
+
12
+ export { CardAccordation };
@@ -0,0 +1,12 @@
1
+ import * as react from 'react';
2
+ import { HTMLAttributes, ReactNode } from 'react';
3
+
4
+ interface CardAccordationProps extends HTMLAttributes<HTMLDivElement> {
5
+ title: string;
6
+ children: ReactNode;
7
+ defaultExpanded?: boolean;
8
+ onToggleExpanded?: (isExpanded: boolean) => void;
9
+ }
10
+ declare const CardAccordation: react.ForwardRefExoticComponent<CardAccordationProps & react.RefAttributes<HTMLDivElement>>;
11
+
12
+ export { CardAccordation };