@processandtools/rp-article-designer 1.0.86 → 1.0.88
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/elements_manager/KmsRenderer.d.ts +2 -1
- package/dist/components/spec-kms-render/SpecialFrontConfig.d.ts +1 -0
- package/dist/constants/Constants.d.ts +1 -1
- package/dist/construction_principle/kms/spec-kms/special.kms.d.ts +1 -0
- package/dist/data/articles.d.ts +21 -3
- 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
|
@@ -6,6 +6,7 @@ interface SpecialKmsRendererProps extends Omit<SpecialKmsProps, 'materialLoaderR
|
|
|
6
6
|
kms?: KmsResult;
|
|
7
7
|
startPanelThk?: number;
|
|
8
8
|
endPanelThk?: number;
|
|
9
|
+
ddHingePosition?: 'left' | 'right';
|
|
9
10
|
}
|
|
10
|
-
export default function KmsRenderer({ handlePosition, cp, kms: specialKms, length, width, thk, startPanelThk, endPanelThk, treeId, elemInfo, meshRef, }: SpecialKmsRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default function KmsRenderer({ handlePosition, ddHingePosition, cp, kms: specialKms, length, width, thk, startPanelThk, endPanelThk, treeId, elemInfo, meshRef, }: SpecialKmsRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|
|
@@ -6,6 +6,7 @@ export type SpecialCpProps = {
|
|
|
6
6
|
handleHeight?: number;
|
|
7
7
|
rotation?: number;
|
|
8
8
|
thk: number;
|
|
9
|
+
frameWidth?: number;
|
|
9
10
|
};
|
|
10
11
|
export declare function getSpecialFrontConfig(cpName: string | undefined): SpecialCpProps | undefined;
|
|
11
12
|
export declare const SPECIAL_KMS_EXTRA_VARS: Record<string, Record<string, string>>;
|
|
@@ -39,7 +39,7 @@ export declare const clieTags: {
|
|
|
39
39
|
};
|
|
40
40
|
export declare const DIM_NORM = 1000;
|
|
41
41
|
export declare const texture_url_builder: (render_mat: string) => string;
|
|
42
|
-
export declare const TEXTURE_URL_PREFIX = "/api/textures/
|
|
42
|
+
export declare const TEXTURE_URL_PREFIX = "/api/textures/IVIS/";
|
|
43
43
|
export declare const TEXTURE_URL_SUFFIX = "/public";
|
|
44
44
|
export declare const TEXTURE_EXTENSION = ".jpg";
|
|
45
45
|
export declare const DEFAULT_TEXTURE = "/textures/default.jpg";
|
|
@@ -21,6 +21,7 @@ export interface SpecialKmsProps {
|
|
|
21
21
|
handlePosition?: number;
|
|
22
22
|
handleHeight?: number;
|
|
23
23
|
materialLoaderResult: MaterialLoaderResult;
|
|
24
|
+
ddHingePosition?: 'left' | 'right';
|
|
24
25
|
}
|
|
25
26
|
export declare function registerSpecialKms(name: string, component: FC<SpecialKmsProps>): void;
|
|
26
27
|
export declare function registerSpecialCp(name: string, component: FC<SpecialKmsProps>): void;
|
package/dist/data/articles.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const articleList: {
|
|
1
|
+
export declare const articleList: ({
|
|
2
2
|
name: string;
|
|
3
3
|
visibility: boolean;
|
|
4
4
|
isDoorOpen: boolean;
|
|
@@ -7,5 +7,23 @@ export declare const articleList: {
|
|
|
7
7
|
height: number;
|
|
8
8
|
depth: number;
|
|
9
9
|
};
|
|
10
|
-
variables: {
|
|
11
|
-
|
|
10
|
+
variables: {
|
|
11
|
+
Door_Name: string;
|
|
12
|
+
Door_Type: string;
|
|
13
|
+
Hinge_Side_nbr?: undefined;
|
|
14
|
+
};
|
|
15
|
+
} | {
|
|
16
|
+
name: string;
|
|
17
|
+
visibility: boolean;
|
|
18
|
+
isDoorOpen: boolean;
|
|
19
|
+
dimensions: {
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
depth: number;
|
|
23
|
+
};
|
|
24
|
+
variables: {
|
|
25
|
+
Door_Name: string;
|
|
26
|
+
Door_Type: string;
|
|
27
|
+
Hinge_Side_nbr: number;
|
|
28
|
+
};
|
|
29
|
+
})[];
|