freemium-survey-components 2.0.186 → 2.0.187
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 +1 -1
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -274,7 +274,7 @@ export type ActionButtonType = {
|
|
|
274
274
|
export type HeaderAlignmentType = Extract<AlignmentType, 'left' | 'center' | 'right'>;
|
|
275
275
|
export type HeaderAlignmentVerticalType = Extract<AlignmentType, 'top' | 'center' | 'bottom'>;
|
|
276
276
|
export type FooterAlignmentType = Extract<AlignmentType, 'left' | 'center' | 'right'>;
|
|
277
|
-
export type MobileContentLayoutType = Extract<
|
|
277
|
+
export type MobileContentLayoutType = Extract<ContentLayoutType, 'FULL' | 'TOP' | 'NO'>;
|
|
278
278
|
export type DesktopContentLayoutType = Extract<ContentLayoutType, 'FULL' | 'TOP' | 'LEFT' | 'RIGHT'>;
|
|
279
279
|
export type ContentAlignmentType = Extract<AlignmentType, 'left' | 'center' | 'right'>;
|
|
280
280
|
export type SurveyMetaType = {
|