posthog-js 1.81.2 → 1.81.4
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.js +2 -2
- package/dist/array.full.js.map +1 -1
- package/dist/array.js +2 -2
- package/dist/array.js.map +1 -1
- package/dist/es.js +2 -2
- package/dist/es.js.map +1 -1
- package/dist/module.d.ts +4 -0
- package/dist/module.js +2 -2
- package/dist/module.js.map +1 -1
- package/dist/surveys.js +1 -1
- package/dist/surveys.js.map +1 -1
- package/lib/package.json +1 -1
- package/lib/src/extensions/surveys.d.ts +7 -14
- package/lib/src/extensions/surveys.js +371 -93
- package/lib/src/extensions/surveys.js.map +1 -1
- package/lib/src/posthog-core.js +7 -1
- package/lib/src/posthog-core.js.map +1 -1
- package/lib/src/posthog-surveys-types.d.ts +4 -0
- package/lib/src/posthog-surveys-types.js.map +1 -1
- package/lib/src/posthog-surveys.js +1 -1
- package/lib/src/posthog-surveys.js.map +1 -1
- package/package.json +1 -1
package/dist/module.d.ts
CHANGED
|
@@ -1171,11 +1171,15 @@ interface SurveyAppearance {
|
|
|
1171
1171
|
submitButtonText?: string;
|
|
1172
1172
|
descriptionTextColor?: string;
|
|
1173
1173
|
ratingButtonColor?: string;
|
|
1174
|
+
ratingButtonActiveColor?: string;
|
|
1174
1175
|
ratingButtonHoverColor?: string;
|
|
1175
1176
|
whiteLabel?: boolean;
|
|
1176
1177
|
displayThankYouMessage?: boolean;
|
|
1177
1178
|
thankYouMessageHeader?: string;
|
|
1178
1179
|
thankYouMessageDescription?: string;
|
|
1180
|
+
borderColor?: string;
|
|
1181
|
+
position?: 'left' | 'right' | 'center';
|
|
1182
|
+
placeholder?: string;
|
|
1179
1183
|
maxWidth?: string;
|
|
1180
1184
|
zIndex?: string;
|
|
1181
1185
|
}
|