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