freemium-survey-components 2.0.470 → 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
|
@@ -1470,6 +1470,14 @@ export type ProductConfigType = {
|
|
|
1470
1470
|
enableFWBranding?: boolean;
|
|
1471
1471
|
disableSurveyListSort?: boolean;
|
|
1472
1472
|
disablePauseSurvey?: boolean;
|
|
1473
|
+
enableRiskSurvey?: boolean;
|
|
1474
|
+
riskScoringQuestionTypes?: QuestionType[];
|
|
1475
|
+
disableDisplayLogic?: boolean;
|
|
1476
|
+
disableSkipLogic?: boolean;
|
|
1477
|
+
disableButtonShape?: boolean;
|
|
1478
|
+
disableAdvancedThankYouQuestionConfig?: boolean;
|
|
1479
|
+
sfsQuestionTypes?: QuestionType[];
|
|
1480
|
+
disableShowLabelInBooleanQuestion?: boolean;
|
|
1473
1481
|
};
|
|
1474
1482
|
export type TriggerSurveyResponseType = {
|
|
1475
1483
|
trigger_id?: string | null;
|