@glodon-aiot/dataset-annotation 3.18.0-alpha.11 → 3.18.0-alpha.13
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/es/components/OcrAnnotation/PreLabelOCR/PreLabelModal.mjs +163 -139
- package/dist/es/components/OcrAnnotation/PreLabelOCR/components/PreLabelPreview/index.mjs +310 -0
- package/dist/es/components/OcrAnnotation/PreLabelOCR/components/PreLabelPreview/style.less.mjs +4 -0
- package/dist/es/components/OcrAnnotation/PreLabelOCR/icon_linear.svg.mjs +4 -0
- package/dist/es/components/PreLabelOCR/components/PreLabelPreview/index.mjs +103 -95
- package/dist/es/components/VLMAnnotationDetail/VLMDetail/index.mjs +243 -233
- package/dist/es/index.mjs +1 -1
- package/dist/es/utils/index.mjs +1 -1
- package/dist/lib/index.js +4 -4
- package/dist/src/components/OcrAnnotation/PreLabelOCR/components/PreLabelPreview/index.d.ts +13 -0
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface PreLabelPreviewProps {
|
|
3
|
+
/** 当前选中的服务 ID,无值时显示引导空态 */
|
|
4
|
+
serviceId?: string;
|
|
5
|
+
/** 置信度阈值,用于过滤预测结果 */
|
|
6
|
+
confidence?: number;
|
|
7
|
+
datasetId: string;
|
|
8
|
+
versionId: string;
|
|
9
|
+
/** 控制是否触发首次数据加载 */
|
|
10
|
+
isVisible: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare const PreLabelPreview: React.FC<PreLabelPreviewProps>;
|
|
13
|
+
export default PreLabelPreview;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glodon-aiot/dataset-annotation",
|
|
3
|
-
"version": "3.18.0-alpha.
|
|
3
|
+
"version": "3.18.0-alpha.13",
|
|
4
4
|
"module": "./dist/es/index.mjs",
|
|
5
5
|
"main": "./dist/lib/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@ant-design/icons": "^5.3.4",
|
|
39
39
|
"@aws-crypto/sha256-js": "^3.0.0",
|
|
40
|
-
"@glodon-aiot/apis": "^3.18.0-alpha.
|
|
40
|
+
"@glodon-aiot/apis": "^3.18.0-alpha.13",
|
|
41
41
|
"@glodon-aiot/minio": "^0.1.6",
|
|
42
42
|
"@reduxjs/toolkit": "^1.9.5",
|
|
43
43
|
"@types/fabric": "^5.3.2",
|