@conboai/app.db.query 0.9.32 → 0.9.34
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { SnapshotBoxProps } from './types';
|
|
2
2
|
|
|
3
|
-
declare const SnapshotBox: ({ isEmpty, imgUrl, shapes, shapeWidth, selectedShape, onShapeClick
|
|
3
|
+
declare const SnapshotBox: ({ isEmpty, imgUrl, shapes, shapeWidth, selectedShape, onShapeClick }: SnapshotBoxProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default SnapshotBox;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Shape } from '../../../../shared/Shapes/types';
|
|
2
|
-
import { Shape as SBShape } from '@conboai/storybook.components/dist/components/Shapes/types';
|
|
3
2
|
|
|
4
3
|
export type SnapshotBoxProps = {
|
|
5
4
|
isEmpty?: boolean;
|
|
@@ -8,5 +7,4 @@ export type SnapshotBoxProps = {
|
|
|
8
7
|
shapeWidth: string;
|
|
9
8
|
selectedShape?: string;
|
|
10
9
|
onShapeClick?: (shape: Shape) => void;
|
|
11
|
-
detectionShapes: SBShape[];
|
|
12
10
|
};
|