@conboai/app.db.query 0.3.73 → 0.3.74
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.
|
@@ -13,6 +13,16 @@ interface ITrailContent {
|
|
|
13
13
|
};
|
|
14
14
|
isLoading: boolean;
|
|
15
15
|
}
|
|
16
|
+
interface IDetailsContent {
|
|
17
|
+
getLabels: any;
|
|
18
|
+
selectedTableItemId: number;
|
|
19
|
+
topOne?: any[];
|
|
20
|
+
timezone: string;
|
|
21
|
+
isLoading?: boolean;
|
|
22
|
+
}
|
|
23
|
+
interface ISummaryContent extends IDetailsContent {
|
|
24
|
+
classifiersFrameInfo: any;
|
|
25
|
+
}
|
|
16
26
|
export declare enum TrailPathType {
|
|
17
27
|
Geo = 0,
|
|
18
28
|
Feed = 1
|
|
@@ -36,4 +46,22 @@ export declare const getTrailTabs: (polyline: any, trail: any) => {
|
|
|
36
46
|
value: string;
|
|
37
47
|
disabled: boolean;
|
|
38
48
|
}[];
|
|
49
|
+
export declare const getDetailsContent: ({ topOne, getLabels, selectedTableItemId, timezone, isLoading }: IDetailsContent) => {
|
|
50
|
+
value: string;
|
|
51
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
52
|
+
}[];
|
|
53
|
+
export declare const getDetailsTabs: () => {
|
|
54
|
+
label: string;
|
|
55
|
+
value: string;
|
|
56
|
+
disabled: boolean;
|
|
57
|
+
}[];
|
|
58
|
+
export declare const getSummaryContent: ({ classifiersFrameInfo, getLabels, selectedTableItemId, timezone, isLoading }: ISummaryContent) => {
|
|
59
|
+
value: string;
|
|
60
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
}[];
|
|
62
|
+
export declare const getSummaryTabs: () => {
|
|
63
|
+
label: string;
|
|
64
|
+
value: string;
|
|
65
|
+
disabled: boolean;
|
|
66
|
+
}[];
|
|
39
67
|
export {};
|
|
@@ -1,10 +1,32 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
2
|
+
interface IVerticalTableColumnDefs {
|
|
3
|
+
timezone?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const verticalTableColumnDefs: ({ timezone }: IVerticalTableColumnDefs) => {
|
|
6
|
+
topOneColumnDefs: ({
|
|
7
|
+
headerName: string;
|
|
8
|
+
field: string;
|
|
9
|
+
renderCell?: undefined;
|
|
10
|
+
} | {
|
|
11
|
+
headerName: string;
|
|
12
|
+
field: string;
|
|
13
|
+
renderCell: (value: number) => string;
|
|
14
|
+
})[];
|
|
15
|
+
summaryColumnDefs: ({
|
|
16
|
+
headerName: string;
|
|
17
|
+
field: string;
|
|
18
|
+
renderCell: (value: number) => string;
|
|
19
|
+
flex?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
headerName: string;
|
|
22
|
+
field: string;
|
|
23
|
+
renderCell?: undefined;
|
|
24
|
+
flex?: undefined;
|
|
25
|
+
} | {
|
|
26
|
+
field: string;
|
|
27
|
+
headerName: string;
|
|
28
|
+
flex: number;
|
|
29
|
+
renderCell: (params: any) => string;
|
|
30
|
+
})[];
|
|
31
|
+
};
|
|
32
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.74",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"generate-poc": "openapi --input https://dev.gateway.dev.portsight.ai/api/poc/api-yaml --output ./src/api/poc"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@conboai/storybook.components": "^0.3.
|
|
34
|
+
"@conboai/storybook.components": "^0.3.70",
|
|
35
35
|
"@emotion/react": "^11.11.4",
|
|
36
36
|
"@emotion/styled": "^11.11.5",
|
|
37
37
|
"@mui/material": "^5.15.17",
|