build-dxf 0.0.19-10 → 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 -536
- package/src/selectLocalFile.js +2 -1
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -33,652 +33,409 @@
|
|
|
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
|
|
|
41
39
|
@layer base {
|
|
42
|
-
|
|
43
|
-
box-sizing: border-box;
|
|
44
|
-
border: 0 solid;
|
|
40
|
+
* {
|
|
45
41
|
margin: 0;
|
|
46
42
|
padding: 0;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
::file-selector-button {
|
|
50
|
-
box-sizing: border-box;
|
|
51
|
-
border: 0 solid;
|
|
52
|
-
margin: 0;
|
|
53
|
-
padding: 0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
html, :host {
|
|
57
|
-
-webkit-text-size-adjust: 100%;
|
|
58
|
-
tab-size: 4;
|
|
59
|
-
line-height: 1.5;
|
|
60
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
61
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
62
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
63
|
-
-webkit-tap-highlight-color: transparent;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
hr {
|
|
67
|
-
height: 0;
|
|
68
|
-
color: inherit;
|
|
69
|
-
border-top-width: 1px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
abbr:where([title]) {
|
|
73
|
-
-webkit-text-decoration: underline dotted;
|
|
74
|
-
text-decoration: underline dotted;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
a {
|
|
78
|
-
color: inherit;
|
|
79
|
-
-webkit-text-decoration: inherit;
|
|
80
|
-
-webkit-text-decoration: inherit;
|
|
81
|
-
-webkit-text-decoration: inherit;
|
|
82
|
-
text-decoration: inherit;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
b, strong {
|
|
86
|
-
font-weight: bolder;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
code, kbd, samp, pre {
|
|
90
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
91
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
92
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
93
|
-
font-size: 1em;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
small {
|
|
97
|
-
font-size: 80%;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
sub, sup {
|
|
101
|
-
vertical-align: baseline;
|
|
102
|
-
font-size: 75%;
|
|
103
|
-
line-height: 0;
|
|
104
|
-
position: relative;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
sub {
|
|
108
|
-
bottom: -.25em;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
sup {
|
|
112
|
-
top: -.5em;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
table {
|
|
116
|
-
text-indent: 0;
|
|
117
|
-
border-color: inherit;
|
|
118
|
-
border-collapse: collapse;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
:-moz-focusring {
|
|
122
|
-
outline: auto;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
progress {
|
|
126
|
-
vertical-align: baseline;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
summary {
|
|
130
|
-
display: list-item;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
ol, ul, menu {
|
|
134
43
|
list-style: none;
|
|
135
44
|
}
|
|
45
|
+
}
|
|
136
46
|
|
|
137
|
-
|
|
138
|
-
vertical-align: middle;
|
|
139
|
-
display: block;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
img, video {
|
|
143
|
-
max-width: 100%;
|
|
144
|
-
height: auto;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
button, input, select, optgroup, textarea {
|
|
148
|
-
font: inherit;
|
|
149
|
-
font-feature-settings: inherit;
|
|
150
|
-
font-variation-settings: inherit;
|
|
151
|
-
letter-spacing: inherit;
|
|
152
|
-
color: inherit;
|
|
153
|
-
opacity: 1;
|
|
154
|
-
background-color: #0000;
|
|
155
|
-
border-radius: 0;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
::file-selector-button {
|
|
159
|
-
font: inherit;
|
|
160
|
-
font-feature-settings: inherit;
|
|
161
|
-
font-variation-settings: inherit;
|
|
162
|
-
letter-spacing: inherit;
|
|
163
|
-
color: inherit;
|
|
164
|
-
opacity: 1;
|
|
165
|
-
background-color: #0000;
|
|
166
|
-
border-radius: 0;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
170
|
-
font-weight: bolder;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
174
|
-
padding-inline-start: 20px;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
::file-selector-button {
|
|
178
|
-
margin-inline-end: 4px;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
::placeholder {
|
|
182
|
-
opacity: 1;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
@supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
|
|
186
|
-
::placeholder {
|
|
187
|
-
color: currentColor;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
191
|
-
::placeholder {
|
|
192
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
textarea {
|
|
198
|
-
resize: vertical;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
::-webkit-search-decoration {
|
|
202
|
-
-webkit-appearance: none;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
::-webkit-date-and-time-value {
|
|
206
|
-
min-height: 1lh;
|
|
207
|
-
text-align: inherit;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
::-webkit-datetime-edit {
|
|
211
|
-
display: inline-flex;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
215
|
-
padding: 0;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
::-webkit-datetime-edit {
|
|
219
|
-
padding-block: 0;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
::-webkit-datetime-edit-year-field {
|
|
223
|
-
padding-block: 0;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
::-webkit-datetime-edit-month-field {
|
|
227
|
-
padding-block: 0;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
::-webkit-datetime-edit-day-field {
|
|
231
|
-
padding-block: 0;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
::-webkit-datetime-edit-hour-field {
|
|
235
|
-
padding-block: 0;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
::-webkit-datetime-edit-minute-field {
|
|
239
|
-
padding-block: 0;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
::-webkit-datetime-edit-second-field {
|
|
243
|
-
padding-block: 0;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
::-webkit-datetime-edit-millisecond-field {
|
|
247
|
-
padding-block: 0;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
251
|
-
padding-block: 0;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
::-webkit-calendar-picker-indicator {
|
|
255
|
-
line-height: 1;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
:-moz-ui-invalid {
|
|
259
|
-
box-shadow: none;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
263
|
-
appearance: button;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
::file-selector-button {
|
|
267
|
-
appearance: button;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
::-webkit-inner-spin-button {
|
|
271
|
-
height: auto;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
::-webkit-outer-spin-button {
|
|
275
|
-
height: auto;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
279
|
-
display: none !important;
|
|
280
|
-
}
|
|
47
|
+
@layer components, utilities;
|
|
281
48
|
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
font-weight: initial;
|
|
285
|
-
}
|
|
49
|
+
.pointer-events-auto {
|
|
50
|
+
pointer-events: auto;
|
|
286
51
|
}
|
|
287
52
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
.pointer-events-auto {
|
|
292
|
-
pointer-events: auto;
|
|
293
|
-
}
|
|
53
|
+
.pointer-events-none {
|
|
54
|
+
pointer-events: none;
|
|
55
|
+
}
|
|
294
56
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
57
|
+
.visible {
|
|
58
|
+
visibility: visible;
|
|
59
|
+
}
|
|
298
60
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
61
|
+
.absolute {
|
|
62
|
+
position: absolute;
|
|
63
|
+
}
|
|
302
64
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
65
|
+
.fixed {
|
|
66
|
+
position: fixed;
|
|
67
|
+
}
|
|
306
68
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
69
|
+
.relative {
|
|
70
|
+
position: relative;
|
|
71
|
+
}
|
|
310
72
|
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
73
|
+
.static {
|
|
74
|
+
position: static;
|
|
75
|
+
}
|
|
314
76
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
77
|
+
.top-0 {
|
|
78
|
+
top: calc(var(--spacing) * 0);
|
|
79
|
+
}
|
|
318
80
|
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
81
|
+
.top-\[50px\] {
|
|
82
|
+
top: 50px;
|
|
83
|
+
}
|
|
322
84
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
85
|
+
.bottom-\[10px\] {
|
|
86
|
+
bottom: 10px;
|
|
87
|
+
}
|
|
326
88
|
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
89
|
+
.left-0 {
|
|
90
|
+
left: calc(var(--spacing) * 0);
|
|
91
|
+
}
|
|
330
92
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
93
|
+
.left-\[10px\] {
|
|
94
|
+
left: 10px;
|
|
95
|
+
}
|
|
334
96
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
97
|
+
.z-\[1000\] {
|
|
98
|
+
z-index: 1000;
|
|
99
|
+
}
|
|
338
100
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
101
|
+
.z-\[10000\] {
|
|
102
|
+
z-index: 10000;
|
|
103
|
+
}
|
|
342
104
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
105
|
+
.container {
|
|
106
|
+
width: 100%;
|
|
107
|
+
}
|
|
346
108
|
|
|
109
|
+
@media (min-width: 40rem) {
|
|
347
110
|
.container {
|
|
348
|
-
width:
|
|
111
|
+
max-width: 40rem;
|
|
349
112
|
}
|
|
113
|
+
}
|
|
350
114
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
115
|
+
@media (min-width: 48rem) {
|
|
116
|
+
.container {
|
|
117
|
+
max-width: 48rem;
|
|
355
118
|
}
|
|
119
|
+
}
|
|
356
120
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
}
|
|
121
|
+
@media (min-width: 64rem) {
|
|
122
|
+
.container {
|
|
123
|
+
max-width: 64rem;
|
|
361
124
|
}
|
|
125
|
+
}
|
|
362
126
|
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
}
|
|
127
|
+
@media (min-width: 80rem) {
|
|
128
|
+
.container {
|
|
129
|
+
max-width: 80rem;
|
|
367
130
|
}
|
|
131
|
+
}
|
|
368
132
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
}
|
|
133
|
+
@media (min-width: 96rem) {
|
|
134
|
+
.container {
|
|
135
|
+
max-width: 96rem;
|
|
373
136
|
}
|
|
137
|
+
}
|
|
374
138
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
}
|
|
379
|
-
}
|
|
139
|
+
.m-\[0px_5px\] {
|
|
140
|
+
margin: 0 5px;
|
|
141
|
+
}
|
|
380
142
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
143
|
+
.mt-\[5px\] {
|
|
144
|
+
margin-top: 5px;
|
|
145
|
+
}
|
|
384
146
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
147
|
+
.mt-\[10px\] {
|
|
148
|
+
margin-top: 10px;
|
|
149
|
+
}
|
|
388
150
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
151
|
+
.mr-\[10px\] {
|
|
152
|
+
margin-right: 10px;
|
|
153
|
+
}
|
|
392
154
|
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
155
|
+
.ml-\[1\.4em\] {
|
|
156
|
+
margin-left: 1.4em;
|
|
157
|
+
}
|
|
396
158
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
159
|
+
.ml-\[10px\] {
|
|
160
|
+
margin-left: 10px;
|
|
161
|
+
}
|
|
400
162
|
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
163
|
+
.box-border {
|
|
164
|
+
box-sizing: border-box;
|
|
165
|
+
}
|
|
404
166
|
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
167
|
+
.flex {
|
|
168
|
+
display: flex;
|
|
169
|
+
}
|
|
408
170
|
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
171
|
+
.grid {
|
|
172
|
+
display: grid;
|
|
173
|
+
}
|
|
412
174
|
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
175
|
+
.hidden {
|
|
176
|
+
display: none;
|
|
177
|
+
}
|
|
416
178
|
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
179
|
+
.inline-block {
|
|
180
|
+
display: inline-block;
|
|
181
|
+
}
|
|
420
182
|
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
183
|
+
.table {
|
|
184
|
+
display: table;
|
|
185
|
+
}
|
|
424
186
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
187
|
+
.size-\[1\.4em\] {
|
|
188
|
+
width: 1.4em;
|
|
189
|
+
height: 1.4em;
|
|
190
|
+
}
|
|
428
191
|
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
192
|
+
.size-\[6px\] {
|
|
193
|
+
width: 6px;
|
|
194
|
+
height: 6px;
|
|
195
|
+
}
|
|
433
196
|
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
}
|
|
197
|
+
.h-\[20px\] {
|
|
198
|
+
height: 20px;
|
|
199
|
+
}
|
|
438
200
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
201
|
+
.h-\[100vh\] {
|
|
202
|
+
height: 100vh;
|
|
203
|
+
}
|
|
442
204
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
205
|
+
.h-fit {
|
|
206
|
+
height: fit-content;
|
|
207
|
+
}
|
|
446
208
|
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
209
|
+
.h-full {
|
|
210
|
+
height: 100%;
|
|
211
|
+
}
|
|
450
212
|
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
213
|
+
.w-\[20px\] {
|
|
214
|
+
width: 20px;
|
|
215
|
+
}
|
|
454
216
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
217
|
+
.w-\[100vw\] {
|
|
218
|
+
width: 100vw;
|
|
219
|
+
}
|
|
458
220
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
221
|
+
.w-\[110px\] {
|
|
222
|
+
width: 110px;
|
|
223
|
+
}
|
|
462
224
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
225
|
+
.w-\[200px\] {
|
|
226
|
+
width: 200px;
|
|
227
|
+
}
|
|
466
228
|
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
229
|
+
.w-full {
|
|
230
|
+
width: 100%;
|
|
231
|
+
}
|
|
470
232
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
233
|
+
.min-w-\[100px\] {
|
|
234
|
+
min-width: 100px;
|
|
235
|
+
}
|
|
474
236
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
237
|
+
.min-w-\[140px\] {
|
|
238
|
+
min-width: 140px;
|
|
239
|
+
}
|
|
478
240
|
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
241
|
+
.min-w-\[150px\] {
|
|
242
|
+
min-width: 150px;
|
|
243
|
+
}
|
|
482
244
|
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
245
|
+
.cursor-pointer {
|
|
246
|
+
cursor: pointer;
|
|
247
|
+
}
|
|
486
248
|
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
249
|
+
.resize {
|
|
250
|
+
resize: both;
|
|
251
|
+
}
|
|
490
252
|
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
253
|
+
.flex-col {
|
|
254
|
+
flex-direction: column;
|
|
255
|
+
}
|
|
494
256
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
257
|
+
.flex-row {
|
|
258
|
+
flex-direction: row;
|
|
259
|
+
}
|
|
498
260
|
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
261
|
+
.items-center {
|
|
262
|
+
align-items: center;
|
|
263
|
+
}
|
|
502
264
|
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
265
|
+
.justify-between {
|
|
266
|
+
justify-content: space-between;
|
|
267
|
+
}
|
|
506
268
|
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
269
|
+
.justify-center {
|
|
270
|
+
justify-content: center;
|
|
271
|
+
}
|
|
510
272
|
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
273
|
+
.gap-\[5px\] {
|
|
274
|
+
gap: 5px;
|
|
275
|
+
}
|
|
514
276
|
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
277
|
+
.gap-\[10px\] {
|
|
278
|
+
gap: 10px;
|
|
279
|
+
}
|
|
518
280
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
281
|
+
.overflow-hidden {
|
|
282
|
+
overflow: hidden;
|
|
283
|
+
}
|
|
522
284
|
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
285
|
+
.rounded-\[6px\] {
|
|
286
|
+
border-radius: 6px;
|
|
287
|
+
}
|
|
526
288
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
289
|
+
.rounded-\[8px\] {
|
|
290
|
+
border-radius: 8px;
|
|
291
|
+
}
|
|
530
292
|
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
293
|
+
.rounded-\[10px\] {
|
|
294
|
+
border-radius: 10px;
|
|
295
|
+
}
|
|
534
296
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
297
|
+
.rounded-\[50px\] {
|
|
298
|
+
border-radius: 50px;
|
|
299
|
+
}
|
|
538
300
|
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
301
|
+
.rounded-lg {
|
|
302
|
+
border-radius: var(--radius-lg);
|
|
303
|
+
}
|
|
542
304
|
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
305
|
+
.border {
|
|
306
|
+
border-style: var(--tw-border-style);
|
|
307
|
+
border-width: 1px;
|
|
308
|
+
}
|
|
546
309
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
310
|
+
.border-b-1 {
|
|
311
|
+
border-bottom-style: var(--tw-border-style);
|
|
312
|
+
border-bottom-width: 1px;
|
|
313
|
+
}
|
|
551
314
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
}
|
|
315
|
+
.border-b-\[\#eee\] {
|
|
316
|
+
border-bottom-color: #eee;
|
|
317
|
+
}
|
|
556
318
|
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
319
|
+
.border-b-\[rgba\(255\,255\,255\,0\.1\)\] {
|
|
320
|
+
border-bottom-color: #ffffff1a;
|
|
321
|
+
}
|
|
560
322
|
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
323
|
+
.bg-\[\#f0f0f0\] {
|
|
324
|
+
background-color: #f0f0f0;
|
|
325
|
+
}
|
|
564
326
|
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
327
|
+
.bg-\[rgba\(255\,255\,255\,1\)\] {
|
|
328
|
+
background-color: #fff;
|
|
329
|
+
}
|
|
568
330
|
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
331
|
+
.bg-\[var\(--el-color-primary\)\] {
|
|
332
|
+
background-color: var(--el-color-primary);
|
|
333
|
+
}
|
|
572
334
|
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
335
|
+
.bg-black {
|
|
336
|
+
background-color: var(--color-black);
|
|
337
|
+
}
|
|
576
338
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
339
|
+
.bg-black\/15 {
|
|
340
|
+
background-color: #00000026;
|
|
341
|
+
}
|
|
580
342
|
|
|
343
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
581
344
|
.bg-black\/15 {
|
|
582
|
-
background-color:
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
586
|
-
.bg-black\/15 {
|
|
587
|
-
background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
|
|
588
|
-
}
|
|
345
|
+
background-color: color-mix(in oklab, var(--color-black) 15%, transparent);
|
|
589
346
|
}
|
|
347
|
+
}
|
|
590
348
|
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
349
|
+
.bg-white {
|
|
350
|
+
background-color: var(--color-white);
|
|
351
|
+
}
|
|
594
352
|
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
353
|
+
.p-\[0px_10px\] {
|
|
354
|
+
padding: 0 10px;
|
|
355
|
+
}
|
|
598
356
|
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
357
|
+
.p-\[2px_0px\] {
|
|
358
|
+
padding: 2px 0;
|
|
359
|
+
}
|
|
602
360
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
361
|
+
.p-\[5px\] {
|
|
362
|
+
padding: 5px;
|
|
363
|
+
}
|
|
606
364
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
365
|
+
.p-\[5px_0px\] {
|
|
366
|
+
padding: 5px 0;
|
|
367
|
+
}
|
|
610
368
|
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
369
|
+
.p-\[5px_20px\] {
|
|
370
|
+
padding: 5px 20px;
|
|
371
|
+
}
|
|
614
372
|
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
373
|
+
.p-\[10px\] {
|
|
374
|
+
padding: 10px;
|
|
375
|
+
}
|
|
618
376
|
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
377
|
+
.text-right {
|
|
378
|
+
text-align: right;
|
|
379
|
+
}
|
|
622
380
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
381
|
+
.text-\[10px\] {
|
|
382
|
+
font-size: 10px;
|
|
383
|
+
}
|
|
626
384
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
385
|
+
.text-\[14px\] {
|
|
386
|
+
font-size: 14px;
|
|
387
|
+
}
|
|
630
388
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
389
|
+
.leading-\[1\.4em\] {
|
|
390
|
+
--tw-leading: 1.4em;
|
|
391
|
+
line-height: 1.4em;
|
|
392
|
+
}
|
|
635
393
|
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
394
|
+
.font-bold {
|
|
395
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
396
|
+
font-weight: var(--font-weight-bold);
|
|
397
|
+
}
|
|
640
398
|
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
399
|
+
.text-\[\#333\] {
|
|
400
|
+
color: #333;
|
|
401
|
+
}
|
|
644
402
|
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
403
|
+
.text-\[\#888\] {
|
|
404
|
+
color: #888;
|
|
405
|
+
}
|
|
648
406
|
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
407
|
+
.text-\[\#c9c9c9\] {
|
|
408
|
+
color: #c9c9c9;
|
|
409
|
+
}
|
|
652
410
|
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
411
|
+
.text-\[\#fff\] {
|
|
412
|
+
color: #fff;
|
|
413
|
+
}
|
|
656
414
|
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
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
|
+
}
|
|
661
419
|
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
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
|
+
}
|
|
667
425
|
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
426
|
+
.select-none {
|
|
427
|
+
-webkit-user-select: none;
|
|
428
|
+
user-select: none;
|
|
429
|
+
}
|
|
672
430
|
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
431
|
+
.last-of-type\:border-b-0:last-of-type {
|
|
432
|
+
border-bottom-style: var(--tw-border-style);
|
|
433
|
+
border-bottom-width: 0;
|
|
434
|
+
}
|
|
677
435
|
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
}
|
|
436
|
+
@media (hover: hover) {
|
|
437
|
+
.hover\:bg-\[\#ddd\]:hover {
|
|
438
|
+
background-color: #ddd;
|
|
682
439
|
}
|
|
683
440
|
}
|
|
684
441
|
|
package/src/selectLocalFile.js
CHANGED
|
@@ -3883,7 +3883,8 @@ class DomContainer extends Component {
|
|
|
3883
3883
|
width: "100%",
|
|
3884
3884
|
height: "100%",
|
|
3885
3885
|
position: "relative",
|
|
3886
|
-
userSelect: "none"
|
|
3886
|
+
userSelect: "none",
|
|
3887
|
+
fontFamily: "微软雅黑"
|
|
3887
3888
|
});
|
|
3888
3889
|
Object.assign(this.html3DRenderer.style, {
|
|
3889
3890
|
position: "absolute",
|