@processandtools/rp-article-designer 1.0.22 → 1.0.24

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,8 +1,2 @@
1
- import { VIEW } from '../../types/view.types';
2
- import { ArticleGroupTypes } from '../../types/article-group.types';
3
- export default function ArticleDesigner({ articles, validNames, view, debugMode }: {
4
- articles: ArticleGroupTypes[];
5
- validNames: Set<string>;
6
- view: VIEW;
7
- debugMode: boolean;
8
- }): import("react/jsx-runtime").JSX.Element;
1
+ import { CanvasProps } from '../../types/canvas.types';
2
+ export default function ArticleDesigner({ articleList, validNames, view, debugMode, isZCentered }: CanvasProps): import("react/jsx-runtime").JSX.Element;
@@ -22,3 +22,4 @@ export declare const TEXTURE_URL_SUFFIX = "/public";
22
22
  export declare const TEXTURE_EXTENSION = ".jpg";
23
23
  export declare const DEFAULT_TEXTURE = "/textures/default.jpg";
24
24
  export declare const DEFAULT_RENDER_COLOR = "#cc6161";
25
+ export declare const BACKEND_BASE_URL = "http://localhost:3018/api";