@processandtools/rp-article-designer 1.0.87 → 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.
@@ -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 {};
@@ -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;
@@ -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;
@@ -8,23 +8,22 @@ export declare const articleList: {
8
8
  depth: number;
9
9
  };
10
10
  variables: {
11
- MAT_FR_1_THK: string;
12
- SRF_FR_1_THK: string;
13
- MAT_1: string;
14
- SRF_1_TOP: string;
15
- MAT_FR_1: string;
16
- SURF_1_TOP: string;
17
- SRF_FR_1_TOP: string;
18
11
  Door_Name: string;
19
- MAT_FR_2_THK: string;
20
- SRF_HN_1_THK: string;
21
- SRF_FR_1_BOT: string;
22
- PRF_FR_1: string;
23
- MAT_FR_2: string;
24
- SRF_FR_2_BOT: string;
25
- SRF_FR_2_TOP: string;
26
- MAT_DBK_1: string;
27
- SRF_1_BOT: string;
28
- PRF_1: string;
12
+ Door_Type: string;
13
+ Hinge_Side_nbr?: undefined;
29
14
  };
30
- }[];
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
+ })[];