@frigade/react 1.35.32 → 1.35.33
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 +2 -1
- package/lib/index.js +73 -73
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +192 -192
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -577,7 +577,7 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
|
|
|
577
577
|
*/
|
|
578
578
|
buttonStyle?: CSSProperties;
|
|
579
579
|
/**
|
|
580
|
-
* Offset to apply to all tooltips.
|
|
580
|
+
* Offset to apply to all tooltips. If you only wish to apply an offset to a single tooltip you can use `props.offset` in the config.yml instead.
|
|
581
581
|
*/
|
|
582
582
|
offset?: {
|
|
583
583
|
x: number;
|
|
@@ -625,6 +625,7 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
|
|
|
625
625
|
showFrigadeBranding?: boolean;
|
|
626
626
|
/**
|
|
627
627
|
* If true, the tour will go to the next existing step/tip if the current selector element is not found on the page.
|
|
628
|
+
* Be careful with this, as it can lead to unexpected behavior of tooltip ordering if the selector is slow to load on the page.
|
|
628
629
|
* Defaults to false.
|
|
629
630
|
*/
|
|
630
631
|
skipIfNotFound?: boolean;
|