@mlightcad/cad-viewer 1.3.4 → 1.4.0
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/component/MlCadViewer.vue.d.ts.map +1 -1
- package/dist/component/palette/MlEntityProperties.vue.d.ts +0 -3
- package/dist/component/palette/MlEntityProperties.vue.d.ts.map +1 -1
- package/dist/composable/useHover.d.ts +48 -4
- package/dist/composable/useHover.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1718 -1672
- package/dist/locale/en/entity.d.ts +3 -0
- package/dist/locale/en/entity.d.ts.map +1 -1
- package/dist/locale/zh/entity.d.ts +3 -0
- package/dist/locale/zh/entity.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -198,6 +198,7 @@ declare const _default: {
|
|
|
198
198
|
geometry: string;
|
|
199
199
|
pattern: string;
|
|
200
200
|
table: string;
|
|
201
|
+
others: string;
|
|
201
202
|
patternType: string;
|
|
202
203
|
patternName: string;
|
|
203
204
|
patternAngle: string;
|
|
@@ -269,6 +270,8 @@ declare const _default: {
|
|
|
269
270
|
numColumns: string;
|
|
270
271
|
tableWidth: string;
|
|
271
272
|
tableHeight: string;
|
|
273
|
+
vertices: string;
|
|
274
|
+
closed: string;
|
|
272
275
|
};
|
|
273
276
|
};
|
|
274
277
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity.d.ts","sourceRoot":"","sources":["../../../src/locale/en/entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"entity.d.ts","sourceRoot":"","sources":["../../../src/locale/en/entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAmRC"}
|
|
@@ -198,6 +198,7 @@ declare const _default: {
|
|
|
198
198
|
geometry: string;
|
|
199
199
|
pattern: string;
|
|
200
200
|
table: string;
|
|
201
|
+
others: string;
|
|
201
202
|
patternType: string;
|
|
202
203
|
patternName: string;
|
|
203
204
|
patternAngle: string;
|
|
@@ -269,6 +270,8 @@ declare const _default: {
|
|
|
269
270
|
numColumns: string;
|
|
270
271
|
tableWidth: string;
|
|
271
272
|
tableHeight: string;
|
|
273
|
+
vertices: string;
|
|
274
|
+
closed: string;
|
|
272
275
|
};
|
|
273
276
|
};
|
|
274
277
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity.d.ts","sourceRoot":"","sources":["../../../src/locale/zh/entity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"entity.d.ts","sourceRoot":"","sources":["../../../src/locale/zh/entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAmRC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mlightcad/cad-viewer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -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/svg-renderer": "1.
|
|
46
|
-
"@mlightcad/three-renderer": "1.
|
|
45
|
+
"@mlightcad/svg-renderer": "1.4.0",
|
|
46
|
+
"@mlightcad/three-renderer": "1.4.0"
|
|
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.5.
|
|
55
|
+
"@mlightcad/data-model": "^1.5.4",
|
|
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.
|
|
60
|
+
"@mlightcad/cad-simple-viewer": "1.4.0"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"analyze": "vite build --mode analyze",
|