freemium-survey-components 2.0.63 → 2.0.65
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 +2 -1
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -266,6 +266,7 @@ export type SurveyLayoutType = 'card' | 'standard';
|
|
|
266
266
|
export type HeaderAlignmentType = 'center' | 'left' | 'right';
|
|
267
267
|
export type SurveyMetaType = {
|
|
268
268
|
survey_layout?: SurveyLayoutType | null;
|
|
269
|
+
progress_bar?: boolean | null;
|
|
269
270
|
header_alignment?: HeaderAlignmentType | null;
|
|
270
271
|
show_info_only_on_first?: boolean;
|
|
271
272
|
is_modified?: boolean;
|
|
@@ -898,7 +899,7 @@ export type HostParamsType = {
|
|
|
898
899
|
isImport?: string;
|
|
899
900
|
};
|
|
900
901
|
export type ComponentQParamsType = {
|
|
901
|
-
product?:
|
|
902
|
+
product?: ProductType;
|
|
902
903
|
onboarding?: string;
|
|
903
904
|
step?: string;
|
|
904
905
|
tab?: 'builder' | 'collector';
|