@mlightcad/cad-viewer 1.4.7 → 1.4.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.
- package/README.md +1 -1
- package/dist/command/AcApLayerStateCmd.d.ts +1 -1
- package/dist/command/AcApLayerStateCmd.d.ts.map +1 -1
- package/dist/command/AcApMissedDataCmd.d.ts +1 -1
- package/dist/command/AcApMissedDataCmd.d.ts.map +1 -1
- package/dist/command/AcApPointStyleCmd.d.ts +1 -1
- package/dist/command/AcApPointStyleCmd.d.ts.map +1 -1
- package/dist/component/MlCadViewer.vue.d.ts +11 -0
- package/dist/component/MlCadViewer.vue.d.ts.map +1 -1
- package/dist/component/common/MlBaseDrawStyleToolbar.vue.d.ts +60 -0
- package/dist/component/common/MlBaseDrawStyleToolbar.vue.d.ts.map +1 -0
- package/dist/component/common/MlColorIndexPicker.vue.d.ts.map +1 -1
- package/dist/component/common/MlLineWeightSelect.vue.d.ts +22 -0
- package/dist/component/common/MlLineWeightSelect.vue.d.ts.map +1 -0
- package/dist/component/common/index.d.ts +2 -0
- package/dist/component/common/index.d.ts.map +1 -1
- package/dist/component/layout/MlEntityDrawStyleToolbar.vue.d.ts +43 -0
- package/dist/component/layout/MlEntityDrawStyleToolbar.vue.d.ts.map +1 -0
- package/dist/component/layout/MlLayerDrawStyleToolbar.vue.d.ts +36 -0
- package/dist/component/layout/MlLayerDrawStyleToolbar.vue.d.ts.map +1 -0
- package/dist/component/layout/MlToolBars.vue.d.ts.map +1 -1
- package/dist/component/layout/index.d.ts +2 -0
- package/dist/component/layout/index.d.ts.map +1 -1
- package/dist/component/palette/MlLayerList.vue.d.ts.map +1 -1
- package/dist/composable/index.d.ts +2 -0
- package/dist/composable/index.d.ts.map +1 -1
- package/dist/composable/useDocOpenMode.d.ts +3 -0
- package/dist/composable/useDocOpenMode.d.ts.map +1 -0
- package/dist/composable/useEntityDrawStyle.d.ts +32 -0
- package/dist/composable/useEntityDrawStyle.d.ts.map +1 -0
- package/dist/composable/useHover.d.ts +554 -14
- package/dist/composable/useHover.d.ts.map +1 -1
- package/dist/composable/useLayers.d.ts +8 -1
- package/dist/composable/useLayers.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +2912 -2123
- package/dist/locale/en/main.d.ts +40 -4
- package/dist/locale/en/main.d.ts.map +1 -1
- package/dist/locale/zh/main.d.ts +40 -4
- package/dist/locale/zh/main.d.ts.map +1 -1
- package/dist/svg/index.d.ts +8 -0
- package/dist/svg/index.d.ts.map +1 -1
- package/package.json +6 -6
package/dist/locale/en/main.d.ts
CHANGED
|
@@ -5,7 +5,15 @@ declare const _default: {
|
|
|
5
5
|
export: string;
|
|
6
6
|
};
|
|
7
7
|
verticalToolbar: {
|
|
8
|
-
|
|
8
|
+
annotation: {
|
|
9
|
+
text: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
hideAnnotation: {
|
|
13
|
+
text: string;
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
16
|
+
layer: {
|
|
9
17
|
text: string;
|
|
10
18
|
description: string;
|
|
11
19
|
};
|
|
@@ -13,15 +21,43 @@ declare const _default: {
|
|
|
13
21
|
text: string;
|
|
14
22
|
description: string;
|
|
15
23
|
};
|
|
16
|
-
|
|
24
|
+
revCircle: {
|
|
17
25
|
text: string;
|
|
18
26
|
description: string;
|
|
19
27
|
};
|
|
20
|
-
|
|
28
|
+
revLine: {
|
|
21
29
|
text: string;
|
|
22
30
|
description: string;
|
|
23
31
|
};
|
|
24
|
-
|
|
32
|
+
revFreehand: {
|
|
33
|
+
text: string;
|
|
34
|
+
description: string;
|
|
35
|
+
};
|
|
36
|
+
revRect: {
|
|
37
|
+
text: string;
|
|
38
|
+
description: string;
|
|
39
|
+
};
|
|
40
|
+
revCloud: {
|
|
41
|
+
text: string;
|
|
42
|
+
description: string;
|
|
43
|
+
};
|
|
44
|
+
select: {
|
|
45
|
+
text: string;
|
|
46
|
+
description: string;
|
|
47
|
+
};
|
|
48
|
+
showAnnotation: {
|
|
49
|
+
text: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
switchBg: {
|
|
53
|
+
text: string;
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
zoomToExtent: {
|
|
57
|
+
text: string;
|
|
58
|
+
description: string;
|
|
59
|
+
};
|
|
60
|
+
zoomToBox: {
|
|
25
61
|
text: string;
|
|
26
62
|
description: string;
|
|
27
63
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/locale/en/main.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/locale/en/main.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA+KC"}
|
package/dist/locale/zh/main.d.ts
CHANGED
|
@@ -5,7 +5,15 @@ declare const _default: {
|
|
|
5
5
|
export: string;
|
|
6
6
|
};
|
|
7
7
|
verticalToolbar: {
|
|
8
|
-
|
|
8
|
+
annotation: {
|
|
9
|
+
text: string;
|
|
10
|
+
description: string;
|
|
11
|
+
};
|
|
12
|
+
hideAnnotation: {
|
|
13
|
+
text: string;
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
16
|
+
layer: {
|
|
9
17
|
text: string;
|
|
10
18
|
description: string;
|
|
11
19
|
};
|
|
@@ -13,15 +21,43 @@ declare const _default: {
|
|
|
13
21
|
text: string;
|
|
14
22
|
description: string;
|
|
15
23
|
};
|
|
16
|
-
|
|
24
|
+
revCircle: {
|
|
17
25
|
text: string;
|
|
18
26
|
description: string;
|
|
19
27
|
};
|
|
20
|
-
|
|
28
|
+
revLine: {
|
|
21
29
|
text: string;
|
|
22
30
|
description: string;
|
|
23
31
|
};
|
|
24
|
-
|
|
32
|
+
revFreehand: {
|
|
33
|
+
text: string;
|
|
34
|
+
description: string;
|
|
35
|
+
};
|
|
36
|
+
revRect: {
|
|
37
|
+
text: string;
|
|
38
|
+
description: string;
|
|
39
|
+
};
|
|
40
|
+
revCloud: {
|
|
41
|
+
text: string;
|
|
42
|
+
description: string;
|
|
43
|
+
};
|
|
44
|
+
select: {
|
|
45
|
+
text: string;
|
|
46
|
+
description: string;
|
|
47
|
+
};
|
|
48
|
+
showAnnotation: {
|
|
49
|
+
text: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
switchBg: {
|
|
53
|
+
text: string;
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
zoomToExtent: {
|
|
57
|
+
text: string;
|
|
58
|
+
description: string;
|
|
59
|
+
};
|
|
60
|
+
zoomToBox: {
|
|
25
61
|
text: string;
|
|
26
62
|
description: string;
|
|
27
63
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/locale/zh/main.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/locale/zh/main.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAyKC"}
|
package/dist/svg/index.d.ts
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
|
+
export { default as circle } from './circle.svg';
|
|
1
2
|
export { default as fullScreen } from './fullScreen.svg';
|
|
2
3
|
export { default as language } from './language.svg';
|
|
3
4
|
export { default as layer } from './layer.svg';
|
|
5
|
+
export { default as line } from './line.svg';
|
|
4
6
|
export { default as mlightcad } from './mlightcad.svg';
|
|
5
7
|
export { default as move } from './move.svg';
|
|
6
8
|
export { default as osnap } from './osnap.svg';
|
|
9
|
+
export { default as rect } from './rect.svg';
|
|
10
|
+
export { default as revCircle } from './revCircle.svg';
|
|
11
|
+
export { default as revCloud } from './revCloud.svg';
|
|
12
|
+
export { default as revFreeDraw } from './revFreeDraw.svg';
|
|
13
|
+
export { default as revRect } from './revRect.svg';
|
|
7
14
|
export { default as select } from './select.svg';
|
|
8
15
|
export { default as setting } from './setting.svg';
|
|
16
|
+
export { default as switchBg } from './switchBg.svg';
|
|
9
17
|
export { default as zoomToBox } from './zoomToBox.svg';
|
|
10
18
|
export { default as zoomToExtent } from './zoomToExtent.svg';
|
|
11
19
|
export * from './pointstyle';
|
package/dist/svg/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/svg/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,aAAa,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,YAAY,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,aAAa,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAC5D,cAAc,cAAc,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/svg/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,aAAa,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,YAAY,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,YAAY,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,aAAa,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,YAAY,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC1D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAC5D,cAAc,cAAc,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mlightcad/cad-viewer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
],
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@mlightcad/three-viewcube": "0.0.9",
|
|
36
|
-
"@mlightcad/ui-components": "^0.1.
|
|
36
|
+
"@mlightcad/ui-components": "^0.1.5",
|
|
37
37
|
"@types/lodash-es": "^4.17.12",
|
|
38
38
|
"@vitejs/plugin-vue": "^5.1.3",
|
|
39
39
|
"sass": "^1.95.1",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"vite-svg-loader": "^5.1.0",
|
|
43
43
|
"vue-eslint-parser": "^9.4.3",
|
|
44
44
|
"vue-tsc": "^2.1.6",
|
|
45
|
-
"@mlightcad/
|
|
46
|
-
"@mlightcad/
|
|
45
|
+
"@mlightcad/svg-renderer": "1.4.9",
|
|
46
|
+
"@mlightcad/three-renderer": "1.4.9"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@element-plus/icons-vue": "^2.3.1",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"vue-pick-colors": "^1.8.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@mlightcad/data-model": "^1.
|
|
55
|
+
"@mlightcad/data-model": "^1.7.0",
|
|
56
56
|
"@vueuse/core": "^11.1.0",
|
|
57
57
|
"element-plus": "^2.12.0",
|
|
58
58
|
"vue": "^3.4.21",
|
|
59
59
|
"vue-i18n": "^10.0.1",
|
|
60
|
-
"@mlightcad/cad-simple-viewer": "1.4.
|
|
60
|
+
"@mlightcad/cad-simple-viewer": "1.4.9"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"analyze": "vite build --mode analyze",
|