react-frontend-common-components 0.0.66 → 0.0.68
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 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/app-back-arrow/app-back-arrow.tsx +4 -3
- package/src/components/app-password-input/app-password-input.tsx +5 -1
- package/src/themes/icons/icons.tsx +15 -0
package/dist/index.d.ts
CHANGED
@@ -99,7 +99,7 @@ interface BackArrowProps {
|
|
99
99
|
href?: string;
|
100
100
|
className?: string;
|
101
101
|
backIcon?: React$1.ReactNode;
|
102
|
-
onClick?:
|
102
|
+
onClick?: MouseEventHandler<HTMLElement>;
|
103
103
|
}
|
104
104
|
declare const AppBackArrow: ({ text, href, className, backIcon, onClick, }: BackArrowProps) => react_jsx_runtime.JSX.Element;
|
105
105
|
|
@@ -246,9 +246,10 @@ interface AppPasswordInputProps {
|
|
246
246
|
errorMessage?: string;
|
247
247
|
autoComplete?: string;
|
248
248
|
icon?: React$1.ReactNode;
|
249
|
+
hiddenIcon?: React$1.ReactNode;
|
249
250
|
showIcon?: boolean;
|
250
251
|
}
|
251
|
-
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;
|
252
|
+
declare const AppPasswordInput: ({ label, name, value, dataTestId, id, disabled, handleChange, onClick, defaultValue, onPressEnter, className, errorMessage, isAutoFocus, triggerFocus, autoComplete, icon, hiddenIcon, showIcon, }: AppPasswordInputProps) => react_jsx_runtime.JSX.Element;
|
252
253
|
|
253
254
|
interface TitleProps {
|
254
255
|
mainText: React$1.ReactNode;
|