@conboai/app.db.query 0.8.73 → 0.8.75
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 +31954 -31615
- package/dist/apps/ConboKeySearch/components/AppLeftBar/AppLeftBar.d.ts +3 -1
- package/dist/apps/ConboKeySearch/components/ConboKeySearchHeader/ConboKeySearchHeader.d.ts +2 -1
- package/dist/apps/EntitySearch/components/AppContent/AppContent.d.ts +4 -1
- package/dist/apps/EntitySearch/components/AppContentWrapper.d.ts +3 -1
- package/dist/apps/EntitySearch/components/AppLeftBar/AppLeftBar.d.ts +2 -1
- package/dist/apps/EntitySearch/components/EntitySearchHeader/EntitySearchHeader.d.ts +2 -1
- package/dist/apps/HeatMap/components/AppContent/FramesContent.d.ts +5 -1
- package/dist/apps/HeatMap/components/AppHeader/AppHeader.d.ts +2 -1
- package/dist/apps/HeatMap/components/AppLeftBar/AppLeftBar.d.ts +4 -1
- package/dist/apps/HeatMap/components/FeedSnapshot/FeedSnapshot.d.ts +5 -1
- package/dist/apps/HeatMap/components/GeoContainer/GeoContainer.d.ts +5 -1
- package/dist/apps/HeatMap/hooks/useFetchDataEffect.d.ts +1 -1
- package/dist/apps/ImageAnalysis/components/AppLeftBar/AppLeftBar.d.ts +2 -1
- package/dist/apps/ImageAnalysis/components/ImageAnalysisHeader/ImageAnalysisHeader.d.ts +2 -1
- package/dist/apps/SearchTool/components/AppContent/AppContent.d.ts +4 -1
- package/dist/apps/SearchTool/components/AppHeader/AppHeader.d.ts +2 -1
- package/dist/apps/SearchTool/components/AppLeftBar/AppLeftBar.d.ts +2 -1
- package/dist/apps/SearchTool/hooks/useKitsEffect.d.ts +2 -1
- package/dist/apps/SearchTool/hooks/useSearch.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ type InputType = {
|
|
|
3
3
|
showSiteName?: boolean;
|
|
4
4
|
titleWidth?: string;
|
|
5
5
|
onHomeClick?: () => void;
|
|
6
|
+
isLoading?: boolean;
|
|
6
7
|
};
|
|
7
|
-
export declare const ConboKeySearchHeader: (
|
|
8
|
+
export declare const ConboKeySearchHeader: ({ showSiteName, title, onHomeClick, titleWidth, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -2,6 +2,7 @@ type InputType = {
|
|
|
2
2
|
title?: string;
|
|
3
3
|
showSiteName?: boolean;
|
|
4
4
|
onHomeClick?: () => void;
|
|
5
|
+
isLoading?: boolean;
|
|
5
6
|
};
|
|
6
|
-
export declare const EntitySearchHeader: (
|
|
7
|
+
export declare const EntitySearchHeader: ({ showSiteName, title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -2,6 +2,10 @@ type ContentProps = {
|
|
|
2
2
|
onModalOpen?: () => void;
|
|
3
3
|
loading?: boolean;
|
|
4
4
|
imgUrl?: string;
|
|
5
|
+
frameStyles?: {
|
|
6
|
+
width: string;
|
|
7
|
+
height: string;
|
|
8
|
+
};
|
|
5
9
|
};
|
|
6
|
-
declare const FramesContent: ({ onModalOpen, loading, imgUrl }: ContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare const FramesContent: ({ onModalOpen, loading, imgUrl, frameStyles }: ContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
11
|
export default FramesContent;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type AppHeaderProps = {
|
|
2
2
|
title?: string;
|
|
3
3
|
onHomeClick?: () => void;
|
|
4
|
+
isLoading?: boolean;
|
|
4
5
|
};
|
|
5
|
-
declare const AppHeader: ({ title, onHomeClick }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
declare const AppHeader: ({ title, onHomeClick, isLoading }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export default AppHeader;
|
|
@@ -8,6 +8,10 @@ type FeedSnapshotsProps = {
|
|
|
8
8
|
shouldShowNoDataFrame?: boolean;
|
|
9
9
|
shouldShowNoResultsFrame?: boolean;
|
|
10
10
|
selectedShape?: Shape | null;
|
|
11
|
+
frameStyles?: {
|
|
12
|
+
width: string;
|
|
13
|
+
height: string;
|
|
14
|
+
};
|
|
11
15
|
};
|
|
12
|
-
declare const FeedSnapshot: ({ shapes, imgUrl, onModalOpen, loading, shouldShowNoDataFrame, shouldShowNoResultsFrame, selectedShape }: FeedSnapshotsProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare const FeedSnapshot: ({ shapes, imgUrl, onModalOpen, loading, shouldShowNoDataFrame, shouldShowNoResultsFrame, selectedShape, frameStyles }: FeedSnapshotsProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
17
|
export default FeedSnapshot;
|
|
@@ -5,6 +5,10 @@ type GeoContainerProps = {
|
|
|
5
5
|
loading?: boolean;
|
|
6
6
|
shouldShowNoDataFrame?: boolean;
|
|
7
7
|
selectedItemId: string | null;
|
|
8
|
+
frameStyles?: {
|
|
9
|
+
width: string;
|
|
10
|
+
height: string;
|
|
11
|
+
};
|
|
8
12
|
};
|
|
9
|
-
declare const GeoContainer: ({ data, loading, shouldShowNoDataFrame, selectedItemId }: GeoContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare const GeoContainer: ({ data, loading, shouldShowNoDataFrame, selectedItemId, frameStyles }: GeoContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
14
|
export default GeoContainer;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useFetchDataEffect: () => void;
|
|
1
|
+
declare const useFetchDataEffect: (baseUrl?: string) => void;
|
|
2
2
|
export default useFetchDataEffect;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type InputType = {
|
|
2
2
|
title?: string;
|
|
3
3
|
onHomeClick?: () => void;
|
|
4
|
+
isLoading?: boolean;
|
|
4
5
|
};
|
|
5
|
-
export declare const ImageAnalysisHeader: (
|
|
6
|
+
export declare const ImageAnalysisHeader: ({ title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type AppHeaderProps = {
|
|
2
2
|
title?: string;
|
|
3
3
|
onHomeClick?: () => void;
|
|
4
|
+
isLoading?: boolean;
|
|
4
5
|
};
|
|
5
|
-
export declare const AppHeader: ({ title, onHomeClick }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const AppHeader: ({ title, onHomeClick, isLoading }: AppHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type Props = {
|
|
2
2
|
tabIndex: string;
|
|
3
3
|
frameDetailsConboKeys: string[];
|
|
4
|
+
baseUrl?: string;
|
|
4
5
|
};
|
|
5
|
-
declare const useKitsEffect: ({ tabIndex, frameDetailsConboKeys }: Props) => void;
|
|
6
|
+
declare const useKitsEffect: ({ tabIndex, frameDetailsConboKeys, baseUrl }: Props) => void;
|
|
6
7
|
export default useKitsEffect;
|