@mindly/ui-components 5.65.0 → 5.67.0
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/cjs/index.js +3 -3
- package/dist/cjs/lib2/features/CardModal/CardModal.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ScreenInput/ScreenInput.d.ts +2 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/features/CardModal/CardModal.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ScreenInput/ScreenInput.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
5
5
|
showPasswordButton?: boolean;
|
|
6
6
|
className?: string;
|
|
7
7
|
label?: string;
|
|
8
|
+
isAutoGrow?: boolean;
|
|
9
|
+
icon?: React.ReactNode | string;
|
|
8
10
|
}
|
|
9
11
|
declare const ScreenInput: React.ForwardRefExoticComponent<ScreenInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
10
12
|
export default ScreenInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -1867,6 +1867,8 @@ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
1867
1867
|
showPasswordButton?: boolean;
|
|
1868
1868
|
className?: string;
|
|
1869
1869
|
label?: string;
|
|
1870
|
+
isAutoGrow?: boolean;
|
|
1871
|
+
icon?: React__default.ReactNode | string;
|
|
1870
1872
|
}
|
|
1871
1873
|
declare const ScreenInput: React__default.ForwardRefExoticComponent<ScreenInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1872
1874
|
|
|
@@ -2462,6 +2464,7 @@ type CardModalProps = {
|
|
|
2462
2464
|
onClose: () => void;
|
|
2463
2465
|
}) => React__default.ReactNode;
|
|
2464
2466
|
mode?: HTMLIonModalElement['mode'];
|
|
2467
|
+
onDidPresent?: () => void;
|
|
2465
2468
|
};
|
|
2466
2469
|
declare const CardModal: React__default.ForwardRefExoticComponent<CardModalProps & {
|
|
2467
2470
|
children?: React__default.ReactNode;
|