build-dxf 0.1.148 → 0.1.149
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
CHANGED
package/src/build.js
CHANGED
|
@@ -8927,7 +8927,7 @@ class WallHole {
|
|
|
8927
8927
|
static getMinWidth(key, type) {
|
|
8928
8928
|
if (key === "drawWindow") return 0.3;
|
|
8929
8929
|
if (key === "passageEntrance") {
|
|
8930
|
-
if (type === "door") return 0.
|
|
8930
|
+
if (type === "door") return 0.35;
|
|
8931
8931
|
else if (type === "passageEntrance") return 0.2;
|
|
8932
8932
|
}
|
|
8933
8933
|
return 0.05;
|
|
@@ -85,7 +85,7 @@ export declare class WallHole {
|
|
|
85
85
|
* @param line
|
|
86
86
|
* @returns
|
|
87
87
|
*/
|
|
88
|
-
static getMinWidth(key: HoleStorageType, type?: HoleType): 0.
|
|
88
|
+
static getMinWidth(key: HoleStorageType, type?: HoleType): 0.2 | 0.05 | 0.3 | 0.35;
|
|
89
89
|
/** 清理孔洞
|
|
90
90
|
* @param target
|
|
91
91
|
* @param key
|
package/src/index.css
CHANGED
|
@@ -860,6 +860,11 @@
|
|
|
860
860
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
861
861
|
}
|
|
862
862
|
|
|
863
|
+
.ring {
|
|
864
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
865
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
866
|
+
}
|
|
867
|
+
|
|
863
868
|
.outline {
|
|
864
869
|
outline-style: var(--tw-outline-style);
|
|
865
870
|
outline-width: 1px;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
containerRef: HTMLDivElement;
|
|
3
|
+
}, HTMLDivElement>;
|
|
4
|
+
export default _default;
|