react-semaphor 0.0.251 → 0.0.253
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/chunks/dashboard-plus-ZS0XyMaA.js +245 -0
- package/dist/chunks/{dashboard-plus-fz4vEMs-.js → dashboard-plus-aqYJ0Njv.js} +2056 -1729
- package/dist/chunks/{index-hUAmKNzK.js → index-ViQkbi2U.js} +5132 -5049
- package/dist/chunks/{index-T6uxB_lJ.js → index-rHM6JQWQ.js} +107 -107
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +4 -4
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +2 -2
- package/dist/types/dashboard.d.ts +12 -0
- package/dist/types/main.d.ts +96 -0
- package/dist/types/surfboard.d.ts +12 -0
- package/dist/types/types.d.ts +12 -0
- package/package.json +2 -2
- package/dist/chunks/dashboard-plus-yO7qYjrV.js +0 -230
|
@@ -235,6 +235,7 @@ export declare type TCard = {
|
|
|
235
235
|
id: string;
|
|
236
236
|
title: string;
|
|
237
237
|
tabTitle?: string;
|
|
238
|
+
displayTab?: boolean;
|
|
238
239
|
description?: string;
|
|
239
240
|
info?: string;
|
|
240
241
|
connectionId?: string;
|
|
@@ -320,6 +321,17 @@ export declare type TCustomCardPreferences = {
|
|
|
320
321
|
url: string;
|
|
321
322
|
componentName: string;
|
|
322
323
|
type?: 'iframe' | 'component';
|
|
324
|
+
visualType?: 'single' | 'multiple';
|
|
325
|
+
settings?: any;
|
|
326
|
+
dataInputCardIds?: {
|
|
327
|
+
[key: number]: {
|
|
328
|
+
cardId: string;
|
|
329
|
+
};
|
|
330
|
+
};
|
|
331
|
+
inputData?: {
|
|
332
|
+
cardId: string;
|
|
333
|
+
data: Record<string, any>[];
|
|
334
|
+
}[];
|
|
323
335
|
};
|
|
324
336
|
|
|
325
337
|
export declare type TDashboard = {
|
package/dist/types/types.d.ts
CHANGED
|
@@ -227,6 +227,7 @@ export declare type TCard = {
|
|
|
227
227
|
id: string;
|
|
228
228
|
title: string;
|
|
229
229
|
tabTitle?: string;
|
|
230
|
+
displayTab?: boolean;
|
|
230
231
|
description?: string;
|
|
231
232
|
info?: string;
|
|
232
233
|
connectionId?: string;
|
|
@@ -312,6 +313,17 @@ export declare type TCustomCardPreferences = {
|
|
|
312
313
|
url: string;
|
|
313
314
|
componentName: string;
|
|
314
315
|
type?: 'iframe' | 'component';
|
|
316
|
+
visualType?: 'single' | 'multiple';
|
|
317
|
+
settings?: any;
|
|
318
|
+
dataInputCardIds?: {
|
|
319
|
+
[key: number]: {
|
|
320
|
+
cardId: string;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
inputData?: {
|
|
324
|
+
cardId: string;
|
|
325
|
+
data: Record<string, any>[];
|
|
326
|
+
}[];
|
|
315
327
|
};
|
|
316
328
|
|
|
317
329
|
export declare type TDashboard = {
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"email": "support@semaphor.cloud"
|
|
6
6
|
},
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"version": "0.0.
|
|
8
|
+
"version": "0.0.253",
|
|
9
9
|
"description": "Fully interactive and customizable dashboards for your apps.",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"react",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"immer": "^10.0.3",
|
|
84
84
|
"jwt-decode": "^4.0.0",
|
|
85
85
|
"lodash": "^4.17.21",
|
|
86
|
-
"lucide-react": "^0.
|
|
86
|
+
"lucide-react": "^0.453.0",
|
|
87
87
|
"ms": "^2.1.3",
|
|
88
88
|
"next-themes": "^0.3.0",
|
|
89
89
|
"react": "^18.2.0",
|