build-dxf 0.0.19-12 → 0.0.19-14
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 +44 -14
- package/src/index2.js +2520 -13
- package/src/index3.js +132 -105
- package/src/selectLocalFile.js +92 -2575
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -24,8 +24,6 @@
|
|
|
24
24
|
|
|
25
25
|
@layer theme {
|
|
26
26
|
:root, :host {
|
|
27
|
-
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
28
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
29
27
|
--color-black: #000;
|
|
30
28
|
--color-white: #fff;
|
|
31
29
|
--spacing: .25rem;
|
|
@@ -94,6 +92,10 @@
|
|
|
94
92
|
left: 10px;
|
|
95
93
|
}
|
|
96
94
|
|
|
95
|
+
.z-\[11\] {
|
|
96
|
+
z-index: 11;
|
|
97
|
+
}
|
|
98
|
+
|
|
97
99
|
.z-\[1000\] {
|
|
98
100
|
z-index: 1000;
|
|
99
101
|
}
|
|
@@ -136,10 +138,6 @@
|
|
|
136
138
|
}
|
|
137
139
|
}
|
|
138
140
|
|
|
139
|
-
.m-\[0px_5px\] {
|
|
140
|
-
margin: 0 5px;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
141
|
.mt-\[5px\] {
|
|
144
142
|
margin-top: 5px;
|
|
145
143
|
}
|
|
@@ -164,6 +162,10 @@
|
|
|
164
162
|
box-sizing: border-box;
|
|
165
163
|
}
|
|
166
164
|
|
|
165
|
+
.block {
|
|
166
|
+
display: block;
|
|
167
|
+
}
|
|
168
|
+
|
|
167
169
|
.flex {
|
|
168
170
|
display: flex;
|
|
169
171
|
}
|
|
@@ -194,8 +196,8 @@
|
|
|
194
196
|
height: 6px;
|
|
195
197
|
}
|
|
196
198
|
|
|
197
|
-
.h-\[
|
|
198
|
-
height:
|
|
199
|
+
.h-\[10px\] {
|
|
200
|
+
height: 10px;
|
|
199
201
|
}
|
|
200
202
|
|
|
201
203
|
.h-\[100vh\] {
|
|
@@ -210,8 +212,8 @@
|
|
|
210
212
|
height: 100%;
|
|
211
213
|
}
|
|
212
214
|
|
|
213
|
-
.w-\[
|
|
214
|
-
width:
|
|
215
|
+
.w-\[10px\] {
|
|
216
|
+
width: 10px;
|
|
215
217
|
}
|
|
216
218
|
|
|
217
219
|
.w-\[100vw\] {
|
|
@@ -242,6 +244,10 @@
|
|
|
242
244
|
min-width: 150px;
|
|
243
245
|
}
|
|
244
246
|
|
|
247
|
+
.rotate-90 {
|
|
248
|
+
rotate: 90deg;
|
|
249
|
+
}
|
|
250
|
+
|
|
245
251
|
.cursor-pointer {
|
|
246
252
|
cursor: pointer;
|
|
247
253
|
}
|
|
@@ -282,6 +288,10 @@
|
|
|
282
288
|
overflow: hidden;
|
|
283
289
|
}
|
|
284
290
|
|
|
291
|
+
.rounded-\[2px\] {
|
|
292
|
+
border-radius: 2px;
|
|
293
|
+
}
|
|
294
|
+
|
|
285
295
|
.rounded-\[6px\] {
|
|
286
296
|
border-radius: 6px;
|
|
287
297
|
}
|
|
@@ -320,6 +330,10 @@
|
|
|
320
330
|
border-bottom-color: #ffffff1a;
|
|
321
331
|
}
|
|
322
332
|
|
|
333
|
+
.\!bg-\[\#409eff\] {
|
|
334
|
+
background-color: #409eff !important;
|
|
335
|
+
}
|
|
336
|
+
|
|
323
337
|
.bg-\[\#f0f0f0\] {
|
|
324
338
|
background-color: #f0f0f0;
|
|
325
339
|
}
|
|
@@ -350,20 +364,28 @@
|
|
|
350
364
|
background-color: var(--color-white);
|
|
351
365
|
}
|
|
352
366
|
|
|
367
|
+
.p-\[0px_5px\] {
|
|
368
|
+
padding: 0 5px;
|
|
369
|
+
}
|
|
370
|
+
|
|
353
371
|
.p-\[0px_10px\] {
|
|
354
372
|
padding: 0 10px;
|
|
355
373
|
}
|
|
356
374
|
|
|
375
|
+
.p-\[2px\] {
|
|
376
|
+
padding: 2px;
|
|
377
|
+
}
|
|
378
|
+
|
|
357
379
|
.p-\[2px_0px\] {
|
|
358
380
|
padding: 2px 0;
|
|
359
381
|
}
|
|
360
382
|
|
|
361
|
-
.p-\[
|
|
362
|
-
padding: 5px;
|
|
383
|
+
.p-\[2px_5px\] {
|
|
384
|
+
padding: 2px 5px;
|
|
363
385
|
}
|
|
364
386
|
|
|
365
|
-
.p-\[
|
|
366
|
-
padding: 5px
|
|
387
|
+
.p-\[5px\] {
|
|
388
|
+
padding: 5px;
|
|
367
389
|
}
|
|
368
390
|
|
|
369
391
|
.p-\[5px_20px\] {
|
|
@@ -382,6 +404,10 @@
|
|
|
382
404
|
font-size: 10px;
|
|
383
405
|
}
|
|
384
406
|
|
|
407
|
+
.text-\[12px\] {
|
|
408
|
+
font-size: 12px;
|
|
409
|
+
}
|
|
410
|
+
|
|
385
411
|
.text-\[14px\] {
|
|
386
412
|
font-size: 14px;
|
|
387
413
|
}
|
|
@@ -520,3 +546,7 @@
|
|
|
520
546
|
syntax: "*";
|
|
521
547
|
inherits: false
|
|
522
548
|
}
|
|
549
|
+
|
|
550
|
+
[data-v-f1fa020d] {
|
|
551
|
+
font-family: 宋体;
|
|
552
|
+
}
|