template-designer 0.12.0 → 0.12.2
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/{index-f2e08cd2.mjs → index-39d3f14c.mjs} +3 -3
- package/dist/{index.es-927e6fcc.mjs → index.es-ea8cb580.mjs} +1 -1
- package/dist/{lodop-2766eb6d.mjs → lodop-827c9499.mjs} +1 -1
- package/dist/{rfid-53c1142f.mjs → rfid-8fe082b3.mjs} +1 -1
- package/dist/template-designer.es.js +1 -1
- package/dist/template-designer.umd.js +26 -26
- package/dist/{wxapp-0ea3b482.mjs → wxapp-dab779e4.mjs} +62 -5
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { R as
|
|
1
|
+
import { R as l } from "./index-39d3f14c.mjs";
|
|
2
2
|
import "vue";
|
|
3
|
-
const
|
|
3
|
+
const t = {
|
|
4
4
|
text: {
|
|
5
5
|
// 组件默认宽度 单位mm
|
|
6
6
|
width: 20,
|
|
@@ -87,7 +87,7 @@ const a = {
|
|
|
87
87
|
prop: "rotation",
|
|
88
88
|
label: "旋转角度",
|
|
89
89
|
type: "select",
|
|
90
|
-
options:
|
|
90
|
+
options: l,
|
|
91
91
|
default: 0,
|
|
92
92
|
layout: "half"
|
|
93
93
|
}
|
|
@@ -124,7 +124,7 @@ const a = {
|
|
|
124
124
|
prop: "rotation",
|
|
125
125
|
label: "旋转角度",
|
|
126
126
|
type: "select",
|
|
127
|
-
options:
|
|
127
|
+
options: l,
|
|
128
128
|
default: 0,
|
|
129
129
|
layout: "half"
|
|
130
130
|
}
|
|
@@ -158,8 +158,65 @@ const a = {
|
|
|
158
158
|
default: "FB-1234567890"
|
|
159
159
|
}
|
|
160
160
|
]
|
|
161
|
+
},
|
|
162
|
+
image: {
|
|
163
|
+
width: 12,
|
|
164
|
+
height: 12,
|
|
165
|
+
rotation: 0,
|
|
166
|
+
lockAspectRatio: !1,
|
|
167
|
+
// 是否锁定宽高比
|
|
168
|
+
allowRotation: !1,
|
|
169
|
+
// 是否允许旋转
|
|
170
|
+
desc: "",
|
|
171
|
+
propertyPanel: [
|
|
172
|
+
{ prop: "ImageSrc", label: "图片地址", type: "file", accept: "image/*", default: "" }
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
line: {
|
|
176
|
+
width: 15,
|
|
177
|
+
height: 0.5,
|
|
178
|
+
// 等于默认线宽值
|
|
179
|
+
rotation: 0,
|
|
180
|
+
lockAspectRatio: !1,
|
|
181
|
+
// 是否锁定宽高比
|
|
182
|
+
allowRotation: !1,
|
|
183
|
+
// 是否允许旋转
|
|
184
|
+
// 端点坐标参数(自动计算,不显示在属性面板中)
|
|
185
|
+
x1: 0,
|
|
186
|
+
y1: 0,
|
|
187
|
+
x2: 15,
|
|
188
|
+
y2: 0,
|
|
189
|
+
desc: "",
|
|
190
|
+
propertyPanel: [
|
|
191
|
+
{
|
|
192
|
+
prop: "LineWidth",
|
|
193
|
+
type: "select",
|
|
194
|
+
label: "线宽",
|
|
195
|
+
default: "0.5",
|
|
196
|
+
options: [
|
|
197
|
+
{ label: "默认", value: "0.5" },
|
|
198
|
+
{ label: "1px", value: "1" },
|
|
199
|
+
{ label: "2px", value: "2" },
|
|
200
|
+
{ label: "3px", value: "3" },
|
|
201
|
+
{ label: "4px", value: "4" },
|
|
202
|
+
{ label: "5px", value: "5" },
|
|
203
|
+
{ label: "6px", value: "6" },
|
|
204
|
+
{ label: "7px", value: "7" },
|
|
205
|
+
{ label: "8px", value: "8" },
|
|
206
|
+
{ label: "9px", value: "9" },
|
|
207
|
+
{ label: "10px", value: "10" }
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
prop: "rotation",
|
|
212
|
+
label: "旋转角度",
|
|
213
|
+
type: "select",
|
|
214
|
+
options: l,
|
|
215
|
+
default: 0
|
|
216
|
+
}
|
|
217
|
+
]
|
|
161
218
|
}
|
|
162
219
|
};
|
|
163
220
|
export {
|
|
164
|
-
|
|
221
|
+
t as default
|
|
165
222
|
};
|