@modul/mbui 0.0.37-beta-select-065a93e6 → 0.0.37-beta-select-d6263ab6
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "
|
2
|
+
declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "textAlign" | "maxLength" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & {
|
3
3
|
value?: string;
|
4
4
|
onChange?: (newValue: string) => unknown;
|
5
5
|
maxLength: number;
|
@@ -11,7 +11,7 @@ declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputH
|
|
11
11
|
} & {
|
12
12
|
render: (props: import("input-otp").RenderProps) => React.ReactNode;
|
13
13
|
children?: never;
|
14
|
-
} & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "
|
14
|
+
} & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "textAlign" | "maxLength" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & {
|
15
15
|
value?: string;
|
16
16
|
onChange?: (newValue: string) => unknown;
|
17
17
|
maxLength: number;
|
@@ -12,7 +12,7 @@ interface IValue {
|
|
12
12
|
placeholder: string | undefined;
|
13
13
|
}
|
14
14
|
interface ISelectDrawerProps {
|
15
|
-
options?: [];
|
15
|
+
options?: IOption[];
|
16
16
|
onChange?: (value: string | string[] | null) => void;
|
17
17
|
placeholder?: string;
|
18
18
|
multiple?: boolean;
|
@@ -30,6 +30,7 @@ interface ISelectDrawerProps {
|
|
30
30
|
dropTitle?: string;
|
31
31
|
dropTitleCSS?: string;
|
32
32
|
optionWrapperCSS?: string;
|
33
|
+
modal?: boolean;
|
33
34
|
}
|
34
35
|
declare const SelectDrawer: FC<ISelectDrawerProps>;
|
35
36
|
export { SelectDrawer };
|