@frigade/react 1.32.24 → 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 +8 -1
- package/lib/index.js +210 -203
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +210 -203
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -347,6 +347,7 @@ type ModalPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' |
|
|
|
347
347
|
interface FormInputType {
|
|
348
348
|
id: string;
|
|
349
349
|
title?: string;
|
|
350
|
+
subtitle?: string;
|
|
350
351
|
type: string;
|
|
351
352
|
required?: boolean;
|
|
352
353
|
validation?: InputValidation;
|
|
@@ -519,4 +520,10 @@ declare function useOrganization(): {
|
|
|
519
520
|
trackEventForOrganization: (event: string, properties?: EntityProperties) => Promise<void>;
|
|
520
521
|
};
|
|
521
522
|
|
|
522
|
-
|
|
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 };
|