@conboai/app.db.query 0.9.45 → 0.9.47
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 +6082 -6024
- package/dist/apps/CargoTrails/CargoTrails.d.ts +2 -1
- package/dist/apps/CargoTrails/components/AppHeader/AppHeader.d.ts +2 -1
- package/dist/apps/ConboKeySearch/ConboKeySearch.d.ts +4 -1
- package/dist/apps/ConboKeySearch/components/ConboKeySearchHeader/ConboKeySearchHeader.d.ts +4 -1
- package/dist/apps/EntitySearch/EntitySearch.d.ts +3 -0
- package/dist/apps/EntitySearch/components/EntitySearchHeader/EntitySearchHeader.d.ts +4 -1
- package/dist/apps/FeedStreams/FeedStreams.d.ts +1 -0
- package/dist/apps/FeedStreams/components/Header/Header.d.ts +4 -1
- package/dist/apps/FeedStreams/components/MainLayout/MainLayout.d.ts +3 -1
- package/dist/apps/HeatMap/HeatMap.d.ts +4 -1
- package/dist/apps/HeatMap/components/AppHeader/AppHeader.d.ts +4 -1
- package/dist/apps/ImageAnalysis/ImageAnalysis.d.ts +3 -1
- package/dist/apps/ImageAnalysis/components/ImageAnalysisHeader/ImageAnalysisHeader.d.ts +4 -1
- package/dist/apps/SearchTool/SearchTool.d.ts +4 -1
- package/dist/apps/SearchTool/components/AppHeader/AppHeader.d.ts +4 -1
- package/dist/apps/conbo-match/components/conbo-match-header/conbo-match-header.d.ts +2 -1
- package/dist/apps/conbo-match/components/conbo-match-root/conbo-match-root.d.ts +2 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ type PalletsProps = {
|
|
|
2
2
|
siteId: string;
|
|
3
3
|
baseUrl?: string;
|
|
4
4
|
onHomeClick?: () => void;
|
|
5
|
+
UserComponent?: () => JSX.Element;
|
|
5
6
|
};
|
|
6
|
-
declare const CargoTrails: ({ siteId, onHomeClick, baseUrl }: PalletsProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare const CargoTrails: ({ siteId, onHomeClick, baseUrl, UserComponent }: PalletsProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default CargoTrails;
|
|
@@ -2,6 +2,7 @@ type AppHeaderProps = {
|
|
|
2
2
|
title?: string;
|
|
3
3
|
onHomeClick?: () => void;
|
|
4
4
|
isLoading?: boolean;
|
|
5
|
+
UserComponent?: () => JSX.Element;
|
|
5
6
|
};
|
|
6
|
-
declare const AppHeader: ({ title, onHomeClick, isLoading }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare const AppHeader: ({ title, onHomeClick, isLoading, UserComponent }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export default AppHeader;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type InputProps = {
|
|
2
4
|
siteId: string;
|
|
3
5
|
baseUrl?: string;
|
|
4
6
|
onHomeClick?: () => void;
|
|
7
|
+
UserComponent?: FC;
|
|
5
8
|
};
|
|
6
|
-
export declare const ConboKeySearch: ({ siteId, onHomeClick, baseUrl }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const ConboKeySearch: ({ siteId, onHomeClick, baseUrl, UserComponent }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
export default ConboKeySearch;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type InputType = {
|
|
2
4
|
title?: string;
|
|
3
5
|
showSiteName?: boolean;
|
|
4
6
|
titleWidth?: string;
|
|
5
7
|
onHomeClick?: () => void;
|
|
6
8
|
isLoading?: boolean;
|
|
9
|
+
UserComponent?: FC;
|
|
7
10
|
};
|
|
8
|
-
export declare const ConboKeySearchHeader: ({ showSiteName, title, onHomeClick, titleWidth, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const ConboKeySearchHeader: ({ showSiteName, title, onHomeClick, titleWidth, isLoading, UserComponent }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
9
12
|
export {};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type InputProps = {
|
|
2
4
|
siteId: string;
|
|
3
5
|
baseUrl?: string;
|
|
4
6
|
isAdmin?: boolean;
|
|
5
7
|
onHomeClick?: () => void;
|
|
8
|
+
UserComponent?: FC;
|
|
6
9
|
};
|
|
7
10
|
export declare const EntitySearch: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export default EntitySearch;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type InputType = {
|
|
2
4
|
title?: string;
|
|
3
5
|
showSiteName?: boolean;
|
|
4
6
|
onHomeClick?: () => void;
|
|
5
7
|
isLoading?: boolean;
|
|
8
|
+
UserComponent?: FC;
|
|
6
9
|
};
|
|
7
|
-
export declare const EntitySearchHeader: ({ showSiteName, title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const EntitySearchHeader: ({ showSiteName, title, onHomeClick, isLoading, UserComponent }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export {};
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type HeaderProps = {
|
|
2
4
|
imageSrc?: string;
|
|
3
5
|
deploymentName?: string;
|
|
4
6
|
onHomeClick?: () => void;
|
|
5
7
|
onToggleLeftPanel?: (value: boolean) => void;
|
|
6
8
|
leftPanelStatusValue: boolean;
|
|
9
|
+
UserComponent?: FC;
|
|
7
10
|
};
|
|
8
|
-
declare const Header: ({ imageSrc, deploymentName, onHomeClick, onToggleLeftPanel, leftPanelStatusValue }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare const Header: ({ imageSrc, deploymentName, onHomeClick, onToggleLeftPanel, leftPanelStatusValue, UserComponent }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
12
|
export default Header;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
1
2
|
|
|
2
3
|
type MainLayoutProps = {
|
|
3
4
|
deploymentId: string;
|
|
4
5
|
baseUrl?: string;
|
|
5
6
|
onHomeClick?: () => void;
|
|
7
|
+
UserComponent?: FC;
|
|
6
8
|
};
|
|
7
|
-
declare const MainLayout: ({ deploymentId, baseUrl, onHomeClick }: MainLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const MainLayout: ({ deploymentId, baseUrl, onHomeClick, UserComponent }: MainLayoutProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
10
|
export default MainLayout;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type HeatMapProps = {
|
|
2
4
|
siteId: string;
|
|
3
5
|
baseUrl?: string;
|
|
4
6
|
onHomeClick?: () => void;
|
|
5
7
|
isAdmin?: boolean;
|
|
8
|
+
UserComponent?: FC;
|
|
6
9
|
};
|
|
7
|
-
declare const HeatMap: ({ siteId, onHomeClick, baseUrl, isAdmin }: HeatMapProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare const HeatMap: ({ siteId, onHomeClick, baseUrl, isAdmin, UserComponent }: HeatMapProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export default HeatMap;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type AppHeaderProps = {
|
|
2
4
|
title?: string;
|
|
3
5
|
onHomeClick?: () => void;
|
|
4
6
|
isLoading?: boolean;
|
|
7
|
+
UserComponent?: FC;
|
|
5
8
|
};
|
|
6
|
-
declare const AppHeader: ({ title, onHomeClick, isLoading }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const AppHeader: ({ title, onHomeClick, isLoading, UserComponent }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
export default AppHeader;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
1
2
|
import { Link } from '../../shared/RightLayout/RightLayout';
|
|
2
3
|
|
|
3
4
|
type InputProps = {
|
|
@@ -6,6 +7,7 @@ type InputProps = {
|
|
|
6
7
|
isAdmin?: boolean;
|
|
7
8
|
onHomeClick?: () => void;
|
|
8
9
|
links?: Link[];
|
|
10
|
+
UserComponent?: FC;
|
|
9
11
|
};
|
|
10
|
-
export declare const ImageAnalysis: ({ siteId, onHomeClick, baseUrl, isAdmin, links }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const ImageAnalysis: ({ siteId, onHomeClick, baseUrl, isAdmin, links, UserComponent }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
13
|
export default ImageAnalysis;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type InputType = {
|
|
2
4
|
title?: string;
|
|
3
5
|
onHomeClick?: () => void;
|
|
4
6
|
isLoading?: boolean;
|
|
7
|
+
UserComponent?: FC;
|
|
5
8
|
};
|
|
6
|
-
export declare const ImageAnalysisHeader: ({ title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const ImageAnalysisHeader: ({ title, onHomeClick, isLoading, UserComponent }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
export {};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type SearchToolProps = {
|
|
2
4
|
siteId: string;
|
|
3
5
|
baseUrl?: string;
|
|
4
6
|
isAdmin?: boolean;
|
|
5
7
|
onHomeClick?: () => void;
|
|
8
|
+
UserComponent?: FC;
|
|
6
9
|
};
|
|
7
|
-
export declare const SearchTool: ({ siteId, onHomeClick, baseUrl, isAdmin }: SearchToolProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const SearchTool: ({ siteId, onHomeClick, baseUrl, isAdmin, UserComponent }: SearchToolProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export default SearchTool;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
|
|
1
3
|
type AppHeaderProps = {
|
|
2
4
|
title?: string;
|
|
3
5
|
onHomeClick?: () => void;
|
|
4
6
|
isLoading?: boolean;
|
|
7
|
+
UserComponent?: FC;
|
|
5
8
|
};
|
|
6
|
-
export declare const AppHeader: ({ title, onHomeClick, isLoading }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const AppHeader: ({ title, onHomeClick, isLoading, UserComponent }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
export {};
|
|
@@ -2,6 +2,7 @@ type InputType = {
|
|
|
2
2
|
title?: string;
|
|
3
3
|
onHomeClick?: () => void;
|
|
4
4
|
isLoading?: boolean;
|
|
5
|
+
UserComponent?: () => JSX.Element;
|
|
5
6
|
};
|
|
6
|
-
export declare const ConboMatchHeader: ({ title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const ConboMatchHeader: ({ title, onHomeClick, isLoading, UserComponent }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -2,6 +2,7 @@ type InputProps = {
|
|
|
2
2
|
siteId: string;
|
|
3
3
|
baseUrl?: string;
|
|
4
4
|
onHomeClick?: () => void;
|
|
5
|
+
UserComponent?: () => JSX.Element;
|
|
5
6
|
};
|
|
6
|
-
export declare const ConboMatchRoot: ({ siteId, onHomeClick, baseUrl }: InputProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
7
|
+
export declare const ConboMatchRoot: ({ siteId, onHomeClick, baseUrl, UserComponent }: InputProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
7
8
|
export {};
|