@conboai/app.db.query 0.3.62 → 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.
@@ -0,0 +1,4 @@
1
+ import { IApp } from '../../interfaces/App';
2
+
3
+ declare function ImageAnalysis({ siteId, UserProfile, onHomeClick, baseUrl }: IApp): import("react/jsx-runtime").JSX.Element;
4
+ export default ImageAnalysis;
@@ -0,0 +1,5 @@
1
+ interface IAppContent {
2
+ baseUrl?: string;
3
+ }
4
+ declare function AppContent({ baseUrl }: IAppContent): import("react/jsx-runtime").JSX.Element;
5
+ export default AppContent;
@@ -0,0 +1,3 @@
1
+ import { GridColDef } from '@mui/x-data-grid';
2
+
3
+ export declare const columnDefs: (timezone: string, handleSelectAllClick?: any, isAllSelected?: boolean) => GridColDef[];
@@ -0,0 +1 @@
1
+ export { default as AppContent } from './AppContent.tsx';
@@ -0,0 +1,3 @@
1
+ import { SxProps } from '@mui/material';
2
+
3
+ export declare const checkBoxSx: SxProps;
@@ -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,6 @@
1
+ interface IAppLeftBar {
2
+ setPanelShown: (value: boolean) => void;
3
+ isPanelShown: boolean;
4
+ }
5
+ declare function AppLeftBar({ setPanelShown, isPanelShown }: IAppLeftBar): import("react/jsx-runtime").JSX.Element;
6
+ export default AppLeftBar;
@@ -0,0 +1 @@
1
+ export { default as AppLeftBar } from './AppLeftBar.tsx';
@@ -0,0 +1,5 @@
1
+ import { SxProps } from '@mui/material';
2
+
3
+ export declare const buttonContainerSx: SxProps;
4
+ export declare const buttonBurgerIconSx: SxProps;
5
+ export declare const durationGridSx: SxProps;
@@ -0,0 +1,4 @@
1
+ declare function AppRightBar({ baseUrl }: {
2
+ baseUrl: string | undefined;
3
+ }): import("react/jsx-runtime").JSX.Element;
4
+ export default AppRightBar;
@@ -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,12 @@
1
+ export declare const emptyDataView: {
2
+ cargo: string;
3
+ conbo_key: string;
4
+ end: string;
5
+ event_id: string;
6
+ feed: string;
7
+ move: string;
8
+ start: string;
9
+ straddle_id: string;
10
+ zones: string;
11
+ id: string;
12
+ };
@@ -0,0 +1 @@
1
+ export { default as AppRightBar } from './AppRightBar';
@@ -0,0 +1,3 @@
1
+ import { SxProps } from '@mui/material';
2
+
3
+ export declare const loaderBoxSx: SxProps;
@@ -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';
@@ -0,0 +1,3 @@
1
+ import { SxProps } from '@mui/material';
2
+
3
+ export declare const boxSx: SxProps;