build-dxf 0.0.19-14 → 0.0.19-15
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/package.json +1 -1
- package/src/index.css +65 -11
- package/src/index2.js +13 -2520
- package/src/index3.js +732 -485
- package/src/pages/Editor.vue.d.ts +3 -1
- package/src/selectLocalFile.js +2573 -91
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/CommandFlowComponent.d.ts +8 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/Default.d.ts +7 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawLine.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/DrawWindow.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/components/CommandFlow/PointDrag.d.ts +2 -1
- package/src/utils/DxfSystem/plugin/Editor/components/Editor.d.ts +5 -0
- package/src/components/Editor.vue.d.ts +0 -26
- package/src/pages/Editor02.vue.d.ts +0 -4
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -40,6 +40,14 @@
|
|
|
40
40
|
padding: 0;
|
|
41
41
|
list-style: none;
|
|
42
42
|
}
|
|
43
|
+
|
|
44
|
+
.v-enter-active, .v-leave-active {
|
|
45
|
+
transition: opacity .25s;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.v-enter-from, .v-leave-to {
|
|
49
|
+
opacity: 0;
|
|
50
|
+
}
|
|
43
51
|
}
|
|
44
52
|
|
|
45
53
|
@layer components, utilities;
|
|
@@ -76,10 +84,6 @@
|
|
|
76
84
|
top: calc(var(--spacing) * 0);
|
|
77
85
|
}
|
|
78
86
|
|
|
79
|
-
.top-\[50px\] {
|
|
80
|
-
top: 50px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
87
|
.bottom-\[10px\] {
|
|
84
88
|
bottom: 10px;
|
|
85
89
|
}
|
|
@@ -196,10 +200,24 @@
|
|
|
196
200
|
height: 6px;
|
|
197
201
|
}
|
|
198
202
|
|
|
203
|
+
.size-\[14px\] {
|
|
204
|
+
width: 14px;
|
|
205
|
+
height: 14px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.size-\[20px\] {
|
|
209
|
+
width: 20px;
|
|
210
|
+
height: 20px;
|
|
211
|
+
}
|
|
212
|
+
|
|
199
213
|
.h-\[10px\] {
|
|
200
214
|
height: 10px;
|
|
201
215
|
}
|
|
202
216
|
|
|
217
|
+
.h-\[20px\] {
|
|
218
|
+
height: 20px;
|
|
219
|
+
}
|
|
220
|
+
|
|
203
221
|
.h-\[100vh\] {
|
|
204
222
|
height: 100vh;
|
|
205
223
|
}
|
|
@@ -220,10 +238,6 @@
|
|
|
220
238
|
width: 100vw;
|
|
221
239
|
}
|
|
222
240
|
|
|
223
|
-
.w-\[110px\] {
|
|
224
|
-
width: 110px;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
241
|
.w-\[200px\] {
|
|
228
242
|
width: 200px;
|
|
229
243
|
}
|
|
@@ -232,8 +246,8 @@
|
|
|
232
246
|
width: 100%;
|
|
233
247
|
}
|
|
234
248
|
|
|
235
|
-
.
|
|
236
|
-
|
|
249
|
+
.max-w-\[260px\] {
|
|
250
|
+
max-width: 260px;
|
|
237
251
|
}
|
|
238
252
|
|
|
239
253
|
.min-w-\[140px\] {
|
|
@@ -244,6 +258,10 @@
|
|
|
244
258
|
min-width: 150px;
|
|
245
259
|
}
|
|
246
260
|
|
|
261
|
+
.flex-1 {
|
|
262
|
+
flex: 1;
|
|
263
|
+
}
|
|
264
|
+
|
|
247
265
|
.rotate-90 {
|
|
248
266
|
rotate: 90deg;
|
|
249
267
|
}
|
|
@@ -317,11 +335,20 @@
|
|
|
317
335
|
border-width: 1px;
|
|
318
336
|
}
|
|
319
337
|
|
|
338
|
+
.border-t-1 {
|
|
339
|
+
border-top-style: var(--tw-border-style);
|
|
340
|
+
border-top-width: 1px;
|
|
341
|
+
}
|
|
342
|
+
|
|
320
343
|
.border-b-1 {
|
|
321
344
|
border-bottom-style: var(--tw-border-style);
|
|
322
345
|
border-bottom-width: 1px;
|
|
323
346
|
}
|
|
324
347
|
|
|
348
|
+
.border-t-\[\#eee\] {
|
|
349
|
+
border-top-color: #eee;
|
|
350
|
+
}
|
|
351
|
+
|
|
325
352
|
.border-b-\[\#eee\] {
|
|
326
353
|
border-bottom-color: #eee;
|
|
327
354
|
}
|
|
@@ -388,6 +415,10 @@
|
|
|
388
415
|
padding: 5px;
|
|
389
416
|
}
|
|
390
417
|
|
|
418
|
+
.p-\[5px_0px\] {
|
|
419
|
+
padding: 5px 0;
|
|
420
|
+
}
|
|
421
|
+
|
|
391
422
|
.p-\[5px_20px\] {
|
|
392
423
|
padding: 5px 20px;
|
|
393
424
|
}
|
|
@@ -430,6 +461,10 @@
|
|
|
430
461
|
color: #888;
|
|
431
462
|
}
|
|
432
463
|
|
|
464
|
+
.text-\[\#999\] {
|
|
465
|
+
color: #999;
|
|
466
|
+
}
|
|
467
|
+
|
|
433
468
|
.text-\[\#c9c9c9\] {
|
|
434
469
|
color: #c9c9c9;
|
|
435
470
|
}
|
|
@@ -443,6 +478,12 @@
|
|
|
443
478
|
filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
|
|
444
479
|
}
|
|
445
480
|
|
|
481
|
+
.transition-\[border-radius\] {
|
|
482
|
+
transition-property: border-radius;
|
|
483
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
484
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
485
|
+
}
|
|
486
|
+
|
|
446
487
|
.transition-all {
|
|
447
488
|
transition-property: all;
|
|
448
489
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -465,6 +506,14 @@
|
|
|
465
506
|
}
|
|
466
507
|
}
|
|
467
508
|
|
|
509
|
+
.active\:scale-\[0\.7\]:active {
|
|
510
|
+
scale: .7;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.active\:scale-\[0\.8\]:active {
|
|
514
|
+
scale: .8;
|
|
515
|
+
}
|
|
516
|
+
|
|
468
517
|
@property --tw-border-style {
|
|
469
518
|
syntax: "*";
|
|
470
519
|
inherits: false;
|
|
@@ -547,6 +596,11 @@
|
|
|
547
596
|
inherits: false
|
|
548
597
|
}
|
|
549
598
|
|
|
550
|
-
[data-v-
|
|
599
|
+
[data-v-c228f697] {
|
|
600
|
+
font-family: 宋体;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.editorTool .el-checkbox__label {
|
|
604
|
+
font-size: 10px !important;
|
|
551
605
|
font-family: 宋体;
|
|
552
606
|
}
|