potato-map3d-ui2 0.0.31 → 0.0.32
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/map3d-ui2.es.js +8 -2
- package/dist/map3d-ui2.umd.js +8 -2
- package/package.json +1 -11
package/dist/map3d-ui2.es.js
CHANGED
@@ -331,13 +331,19 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
331
331
|
_hoisted_1$8
|
332
332
|
]),
|
333
333
|
createElementVNode("span", {
|
334
|
-
class: normalizeClass([
|
334
|
+
class: normalizeClass([
|
335
|
+
"m-control-text",
|
336
|
+
__props.placement === "left" ? "m-control-textLeft" : "m-control-textRight"
|
337
|
+
])
|
335
338
|
}, [
|
336
339
|
renderSlot(_ctx.$slots, "default", {}, () => [
|
337
340
|
createTextVNode("缩小")
|
338
341
|
]),
|
339
342
|
createElementVNode("div", {
|
340
|
-
class: normalizeClass([
|
343
|
+
class: normalizeClass([
|
344
|
+
"m-control-triangle",
|
345
|
+
__props.placement === "left" ? "m-control-triangleLeft" : "m-control-triangleRight"
|
346
|
+
])
|
341
347
|
}, null, 2)
|
342
348
|
], 2)
|
343
349
|
]);
|
package/dist/map3d-ui2.umd.js
CHANGED
@@ -334,13 +334,19 @@
|
|
334
334
|
_hoisted_1$8
|
335
335
|
]),
|
336
336
|
vue.createElementVNode("span", {
|
337
|
-
class: vue.normalizeClass([
|
337
|
+
class: vue.normalizeClass([
|
338
|
+
"m-control-text",
|
339
|
+
__props.placement === "left" ? "m-control-textLeft" : "m-control-textRight"
|
340
|
+
])
|
338
341
|
}, [
|
339
342
|
vue.renderSlot(_ctx.$slots, "default", {}, () => [
|
340
343
|
vue.createTextVNode("缩小")
|
341
344
|
]),
|
342
345
|
vue.createElementVNode("div", {
|
343
|
-
class: vue.normalizeClass([
|
346
|
+
class: vue.normalizeClass([
|
347
|
+
"m-control-triangle",
|
348
|
+
__props.placement === "left" ? "m-control-triangleLeft" : "m-control-triangleRight"
|
349
|
+
])
|
344
350
|
}, null, 2)
|
345
351
|
], 2)
|
346
352
|
]);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "potato-map3d-ui2",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.32",
|
5
5
|
"main": "./dist/map3d-ui2.umd.js",
|
6
6
|
"module": "./dist/map3d-ui2.es.js",
|
7
7
|
"type": "module",
|
@@ -23,18 +23,8 @@
|
|
23
23
|
"dependencies": {
|
24
24
|
"axios": "^1.4.0",
|
25
25
|
"vite-plugin-dts": "^2.2.0",
|
26
|
-
"vue": "^2.0.0 || >=3.0.0",
|
27
|
-
"vue-demi": "^0.14.5"
|
28
|
-
},
|
29
|
-
"peerDependencies": {
|
30
|
-
"@vue/composition-api": "^1.7.1",
|
31
26
|
"vue": "^2.0.0 || >=3.0.0"
|
32
27
|
},
|
33
|
-
"peerDependenciesMeta": {
|
34
|
-
"@vue/composition-api": {
|
35
|
-
"optional": true
|
36
|
-
}
|
37
|
-
},
|
38
28
|
"devDependencies": {
|
39
29
|
"@types/node": "^18.15.11",
|
40
30
|
"@vitejs/plugin-vue": "^4.2.1",
|