@agility/plenum-ui 2.0.0-rc42 → 2.0.0-rc43

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
@@ -459,11 +459,9 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/InputFiel
459
459
  clientSideCheck?: boolean;
460
460
  /** Placeholder text */
461
461
  placeholder?: string;
462
- /**ref for input */
463
- ref?: React.Ref<HTMLInputElement>;
464
462
  }
465
- const InputField: React.FC<IInputFieldProps>;
466
- export default InputField;
463
+ const _InputField: React.ForwardRefExoticComponent<IInputFieldProps & React.RefAttributes<HTMLInputElement>>;
464
+ export default _InputField;
467
465
 
468
466
  }
469
467
  declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/index' {