@conboai/app.db.query 0.5.7 → 0.5.9

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,8 @@
1
- import { IApp } from '../../interfaces/App';
2
-
3
- declare function Cargo({ siteId, UserProfile, onHomeClick, baseUrl }: IApp): import("react/jsx-runtime").JSX.Element;
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 { default as Cargo } from './Cargo.tsx';
1
+ export * from './Cargo';
@@ -1,4 +1,8 @@
1
- import { IApp } from '../../interfaces/App';
2
-
3
- declare function Classifiers({ siteId, UserProfile, onHomeClick, baseUrl }: IApp): import("react/jsx-runtime").JSX.Element;
4
- export default Classifiers;
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
- import { ValueItem } from '../../../../interfaces/components';
2
-
1
+ type InputType = {
2
+ label: string;
3
+ value: number | string;
4
+ addDivider: boolean;
5
+ };
3
6
  declare function ValueRow({ item }: {
4
- item: ValueItem;
7
+ item: InputType;
5
8
  }): import("react/jsx-runtime").JSX.Element;
6
9
  export default ValueRow;
@@ -1 +1 @@
1
- export { default as Classifiers } from './Classifiers';
1
+ export * from './Classifiers';
@@ -1,4 +1,8 @@
1
- import { IApp } from '../../interfaces/App';
2
-
3
- declare function ConboKeySearch({ siteId, UserProfile, onHomeClick, baseUrl }: IApp): import("react/jsx-runtime").JSX.Element;
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) => any;
39
+ valueGetter: (params: any, value: any) => string | undefined;
40
40
  disableColumnMenu?: undefined;
41
41
  filterable?: undefined;
42
42
  maxWidth?: undefined;
@@ -1,5 +1,5 @@
1
1
  declare function AppRightBar({ baseUrl, getTabValueLabelsAndSubLabels }: {
2
- baseUrl?: string | undefined;
2
+ baseUrl?: string;
3
3
  getTabValueLabelsAndSubLabels?: any;
4
4
  }): import("react/jsx-runtime").JSX.Element;
5
5
  export default AppRightBar;
@@ -1 +1 @@
1
- export { default as ConboKeySearch } from './ConboKeySearch.tsx';
1
+ export * from './ConboKeySearch';
@@ -1,4 +1,8 @@
1
- import { IApp } from '../../interfaces/App';
2
-
3
- declare function EntitySearch({ siteId, UserProfile, onHomeClick, baseUrl, isAdmin }: IApp): import("react/jsx-runtime").JSX.Element;
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) => 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 { default as EntitySearch } from './EntitySearch.tsx';
1
+ export * from './EntitySearch';
@@ -1,4 +1,8 @@
1
- import { IApp } from '../../interfaces/App';
2
-
3
- declare function ImageAnalysis({ siteId, UserProfile, onHomeClick, baseUrl, isAdmin }: IApp): import("react/jsx-runtime").JSX.Element;
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 { default as ImageAnalysis } from './ImageAnalysis.tsx';
1
+ export * from './ImageAnalysis';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.5.7",
3
+ "version": "0.5.9",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",