@conboai/app.db.query 0.8.73 → 0.8.74

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.
@@ -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;
@@ -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;
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.74",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",