@agility/plenum-ui 2.0.0-rc12 → 2.0.0-rc13

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 CHANGED
@@ -865,13 +865,14 @@ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/Animated
865
865
  interface ILabelProps extends React.ComponentPropsWithoutRef<"label"> {
866
866
  display: string;
867
867
  }
868
- export interface IAnimatedLabelInputProps extends IInputFieldProps {
868
+ export interface IAnimatedLabelInputProps extends Omit<IInputFieldProps, "handleChange"> {
869
869
  id: string;
870
870
  containerStyles?: string;
871
871
  message?: string;
872
872
  required?: boolean;
873
873
  isError?: boolean;
874
874
  label: ILabelProps;
875
+ handleChange: (value: string) => void;
875
876
  }
876
877
  const AnimatedLabelInput: React.FC<IAnimatedLabelInputProps>;
877
878
  export default AnimatedLabelInput;