@conboai/app.db.query 0.9.53 → 0.9.55

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.
@@ -5,9 +5,10 @@ type CardMediaItemProps = {
5
5
  shapeCoordinates: Shape[];
6
6
  imageUrl?: string;
7
7
  alt?: string;
8
- delay: number;
8
+ delay: number | null;
9
+ isOutdated?: boolean;
9
10
  isError?: boolean;
10
11
  onImageError?: () => void;
11
12
  };
12
- declare const CardMediaItem: ({ showPolygons, shapeCoordinates, imageUrl, alt, delay, isError, onImageError }: CardMediaItemProps) => import("react/jsx-runtime").JSX.Element;
13
+ declare const CardMediaItem: ({ showPolygons, shapeCoordinates, isOutdated, imageUrl, alt, delay, isError, onImageError }: CardMediaItemProps) => import("react/jsx-runtime").JSX.Element;
13
14
  export default CardMediaItem;
@@ -5,7 +5,6 @@ type ImageGridProps = {
5
5
  isFovShown?: boolean;
6
6
  isRegionsShown?: boolean;
7
7
  isCrossesChecked?: boolean;
8
- loadError?: boolean;
9
8
  };
10
- declare const ImageGrid: ({ imagesData, isFovShown, isRegionsShown, isCrossesChecked, loadError }: ImageGridProps) => import("react/jsx-runtime").JSX.Element;
9
+ declare const ImageGrid: ({ imagesData, isFovShown, isRegionsShown, isCrossesChecked }: ImageGridProps) => import("react/jsx-runtime").JSX.Element;
11
10
  export default ImageGrid;
@@ -2,18 +2,19 @@ import { Shape } from '@conboai/storybook.components';
2
2
 
3
3
  export type ImageItemType = {
4
4
  url: string;
5
+ imageId: string;
5
6
  displayName: string;
6
7
  name: string;
7
- feedId: number;
8
+ feedId: number | null;
8
9
  captureTime: string;
9
- delay: number;
10
+ delay: number | null;
10
11
  onClick?: (value: number | string | null) => void;
11
12
  shapeCoordinates?: Shape[];
12
13
  innerLoading?: boolean;
13
14
  isError?: boolean;
14
15
  unit: string;
15
- runId: number;
16
+ runId: number | null;
16
17
  loadError?: boolean;
17
18
  };
18
- declare const ImageItem: ({ url, displayName, name, feedId, captureTime, delay, onClick, shapeCoordinates, innerLoading, isError, unit, runId, }: ImageItemType) => import("react/jsx-runtime").JSX.Element;
19
+ declare const ImageItem: ({ url, imageId, displayName, name, feedId, captureTime, delay, onClick, shapeCoordinates, innerLoading, isError, unit, runId }: ImageItemType) => import("react/jsx-runtime").JSX.Element;
19
20
  export default ImageItem;
@@ -5,7 +5,7 @@ export declare const imageItemSx: SxProps;
5
5
  export declare const imageBoxSx: SxProps;
6
6
  export declare const downloadButtonSx: SxProps;
7
7
  export declare const delayBoxSx: (delay: number) => SxProps;
8
- export declare const cardMediaSx: (delay: number) => SxProps;
8
+ export declare const cardMediaSx: (delay: number | null) => SxProps;
9
9
  export declare const descriptionContainerSx: SxProps;
10
10
  export declare const descriptionBoxSx: SxProps;
11
11
  export declare const detailsBoxSx: SxProps;
@@ -33,11 +33,12 @@ export type ModifyShapesType = {
33
33
  };
34
34
  export type ImageGridItemType = {
35
35
  url: string;
36
+ imageId: string;
36
37
  displayName: string;
37
38
  name: string;
38
- feedId: number;
39
+ feedId: number | null;
39
40
  captureTime: string;
40
- delay: number;
41
+ delay: number | null;
41
42
  onClick?: (value: number | string | null) => void;
42
43
  innerLoading?: boolean;
43
44
  isError?: boolean;
@@ -45,5 +46,5 @@ export type ImageGridItemType = {
45
46
  regions?: Shape[];
46
47
  crosses?: Shape[];
47
48
  unit: string;
48
- runId: number;
49
+ runId: number | null;
49
50
  };
@@ -16,12 +16,13 @@ export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, base
16
16
  }[];
17
17
  isInFov: boolean | undefined;
18
18
  } | null;
19
- displayName: string | undefined;
20
- name: string | undefined;
21
- feedId: number | undefined;
22
- runId: number | undefined;
23
- captureTime: string | undefined;
24
- delay: number | undefined;
19
+ imageId: string;
20
+ displayName: string;
21
+ name: string;
22
+ feedId: number | null;
23
+ runId: number | null;
24
+ captureTime: string;
25
+ delay: number | null;
25
26
  innerLoading: boolean | undefined;
26
27
  isError: boolean | undefined;
27
28
  regions: ({
@@ -38,7 +39,7 @@ export declare const generateFeedStreamsData: ({ latestSnapshots, fovInfos, base
38
39
  }[];
39
40
  isInFov: boolean | undefined;
40
41
  } | null)[] | undefined;
41
- unit: string | undefined;
42
+ unit: string;
42
43
  crosses: {
43
44
  id: string;
44
45
  type: import('@conboai/storybook.components').ShapeType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.9.53",
3
+ "version": "0.9.55",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",
@@ -39,7 +39,7 @@
39
39
  "format": "prettier --write \"src/**/*.{ts,tsx,json}\" --color"
40
40
  },
41
41
  "dependencies": {
42
- "@conboai/storybook.components": "0.5.77",
42
+ "@conboai/storybook.components": "0.5.84",
43
43
  "@emotion/react": "^11.11.4",
44
44
  "@emotion/styled": "^11.11.5",
45
45
  "@hookform/resolvers": "^3.9.1",