@conboai/app.db.query 0.5.8 → 0.5.10
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 +6572 -6577
- package/dist/apps/Cargo/Cargo.d.ts +7 -3
- package/dist/apps/Cargo/index.d.ts +1 -1
- package/dist/apps/Classifiers/Classifiers.d.ts +8 -4
- package/dist/apps/Classifiers/components/AppRightBar/ValueRow.d.ts +6 -3
- package/dist/apps/Classifiers/index.d.ts +1 -1
- package/dist/apps/ConboKeySearch/ConboKeySearch.d.ts +7 -3
- package/dist/apps/ConboKeySearch/components/AppContent/AppContent.d.ts +5 -0
- package/dist/apps/ConboKeySearch/components/AppContent/useColumnDefs.d.ts +1 -1
- package/dist/apps/ConboKeySearch/components/AppRightBar/AppRightBar.d.ts +1 -1
- package/dist/apps/ConboKeySearch/index.d.ts +1 -1
- package/dist/apps/EntitySearch/EntitySearch.d.ts +7 -3
- package/dist/apps/EntitySearch/components/AppContent/useColumnDefs.d.ts +1 -1
- package/dist/apps/EntitySearch/index.d.ts +1 -1
- package/dist/apps/ImageAnalysis/ImageAnalysis.d.ts +7 -3
- package/dist/apps/ImageAnalysis/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
type InputProps = {
|
|
2
|
+
siteId: string;
|
|
3
|
+
baseUrl?: string;
|
|
4
|
+
isAdmin?: boolean;
|
|
5
|
+
onHomeClick?: () => void;
|
|
6
|
+
};
|
|
7
|
+
export declare const Cargo: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
8
|
export default Cargo;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Cargo';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
type InputProps = {
|
|
2
|
+
siteId: string;
|
|
3
|
+
baseUrl?: string;
|
|
4
|
+
isAdmin?: boolean;
|
|
5
|
+
onHomeClick?: () => void;
|
|
6
|
+
};
|
|
7
|
+
export declare const Classifiers: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
type InputType = {
|
|
2
|
+
label: string;
|
|
3
|
+
value: number | string;
|
|
4
|
+
addDivider: boolean;
|
|
5
|
+
};
|
|
3
6
|
declare function ValueRow({ item }: {
|
|
4
|
-
item:
|
|
7
|
+
item: InputType;
|
|
5
8
|
}): import("react/jsx-runtime").JSX.Element;
|
|
6
9
|
export default ValueRow;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Classifiers';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
type InputProps = {
|
|
2
|
+
siteId: string;
|
|
3
|
+
baseUrl?: string;
|
|
4
|
+
isAdmin?: boolean;
|
|
5
|
+
onHomeClick?: () => void;
|
|
6
|
+
};
|
|
7
|
+
export declare const ConboKeySearch: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
8
|
export default ConboKeySearch;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
+
import { FrameDetailUI } from '../../../../store/interfaces';
|
|
2
|
+
|
|
1
3
|
interface IAppContent {
|
|
2
4
|
baseUrl?: string;
|
|
3
5
|
isImageAnalysis?: boolean;
|
|
4
6
|
}
|
|
7
|
+
export type FrameDetailUICmp = FrameDetailUI & {
|
|
8
|
+
selected: boolean;
|
|
9
|
+
};
|
|
5
10
|
declare function AppContent({ baseUrl, isImageAnalysis }: IAppContent): import("react/jsx-runtime").JSX.Element;
|
|
6
11
|
export default AppContent;
|
|
@@ -36,7 +36,7 @@ export declare const useColumnDefs: ({ handleCheckBoxChange, handleSelectAllClic
|
|
|
36
36
|
field: string;
|
|
37
37
|
headerName: string;
|
|
38
38
|
flex: number;
|
|
39
|
-
valueGetter: (params: any, value: any) =>
|
|
39
|
+
valueGetter: (params: any, value: any) => string | undefined;
|
|
40
40
|
disableColumnMenu?: undefined;
|
|
41
41
|
filterable?: undefined;
|
|
42
42
|
maxWidth?: undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './ConboKeySearch';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
type InputProps = {
|
|
2
|
+
siteId: string;
|
|
3
|
+
baseUrl?: string;
|
|
4
|
+
isAdmin?: boolean;
|
|
5
|
+
onHomeClick?: () => void;
|
|
6
|
+
};
|
|
7
|
+
export declare const EntitySearch: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
8
|
export default EntitySearch;
|
|
@@ -43,7 +43,7 @@ export declare const useColumnDefs: ({ handleCheckBoxChange, handleSelectAllClic
|
|
|
43
43
|
flex: number;
|
|
44
44
|
sortable: boolean;
|
|
45
45
|
disableColumnMenu: boolean;
|
|
46
|
-
valueGetter: (params: any, value: any) =>
|
|
46
|
+
valueGetter: (params: any, value: any) => string | undefined;
|
|
47
47
|
filterable?: undefined;
|
|
48
48
|
maxWidth?: undefined;
|
|
49
49
|
renderHeader?: undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './EntitySearch';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
type InputProps = {
|
|
2
|
+
siteId: string;
|
|
3
|
+
baseUrl?: string;
|
|
4
|
+
isAdmin?: boolean;
|
|
5
|
+
onHomeClick?: () => void;
|
|
6
|
+
};
|
|
7
|
+
export declare const ImageAnalysis: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
8
|
export default ImageAnalysis;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './ImageAnalysis';
|