build-dxf 0.1.111 → 0.1.112
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/build.js +1 -1
- package/src/index.css +24 -0
package/package.json
CHANGED
package/src/build.js
CHANGED
|
@@ -9652,7 +9652,7 @@ class ThreeVJiaPipeline extends Pipeline {
|
|
|
9652
9652
|
newLine = new LineSegment(line1.center.clone(), line2.center.clone());
|
|
9653
9653
|
wallWidth = line1.length();
|
|
9654
9654
|
mergeLineUserData(newLine, lines2);
|
|
9655
|
-
newLine.userData.wallWidth = wallWidth;
|
|
9655
|
+
newLine.userData.wallWidth = wallWidth + 2e-3;
|
|
9656
9656
|
return [newLine];
|
|
9657
9657
|
});
|
|
9658
9658
|
this.manager.add({ type: "wallHole", lines: windowLines });
|
package/src/index.css
CHANGED
|
@@ -157,6 +157,10 @@
|
|
|
157
157
|
top: calc(var(--spacing) * 0);
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
+
.top-2\.5 {
|
|
161
|
+
top: calc(var(--spacing) * 2.5);
|
|
162
|
+
}
|
|
163
|
+
|
|
160
164
|
.top-\[10px\] {
|
|
161
165
|
top: 10px;
|
|
162
166
|
}
|
|
@@ -173,6 +177,10 @@
|
|
|
173
177
|
right: calc(var(--spacing) * 0);
|
|
174
178
|
}
|
|
175
179
|
|
|
180
|
+
.right-2\.5 {
|
|
181
|
+
right: calc(var(--spacing) * 2.5);
|
|
182
|
+
}
|
|
183
|
+
|
|
176
184
|
.right-\[10px\] {
|
|
177
185
|
right: 10px;
|
|
178
186
|
}
|
|
@@ -291,6 +299,10 @@
|
|
|
291
299
|
margin: 10px 0;
|
|
292
300
|
}
|
|
293
301
|
|
|
302
|
+
.mt-2\.5 {
|
|
303
|
+
margin-top: calc(var(--spacing) * 2.5);
|
|
304
|
+
}
|
|
305
|
+
|
|
294
306
|
.mt-\[5px\] {
|
|
295
307
|
margin-top: 5px;
|
|
296
308
|
}
|
|
@@ -299,6 +311,10 @@
|
|
|
299
311
|
margin-top: 10px;
|
|
300
312
|
}
|
|
301
313
|
|
|
314
|
+
.mr-2\.5 {
|
|
315
|
+
margin-right: calc(var(--spacing) * 2.5);
|
|
316
|
+
}
|
|
317
|
+
|
|
302
318
|
.mr-\[5px\] {
|
|
303
319
|
margin-right: 5px;
|
|
304
320
|
}
|
|
@@ -543,6 +559,10 @@
|
|
|
543
559
|
gap: calc(var(--spacing) * 0);
|
|
544
560
|
}
|
|
545
561
|
|
|
562
|
+
.gap-2\.5 {
|
|
563
|
+
gap: calc(var(--spacing) * 2.5);
|
|
564
|
+
}
|
|
565
|
+
|
|
546
566
|
.gap-\[5px\] {
|
|
547
567
|
gap: 5px;
|
|
548
568
|
}
|
|
@@ -710,6 +730,10 @@
|
|
|
710
730
|
padding: calc(var(--spacing) * 0);
|
|
711
731
|
}
|
|
712
732
|
|
|
733
|
+
.p-1\.25 {
|
|
734
|
+
padding: calc(var(--spacing) * 1.25);
|
|
735
|
+
}
|
|
736
|
+
|
|
713
737
|
.p-\[0_5px\], .p-\[0px_5px\] {
|
|
714
738
|
padding: 0 5px;
|
|
715
739
|
}
|