react-frontend-common-components 0.0.62 → 0.0.64

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
@@ -244,8 +244,10 @@ interface AppPasswordInputProps {
244
244
  triggerFocus?: boolean;
245
245
  errorMessage?: string;
246
246
  autoComplete?: string;
247
+ icon?: React$1.ReactNode;
248
+ showIcon: boolean;
247
249
  }
248
- declare const AppPasswordInput: ({ label, name, value, dataTestId, id, disabled, handleChange, onClick, defaultValue, onPressEnter, className, errorMessage, isAutoFocus, autoComplete, }: AppPasswordInputProps) => react_jsx_runtime.JSX.Element;
250
+ declare const AppPasswordInput: ({ label, name, value, dataTestId, id, disabled, handleChange, onClick, defaultValue, onPressEnter, className, errorMessage, isAutoFocus, triggerFocus, autoComplete, icon, showIcon, }: AppPasswordInputProps) => react_jsx_runtime.JSX.Element;
249
251
 
250
252
  interface TitleProps {
251
253
  mainText: React$1.ReactNode;