@developer_tribe/react-builder 0.1.21 → 0.1.22

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.
@@ -7,6 +7,8 @@ export interface OnboardButtonsPropsGenerated {
7
7
  buttons_direction?: 'row' | 'column';
8
8
  forIndex?: number;
9
9
  seperatorColor?: string;
10
+ condition?: 'carousel-index';
11
+ conditionVariable?: number;
10
12
  };
11
13
  }
12
14
  export interface OnboardButtonsComponentProps {
@@ -3,6 +3,11 @@ export interface OnboardDotPropsGenerated {
3
3
  child: string;
4
4
  attributes: {
5
5
  dotType?: 'expanding_dot' | 'normal_dot' | 'scaling_dot' | 'sliding_border' | 'sliding_dot' | 'liquid_like';
6
+ inactive_dot_opacity?: number;
7
+ expanding_dot_width?: number;
8
+ dot_style?: string;
9
+ container_style?: string;
10
+ active_dot_color?: string;
6
11
  };
7
12
  }
8
13
  export interface OnboardDotComponentProps {
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import type { OnboardProviderComponentProps } from './OnboardProviderProps.generated';
3
+ export declare const onboardContext: React.Context<any>;
3
4
  declare function OnboardProvider({ node }: OnboardProviderComponentProps): import("react/jsx-runtime").JSX.Element;
4
5
  declare const _default: React.MemoExoticComponent<typeof OnboardProvider>;
5
6
  export default _default;