posthog-js 1.303.1 → 1.304.0
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.es5.js.map +1 -1
- package/dist/array.full.js +1 -1
- package/dist/array.full.js.map +1 -1
- package/dist/array.full.no-external.js +1 -1
- package/dist/array.full.no-external.js.map +1 -1
- package/dist/array.js +1 -1
- package/dist/array.js.map +1 -1
- package/dist/array.no-external.js +1 -1
- package/dist/array.no-external.js.map +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 +2 -1
- package/dist/module.full.d.ts +2 -1
- package/dist/module.full.js +1 -1
- package/dist/module.full.js.map +1 -1
- package/dist/module.full.no-external.d.ts +2 -1
- 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 +2 -1
- 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.js +1 -1
- package/dist/product-tours.js.map +1 -1
- package/dist/src/extensions/product-tours/components/ProductTourTooltip.d.ts +1 -1
- package/dist/src/extensions/product-tours/product-tours.d.ts +4 -1
- package/dist/src/posthog-product-tours-types.d.ts +2 -1
- package/dist/surveys-preview.d.ts +2 -1
- package/lib/package.json +1 -1
- package/lib/src/extensions/product-tours/components/ProductTourTooltip.d.ts +1 -1
- package/lib/src/extensions/product-tours/components/ProductTourTooltip.js +31 -6
- package/lib/src/extensions/product-tours/components/ProductTourTooltip.js.map +1 -1
- package/lib/src/extensions/product-tours/product-tours.d.ts +4 -1
- package/lib/src/extensions/product-tours/product-tours.js +127 -8
- package/lib/src/extensions/product-tours/product-tours.js.map +1 -1
- package/lib/src/posthog-product-tours-types.d.ts +2 -1
- package/lib/src/posthog-product-tours-types.js.map +1 -1
- package/lib/src/posthog-product-tours.js +10 -42
- package/lib/src/posthog-product-tours.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/src/utils/product-tour-utils.d.ts +0 -5
- package/lib/src/utils/product-tour-utils.d.ts +0 -5
- package/lib/src/utils/product-tour-utils.js +0 -67
- package/lib/src/utils/product-tour-utils.js.map +0 -1
|
@@ -3020,7 +3020,7 @@ interface JSONContent {
|
|
|
3020
3020
|
}
|
|
3021
3021
|
interface ProductTourStep {
|
|
3022
3022
|
id: string;
|
|
3023
|
-
selector
|
|
3023
|
+
selector?: string;
|
|
3024
3024
|
content: JSONContent | null;
|
|
3025
3025
|
}
|
|
3026
3026
|
interface ProductTourConditions {
|
|
@@ -3042,6 +3042,7 @@ interface ProductTour {
|
|
|
3042
3042
|
name: string;
|
|
3043
3043
|
description?: string;
|
|
3044
3044
|
type: 'product_tour';
|
|
3045
|
+
auto_launch?: boolean;
|
|
3045
3046
|
start_date: string | null;
|
|
3046
3047
|
end_date: string | null;
|
|
3047
3048
|
current_iteration?: number;
|