@frigade/react 1.37.19 → 1.37.21
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/dist/index.d.ts +6 -1
- package/dist/index.js +91 -90
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +167 -166
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,10 @@ interface StepData {
|
|
|
123
123
|
* Whether to show a highlight in the page where the step is shown. Typically used in tooltips for creating small pings.
|
|
124
124
|
*/
|
|
125
125
|
showHighlight?: boolean;
|
|
126
|
+
/**
|
|
127
|
+
* Any other additional props defined in config.yml
|
|
128
|
+
*/
|
|
129
|
+
[x: string | number | symbol]: unknown;
|
|
126
130
|
}
|
|
127
131
|
interface DefaultFrigadeFlowProps {
|
|
128
132
|
flowId: string;
|
|
@@ -715,6 +719,7 @@ declare function useUser(): {
|
|
|
715
719
|
readonly setUserIdWithProperties: (userId: string, properties?: EntityProperties) => Promise<void>;
|
|
716
720
|
readonly addPropertiesToUser: (properties: EntityProperties) => Promise<void>;
|
|
717
721
|
readonly trackEventForUser: (event: string, properties?: EntityProperties) => Promise<void>;
|
|
722
|
+
readonly linkExistingGuestSessionToUser: (userId: string) => Promise<void>;
|
|
718
723
|
};
|
|
719
724
|
|
|
720
725
|
declare function useOrganization(): {
|
|
@@ -1039,4 +1044,4 @@ declare const tokens: {
|
|
|
1039
1044
|
};
|
|
1040
1045
|
};
|
|
1041
1046
|
|
|
1042
|
-
export { Appearance, Box, Button, CheckBox, CustomFormTypeProps, EntityProperties, Flow, FlowResponse, FlowType, FormInputProps, FormInputType, Label as FormLabel, TextField as FormTextField, FormValidationError, FrigadeAnnouncement, FrigadeBanner, FrigadeChecklist, DefaultAppearance as FrigadeDefaultAppearance, FrigadeEmbeddedTip, FrigadeForm, FrigadeGuide, FrigadeHeroChecklist, FrigadeNPSSurvey, FrigadeProgressBadge, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, ProgressBar, ProgressRing, PublicStepState, StepContentProps, StepData, Text, tokens, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser, useUserFlowStates };
|
|
1047
|
+
export { Appearance, Box, Button, CheckBox, CustomFormTypeProps, EntityProperties, Flow, FlowResponse, FlowType, FormInputProps, FormInputType, Label as FormLabel, TextField as FormTextField, FormValidationError, FrigadeAnnouncement, FrigadeAnnouncementProps, FrigadeBanner, FrigadeBannerProps, FrigadeChecklist, FrigadeChecklistProps, DefaultAppearance as FrigadeDefaultAppearance, FrigadeEmbeddedTip, FrigadeEmbeddedTipProps, FrigadeForm, FrigadeFormProps, FrigadeGuide, FrigadeHeroChecklist, FrigadeNPSSurvey, FrigadeNPSSurveyProps, FrigadeProgressBadge, FrigadeProgressBadgeProps, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, FrigadeTourProps, ProgressBar, ProgressRing, PublicStepState, StepContentProps, StepData, Text, tokens, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser, useUserFlowStates };
|