@conboai/app.db.query 0.3.74 → 0.3.76
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/app.db.query.js +26878 -26364
- package/dist/apps/Cargo/components/AppRightBar/utils.d.ts +0 -28
- package/dist/apps/ImageAnalysis/components/AppRightBar/columnsDefs.d.ts +9 -11
- package/dist/apps/ImageAnalysis/components/AppRightBar/styles.d.ts +1 -1
- package/dist/apps/ImageAnalysis/components/AppRightBar/utils.d.ts +17 -0
- package/package.json +3 -2
|
@@ -13,16 +13,6 @@ 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
|
-
}
|
|
26
16
|
export declare enum TrailPathType {
|
|
27
17
|
Geo = 0,
|
|
28
18
|
Feed = 1
|
|
@@ -46,22 +36,4 @@ export declare const getTrailTabs: (polyline: any, trail: any) => {
|
|
|
46
36
|
value: string;
|
|
47
37
|
disabled: boolean;
|
|
48
38
|
}[];
|
|
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
|
-
}[];
|
|
67
39
|
export {};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
timezone?: string;
|
|
4
|
-
}
|
|
5
|
-
export declare const verticalTableColumnDefs: ({ timezone }: IVerticalTableColumnDefs) => {
|
|
2
|
+
export declare const verticalTableColumnDefs: () => {
|
|
6
3
|
topOneColumnDefs: ({
|
|
7
4
|
headerName: string;
|
|
8
5
|
field: string;
|
|
@@ -12,21 +9,22 @@ export declare const verticalTableColumnDefs: ({ timezone }: IVerticalTableColum
|
|
|
12
9
|
field: string;
|
|
13
10
|
renderCell: (value: number) => string;
|
|
14
11
|
})[];
|
|
15
|
-
|
|
12
|
+
frameInfoColumnDefs: ({
|
|
16
13
|
headerName: string;
|
|
17
14
|
field: string;
|
|
18
15
|
renderCell: (value: number) => string;
|
|
19
|
-
flex?: undefined;
|
|
20
16
|
} | {
|
|
21
17
|
headerName: string;
|
|
22
18
|
field: string;
|
|
23
19
|
renderCell?: undefined;
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
})[];
|
|
21
|
+
summaryColumnDefs: ({
|
|
22
|
+
headerName: string;
|
|
26
23
|
field: string;
|
|
24
|
+
renderCell: (value: number) => string;
|
|
25
|
+
} | {
|
|
27
26
|
headerName: string;
|
|
28
|
-
|
|
29
|
-
renderCell
|
|
27
|
+
field: string;
|
|
28
|
+
renderCell?: undefined;
|
|
30
29
|
})[];
|
|
31
30
|
};
|
|
32
|
-
export {};
|
|
@@ -13,6 +13,14 @@ interface ITrailContent {
|
|
|
13
13
|
};
|
|
14
14
|
isLoading: boolean;
|
|
15
15
|
}
|
|
16
|
+
interface IDetailsContent {
|
|
17
|
+
getLabels: any;
|
|
18
|
+
selectedTableItemId: number;
|
|
19
|
+
topOne?: any[];
|
|
20
|
+
classifiersFrameInfo?: any;
|
|
21
|
+
classifierSummary: any;
|
|
22
|
+
isLoading?: boolean;
|
|
23
|
+
}
|
|
16
24
|
export declare enum TrailPathType {
|
|
17
25
|
Geo = 0,
|
|
18
26
|
Feed = 1
|
|
@@ -36,4 +44,13 @@ export declare const getTrailTabs: (polyline: any, trail: any) => {
|
|
|
36
44
|
value: string;
|
|
37
45
|
disabled: boolean;
|
|
38
46
|
}[];
|
|
47
|
+
export declare const getDetailsContent: ({ topOne, getLabels, selectedTableItemId, isLoading, classifiersFrameInfo, classifierSummary }: IDetailsContent) => {
|
|
48
|
+
value: string;
|
|
49
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
50
|
+
}[];
|
|
51
|
+
export declare const getDetailsTabs: () => {
|
|
52
|
+
label: string;
|
|
53
|
+
value: string;
|
|
54
|
+
disabled: boolean;
|
|
55
|
+
}[];
|
|
39
56
|
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.76",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -25,13 +25,14 @@
|
|
|
25
25
|
"generate-cargo": "openapi --input https://dev.test.portsight.ai/api/action/docs-yaml --output ./src/api/cargo",
|
|
26
26
|
"generate-snapshots": "openapi --input https://dev.test.portsight.ai/api/snapshots/docs-yaml --output ./src/api/snapshot",
|
|
27
27
|
"generate-detections-pixels": "openapi --input https://dev.test.portsight.ai/api/detections_pixels/docs-yaml --output ./src/api/detectionPixel",
|
|
28
|
+
"generate-detections-geo": "openapi --input https://dev.test.portsight.ai/api/detections_geo/docs-yaml --output ./src/api/detectionGeo",
|
|
28
29
|
"generate-tag-family-labels": "openapi --input https://dev.gateway.dev.portsight.ai/api/msm/api-yaml --output ./src/api/tagFamilyLabels",
|
|
29
30
|
"generate-top-one": "openapi --input https://dev.test.portsight.ai/api/top1/docs-yaml --output ./src/api/topOne",
|
|
30
31
|
"generate-cropped": "openapi --input https://dev.test.portsight.ai/api/cropped/docs-yaml --output ./src/api/cropped",
|
|
31
32
|
"generate-poc": "openapi --input https://dev.gateway.dev.portsight.ai/api/poc/api-yaml --output ./src/api/poc"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@conboai/storybook.components": "^0.3.
|
|
35
|
+
"@conboai/storybook.components": "^0.3.73",
|
|
35
36
|
"@emotion/react": "^11.11.4",
|
|
36
37
|
"@emotion/styled": "^11.11.5",
|
|
37
38
|
"@mui/material": "^5.15.17",
|