posthog-js 1.351.2 → 1.351.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/dist/array.full.es5.js +1 -1
- package/dist/array.full.js +1 -1
- package/dist/array.full.no-external.js +1 -1
- package/dist/array.js +1 -1
- package/dist/array.no-external.js +1 -1
- package/dist/customizations.full.js +1 -1
- package/dist/lazy-recorder.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/module.d.ts +3 -0
- package/dist/module.full.d.ts +3 -0
- package/dist/module.full.js +1 -1
- package/dist/module.full.js.map +1 -1
- package/dist/module.full.no-external.d.ts +3 -0
- package/dist/module.full.no-external.js +1 -1
- package/dist/module.full.no-external.js.map +1 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/dist/module.no-external.d.ts +3 -0
- package/dist/module.no-external.js +1 -1
- package/dist/module.no-external.js.map +1 -1
- package/dist/posthog-recorder.js +1 -1
- package/dist/product-tours-preview.d.ts +3 -0
- package/dist/product-tours-preview.js +1 -1
- package/dist/product-tours-preview.js.map +1 -1
- package/dist/product-tours.js +1 -1
- package/dist/product-tours.js.map +1 -1
- package/dist/src/extensions/product-tours/components/ProductTourBanner.d.ts +1 -1
- package/dist/src/posthog-product-tours-types.d.ts +3 -0
- package/dist/surveys-preview.d.ts +3 -0
- package/lib/package.json +1 -1
- package/lib/src/extensions/product-tours/components/ProductTourBanner.d.ts +1 -1
- package/lib/src/extensions/product-tours/components/ProductTourBanner.js +15 -1
- package/lib/src/extensions/product-tours/components/ProductTourBanner.js.map +1 -1
- package/lib/src/extensions/product-tours/product-tours.js +4 -0
- package/lib/src/extensions/product-tours/product-tours.js.map +1 -1
- package/lib/src/posthog-product-tours-types.d.ts +3 -0
- package/lib/src/posthog-product-tours-types.js.map +1 -1
- package/package.json +2 -2
package/dist/module.d.ts
CHANGED
|
@@ -1867,6 +1867,9 @@ interface ProductTourBannerConfig {
|
|
|
1867
1867
|
link?: string;
|
|
1868
1868
|
tourId?: string;
|
|
1869
1869
|
};
|
|
1870
|
+
animation?: {
|
|
1871
|
+
duration?: number;
|
|
1872
|
+
};
|
|
1870
1873
|
}
|
|
1871
1874
|
/** Button actions available on modal steps */
|
|
1872
1875
|
type ProductTourButtonAction = 'dismiss' | 'link' | 'next_step' | 'previous_step' | 'trigger_tour';
|
package/dist/module.full.d.ts
CHANGED
|
@@ -1867,6 +1867,9 @@ interface ProductTourBannerConfig {
|
|
|
1867
1867
|
link?: string;
|
|
1868
1868
|
tourId?: string;
|
|
1869
1869
|
};
|
|
1870
|
+
animation?: {
|
|
1871
|
+
duration?: number;
|
|
1872
|
+
};
|
|
1870
1873
|
}
|
|
1871
1874
|
/** Button actions available on modal steps */
|
|
1872
1875
|
type ProductTourButtonAction = 'dismiss' | 'link' | 'next_step' | 'previous_step' | 'trigger_tour';
|