@frigade/react 1.32.28 → 1.32.29

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
@@ -534,4 +534,27 @@ declare function Label({ title, required, appearance, }: {
534
534
  appearance: Appearance;
535
535
  }): JSX.Element;
536
536
 
537
- export { Appearance, CustomFormTypeProps, EntityProperties, FormInputProps, FormInputType, Label as FormLabel, FormValidationError, FrigadeBanner, FrigadeChecklist, FrigadeEmbeddedTip, FrigadeForm, FrigadeGuide, FrigadeHeroChecklist, FrigadeNPSSurvey, FrigadeProgressBadge, FrigadeProvider, FrigadeSupportWidget, BaseTheme as FrigadeTheme, FrigadeTour, StepContentProps, StepData, useFlowOpens, useFlowResponses, useFlows, useOrganization, useUser };
537
+ interface ProgressRingProps {
538
+ fillColor: string;
539
+ size: number;
540
+ bgColor?: string;
541
+ percentage: number;
542
+ className?: string;
543
+ style?: React__default.CSSProperties;
544
+ children?: React__default.ReactNode;
545
+ }
546
+ declare const ProgressRing: FC<ProgressRingProps>;
547
+
548
+ type CheckBoxType = 'square' | 'round';
549
+ interface CheckBoxProps {
550
+ value: boolean;
551
+ type?: CheckBoxType;
552
+ primaryColor?: string;
553
+ progress?: number;
554
+ appearance?: Appearance;
555
+ className?: string;
556
+ style?: React__default.CSSProperties;
557
+ }
558
+ declare const CheckBox: FC<CheckBoxProps>;
559
+
560
+ 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 };