freemium-survey-components 2.0.473 → 2.0.474

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.
@@ -481,6 +481,7 @@ export type SurveyType = {
481
481
  ui_branding?: SurveyUiBrandingType | null;
482
482
  theme?: SurveyThemeType | null;
483
483
  meta?: SurveyMetaType;
484
+ module?: string | null;
484
485
  channels?: null;
485
486
  template?: boolean | null;
486
487
  header_message?: string | null;
@@ -1482,6 +1483,7 @@ export type ProductConfigType = {
1482
1483
  disableAdvancedThankYouQuestionConfig?: boolean;
1483
1484
  sfsQuestionTypes?: QuestionType[];
1484
1485
  disableShowLabelInBooleanQuestion?: boolean;
1486
+ viewVersioningAtNavBar?: boolean;
1485
1487
  };
1486
1488
  export type TriggerSurveyResponseType = {
1487
1489
  trigger_id?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "2.0.473",
3
+ "version": "2.0.474",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",
@@ -1,8 +0,0 @@
1
- import React, { ReactNode } from 'react';
2
- import './style.scss';
3
- interface FacebookMobileContainerProps {
4
- children: ReactNode;
5
- title?: string;
6
- }
7
- declare const FacebookMobileContainer: React.FC<FacebookMobileContainerProps>;
8
- export default FacebookMobileContainer;