@processandtools/rp-article-designer 1.0.95 → 1.0.97

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.
@@ -0,0 +1,8 @@
1
+ import { DimensionProps } from '../../../types/zone.types';
2
+ import { MaterialDefinition } from '@oak-some/special-kms/dist/types/types';
3
+ interface PanelEdgesProps extends DimensionProps {
4
+ material?: MaterialDefinition;
5
+ edgeThk: number;
6
+ }
7
+ export default function PanelEdges({ width, height, depth, material, edgeThk }: PanelEdgesProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -9,4 +9,13 @@ export type SpecialCpProps = {
9
9
  frameWidth?: number;
10
10
  };
11
11
  export declare function getSpecialFrontConfig(cpName: string | undefined): SpecialCpProps | undefined;
12
- export declare const SPECIAL_KMS_EXTRA_VARS: Record<string, Record<string, string>>;
12
+ export declare const EXTRA_SLOT: {
13
+ readonly SRF_01: "main";
14
+ readonly SRF_02: "extra_01";
15
+ readonly SRF_03: "extra_02";
16
+ };
17
+ export type ExtraSlotKey = typeof EXTRA_SLOT[keyof typeof EXTRA_SLOT];
18
+ type ExtraVars = Partial<Record<ExtraSlotKey, string>>;
19
+ export declare const SPECIAL_KMS_EXTRA_VARS: Record<string, ExtraVars>;
20
+ export declare function getSpecialKmsExtraVars(kmsName: string | undefined): ExtraVars | undefined;
21
+ export {};
@@ -2,12 +2,13 @@ import { MatResult } from '../material/MatHelper';
2
2
  import { SurfResult } from '../surface/SurfHelper';
3
3
  import { DataContextType } from '../../types/data.types';
4
4
  import { MatSurfContextValue } from '../../contexts/mat-surf/MatSurfContext';
5
+ import { ExtraSlotKey } from '../../components/spec-kms-render/SpecialFrontConfig';
5
6
  export interface KmsResult {
6
7
  name: string;
7
8
  material: MatResult | undefined;
8
9
  surfaceTop: SurfResult | undefined;
9
10
  surfaceBot: SurfResult | undefined;
10
- surfaceExtra: Record<string, SurfResult>;
11
+ surfaceExtra: Partial<Record<ExtraSlotKey, SurfResult>>;
11
12
  render: string | undefined;
12
13
  thk: number;
13
14
  }
@@ -1,4 +1,4 @@
1
- export declare const articleList: ({
1
+ export declare const articleList: {
2
2
  name: string;
3
3
  dimensions: {
4
4
  width: number;
@@ -6,18 +6,10 @@ export declare const articleList: ({
6
6
  depth: number;
7
7
  };
8
8
  variables: {
9
- Door_Name: string;
10
- Hinge_Side_nbr: number;
9
+ Z21_W: number;
10
+ Z21_LGR_W: number;
11
+ Z21_CNT: number;
12
+ Z21_IS_BI_L: number;
13
+ Z21_IS_BI_R: number;
11
14
  };
12
- } | {
13
- name: string;
14
- dimensions: {
15
- width: number;
16
- height: number;
17
- depth: number;
18
- };
19
- variables: {
20
- Door_Name?: undefined;
21
- Hinge_Side_nbr?: undefined;
22
- };
23
- })[];
15
+ }[];