@developer_tribe/react-builder 0.1.14 → 0.1.16

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,4 +1,3 @@
1
- import { Node } from './index';
2
1
  import { Localication } from './types/PreviewConfig';
3
2
  export declare const mainNodeContext: import("react").Context<{
4
3
  localication?: Localication;
@@ -7,11 +6,11 @@ export declare const mainNodeContext: import("react").Context<{
7
6
  warning?: string;
8
7
  setWarning?: (message: string) => void;
9
8
  } | null>;
10
- export declare function RenderMainNode({ node, localication, defaultLanguage, theme, }: {
11
- node: Node;
9
+ export declare function RenderMainNode({ children, localication, defaultLanguage, theme, }: {
12
10
  localication?: Localication;
13
11
  defaultLanguage?: string;
14
12
  theme?: 'light' | 'dark';
13
+ children: React.ReactNode;
15
14
  warning?: string;
16
15
  setWarning?: (message: string) => void;
17
16
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,2 +1,4 @@
1
1
  import { Project } from '../../types/Project';
2
2
  export declare function getSamples(): Project[];
3
+ export declare function getBasicSamples(): Project[];
4
+ export declare function getOnboardSamples(): Project[];