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 +3 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/app-password-input/app-password-input.tsx +11 -4
- package/src/components/app-upload-image/app-upload-image.css +15 -19
- package/src/components/app-upload-image/app-upload-image.tsx +10 -18
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;
|