@conboai/app.db.query 0.3.61 → 0.3.63
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 +23570 -23456
- package/dist/apps/ImageAnalysis/ImageAnalysis.d.ts +4 -0
- package/dist/apps/ImageAnalysis/components/AppContent/AppContent.d.ts +5 -0
- package/dist/apps/ImageAnalysis/components/AppContent/columnDefs.d.ts +3 -0
- package/dist/apps/ImageAnalysis/components/AppContent/index.d.ts +1 -0
- package/dist/apps/ImageAnalysis/components/AppContent/styles.d.ts +3 -0
- package/dist/apps/ImageAnalysis/components/AppContent/utils.d.ts +14 -0
- package/dist/apps/ImageAnalysis/components/AppLeftBar/AppLeftBar.d.ts +6 -0
- package/dist/apps/ImageAnalysis/components/AppLeftBar/index.d.ts +1 -0
- package/dist/apps/ImageAnalysis/components/AppLeftBar/styles.d.ts +5 -0
- package/dist/apps/ImageAnalysis/components/AppRightBar/AppRightBar.d.ts +4 -0
- package/dist/apps/ImageAnalysis/components/AppRightBar/columnsDefs.d.ts +10 -0
- package/dist/apps/ImageAnalysis/components/AppRightBar/constants.d.ts +12 -0
- package/dist/apps/ImageAnalysis/components/AppRightBar/index.d.ts +1 -0
- package/dist/apps/ImageAnalysis/components/AppRightBar/styles.d.ts +3 -0
- package/dist/apps/ImageAnalysis/components/AppRightBar/utils.d.ts +39 -0
- package/dist/apps/ImageAnalysis/index.d.ts +1 -0
- package/dist/apps/ImageAnalysis/styles.d.ts +3 -0
- package/dist/images/ImageAnalysis.svg +19 -0
- package/package.json +5 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AppContent } from './AppContent.tsx';
|
|
@@ -0,0 +1,14 @@
|
|
|
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 {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AppLeftBar } from './AppLeftBar.tsx';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
export declare const verticalTableColumnDefs: (timezone: string, feeds: any[], verticalData: any) => ({
|
|
3
|
+
headerName: string;
|
|
4
|
+
field: string;
|
|
5
|
+
renderCell?: undefined;
|
|
6
|
+
} | {
|
|
7
|
+
headerName: string;
|
|
8
|
+
field: string;
|
|
9
|
+
renderCell: (value: string) => any;
|
|
10
|
+
})[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AppRightBar } from './AppRightBar';
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
export declare enum TrailPathType {
|
|
17
|
+
Geo = 0,
|
|
18
|
+
Feed = 1
|
|
19
|
+
}
|
|
20
|
+
export declare const getImageContent: ({ feedImages, objectImages, isFirstPage, setIsFirstPage, isLoading }: IImageContent) => {
|
|
21
|
+
value: string;
|
|
22
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
}[];
|
|
24
|
+
export declare const getImageTabs: (feed: string[], object: string[]) => {
|
|
25
|
+
label: string;
|
|
26
|
+
value: string;
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
}[];
|
|
29
|
+
export declare const generateImages: (images: any[], baseUrl?: string) => string[];
|
|
30
|
+
export declare const getTrailContent: ({ polylineProps, trailProps, isLoading }: ITrailContent) => {
|
|
31
|
+
value: string;
|
|
32
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
}[];
|
|
34
|
+
export declare const getTrailTabs: (polyline: any, trail: any) => {
|
|
35
|
+
label: string;
|
|
36
|
+
value: string;
|
|
37
|
+
disabled: boolean;
|
|
38
|
+
}[];
|
|
39
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ImageAnalysis } from './ImageAnalysis.tsx';
|