@frigade/react 1.32.79 → 1.32.80
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 +5 -0
- package/lib/index.js +53 -53
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +47 -47
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -520,6 +520,11 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
|
|
|
520
520
|
* @ignore
|
|
521
521
|
*/
|
|
522
522
|
showFrigadeBranding?: boolean;
|
|
523
|
+
/**
|
|
524
|
+
* If true, the tour will go to the next existing step/tip if the current selector element is not found on the page.
|
|
525
|
+
* Defaults to false.
|
|
526
|
+
*/
|
|
527
|
+
skipIfNotFound?: boolean;
|
|
523
528
|
}
|
|
524
529
|
declare const FrigadeTour: FC<FrigadeTourProps & {
|
|
525
530
|
flowId: string;
|