@frigade/react 1.32.78 → 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 +9 -0
- package/lib/index.js +207 -207
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +260 -260
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -280,6 +280,10 @@ interface FrigadeConfig {
|
|
|
280
280
|
* Default Appearance for all flows.
|
|
281
281
|
*/
|
|
282
282
|
defaultAppearance?: Appearance;
|
|
283
|
+
/**
|
|
284
|
+
* API url to use for all requests. Defaults to https://api.frigade.com
|
|
285
|
+
*/
|
|
286
|
+
apiUrl?: string;
|
|
283
287
|
}
|
|
284
288
|
declare const FrigadeProvider: FC<FrigadeProviderProps>;
|
|
285
289
|
|
|
@@ -516,6 +520,11 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
|
|
|
516
520
|
* @ignore
|
|
517
521
|
*/
|
|
518
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;
|
|
519
528
|
}
|
|
520
529
|
declare const FrigadeTour: FC<FrigadeTourProps & {
|
|
521
530
|
flowId: string;
|