build-dxf 0.0.19-10 → 0.0.19-11
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 +1 -240
- package/src/index2.js +2520 -13
- package/src/index3.js +5 -118
- package/src/selectLocalFile.js +91 -2573
- package/src/utils/DxfSystem/plugin/Editor/pages/EditorTool.vue.d.ts +0 -1
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -39,250 +39,11 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
@layer base {
|
|
42
|
-
|
|
43
|
-
box-sizing: border-box;
|
|
44
|
-
border: 0 solid;
|
|
42
|
+
* {
|
|
45
43
|
margin: 0;
|
|
46
44
|
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
45
|
list-style: none;
|
|
135
46
|
}
|
|
136
|
-
|
|
137
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
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
|
-
}
|
|
281
|
-
|
|
282
|
-
h1, h2, h3, h4, h5, h6 {
|
|
283
|
-
font-size: initial;
|
|
284
|
-
font-weight: initial;
|
|
285
|
-
}
|
|
286
47
|
}
|
|
287
48
|
|
|
288
49
|
@layer components;
|