freemium-survey-components 2.0.73 → 2.0.75
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 +7 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -264,6 +264,12 @@ export type SurveyUiThemeType = {
|
|
|
264
264
|
};
|
|
265
265
|
export type SurveyLayoutType = 'card' | 'standard';
|
|
266
266
|
export type HeaderAlignmentType = 'center' | 'left' | 'right';
|
|
267
|
+
export type ActionButtonType = {
|
|
268
|
+
submit?: string | null;
|
|
269
|
+
skip?: string | null;
|
|
270
|
+
next?: string | null;
|
|
271
|
+
clear_selection?: string | null;
|
|
272
|
+
};
|
|
267
273
|
export type SurveyMetaType = {
|
|
268
274
|
survey_layout?: SurveyLayoutType | null;
|
|
269
275
|
progress_bar?: boolean | null;
|
|
@@ -271,6 +277,7 @@ export type SurveyMetaType = {
|
|
|
271
277
|
header_alignment?: HeaderAlignmentType | null;
|
|
272
278
|
show_info_only_on_first?: boolean;
|
|
273
279
|
is_modified?: boolean;
|
|
280
|
+
action_button_text?: ActionButtonType;
|
|
274
281
|
created_by?: string | null;
|
|
275
282
|
updated_by?: string | null;
|
|
276
283
|
scoring_configuration?: {
|