react-frontend-common-components 0.0.64 → 0.0.65
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
@@ -245,7 +245,7 @@ interface AppPasswordInputProps {
|
|
245
245
|
errorMessage?: string;
|
246
246
|
autoComplete?: string;
|
247
247
|
icon?: React$1.ReactNode;
|
248
|
-
showIcon
|
248
|
+
showIcon?: boolean;
|
249
249
|
}
|
250
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;
|
251
251
|
|