freemium-survey-components 1.0.65 → 1.0.67
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/index.d.ts +1 -0
- package/lib/types/types.d.ts +8 -1
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
package/lib/types/types.d.ts
CHANGED
|
@@ -115,9 +115,16 @@ export declare type SurveyUiThemeType = {
|
|
|
115
115
|
question_text_color?: string | null;
|
|
116
116
|
css_url?: string | null;
|
|
117
117
|
};
|
|
118
|
+
export declare type SurveyLayoutType = 'card' | 'standard';
|
|
118
119
|
export declare type SurveyMetaType = {
|
|
119
|
-
survey_layout?:
|
|
120
|
+
survey_layout?: SurveyLayoutType | null;
|
|
120
121
|
created_by?: string | null;
|
|
122
|
+
default_lang?: string;
|
|
123
|
+
supported_lang?: {
|
|
124
|
+
code: string;
|
|
125
|
+
isEnable: boolean;
|
|
126
|
+
fileUrl: string;
|
|
127
|
+
}[];
|
|
121
128
|
};
|
|
122
129
|
export declare type SurveyBlockCategoryType = {
|
|
123
130
|
id?: string | null;
|