@conboai/app.db.query 0.4.4 → 0.4.12
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 +25115 -26060
- package/dist/apps/ConboKeySearch/components/AppContent/columnDefs.d.ts +1 -1
- package/dist/apps/ConboKeySearch/components/AppContentWrapper.d.ts +4 -0
- package/dist/apps/ImageAnalysis/components/AppContentWrapper.d.ts +4 -0
- package/package.json +1 -1
- package/dist/apps/ImageAnalysis/components/AppContent/AppContent.d.ts +0 -5
- package/dist/apps/ImageAnalysis/components/AppContent/columnDefs.d.ts +0 -3
- package/dist/apps/ImageAnalysis/components/AppContent/index.d.ts +0 -1
- package/dist/apps/ImageAnalysis/components/AppContent/styles.d.ts +0 -3
- package/dist/apps/ImageAnalysis/components/AppContent/utils.d.ts +0 -14
- package/dist/apps/ImageAnalysis/components/AppRightBar/AppRightBar.d.ts +0 -5
- package/dist/apps/ImageAnalysis/components/AppRightBar/columnsDefs.d.ts +0 -26
- package/dist/apps/ImageAnalysis/components/AppRightBar/constants.d.ts +0 -12
- package/dist/apps/ImageAnalysis/components/AppRightBar/index.d.ts +0 -1
- package/dist/apps/ImageAnalysis/components/AppRightBar/styles.d.ts +0 -3
- package/dist/apps/ImageAnalysis/components/AppRightBar/utils.d.ts +0 -57
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { GridColDef } from '@mui/x-data-grid';
|
|
2
2
|
|
|
3
|
-
export declare const columnDefs: (timezone: string, handleCheckBoxChange?: any, shapeInfo?: any, handleSelectAllClick?: any, isAllSelected?: boolean) => GridColDef[];
|
|
3
|
+
export declare const columnDefs: (timezone: string, handleCheckBoxChange?: any, shapeInfo?: any, handleSelectAllClick?: any, isAllSelected?: boolean, getLabel?: (value: number) => void) => GridColDef[];
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as AppContent } from './AppContent.tsx';
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
interface IGetContentProps {
|
|
2
|
-
gridProps: any;
|
|
3
|
-
timelineProps: any;
|
|
4
|
-
}
|
|
5
|
-
export declare const getContent: ({ gridProps, timelineProps }: IGetContentProps) => {
|
|
6
|
-
value: string;
|
|
7
|
-
content: import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
}[];
|
|
9
|
-
export declare const getContentTabs: () => {
|
|
10
|
-
label: string;
|
|
11
|
-
value: string;
|
|
12
|
-
disabled: boolean;
|
|
13
|
-
}[];
|
|
14
|
-
export {};
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const verticalTableColumnDefs: () => {
|
|
3
|
-
topOneColumnDefs: ({
|
|
4
|
-
headerName: string;
|
|
5
|
-
field: string;
|
|
6
|
-
renderCell?: undefined;
|
|
7
|
-
} | {
|
|
8
|
-
headerName: string;
|
|
9
|
-
field: string;
|
|
10
|
-
renderCell: (value: number) => string;
|
|
11
|
-
})[];
|
|
12
|
-
frameInfoColumnDefs: {
|
|
13
|
-
headerName: string;
|
|
14
|
-
field: string;
|
|
15
|
-
renderCell: (value: number) => string;
|
|
16
|
-
}[];
|
|
17
|
-
summaryColumnDefs: ({
|
|
18
|
-
headerName: string;
|
|
19
|
-
field: string;
|
|
20
|
-
renderCell: (value: number) => string;
|
|
21
|
-
} | {
|
|
22
|
-
headerName: string;
|
|
23
|
-
field: string;
|
|
24
|
-
renderCell?: undefined;
|
|
25
|
-
})[];
|
|
26
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as AppRightBar } from './AppRightBar';
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
interface IImageContent {
|
|
2
|
-
feedImages: string[];
|
|
3
|
-
objectImages: string[];
|
|
4
|
-
setIsFirstPage: (value: boolean) => void;
|
|
5
|
-
isFirstPage: boolean;
|
|
6
|
-
isLoading: boolean;
|
|
7
|
-
}
|
|
8
|
-
interface ITrailContent {
|
|
9
|
-
polylineProps: [number, number][];
|
|
10
|
-
trailProps: {
|
|
11
|
-
coordinates: [number, number][];
|
|
12
|
-
url: string;
|
|
13
|
-
};
|
|
14
|
-
isLoading: boolean;
|
|
15
|
-
}
|
|
16
|
-
interface IDetailsContent {
|
|
17
|
-
getTabValueLabelsAndSubLabels: any;
|
|
18
|
-
selectedTableItemId: number;
|
|
19
|
-
topOne?: any[];
|
|
20
|
-
classifiersFrameInfo?: any;
|
|
21
|
-
classifierSummary: any;
|
|
22
|
-
isLoading?: boolean;
|
|
23
|
-
delay?: number;
|
|
24
|
-
}
|
|
25
|
-
export declare enum TrailPathType {
|
|
26
|
-
Geo = 0,
|
|
27
|
-
Feed = 1
|
|
28
|
-
}
|
|
29
|
-
export declare const getImageContent: ({ feedImages, objectImages, isFirstPage, setIsFirstPage, isLoading }: IImageContent) => {
|
|
30
|
-
value: string;
|
|
31
|
-
content: import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
}[];
|
|
33
|
-
export declare const getImageTabs: (feed: string[], object: string[]) => {
|
|
34
|
-
label: string;
|
|
35
|
-
value: string;
|
|
36
|
-
disabled: boolean;
|
|
37
|
-
}[];
|
|
38
|
-
export declare const generateImages: (images: any[], baseUrl?: string) => string[];
|
|
39
|
-
export declare const getTrailContent: ({ polylineProps, trailProps, isLoading }: ITrailContent) => {
|
|
40
|
-
value: string;
|
|
41
|
-
content: import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
}[];
|
|
43
|
-
export declare const getTrailTabs: (polyline: any, trail: any) => {
|
|
44
|
-
label: string;
|
|
45
|
-
value: string;
|
|
46
|
-
disabled: boolean;
|
|
47
|
-
}[];
|
|
48
|
-
export declare const getDetailsContent: ({ topOne, getTabValueLabelsAndSubLabels, selectedTableItemId, isLoading, classifiersFrameInfo, classifierSummary }: IDetailsContent) => {
|
|
49
|
-
value: string;
|
|
50
|
-
content: import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
}[];
|
|
52
|
-
export declare const getDetailsTabs: () => {
|
|
53
|
-
label: string;
|
|
54
|
-
value: string;
|
|
55
|
-
disabled: boolean;
|
|
56
|
-
}[];
|
|
57
|
-
export {};
|