freemium-survey-components 2.0.471 → 2.0.472
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.
|
Binary file
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
import './style.scss';
|
|
3
|
-
interface
|
|
3
|
+
interface MetaMobileContainerProps {
|
|
4
4
|
children: ReactNode;
|
|
5
5
|
title?: string;
|
|
6
|
+
type?: 'facebook' | 'instagram' | 'whatsapp';
|
|
6
7
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
8
|
+
declare const MetaMobileContainer: React.FC<MetaMobileContainerProps>;
|
|
9
|
+
export default MetaMobileContainer;
|
package/lib/types/types.d.ts
CHANGED
|
@@ -1476,6 +1476,8 @@ export type ProductConfigType = {
|
|
|
1476
1476
|
disableSkipLogic?: boolean;
|
|
1477
1477
|
disableButtonShape?: boolean;
|
|
1478
1478
|
disableAdvancedThankYouQuestionConfig?: boolean;
|
|
1479
|
+
sfsQuestionTypes?: QuestionType[];
|
|
1480
|
+
disableShowLabelInBooleanQuestion?: boolean;
|
|
1479
1481
|
};
|
|
1480
1482
|
export type TriggerSurveyResponseType = {
|
|
1481
1483
|
trigger_id?: string | null;
|