@frigade/react 1.32.42 → 1.32.44
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 +5 -2
- package/lib/index.js +136 -136
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +109 -109
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -170,6 +170,7 @@ interface BaseTheme {
|
|
|
170
170
|
borderRadius?: number;
|
|
171
171
|
modalContainer?: CSSProperties;
|
|
172
172
|
}
|
|
173
|
+
declare const DefaultAppearance: Appearance;
|
|
173
174
|
|
|
174
175
|
interface Flow {
|
|
175
176
|
id: number;
|
|
@@ -540,9 +541,11 @@ declare function useOrganization(): {
|
|
|
540
541
|
declare function Label({ title, required, appearance, }: {
|
|
541
542
|
title: string;
|
|
542
543
|
required: boolean;
|
|
543
|
-
appearance
|
|
544
|
+
appearance?: Appearance;
|
|
544
545
|
}): JSX.Element;
|
|
545
546
|
|
|
547
|
+
declare function TextField({ formInput, customFormTypeProps, onSaveInputData, setFormValidationErrors, inputData, }: FormInputProps): JSX.Element;
|
|
548
|
+
|
|
546
549
|
interface ProgressRingProps {
|
|
547
550
|
fillColor: string;
|
|
548
551
|
size: number;
|
|
@@ -566,4 +569,4 @@ interface CheckBoxProps {
|
|
|
566
569
|
}
|
|
567
570
|
declare const CheckBox: FC<CheckBoxProps>;
|
|
568
571
|
|
|
569
|
-
export { Appearance, CheckBox, CustomFormTypeProps, EntityProperties, FormInputProps, FormInputType, Label as FormLabel, FormValidationError, FrigadeBanner, FrigadeChecklist, FrigadeEmbeddedTip, FrigadeForm, FrigadeGuide, FrigadeHeroChecklist, FrigadeNPSSurvey, FrigadeProgressBadge, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, ProgressRing, StepContentProps, StepData, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser };
|
|
572
|
+
export { Appearance, CheckBox, CustomFormTypeProps, EntityProperties, FormInputProps, FormInputType, Label as FormLabel, TextField as FormTextField, FormValidationError, FrigadeBanner, FrigadeChecklist, DefaultAppearance as FrigadeDefaultAppearance, FrigadeEmbeddedTip, FrigadeForm, FrigadeGuide, FrigadeHeroChecklist, FrigadeNPSSurvey, FrigadeProgressBadge, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, ProgressRing, StepContentProps, StepData, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser };
|