@conboai/app.db.query 0.8.43 → 0.8.44
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 +11175 -11126
- package/dist/apps/FeedStreams/components/ImageGrid/CardMediaItem.d.ts +12 -0
- package/dist/apps/FeedStreams/components/ImageGrid/ErrorBox.d.ts +2 -0
- package/dist/apps/FeedStreams/components/ImageGrid/ImageGrid.d.ts +1 -2
- package/dist/apps/FeedStreams/components/ImageGrid/ImageItem.d.ts +3 -1
- package/dist/apps/FeedStreams/components/ImageGrid/styles.d.ts +2 -0
- package/dist/apps/FeedStreams/utils.d.ts +4 -2
- package/dist/apps/HeatMap/utils.d.ts +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Shape } from '@conboai/storybook.components';
|
|
2
|
+
|
|
3
|
+
type CardMediaItemProps = {
|
|
4
|
+
showFov?: boolean;
|
|
5
|
+
fov: Shape[];
|
|
6
|
+
imageUrl?: string;
|
|
7
|
+
alt?: string;
|
|
8
|
+
delay: number;
|
|
9
|
+
isError?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const CardMediaItem: ({ showFov, fov, imageUrl, alt, delay, isError }: CardMediaItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default CardMediaItem;
|
|
@@ -2,8 +2,7 @@ import { ImageItemType } from './ImageItem';
|
|
|
2
2
|
|
|
3
3
|
type ImageGridProps = {
|
|
4
4
|
imagesData: ImageItemType[];
|
|
5
|
-
loading?: boolean;
|
|
6
5
|
isFovShown?: boolean;
|
|
7
6
|
};
|
|
8
|
-
declare const ImageGrid: ({ imagesData,
|
|
7
|
+
declare const ImageGrid: ({ imagesData, isFovShown }: ImageGridProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
export default ImageGrid;
|
|
@@ -10,6 +10,8 @@ export type ImageItemType = {
|
|
|
10
10
|
onClick?: (value: number | string | null) => void;
|
|
11
11
|
fov?: Shape[];
|
|
12
12
|
isFovShown?: boolean;
|
|
13
|
+
innerLoading?: boolean;
|
|
14
|
+
isError?: boolean;
|
|
13
15
|
};
|
|
14
|
-
declare const ImageItem: ({ url, displayName, name, feedId, captureTime, delay, onClick, fov, isFovShown }: ImageItemType) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare const ImageItem: ({ url, displayName, name, feedId, captureTime, delay, onClick, fov, isFovShown, innerLoading, isError }: ImageItemType) => import("react/jsx-runtime").JSX.Element;
|
|
15
17
|
export default ImageItem;
|
|
@@ -12,3 +12,5 @@ export declare const detailsTypographySx: SxProps;
|
|
|
12
12
|
export declare const loaderSx: SxProps;
|
|
13
13
|
export declare const noDataBoxSx: SxProps;
|
|
14
14
|
export declare const noDataTypographySx: SxProps;
|
|
15
|
+
export declare const loaderBoxSx: SxProps;
|
|
16
|
+
export declare const errorTextSx: SxProps;
|
|
@@ -5,8 +5,8 @@ export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, base
|
|
|
5
5
|
displayName: string | undefined;
|
|
6
6
|
name: string | undefined;
|
|
7
7
|
feedId: number | undefined;
|
|
8
|
-
captureTime: string;
|
|
9
|
-
delay: number;
|
|
8
|
+
captureTime: string | undefined;
|
|
9
|
+
delay: number | undefined;
|
|
10
10
|
fov: {
|
|
11
11
|
id: string;
|
|
12
12
|
type: import('@conboai/storybook.components').ShapeType;
|
|
@@ -16,4 +16,6 @@ export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, base
|
|
|
16
16
|
}[];
|
|
17
17
|
styles: any;
|
|
18
18
|
} | null;
|
|
19
|
+
innerLoading: boolean | undefined;
|
|
20
|
+
isError: boolean | undefined;
|
|
19
21
|
}[];
|
|
@@ -20,6 +20,8 @@ export declare const generatePixelTrailsPoints: (data: TrailInfoPixelData[]) =>
|
|
|
20
20
|
type: ShapeType;
|
|
21
21
|
styles: {
|
|
22
22
|
stroke: string;
|
|
23
|
+
polylineStroke: string;
|
|
24
|
+
polylineCircleFill: string;
|
|
23
25
|
};
|
|
24
26
|
}[];
|
|
25
27
|
export declare const generateGeoTrailCoordinates: (data: TrailsItemDtoGeo[], pixelData: TrailInfoPixelData[]) => {
|
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.44",
|
|
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.43",
|
|
42
42
|
"@emotion/react": "^11.11.4",
|
|
43
43
|
"@emotion/styled": "^11.11.5",
|
|
44
44
|
"@hookform/resolvers": "^3.9.1",
|