@frigade/react 1.34.1 → 1.34.3
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 +6 -0
- package/lib/index.js +272 -272
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +279 -279
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -245,6 +245,7 @@ declare function useFlows(): {
|
|
|
245
245
|
hasActiveFullPageFlow: boolean;
|
|
246
246
|
setHasActiveFullPageFlow: React.Dispatch<React.SetStateAction<boolean>>;
|
|
247
247
|
isFlowAvailableToUser: (flowId: string) => boolean;
|
|
248
|
+
refresh: () => void;
|
|
248
249
|
};
|
|
249
250
|
|
|
250
251
|
interface FlowResponse {
|
|
@@ -603,6 +604,11 @@ interface FrigadeTourProps extends Omit<DefaultFrigadeFlowProps, 'flowId'> {
|
|
|
603
604
|
* Defaults to false.
|
|
604
605
|
*/
|
|
605
606
|
skipIfNotFound?: boolean;
|
|
607
|
+
/**
|
|
608
|
+
* How to position the tooltips with CSS. Defaults to `absolute`.
|
|
609
|
+
* @ignore
|
|
610
|
+
*/
|
|
611
|
+
cssPosition?: 'fixed' | 'absolute' | 'relative';
|
|
606
612
|
}
|
|
607
613
|
declare const FrigadeTour: FC<FrigadeTourProps & {
|
|
608
614
|
flowId: string;
|