@conboai/app.db.query 0.8.79 → 0.8.81
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 +27514 -27470
- package/dist/apps/HeatMap/components/AppContent/AppContent.d.ts +2 -1
- package/dist/apps/HeatMap/hooks/useFetchDataEffect.d.ts +1 -1
- package/dist/apps/HeatMap/hooks/useFovAndTrailInfo.d.ts +2 -2
- package/dist/apps/SearchTool/components/AppLeftBar/ActionsPanel.d.ts +1 -1
- package/dist/apps/SearchTool/components/ImageGrid/ImageGrid.d.ts +2 -1
- package/dist/apps/SearchTool/components/ImageGrid/ImageItem.d.ts +3 -2
- package/dist/apps/SearchTool/hooks/useActions.d.ts +0 -1
- package/dist/apps/SearchTool/hooks/useTimezoneEffect.d.ts +4 -2
- package/dist/apps/SearchTool/utils.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
type AppContentProps = {
|
|
2
2
|
baseUrl?: string;
|
|
3
|
+
deploymentId?: string;
|
|
3
4
|
};
|
|
4
|
-
declare const AppContent: ({ baseUrl }: AppContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const AppContent: ({ baseUrl, deploymentId }: AppContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export default AppContent;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useFetchDataEffect: (baseUrl?: string) => void;
|
|
1
|
+
declare const useFetchDataEffect: (baseUrl?: string, deploymentId?: string) => void;
|
|
2
2
|
export default useFetchDataEffect;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ActionPanelProps } from './types';
|
|
2
2
|
|
|
3
|
-
declare const ActionsPanel: ({ handleSearchClick, isAutoSearchDisabled, tooltipTile, isSearchButtonDisabled, isLeftPanelShown, isTimezoneTheSame, newSiteInfo, duration, feedsOptions, feed, displayFeedsOptions, displayFeed,
|
|
3
|
+
declare const ActionsPanel: ({ handleSearchClick, isAutoSearchDisabled, tooltipTile, isSearchButtonDisabled, isLeftPanelShown, isTimezoneTheSame, newSiteInfo, duration, feedsOptions, feed, displayFeedsOptions, displayFeed, content, tabs, infoKitsIds, isAdmin, debouncedSearch, handelTabIndex }: ActionPanelProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default ActionsPanel;
|
|
@@ -12,6 +12,7 @@ type ImageGridProps = {
|
|
|
12
12
|
selectedItem?: number | string;
|
|
13
13
|
loading?: boolean;
|
|
14
14
|
loadMoreLoading?: boolean;
|
|
15
|
+
timezone?: string;
|
|
15
16
|
};
|
|
16
|
-
declare const _default: import('react').MemoExoticComponent<({ data, onModalOpen, onClick, onLoadMore, showLoadMore, selectedItem, loading, loadMoreLoading }: ImageGridProps) => import("react/jsx-runtime").JSX.Element>;
|
|
17
|
+
declare const _default: import('react').MemoExoticComponent<({ data, onModalOpen, onClick, onLoadMore, showLoadMore, selectedItem, loading, loadMoreLoading, timezone }: ImageGridProps) => import("react/jsx-runtime").JSX.Element>;
|
|
17
18
|
export default _default;
|
|
@@ -13,6 +13,7 @@ type ImageItemProps = {
|
|
|
13
13
|
id: string;
|
|
14
14
|
isActive?: boolean;
|
|
15
15
|
assignedFeedId?: number;
|
|
16
|
+
timezone?: string;
|
|
16
17
|
};
|
|
17
|
-
declare const
|
|
18
|
-
export default
|
|
18
|
+
declare const _default: import('react').MemoExoticComponent<({ onClick, onModalOpen, imgUrl, startTime, endTime, duration, id, isActive, assignedFeedId, timezone }: ImageItemProps) => import("react/jsx-runtime").JSX.Element>;
|
|
19
|
+
export default _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ChangeEvent } from 'react';
|
|
2
2
|
|
|
3
3
|
declare const useActions: (debouncedSearch?: () => void) => {
|
|
4
|
-
isSiteTimezone: boolean;
|
|
5
4
|
handleToggleChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
6
5
|
isAutoSearchActive: boolean;
|
|
7
6
|
handelAutoSearchChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
import { ChangeEvent } from 'react';
|
|
2
|
+
|
|
1
3
|
type Props = {
|
|
2
|
-
isSiteTimezone: boolean;
|
|
3
4
|
localStartTime: Date;
|
|
4
5
|
localEndTime: Date;
|
|
5
6
|
};
|
|
6
7
|
type Output = {
|
|
7
8
|
timezone: string;
|
|
9
|
+
handleToggleChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
8
10
|
};
|
|
9
|
-
declare const useTimezoneEffect: ({
|
|
11
|
+
declare const useTimezoneEffect: ({ localStartTime, localEndTime }: Props) => Output;
|
|
10
12
|
export default useTimezoneEffect;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.81",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"format": "prettier --write \"src/**/*.{ts,tsx,json}\" --color"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@conboai/storybook.components": "^0.5.
|
|
41
|
+
"@conboai/storybook.components": "^0.5.56",
|
|
42
42
|
"@emotion/react": "^11.11.4",
|
|
43
43
|
"@emotion/styled": "^11.11.5",
|
|
44
44
|
"@hookform/resolvers": "^3.9.1",
|