@processandtools/rp-article-designer 1.0.89 → 1.0.90

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.
@@ -1,2 +1,2 @@
1
1
  import { CanvasProps } from '../../types/canvas.types';
2
- export default function ArticleGroupDesigner({ view, data, articleList, debugMode, isZCentered, isYCentered, selectedIndex, onArticleSelect, dimensionFontSize, onStatsReady }: CanvasProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function ArticleGroupDesigner({ view, data, articleList, debugMode, isZCentered, isYCentered, selectedIndex, onArticleSelect, dimensionFontSize, onStatsReady, getData }: CanvasProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SpecialKmsProps } from '../../construction_principle/kms/spec-kms/special.kms';
2
+ export default function WM_CONN_01({ width }: SpecialKmsProps): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import { CanvasProps } from '../../types/canvas.types';
2
- export default function Canvas2D({ view, data, articleList, debugMode, selectedIndex, onArticleSelect }: CanvasProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function Canvas2D({ view, data, articleList, debugMode, selectedIndex, onArticleSelect, getData }: CanvasProps): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import { CanvasProps } from '../../types/canvas.types';
2
- export default function Canvas3D({ data, articleList, selectedArticleId, debugMode, selectedIndex, onArticleSelect }: CanvasProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function Canvas3D({ data, articleList, selectedArticleId, debugMode, selectedIndex, onArticleSelect, getData }: CanvasProps): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import { CanvasProps } from '../../types/canvas.types';
2
- export default function CanvasManager({ data, articleList, debugMode, selectedIndex, onArticleSelect, view }: CanvasProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function CanvasManager({ data, articleList, debugMode, selectedIndex, onArticleSelect, view, getData }: CanvasProps): import("react/jsx-runtime").JSX.Element;
@@ -9,6 +9,7 @@ export declare const PULL_POS_Y = "PULL_Y";
9
9
  export declare const PULL_POS_Z = "PULL_Z";
10
10
  export declare const PULL_ROT_VAR_NAME = "PULL_ROT";
11
11
  export declare const PULL_GLB_VAR_NAME = "PULL_GLB";
12
+ export declare const WM_GLB_VAR_NAME = "WM_GLB";
12
13
  export declare const CONTRAST_COLOR_1 = "red";
13
14
  export declare const CONTRAST_COLOR_2 = "blue";
14
15
  export declare const DESIGN_PARAM_TC: {
@@ -1,9 +1,11 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { MaterialTypes } from '../../construction_principle/material/material.types';
3
3
  import { SurfaceTypes } from '../../construction_principle/surface/surface.types';
4
+ import { GetDataFn } from '../../types/data-loader.types';
4
5
  export interface MatSurfProviderProps {
5
6
  children: ReactNode;
6
7
  initialMaterials?: MaterialTypes[];
7
8
  initialSurfaces?: SurfaceTypes[];
9
+ getData?: GetDataFn;
8
10
  }
9
- export declare function MatSurfProvider({ children, initialMaterials, initialSurfaces }: MatSurfProviderProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function MatSurfProvider({ children, initialMaterials, initialSurfaces, getData, }: MatSurfProviderProps): import("react/jsx-runtime").JSX.Element;
Binary file