@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.
Files changed (21) hide show
  1. package/dist/app.db.query.js +31954 -31615
  2. package/dist/apps/ConboKeySearch/components/AppLeftBar/AppLeftBar.d.ts +3 -1
  3. package/dist/apps/ConboKeySearch/components/ConboKeySearchHeader/ConboKeySearchHeader.d.ts +2 -1
  4. package/dist/apps/EntitySearch/components/AppContent/AppContent.d.ts +4 -1
  5. package/dist/apps/EntitySearch/components/AppContentWrapper.d.ts +3 -1
  6. package/dist/apps/EntitySearch/components/AppLeftBar/AppLeftBar.d.ts +2 -1
  7. package/dist/apps/EntitySearch/components/EntitySearchHeader/EntitySearchHeader.d.ts +2 -1
  8. package/dist/apps/HeatMap/components/AppContent/FramesContent.d.ts +5 -1
  9. package/dist/apps/HeatMap/components/AppHeader/AppHeader.d.ts +2 -1
  10. package/dist/apps/HeatMap/components/AppLeftBar/AppLeftBar.d.ts +4 -1
  11. package/dist/apps/HeatMap/components/FeedSnapshot/FeedSnapshot.d.ts +5 -1
  12. package/dist/apps/HeatMap/components/GeoContainer/GeoContainer.d.ts +5 -1
  13. package/dist/apps/HeatMap/hooks/useFetchDataEffect.d.ts +1 -1
  14. package/dist/apps/ImageAnalysis/components/AppLeftBar/AppLeftBar.d.ts +2 -1
  15. package/dist/apps/ImageAnalysis/components/ImageAnalysisHeader/ImageAnalysisHeader.d.ts +2 -1
  16. package/dist/apps/SearchTool/components/AppContent/AppContent.d.ts +4 -1
  17. package/dist/apps/SearchTool/components/AppHeader/AppHeader.d.ts +2 -1
  18. package/dist/apps/SearchTool/components/AppLeftBar/AppLeftBar.d.ts +2 -1
  19. package/dist/apps/SearchTool/hooks/useKitsEffect.d.ts +2 -1
  20. package/dist/apps/SearchTool/hooks/useSearch.d.ts +1 -1
  21. package/package.json +1 -1
@@ -1,2 +1,4 @@
1
- declare function AppLeftBar(): import("react/jsx-runtime").JSX.Element;
1
+ declare function AppLeftBar({ baseUrl }: {
2
+ baseUrl?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
2
4
  export default AppLeftBar;
@@ -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: (props: InputType) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const ConboKeySearchHeader: ({ showSiteName, title, onHomeClick, titleWidth, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
8
9
  export {};
@@ -1,2 +1,5 @@
1
- declare function AppContent(): import("react/jsx-runtime").JSX.Element;
1
+ type AppContentProps = {
2
+ baseUrl?: string;
3
+ };
4
+ declare function AppContent({ baseUrl }: AppContentProps): import("react/jsx-runtime").JSX.Element;
2
5
  export default AppContent;
@@ -1,2 +1,4 @@
1
- declare const AppContentWrapper: () => import("react/jsx-runtime").JSX.Element;
1
+ declare const AppContentWrapper: ({ baseUrl }: {
2
+ baseUrl?: string;
3
+ }) => import("react/jsx-runtime").JSX.Element;
2
4
  export default AppContentWrapper;
@@ -1,4 +1,5 @@
1
- declare function AppLeftBar({ isAdmin }: {
1
+ declare function AppLeftBar({ isAdmin, baseUrl }: {
2
2
  isAdmin?: boolean;
3
+ baseUrl?: string;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export default AppLeftBar;
@@ -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: (props: InputType) => import("react/jsx-runtime").JSX.Element;
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;
@@ -1,2 +1,5 @@
1
- declare const AppLeftBar: () => import("react/jsx-runtime").JSX.Element;
1
+ type AppLeftBarProps = {
2
+ baseUrl?: string;
3
+ };
4
+ declare const AppLeftBar: ({ baseUrl }: AppLeftBarProps) => import("react/jsx-runtime").JSX.Element;
2
5
  export default AppLeftBar;
@@ -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,4 +1,5 @@
1
- declare function AppLeftBar({ isAdmin }: {
1
+ declare function AppLeftBar({ isAdmin, baseUrl }: {
2
2
  isAdmin?: boolean;
3
+ baseUrl?: string;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export default AppLeftBar;
@@ -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: (props: InputType) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const ImageAnalysisHeader: ({ title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
6
7
  export {};
@@ -1,2 +1,5 @@
1
- declare const AppContent: () => import("react/jsx-runtime").JSX.Element;
1
+ type AppContentProps = {
2
+ baseUrl?: string;
3
+ };
4
+ declare const AppContent: ({ baseUrl }: AppContentProps) => import("react/jsx-runtime").JSX.Element;
2
5
  export default AppContent;
@@ -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,4 +1,5 @@
1
- declare function AppLeftBar({ isAdmin }: {
1
+ declare function AppLeftBar({ isAdmin, baseUrl }: {
2
2
  isAdmin?: boolean;
3
+ baseUrl?: string;
3
4
  }): import("react/jsx-runtime").JSX.Element;
4
5
  export default AppLeftBar;
@@ -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;
@@ -1,4 +1,4 @@
1
- declare const useSearch: () => {
1
+ declare const useSearch: (baseUrl?: string) => {
2
2
  handleSearch: (details?: {
3
3
  skip: number;
4
4
  take: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.8.73",
3
+ "version": "0.8.75",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",