analytica-frontend-lib 1.2.22 → 1.2.23

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 (39) hide show
  1. package/dist/AlertManager/index.css +20 -0
  2. package/dist/AlertManager/index.css.map +1 -1
  3. package/dist/AlertManagerView/index.js +149 -114
  4. package/dist/AlertManagerView/index.js.map +1 -1
  5. package/dist/AlertManagerView/index.mjs +149 -114
  6. package/dist/AlertManagerView/index.mjs.map +1 -1
  7. package/dist/EmptyState/index.d.mts +65 -0
  8. package/dist/EmptyState/index.d.ts +65 -0
  9. package/dist/EmptyState/index.js +185 -0
  10. package/dist/EmptyState/index.js.map +1 -0
  11. package/dist/EmptyState/index.mjs +162 -0
  12. package/dist/EmptyState/index.mjs.map +1 -0
  13. package/dist/Table/index.d.mts +1 -1
  14. package/dist/Table/index.d.ts +1 -1
  15. package/dist/Table/index.js +124 -89
  16. package/dist/Table/index.js.map +1 -1
  17. package/dist/Table/index.mjs +124 -89
  18. package/dist/Table/index.mjs.map +1 -1
  19. package/dist/TableProvider/index.css +20 -0
  20. package/dist/TableProvider/index.css.map +1 -1
  21. package/dist/TableProvider/index.d.mts +1 -1
  22. package/dist/TableProvider/index.d.ts +1 -1
  23. package/dist/TableProvider/index.js +484 -449
  24. package/dist/TableProvider/index.js.map +1 -1
  25. package/dist/TableProvider/index.mjs +484 -449
  26. package/dist/TableProvider/index.mjs.map +1 -1
  27. package/dist/{TableProvider-DyhwEkPT.d.mts → TableProvider-BnAnv3OV.d.mts} +12 -4
  28. package/dist/{TableProvider-48a6wb7j.d.ts → TableProvider-GfPlLqzg.d.ts} +12 -4
  29. package/dist/index.css +20 -0
  30. package/dist/index.css.map +1 -1
  31. package/dist/index.d.mts +3 -2
  32. package/dist/index.d.ts +3 -2
  33. package/dist/index.js +1041 -1004
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.mjs +1040 -1004
  36. package/dist/index.mjs.map +1 -1
  37. package/dist/styles.css +20 -0
  38. package/dist/styles.css.map +1 -1
  39. package/package.json +2 -1
@@ -98,14 +98,22 @@ interface PaginationConfig {
98
98
  interface EmptyStateConfig {
99
99
  /** Custom component to render when table is empty (no data and no search active) */
100
100
  component?: ReactNode;
101
- /** Text message to show in empty state (used if component not provided) */
102
- message?: string;
103
- /** Image to display in empty state */
101
+ /** Image to display in empty state (path from project) */
104
102
  image?: string;
105
- /** Button text for empty state action */
103
+ /** Title text for empty state */
104
+ title?: string;
105
+ /** Description text for empty state */
106
+ description?: string;
107
+ /** Button text for empty state action (optional) */
106
108
  buttonText?: string;
109
+ /** Icon to display on button (optional) */
110
+ buttonIcon?: ReactNode;
107
111
  /** Callback when empty state button is clicked */
108
112
  onButtonClick?: () => void;
113
+ /** Button variant (solid, outline, or link) */
114
+ buttonVariant?: 'solid' | 'outline' | 'link';
115
+ /** Button action color (primary, positive, or negative) */
116
+ buttonAction?: 'primary' | 'positive' | 'negative';
109
117
  }
110
118
  /**
111
119
  * Loading state configuration
@@ -98,14 +98,22 @@ interface PaginationConfig {
98
98
  interface EmptyStateConfig {
99
99
  /** Custom component to render when table is empty (no data and no search active) */
100
100
  component?: ReactNode;
101
- /** Text message to show in empty state (used if component not provided) */
102
- message?: string;
103
- /** Image to display in empty state */
101
+ /** Image to display in empty state (path from project) */
104
102
  image?: string;
105
- /** Button text for empty state action */
103
+ /** Title text for empty state */
104
+ title?: string;
105
+ /** Description text for empty state */
106
+ description?: string;
107
+ /** Button text for empty state action (optional) */
106
108
  buttonText?: string;
109
+ /** Icon to display on button (optional) */
110
+ buttonIcon?: ReactNode;
107
111
  /** Callback when empty state button is clicked */
108
112
  onButtonClick?: () => void;
113
+ /** Button variant (solid, outline, or link) */
114
+ buttonVariant?: 'solid' | 'outline' | 'link';
115
+ /** Button action color (primary, positive, or negative) */
116
+ buttonAction?: 'primary' | 'positive' | 'negative';
109
117
  }
110
118
  /**
111
119
  * Loading state configuration
package/dist/index.css CHANGED
@@ -908,6 +908,9 @@
908
908
  .h-\[122px\] {
909
909
  height: 122px;
910
910
  }
911
+ .h-\[150px\] {
912
+ height: 150px;
913
+ }
911
914
  .h-\[152px\] {
912
915
  height: 152px;
913
916
  }
@@ -1016,6 +1019,9 @@
1016
1019
  .min-h-\[600px\] {
1017
1020
  min-height: 600px;
1018
1021
  }
1022
+ .min-h-\[705px\] {
1023
+ min-height: 705px;
1024
+ }
1019
1025
  .min-h-full {
1020
1026
  min-height: 100%;
1021
1027
  }
@@ -1124,6 +1130,9 @@
1124
1130
  .w-\[160px\] {
1125
1131
  width: 160px;
1126
1132
  }
1133
+ .w-\[170px\] {
1134
+ width: 170px;
1135
+ }
1127
1136
  .w-\[180px\] {
1128
1137
  width: 180px;
1129
1138
  }
@@ -3135,6 +3144,9 @@
3135
3144
  .text-\[8px\] {
3136
3145
  font-size: 8px;
3137
3146
  }
3147
+ .text-\[18px\] {
3148
+ font-size: 18px;
3149
+ }
3138
3150
  .leading-4 {
3139
3151
  --tw-leading: calc(var(--spacing) * 4);
3140
3152
  line-height: calc(var(--spacing) * 4);
@@ -3175,6 +3187,14 @@
3175
3187
  --tw-leading: 23px;
3176
3188
  line-height: 23px;
3177
3189
  }
3190
+ .leading-\[27px\] {
3191
+ --tw-leading: 27px;
3192
+ line-height: 27px;
3193
+ }
3194
+ .leading-\[35px\] {
3195
+ --tw-leading: 35px;
3196
+ line-height: 35px;
3197
+ }
3178
3198
  .leading-\[42px\] {
3179
3199
  --tw-leading: 42px;
3180
3200
  line-height: 42px;