freemium-survey-components 2.0.181 → 2.0.183
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/types/types.d.ts +13 -2
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -239,6 +239,8 @@ export type SurveyQuestionDetailsType = {
|
|
|
239
239
|
};
|
|
240
240
|
export type SurveyUiBrandingType = {
|
|
241
241
|
favicon_url?: string | null;
|
|
242
|
+
bg_url?: string | null;
|
|
243
|
+
bg_url_opacity?: string | null;
|
|
242
244
|
logo_url?: string | null;
|
|
243
245
|
name?: string | null;
|
|
244
246
|
};
|
|
@@ -261,7 +263,9 @@ export type SurveyUiThemeType = {
|
|
|
261
263
|
intro_text_color?: string | null;
|
|
262
264
|
};
|
|
263
265
|
export type SurveyLayoutType = 'card' | 'standard';
|
|
264
|
-
export type
|
|
266
|
+
export type AlignmentType = 'center' | 'left' | 'right' | 'top' | 'bottom';
|
|
267
|
+
export type QuestionAlignmentMobileType = 'full' | 'top' | 'none';
|
|
268
|
+
export type QuestionAlignmentDesktopType = 'top-scrap-left' | 'top-scrap-right' | 'top-scrap-center' | 'full-scrap-left' | 'full-scrap-right' | 'full-scrap-center' | 'right-scrap' | 'left-scrap';
|
|
265
269
|
export type ActionButtonType = {
|
|
266
270
|
submit?: string | null;
|
|
267
271
|
skip?: string | null;
|
|
@@ -273,7 +277,14 @@ export type SurveyMetaType = {
|
|
|
273
277
|
survey_layout?: SurveyLayoutType | null;
|
|
274
278
|
progress_bar?: boolean | null;
|
|
275
279
|
show_survey_logo?: boolean | null;
|
|
276
|
-
header_alignment?:
|
|
280
|
+
header_alignment?: AlignmentType | null;
|
|
281
|
+
header_alignment_vertical?: AlignmentType | null;
|
|
282
|
+
footer_alignment?: AlignmentType | null;
|
|
283
|
+
footer_alignment_vertical?: AlignmentType | null;
|
|
284
|
+
show_custom_footer?: boolean | null;
|
|
285
|
+
show_freshworks_branding?: boolean | null;
|
|
286
|
+
question_alignment_mobile?: QuestionAlignmentMobileType | null;
|
|
287
|
+
question_alignment_desktop?: QuestionAlignmentDesktopType | null;
|
|
277
288
|
show_info_only_on_first?: boolean;
|
|
278
289
|
is_modified?: boolean;
|
|
279
290
|
action_button?: ActionButtonType;
|