build-dxf 0.0.19-13 → 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 +57 -19
- 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
|
}
|
|
@@ -138,10 +142,6 @@
|
|
|
138
142
|
}
|
|
139
143
|
}
|
|
140
144
|
|
|
141
|
-
.m-\[0px_5px\] {
|
|
142
|
-
margin: 0 5px;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
145
|
.mt-\[5px\] {
|
|
146
146
|
margin-top: 5px;
|
|
147
147
|
}
|
|
@@ -200,6 +200,16 @@
|
|
|
200
200
|
height: 6px;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
.size-\[14px\] {
|
|
204
|
+
width: 14px;
|
|
205
|
+
height: 14px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.size-\[20px\] {
|
|
209
|
+
width: 20px;
|
|
210
|
+
height: 20px;
|
|
211
|
+
}
|
|
212
|
+
|
|
203
213
|
.h-\[10px\] {
|
|
204
214
|
height: 10px;
|
|
205
215
|
}
|
|
@@ -224,18 +234,10 @@
|
|
|
224
234
|
width: 10px;
|
|
225
235
|
}
|
|
226
236
|
|
|
227
|
-
.w-\[20px\] {
|
|
228
|
-
width: 20px;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
237
|
.w-\[100vw\] {
|
|
232
238
|
width: 100vw;
|
|
233
239
|
}
|
|
234
240
|
|
|
235
|
-
.w-\[110px\] {
|
|
236
|
-
width: 110px;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
241
|
.w-\[200px\] {
|
|
240
242
|
width: 200px;
|
|
241
243
|
}
|
|
@@ -244,8 +246,8 @@
|
|
|
244
246
|
width: 100%;
|
|
245
247
|
}
|
|
246
248
|
|
|
247
|
-
.
|
|
248
|
-
|
|
249
|
+
.max-w-\[260px\] {
|
|
250
|
+
max-width: 260px;
|
|
249
251
|
}
|
|
250
252
|
|
|
251
253
|
.min-w-\[140px\] {
|
|
@@ -256,6 +258,10 @@
|
|
|
256
258
|
min-width: 150px;
|
|
257
259
|
}
|
|
258
260
|
|
|
261
|
+
.flex-1 {
|
|
262
|
+
flex: 1;
|
|
263
|
+
}
|
|
264
|
+
|
|
259
265
|
.rotate-90 {
|
|
260
266
|
rotate: 90deg;
|
|
261
267
|
}
|
|
@@ -329,11 +335,20 @@
|
|
|
329
335
|
border-width: 1px;
|
|
330
336
|
}
|
|
331
337
|
|
|
338
|
+
.border-t-1 {
|
|
339
|
+
border-top-style: var(--tw-border-style);
|
|
340
|
+
border-top-width: 1px;
|
|
341
|
+
}
|
|
342
|
+
|
|
332
343
|
.border-b-1 {
|
|
333
344
|
border-bottom-style: var(--tw-border-style);
|
|
334
345
|
border-bottom-width: 1px;
|
|
335
346
|
}
|
|
336
347
|
|
|
348
|
+
.border-t-\[\#eee\] {
|
|
349
|
+
border-top-color: #eee;
|
|
350
|
+
}
|
|
351
|
+
|
|
337
352
|
.border-b-\[\#eee\] {
|
|
338
353
|
border-bottom-color: #eee;
|
|
339
354
|
}
|
|
@@ -446,6 +461,10 @@
|
|
|
446
461
|
color: #888;
|
|
447
462
|
}
|
|
448
463
|
|
|
464
|
+
.text-\[\#999\] {
|
|
465
|
+
color: #999;
|
|
466
|
+
}
|
|
467
|
+
|
|
449
468
|
.text-\[\#c9c9c9\] {
|
|
450
469
|
color: #c9c9c9;
|
|
451
470
|
}
|
|
@@ -459,6 +478,12 @@
|
|
|
459
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, );
|
|
460
479
|
}
|
|
461
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
|
+
|
|
462
487
|
.transition-all {
|
|
463
488
|
transition-property: all;
|
|
464
489
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -481,6 +506,14 @@
|
|
|
481
506
|
}
|
|
482
507
|
}
|
|
483
508
|
|
|
509
|
+
.active\:scale-\[0\.7\]:active {
|
|
510
|
+
scale: .7;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.active\:scale-\[0\.8\]:active {
|
|
514
|
+
scale: .8;
|
|
515
|
+
}
|
|
516
|
+
|
|
484
517
|
@property --tw-border-style {
|
|
485
518
|
syntax: "*";
|
|
486
519
|
inherits: false;
|
|
@@ -563,6 +596,11 @@
|
|
|
563
596
|
inherits: false
|
|
564
597
|
}
|
|
565
598
|
|
|
566
|
-
[data-v-
|
|
599
|
+
[data-v-c228f697] {
|
|
600
|
+
font-family: 宋体;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.editorTool .el-checkbox__label {
|
|
604
|
+
font-size: 10px !important;
|
|
567
605
|
font-family: 宋体;
|
|
568
606
|
}
|