@developer_tribe/react-builder 0.1.15 → 0.1.17

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,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[];
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
  import type { OnboardFooterComponentProps } from './OnboardFooterProps.generated';
3
- declare function OnboardFooter({ node }: OnboardFooterComponentProps): string;
3
+ declare function OnboardFooter({ node }: OnboardFooterComponentProps): import("react/jsx-runtime").JSX.Element;
4
4
  declare const _default: React.MemoExoticComponent<typeof OnboardFooter>;
5
5
  export default _default;
@@ -13,6 +13,14 @@ export interface OnboardFooterPropsGenerated {
13
13
  borderRadius?: number;
14
14
  width?: number;
15
15
  height?: number;
16
+ textLocalizationKey?: string;
17
+ textColor?: string;
18
+ linkedWordFirstLocalizationKey?: string;
19
+ linkedWordFirstColor?: string;
20
+ linkedWordFirstPage?: string;
21
+ linkedWordSecondLocalizationKey?: string;
22
+ linkedWordSecondColor?: string;
23
+ linkedWordSecondPage?: string;
16
24
  };
17
25
  }
18
26
  export interface OnboardFooterComponentProps {