@conboai/app.db.query 0.8.41 → 0.8.42
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 +22843 -22745
- package/dist/apps/ImageAnalysis/components/AppRightBar/hooks/useImageAnalysisRightBar.d.ts +1 -1
- package/dist/apps/conbo-match/components/app-content/utils.d.ts +1 -0
- package/dist/apps/conbo-match/components/app-sidebar-right/app-sidebar-right.d.ts +1 -1
- package/dist/apps/conbo-match/components/app-sidebar-right/utils.d.ts +2 -16
- package/dist/apps/conbo-match/components/conbo-match-header/conbo-match-header.d.ts +2 -1
- package/dist/apps/conbo-match/components/sidebar-left-filter/sidebar-left-filter.d.ts +1 -2
- package/dist/images/Cargo Actions.png +0 -0
- package/dist/images/Entity search.png +0 -0
- package/dist/images/Image Analysis.png +0 -0
- package/dist/images/Key Search.png +0 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type InputProps = {
|
|
2
2
|
baseUrl?: string;
|
|
3
3
|
};
|
|
4
|
-
export declare const AppSidebarRight: (
|
|
4
|
+
export declare const AppSidebarRight: ({ baseUrl }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export {};
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
type GetDetailsContentProps = {
|
|
2
2
|
topOne?: {
|
|
3
|
-
|
|
4
|
-
tagId: number;
|
|
5
|
-
kitId: number;
|
|
6
|
-
value: number;
|
|
7
|
-
count: number;
|
|
8
|
-
avgConf: number;
|
|
9
|
-
elementSerialNumber: number;
|
|
3
|
+
[x: string]: any;
|
|
10
4
|
}[];
|
|
11
5
|
classifiersFrameInfo?: {
|
|
12
6
|
conbo_key: string;
|
|
@@ -22,15 +16,7 @@ type GetDetailsContentProps = {
|
|
|
22
16
|
end_time: string;
|
|
23
17
|
}[];
|
|
24
18
|
classifierSummary?: {
|
|
25
|
-
|
|
26
|
-
tag_id: number;
|
|
27
|
-
value: number;
|
|
28
|
-
kit_id: number;
|
|
29
|
-
kit_version: number;
|
|
30
|
-
average_confidence: number;
|
|
31
|
-
median_confidence: number;
|
|
32
|
-
element_serial_number: number;
|
|
33
|
-
count: number;
|
|
19
|
+
[x: string]: any;
|
|
34
20
|
}[];
|
|
35
21
|
kitsElements?: {
|
|
36
22
|
kit_id: number;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type InputType = {
|
|
2
2
|
title?: string;
|
|
3
3
|
onHomeClick?: () => void;
|
|
4
|
+
isLoading?: boolean;
|
|
4
5
|
};
|
|
5
|
-
export declare const ConboMatchHeader: (
|
|
6
|
+
export declare const ConboMatchHeader: ({ title, onHomeClick, isLoading }: InputType) => import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export {};
|
|
@@ -4,12 +4,11 @@ export type MatchFilterFormType = {
|
|
|
4
4
|
isUtc?: boolean;
|
|
5
5
|
};
|
|
6
6
|
type SidebarLeftFilterInput = {
|
|
7
|
-
loadingFetch?: boolean;
|
|
8
7
|
onSubmit?: (value: {
|
|
9
8
|
conboKey: string;
|
|
10
9
|
baseUrl?: string;
|
|
11
10
|
}) => void;
|
|
12
11
|
baseUrl?: string;
|
|
13
12
|
};
|
|
14
|
-
export declare const SidebarLeftFilter: ({
|
|
13
|
+
export declare const SidebarLeftFilter: ({ onSubmit, baseUrl }: SidebarLeftFilterInput) => import("react/jsx-runtime").JSX.Element;
|
|
15
14
|
export {};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.42",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"format": "prettier --write \"src/**/*.{ts,tsx,json}\" --color"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@conboai/storybook.components": "^0.5.
|
|
41
|
+
"@conboai/storybook.components": "^0.5.42",
|
|
42
42
|
"@emotion/react": "^11.11.4",
|
|
43
43
|
"@emotion/styled": "^11.11.5",
|
|
44
44
|
"@hookform/resolvers": "^3.9.1",
|