@conboai/app.db.query 0.8.74 → 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 +33281 -33011
- 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/AppHeader/AppHeader.d.ts +2 -1
- package/dist/apps/HeatMap/components/AppLeftBar/AppLeftBar.d.ts +4 -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 {};
|
|
@@ -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;
|
|
@@ -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;
|