@frigade/react 1.33.11 → 1.33.13

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.
package/lib/index.d.ts CHANGED
@@ -540,7 +540,10 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
540
540
  * @ignore
541
541
  */
542
542
  selectedStep?: number;
543
- customStepTypes?: Record<string, (stepData: StepData) => React__default.ReactNode>;
543
+ customStepTypes?: Record<string, (props: {
544
+ stepData: StepData;
545
+ primaryColor: string;
546
+ }) => React__default.ReactNode>;
544
547
  appearance?: Appearance;
545
548
  /**
546
549
  * Shows a close button in the top right corner of the tooltip. Depending on dismissBehavior, it will either end the entire flow or just the current step.