freemium-survey-components 0.16.6 → 1.0.0
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/README.md +1 -1
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/types/components/binary/index.d.ts +1 -1
- package/lib/types/components/prompt/index.d.ts +3 -1
- package/lib/types/components/text-input/index.d.ts +6 -6
- package/lib/types/index.d.ts +1 -0
- package/lib/types/survey/card/index.d.ts +2 -2
- package/lib/types/{components/nps/index.d.ts → survey/channels.stories.d.ts} +0 -0
- package/lib/types/survey/channelsPreview/channels.stories.d.ts +1 -0
- package/lib/types/survey/channelsPreview/index.d.ts +5 -0
- package/lib/types/survey/channelsPreview/instagram.d.ts +3 -0
- package/lib/types/survey/channelsPreview/question.d.ts +12 -0
- package/lib/types/survey/channelsPreview/utils.d.ts +1 -0
- package/lib/types/survey/channelsPreview/whatsapp.d.ts +3 -0
- package/lib/types/survey/meta-channel-preview/channels.stories.d.ts +1 -0
- package/lib/types/survey/meta-channel-preview/index.d.ts +5 -0
- package/lib/types/survey/meta-channel-preview/question.d.ts +12 -0
- package/lib/types/survey/meta-channel-preview/utils.d.ts +1 -0
- package/lib/types/survey/meta-channel-preview/whatsapp.d.ts +3 -0
- package/lib/types/survey/standard/index.d.ts +2 -2
- package/lib/types/survey/utils/logics.d.ts +42 -42
- package/lib/types/survey/utils/use-card-survey.d.ts +8 -8
- package/lib/types/survey/utils/use-standard-survey.d.ts +8 -8
- package/lib/types/survey/utils/use-survey.d.ts +5 -2
- package/lib/types/survey/whatsapp/index.d.ts +3 -0
- package/lib/types/survey/whatsapp/question.d.ts +8 -0
- package/lib/types/survey/whatsapp/utils.d.ts +1 -0
- package/lib/types/survey/widget/index.d.ts +4 -2
- package/lib/types/types.d.ts +22 -15
- package/package.json +1 -1
- package/lib/types/components/nps/nps.stories.d.ts +0 -0
- package/lib/types/newTypes.d.ts +0 -0
- package/lib/types/survey/utils/utils.d.ts +0 -0
package/README.md
CHANGED
|
@@ -202,4 +202,4 @@ import {Range} from 'freemium-survey-components'
|
|
|
202
202
|
|
|
203
203
|
### Rules
|
|
204
204
|
|
|
205
|
-
- survey
|
|
205
|
+
- Props (survey,answers) passed to Survey component and WebInAppSurvey component are cached on mount. In order to pass new value, component needs to be remounted.
|