@conboai/app.db.query 0.3.21 → 0.3.22

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.
@@ -0,0 +1,3 @@
1
+ import { SxProps } from '@mui/material';
2
+
3
+ export declare const loaderBoxSx: SxProps;
@@ -3,6 +3,7 @@ interface IImageContent {
3
3
  objectImages: string[];
4
4
  setIsFirstPage: (value: boolean) => void;
5
5
  isFirstPage: boolean;
6
+ isLoading: boolean;
6
7
  }
7
8
  interface ITrailContent {
8
9
  polylineProps: [number, number][];
@@ -10,12 +11,13 @@ interface ITrailContent {
10
11
  coordinates: [number, number][];
11
12
  url: string;
12
13
  };
14
+ isLoading: boolean;
13
15
  }
14
16
  export declare enum TrailPathType {
15
17
  Geo = 0,
16
18
  Feed = 1
17
19
  }
18
- export declare const getImageContent: ({ feedImages, objectImages, isFirstPage, setIsFirstPage }: IImageContent) => {
20
+ export declare const getImageContent: ({ feedImages, objectImages, isFirstPage, setIsFirstPage, isLoading }: IImageContent) => {
19
21
  value: string;
20
22
  content: import("react/jsx-runtime").JSX.Element;
21
23
  }[];
@@ -25,7 +27,7 @@ export declare const getImageTabs: (feed: string[], object: string[]) => {
25
27
  disabled: boolean;
26
28
  }[];
27
29
  export declare const generateImages: (images: any[]) => string[];
28
- export declare const getTrailContent: ({ polylineProps, trailProps }: ITrailContent) => {
30
+ export declare const getTrailContent: ({ polylineProps, trailProps, isLoading }: ITrailContent) => {
29
31
  value: string;
30
32
  content: import("react/jsx-runtime").JSX.Element;
31
33
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.3.21",
3
+ "version": "0.3.22",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",