@processandtools/rp-article-designer 1.0.80 → 1.0.81
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/dist/components/spec-kms-render/DR_SPECIAL.d.ts +3 -0
- package/dist/components/spec-kms-render/SpecialFrontConfig.d.ts +12 -0
- package/dist/data/articles.d.ts +24 -5
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/spec-kms-render/CutOUtHandleConfig.d.ts +0 -12
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { SpecialKmsProps } from '../../construction_principle/kms/spec-kms/special.kms';
|
|
2
|
+
declare function DR_SPECIAL({ length, width, thk, handlePosition, cpName, materialLoaderResult, kms }: SpecialKmsProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export default DR_SPECIAL;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type SpecialCpProps = {
|
|
2
|
+
cpid?: string;
|
|
3
|
+
handleName: string;
|
|
4
|
+
offsetX?: number;
|
|
5
|
+
offsetY?: number;
|
|
6
|
+
handleHeight?: number;
|
|
7
|
+
hingesSide?: 'left' | 'right' | 'center';
|
|
8
|
+
rotation?: number;
|
|
9
|
+
thk: number;
|
|
10
|
+
};
|
|
11
|
+
export declare const SPECIAL_KMS_EXTRA_VARS: Record<string, Record<string, string>>;
|
|
12
|
+
export declare function getSpecialFrontConfig(cpName: string): SpecialCpProps | undefined;
|
package/dist/data/articles.d.ts
CHANGED
|
@@ -1,17 +1,36 @@
|
|
|
1
1
|
export declare const articleList: {
|
|
2
2
|
name: string;
|
|
3
3
|
visibility: boolean;
|
|
4
|
-
isDoorOpen: boolean;
|
|
5
|
-
isDimensioned: boolean;
|
|
6
4
|
dimensions: {
|
|
7
5
|
width: number;
|
|
8
6
|
height: number;
|
|
9
7
|
depth: number;
|
|
10
8
|
};
|
|
11
9
|
variables: {
|
|
12
|
-
|
|
10
|
+
SRF_HN_1_THK: string;
|
|
11
|
+
MAT_FR_2_THK: string;
|
|
12
|
+
SRF_FR_1_THK: string;
|
|
13
|
+
MAT_FR_1_THK: string;
|
|
14
|
+
Door_Name: string;
|
|
15
|
+
SRF_FR_2_TOP: string;
|
|
16
|
+
SRF_FR_2_BOT: string;
|
|
17
|
+
MAT_FR_2: string;
|
|
13
18
|
SRF_FR_1_BOT: string;
|
|
14
|
-
|
|
15
|
-
|
|
19
|
+
SRF_FR_1_TOP: string;
|
|
20
|
+
MAT_FR_1: string;
|
|
21
|
+
PRF_1: string;
|
|
22
|
+
SRF_1_BOT: string;
|
|
23
|
+
SRF_1_TOP: string;
|
|
24
|
+
MAT_DBK_1: string;
|
|
25
|
+
SRF_DBK_1_TOP: string;
|
|
26
|
+
SRF_DBK_1_BOT: string;
|
|
27
|
+
SRF_DSI_1_TOP: string;
|
|
28
|
+
SRF_DSI_1_BOT: string;
|
|
29
|
+
MAT_DSI_1: string;
|
|
30
|
+
MAT_1: string;
|
|
31
|
+
PULL_GLB: string;
|
|
32
|
+
PULL_Z: string;
|
|
33
|
+
PULL_Y: string;
|
|
34
|
+
PULL_X: string;
|
|
16
35
|
};
|
|
17
36
|
}[];
|