build-dxf 0.0.19-11 → 0.0.19-12
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 +293 -297
- package/src/index2.js +13 -2520
- package/src/index3.js +118 -5
- package/src/selectLocalFile.js +2575 -92
- package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool.vue.d.ts +1 -0
package/src/index.css
CHANGED
|
@@ -33,8 +33,6 @@
|
|
|
33
33
|
--radius-lg: .5rem;
|
|
34
34
|
--default-transition-duration: .15s;
|
|
35
35
|
--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
|
|
36
|
-
--default-font-family: var(--font-sans);
|
|
37
|
-
--default-mono-font-family: var(--font-mono);
|
|
38
36
|
}
|
|
39
37
|
}
|
|
40
38
|
|
|
@@ -46,400 +44,398 @@
|
|
|
46
44
|
}
|
|
47
45
|
}
|
|
48
46
|
|
|
49
|
-
@layer components;
|
|
47
|
+
@layer components, utilities;
|
|
50
48
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
49
|
+
.pointer-events-auto {
|
|
50
|
+
pointer-events: auto;
|
|
51
|
+
}
|
|
55
52
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
53
|
+
.pointer-events-none {
|
|
54
|
+
pointer-events: none;
|
|
55
|
+
}
|
|
59
56
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
57
|
+
.visible {
|
|
58
|
+
visibility: visible;
|
|
59
|
+
}
|
|
63
60
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
61
|
+
.absolute {
|
|
62
|
+
position: absolute;
|
|
63
|
+
}
|
|
67
64
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
65
|
+
.fixed {
|
|
66
|
+
position: fixed;
|
|
67
|
+
}
|
|
71
68
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
.relative {
|
|
70
|
+
position: relative;
|
|
71
|
+
}
|
|
75
72
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
73
|
+
.static {
|
|
74
|
+
position: static;
|
|
75
|
+
}
|
|
79
76
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
77
|
+
.top-0 {
|
|
78
|
+
top: calc(var(--spacing) * 0);
|
|
79
|
+
}
|
|
83
80
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
81
|
+
.top-\[50px\] {
|
|
82
|
+
top: 50px;
|
|
83
|
+
}
|
|
87
84
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
85
|
+
.bottom-\[10px\] {
|
|
86
|
+
bottom: 10px;
|
|
87
|
+
}
|
|
91
88
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
89
|
+
.left-0 {
|
|
90
|
+
left: calc(var(--spacing) * 0);
|
|
91
|
+
}
|
|
95
92
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
93
|
+
.left-\[10px\] {
|
|
94
|
+
left: 10px;
|
|
95
|
+
}
|
|
99
96
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
.z-\[1000\] {
|
|
98
|
+
z-index: 1000;
|
|
99
|
+
}
|
|
103
100
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
101
|
+
.z-\[10000\] {
|
|
102
|
+
z-index: 10000;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.container {
|
|
106
|
+
width: 100%;
|
|
107
|
+
}
|
|
107
108
|
|
|
109
|
+
@media (min-width: 40rem) {
|
|
108
110
|
.container {
|
|
109
|
-
width:
|
|
111
|
+
max-width: 40rem;
|
|
110
112
|
}
|
|
113
|
+
}
|
|
111
114
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
115
|
+
@media (min-width: 48rem) {
|
|
116
|
+
.container {
|
|
117
|
+
max-width: 48rem;
|
|
116
118
|
}
|
|
119
|
+
}
|
|
117
120
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
121
|
+
@media (min-width: 64rem) {
|
|
122
|
+
.container {
|
|
123
|
+
max-width: 64rem;
|
|
122
124
|
}
|
|
125
|
+
}
|
|
123
126
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
127
|
+
@media (min-width: 80rem) {
|
|
128
|
+
.container {
|
|
129
|
+
max-width: 80rem;
|
|
128
130
|
}
|
|
131
|
+
}
|
|
129
132
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}
|
|
133
|
+
@media (min-width: 96rem) {
|
|
134
|
+
.container {
|
|
135
|
+
max-width: 96rem;
|
|
134
136
|
}
|
|
137
|
+
}
|
|
135
138
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
140
|
-
}
|
|
139
|
+
.m-\[0px_5px\] {
|
|
140
|
+
margin: 0 5px;
|
|
141
|
+
}
|
|
141
142
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
.mt-\[5px\] {
|
|
144
|
+
margin-top: 5px;
|
|
145
|
+
}
|
|
145
146
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
.mt-\[10px\] {
|
|
148
|
+
margin-top: 10px;
|
|
149
|
+
}
|
|
149
150
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
151
|
+
.mr-\[10px\] {
|
|
152
|
+
margin-right: 10px;
|
|
153
|
+
}
|
|
153
154
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
.ml-\[1\.4em\] {
|
|
156
|
+
margin-left: 1.4em;
|
|
157
|
+
}
|
|
157
158
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
159
|
+
.ml-\[10px\] {
|
|
160
|
+
margin-left: 10px;
|
|
161
|
+
}
|
|
161
162
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
.box-border {
|
|
164
|
+
box-sizing: border-box;
|
|
165
|
+
}
|
|
165
166
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
.flex {
|
|
168
|
+
display: flex;
|
|
169
|
+
}
|
|
169
170
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
.grid {
|
|
172
|
+
display: grid;
|
|
173
|
+
}
|
|
173
174
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
.hidden {
|
|
176
|
+
display: none;
|
|
177
|
+
}
|
|
177
178
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
.inline-block {
|
|
180
|
+
display: inline-block;
|
|
181
|
+
}
|
|
181
182
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
.table {
|
|
184
|
+
display: table;
|
|
185
|
+
}
|
|
185
186
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
.size-\[1\.4em\] {
|
|
188
|
+
width: 1.4em;
|
|
189
|
+
height: 1.4em;
|
|
190
|
+
}
|
|
189
191
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
192
|
+
.size-\[6px\] {
|
|
193
|
+
width: 6px;
|
|
194
|
+
height: 6px;
|
|
195
|
+
}
|
|
194
196
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
}
|
|
197
|
+
.h-\[20px\] {
|
|
198
|
+
height: 20px;
|
|
199
|
+
}
|
|
199
200
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
.h-\[100vh\] {
|
|
202
|
+
height: 100vh;
|
|
203
|
+
}
|
|
203
204
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
205
|
+
.h-fit {
|
|
206
|
+
height: fit-content;
|
|
207
|
+
}
|
|
207
208
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
209
|
+
.h-full {
|
|
210
|
+
height: 100%;
|
|
211
|
+
}
|
|
211
212
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
213
|
+
.w-\[20px\] {
|
|
214
|
+
width: 20px;
|
|
215
|
+
}
|
|
215
216
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
217
|
+
.w-\[100vw\] {
|
|
218
|
+
width: 100vw;
|
|
219
|
+
}
|
|
219
220
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
.w-\[110px\] {
|
|
222
|
+
width: 110px;
|
|
223
|
+
}
|
|
223
224
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
225
|
+
.w-\[200px\] {
|
|
226
|
+
width: 200px;
|
|
227
|
+
}
|
|
227
228
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
.w-full {
|
|
230
|
+
width: 100%;
|
|
231
|
+
}
|
|
231
232
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
.min-w-\[100px\] {
|
|
234
|
+
min-width: 100px;
|
|
235
|
+
}
|
|
235
236
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
237
|
+
.min-w-\[140px\] {
|
|
238
|
+
min-width: 140px;
|
|
239
|
+
}
|
|
239
240
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
241
|
+
.min-w-\[150px\] {
|
|
242
|
+
min-width: 150px;
|
|
243
|
+
}
|
|
243
244
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
245
|
+
.cursor-pointer {
|
|
246
|
+
cursor: pointer;
|
|
247
|
+
}
|
|
247
248
|
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
249
|
+
.resize {
|
|
250
|
+
resize: both;
|
|
251
|
+
}
|
|
251
252
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
253
|
+
.flex-col {
|
|
254
|
+
flex-direction: column;
|
|
255
|
+
}
|
|
255
256
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
.flex-row {
|
|
258
|
+
flex-direction: row;
|
|
259
|
+
}
|
|
259
260
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
261
|
+
.items-center {
|
|
262
|
+
align-items: center;
|
|
263
|
+
}
|
|
263
264
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
265
|
+
.justify-between {
|
|
266
|
+
justify-content: space-between;
|
|
267
|
+
}
|
|
267
268
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
269
|
+
.justify-center {
|
|
270
|
+
justify-content: center;
|
|
271
|
+
}
|
|
271
272
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
273
|
+
.gap-\[5px\] {
|
|
274
|
+
gap: 5px;
|
|
275
|
+
}
|
|
275
276
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
277
|
+
.gap-\[10px\] {
|
|
278
|
+
gap: 10px;
|
|
279
|
+
}
|
|
279
280
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
281
|
+
.overflow-hidden {
|
|
282
|
+
overflow: hidden;
|
|
283
|
+
}
|
|
283
284
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
285
|
+
.rounded-\[6px\] {
|
|
286
|
+
border-radius: 6px;
|
|
287
|
+
}
|
|
287
288
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
289
|
+
.rounded-\[8px\] {
|
|
290
|
+
border-radius: 8px;
|
|
291
|
+
}
|
|
291
292
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
293
|
+
.rounded-\[10px\] {
|
|
294
|
+
border-radius: 10px;
|
|
295
|
+
}
|
|
295
296
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
.rounded-\[50px\] {
|
|
298
|
+
border-radius: 50px;
|
|
299
|
+
}
|
|
299
300
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
301
|
+
.rounded-lg {
|
|
302
|
+
border-radius: var(--radius-lg);
|
|
303
|
+
}
|
|
303
304
|
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
305
|
+
.border {
|
|
306
|
+
border-style: var(--tw-border-style);
|
|
307
|
+
border-width: 1px;
|
|
308
|
+
}
|
|
307
309
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
310
|
+
.border-b-1 {
|
|
311
|
+
border-bottom-style: var(--tw-border-style);
|
|
312
|
+
border-bottom-width: 1px;
|
|
313
|
+
}
|
|
312
314
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}
|
|
315
|
+
.border-b-\[\#eee\] {
|
|
316
|
+
border-bottom-color: #eee;
|
|
317
|
+
}
|
|
317
318
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
319
|
+
.border-b-\[rgba\(255\,255\,255\,0\.1\)\] {
|
|
320
|
+
border-bottom-color: #ffffff1a;
|
|
321
|
+
}
|
|
321
322
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
.bg-\[\#f0f0f0\] {
|
|
324
|
+
background-color: #f0f0f0;
|
|
325
|
+
}
|
|
325
326
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
327
|
+
.bg-\[rgba\(255\,255\,255\,1\)\] {
|
|
328
|
+
background-color: #fff;
|
|
329
|
+
}
|
|
329
330
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
331
|
+
.bg-\[var\(--el-color-primary\)\] {
|
|
332
|
+
background-color: var(--el-color-primary);
|
|
333
|
+
}
|
|
333
334
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
335
|
+
.bg-black {
|
|
336
|
+
background-color: var(--color-black);
|
|
337
|
+
}
|
|
337
338
|
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
339
|
+
.bg-black\/15 {
|
|
340
|
+
background-color: #00000026;
|
|
341
|
+
}
|
|
341
342
|
|
|
343
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
342
344
|
.bg-black\/15 {
|
|
343
|
-
background-color:
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
347
|
-
.bg-black\/15 {
|
|
348
|
-
background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
|
|
349
|
-
}
|
|
345
|
+
background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
|
|
350
346
|
}
|
|
347
|
+
}
|
|
351
348
|
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
349
|
+
.bg-white {
|
|
350
|
+
background-color: var(--color-white);
|
|
351
|
+
}
|
|
355
352
|
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
353
|
+
.p-\[0px_10px\] {
|
|
354
|
+
padding: 0 10px;
|
|
355
|
+
}
|
|
359
356
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
357
|
+
.p-\[2px_0px\] {
|
|
358
|
+
padding: 2px 0;
|
|
359
|
+
}
|
|
363
360
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
361
|
+
.p-\[5px\] {
|
|
362
|
+
padding: 5px;
|
|
363
|
+
}
|
|
367
364
|
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
365
|
+
.p-\[5px_0px\] {
|
|
366
|
+
padding: 5px 0;
|
|
367
|
+
}
|
|
371
368
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
369
|
+
.p-\[5px_20px\] {
|
|
370
|
+
padding: 5px 20px;
|
|
371
|
+
}
|
|
375
372
|
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
373
|
+
.p-\[10px\] {
|
|
374
|
+
padding: 10px;
|
|
375
|
+
}
|
|
379
376
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
377
|
+
.text-right {
|
|
378
|
+
text-align: right;
|
|
379
|
+
}
|
|
383
380
|
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
381
|
+
.text-\[10px\] {
|
|
382
|
+
font-size: 10px;
|
|
383
|
+
}
|
|
387
384
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
385
|
+
.text-\[14px\] {
|
|
386
|
+
font-size: 14px;
|
|
387
|
+
}
|
|
391
388
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
389
|
+
.leading-\[1\.4em\] {
|
|
390
|
+
--tw-leading: 1.4em;
|
|
391
|
+
line-height: 1.4em;
|
|
392
|
+
}
|
|
396
393
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
394
|
+
.font-bold {
|
|
395
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
396
|
+
font-weight: var(--font-weight-bold);
|
|
397
|
+
}
|
|
401
398
|
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
399
|
+
.text-\[\#333\] {
|
|
400
|
+
color: #333;
|
|
401
|
+
}
|
|
405
402
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
403
|
+
.text-\[\#888\] {
|
|
404
|
+
color: #888;
|
|
405
|
+
}
|
|
409
406
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
407
|
+
.text-\[\#c9c9c9\] {
|
|
408
|
+
color: #c9c9c9;
|
|
409
|
+
}
|
|
413
410
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
411
|
+
.text-\[\#fff\] {
|
|
412
|
+
color: #fff;
|
|
413
|
+
}
|
|
417
414
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
415
|
+
.blur {
|
|
416
|
+
--tw-blur: blur(8px);
|
|
417
|
+
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, );
|
|
418
|
+
}
|
|
422
419
|
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
420
|
+
.transition-all {
|
|
421
|
+
transition-property: all;
|
|
422
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
423
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
424
|
+
}
|
|
428
425
|
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
426
|
+
.select-none {
|
|
427
|
+
-webkit-user-select: none;
|
|
428
|
+
user-select: none;
|
|
429
|
+
}
|
|
433
430
|
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
431
|
+
.last-of-type\:border-b-0:last-of-type {
|
|
432
|
+
border-bottom-style: var(--tw-border-style);
|
|
433
|
+
border-bottom-width: 0;
|
|
434
|
+
}
|
|
438
435
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
}
|
|
436
|
+
@media (hover: hover) {
|
|
437
|
+
.hover\:bg-\[\#ddd\]:hover {
|
|
438
|
+
background-color: #ddd;
|
|
443
439
|
}
|
|
444
440
|
}
|
|
445
441
|
|