analytica-frontend-lib 1.2.22 → 1.2.24
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/AlertManager/index.css +26 -0
- package/dist/AlertManager/index.css.map +1 -1
- package/dist/AlertManagerView/index.js +149 -114
- package/dist/AlertManagerView/index.js.map +1 -1
- package/dist/AlertManagerView/index.mjs +149 -114
- package/dist/AlertManagerView/index.mjs.map +1 -1
- package/dist/EmptyState/index.d.mts +65 -0
- package/dist/EmptyState/index.d.ts +65 -0
- package/dist/EmptyState/index.js +185 -0
- package/dist/EmptyState/index.js.map +1 -0
- package/dist/EmptyState/index.mjs +162 -0
- package/dist/EmptyState/index.mjs.map +1 -0
- package/dist/LatexRenderer/index.d.mts +50 -0
- package/dist/LatexRenderer/index.d.ts +50 -0
- package/dist/LatexRenderer/index.js +198 -0
- package/dist/LatexRenderer/index.js.map +1 -0
- package/dist/LatexRenderer/index.mjs +169 -0
- package/dist/LatexRenderer/index.mjs.map +1 -0
- package/dist/Table/index.d.mts +1 -1
- package/dist/Table/index.d.ts +1 -1
- package/dist/Table/index.js +124 -89
- package/dist/Table/index.js.map +1 -1
- package/dist/Table/index.mjs +124 -89
- package/dist/Table/index.mjs.map +1 -1
- package/dist/TableProvider/index.css +26 -0
- package/dist/TableProvider/index.css.map +1 -1
- package/dist/TableProvider/index.d.mts +1 -1
- package/dist/TableProvider/index.d.ts +1 -1
- package/dist/TableProvider/index.js +484 -449
- package/dist/TableProvider/index.js.map +1 -1
- package/dist/TableProvider/index.mjs +484 -449
- package/dist/TableProvider/index.mjs.map +1 -1
- package/dist/{TableProvider-DyhwEkPT.d.mts → TableProvider-BnAnv3OV.d.mts} +12 -4
- package/dist/{TableProvider-48a6wb7j.d.ts → TableProvider-GfPlLqzg.d.ts} +12 -4
- package/dist/index.css +26 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1359 -1165
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1360 -1166
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +26 -0
- package/dist/styles.css.map +1 -1
- package/package.json +12 -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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
@@ -500,6 +500,9 @@
|
|
|
500
500
|
.collapse {
|
|
501
501
|
visibility: collapse;
|
|
502
502
|
}
|
|
503
|
+
.invisible {
|
|
504
|
+
visibility: hidden;
|
|
505
|
+
}
|
|
503
506
|
.visible {
|
|
504
507
|
visibility: visible;
|
|
505
508
|
}
|
|
@@ -646,6 +649,9 @@
|
|
|
646
649
|
.my-2 {
|
|
647
650
|
margin-block: calc(var(--spacing) * 2);
|
|
648
651
|
}
|
|
652
|
+
.my-2\.5 {
|
|
653
|
+
margin-block: calc(var(--spacing) * 2.5);
|
|
654
|
+
}
|
|
649
655
|
.my-4 {
|
|
650
656
|
margin-block: calc(var(--spacing) * 4);
|
|
651
657
|
}
|
|
@@ -908,6 +914,9 @@
|
|
|
908
914
|
.h-\[122px\] {
|
|
909
915
|
height: 122px;
|
|
910
916
|
}
|
|
917
|
+
.h-\[150px\] {
|
|
918
|
+
height: 150px;
|
|
919
|
+
}
|
|
911
920
|
.h-\[152px\] {
|
|
912
921
|
height: 152px;
|
|
913
922
|
}
|
|
@@ -1016,6 +1025,9 @@
|
|
|
1016
1025
|
.min-h-\[600px\] {
|
|
1017
1026
|
min-height: 600px;
|
|
1018
1027
|
}
|
|
1028
|
+
.min-h-\[705px\] {
|
|
1029
|
+
min-height: 705px;
|
|
1030
|
+
}
|
|
1019
1031
|
.min-h-full {
|
|
1020
1032
|
min-height: 100%;
|
|
1021
1033
|
}
|
|
@@ -1124,6 +1136,9 @@
|
|
|
1124
1136
|
.w-\[160px\] {
|
|
1125
1137
|
width: 160px;
|
|
1126
1138
|
}
|
|
1139
|
+
.w-\[170px\] {
|
|
1140
|
+
width: 170px;
|
|
1141
|
+
}
|
|
1127
1142
|
.w-\[180px\] {
|
|
1128
1143
|
width: 180px;
|
|
1129
1144
|
}
|
|
@@ -3135,6 +3150,9 @@
|
|
|
3135
3150
|
.text-\[8px\] {
|
|
3136
3151
|
font-size: 8px;
|
|
3137
3152
|
}
|
|
3153
|
+
.text-\[18px\] {
|
|
3154
|
+
font-size: 18px;
|
|
3155
|
+
}
|
|
3138
3156
|
.leading-4 {
|
|
3139
3157
|
--tw-leading: calc(var(--spacing) * 4);
|
|
3140
3158
|
line-height: calc(var(--spacing) * 4);
|
|
@@ -3175,6 +3193,14 @@
|
|
|
3175
3193
|
--tw-leading: 23px;
|
|
3176
3194
|
line-height: 23px;
|
|
3177
3195
|
}
|
|
3196
|
+
.leading-\[27px\] {
|
|
3197
|
+
--tw-leading: 27px;
|
|
3198
|
+
line-height: 27px;
|
|
3199
|
+
}
|
|
3200
|
+
.leading-\[35px\] {
|
|
3201
|
+
--tw-leading: 35px;
|
|
3202
|
+
line-height: 35px;
|
|
3203
|
+
}
|
|
3178
3204
|
.leading-\[42px\] {
|
|
3179
3205
|
--tw-leading: 42px;
|
|
3180
3206
|
line-height: 42px;
|