@frigade/react 1.32.25 → 1.32.26

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/lib/index.d.ts CHANGED
@@ -520,4 +520,10 @@ declare function useOrganization(): {
520
520
  trackEventForOrganization: (event: string, properties?: EntityProperties) => Promise<void>;
521
521
  };
522
522
 
523
- export { Appearance, CustomFormTypeProps, EntityProperties, FormInputProps, FormInputType, FormValidationError, FrigadeBanner, FrigadeChecklist, FrigadeEmbeddedTip, FrigadeForm, FrigadeGuide, FrigadeHeroChecklist, FrigadeProgressBadge, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, StepContentProps, StepData, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser };
523
+ declare function Label({ title, required, appearance, }: {
524
+ title: string;
525
+ required: boolean;
526
+ appearance: Appearance;
527
+ }): JSX.Element;
528
+
529
+ export { Appearance, CustomFormTypeProps, EntityProperties, FormInputProps, FormInputType, Label as FormLabel, FormValidationError, FrigadeBanner, FrigadeChecklist, FrigadeEmbeddedTip, FrigadeForm, FrigadeGuide, FrigadeHeroChecklist, FrigadeProgressBadge, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, StepContentProps, StepData, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser };