build-dxf 0.0.19-12 → 0.0.19-13
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 +48 -2
- 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
|
}
|
|
@@ -164,6 +166,10 @@
|
|
|
164
166
|
box-sizing: border-box;
|
|
165
167
|
}
|
|
166
168
|
|
|
169
|
+
.block {
|
|
170
|
+
display: block;
|
|
171
|
+
}
|
|
172
|
+
|
|
167
173
|
.flex {
|
|
168
174
|
display: flex;
|
|
169
175
|
}
|
|
@@ -194,6 +200,10 @@
|
|
|
194
200
|
height: 6px;
|
|
195
201
|
}
|
|
196
202
|
|
|
203
|
+
.h-\[10px\] {
|
|
204
|
+
height: 10px;
|
|
205
|
+
}
|
|
206
|
+
|
|
197
207
|
.h-\[20px\] {
|
|
198
208
|
height: 20px;
|
|
199
209
|
}
|
|
@@ -210,6 +220,10 @@
|
|
|
210
220
|
height: 100%;
|
|
211
221
|
}
|
|
212
222
|
|
|
223
|
+
.w-\[10px\] {
|
|
224
|
+
width: 10px;
|
|
225
|
+
}
|
|
226
|
+
|
|
213
227
|
.w-\[20px\] {
|
|
214
228
|
width: 20px;
|
|
215
229
|
}
|
|
@@ -242,6 +256,10 @@
|
|
|
242
256
|
min-width: 150px;
|
|
243
257
|
}
|
|
244
258
|
|
|
259
|
+
.rotate-90 {
|
|
260
|
+
rotate: 90deg;
|
|
261
|
+
}
|
|
262
|
+
|
|
245
263
|
.cursor-pointer {
|
|
246
264
|
cursor: pointer;
|
|
247
265
|
}
|
|
@@ -282,6 +300,10 @@
|
|
|
282
300
|
overflow: hidden;
|
|
283
301
|
}
|
|
284
302
|
|
|
303
|
+
.rounded-\[2px\] {
|
|
304
|
+
border-radius: 2px;
|
|
305
|
+
}
|
|
306
|
+
|
|
285
307
|
.rounded-\[6px\] {
|
|
286
308
|
border-radius: 6px;
|
|
287
309
|
}
|
|
@@ -320,6 +342,10 @@
|
|
|
320
342
|
border-bottom-color: #ffffff1a;
|
|
321
343
|
}
|
|
322
344
|
|
|
345
|
+
.\!bg-\[\#409eff\] {
|
|
346
|
+
background-color: #409eff !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
323
349
|
.bg-\[\#f0f0f0\] {
|
|
324
350
|
background-color: #f0f0f0;
|
|
325
351
|
}
|
|
@@ -350,14 +376,26 @@
|
|
|
350
376
|
background-color: var(--color-white);
|
|
351
377
|
}
|
|
352
378
|
|
|
379
|
+
.p-\[0px_5px\] {
|
|
380
|
+
padding: 0 5px;
|
|
381
|
+
}
|
|
382
|
+
|
|
353
383
|
.p-\[0px_10px\] {
|
|
354
384
|
padding: 0 10px;
|
|
355
385
|
}
|
|
356
386
|
|
|
387
|
+
.p-\[2px\] {
|
|
388
|
+
padding: 2px;
|
|
389
|
+
}
|
|
390
|
+
|
|
357
391
|
.p-\[2px_0px\] {
|
|
358
392
|
padding: 2px 0;
|
|
359
393
|
}
|
|
360
394
|
|
|
395
|
+
.p-\[2px_5px\] {
|
|
396
|
+
padding: 2px 5px;
|
|
397
|
+
}
|
|
398
|
+
|
|
361
399
|
.p-\[5px\] {
|
|
362
400
|
padding: 5px;
|
|
363
401
|
}
|
|
@@ -382,6 +420,10 @@
|
|
|
382
420
|
font-size: 10px;
|
|
383
421
|
}
|
|
384
422
|
|
|
423
|
+
.text-\[12px\] {
|
|
424
|
+
font-size: 12px;
|
|
425
|
+
}
|
|
426
|
+
|
|
385
427
|
.text-\[14px\] {
|
|
386
428
|
font-size: 14px;
|
|
387
429
|
}
|
|
@@ -520,3 +562,7 @@
|
|
|
520
562
|
syntax: "*";
|
|
521
563
|
inherits: false
|
|
522
564
|
}
|
|
565
|
+
|
|
566
|
+
[data-v-3634b508] {
|
|
567
|
+
font-family: 宋体;
|
|
568
|
+
}
|