@web-fuse/wf-components 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Form/Input/Input.Password.d.ts +14 -0
- package/dist/Form/Input/Input.Search.d.ts +5 -0
- package/dist/Form/Input/Input.TextArea.d.ts +5 -0
- package/dist/Form/Input/Input.d.ts +11 -0
- package/dist/Form/Input/index.d.ts +14 -0
- package/dist/Form/index.d.ts +1 -1
- package/dist/Layout/Main/MainSettings.d.ts +11 -1
- package/dist/Layout/Main/index.d.ts +3 -1
- package/dist/index.cjs.js +124 -81
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1337 -1237
- package/dist/index.es.js.map +1 -1
- package/dist/util/randomstring.d.ts +5 -0
- package/package.json +1 -1
- package/dist/Form/Input.d.ts +0 -16
package/package.json
CHANGED
package/dist/Form/Input.d.ts
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
import { InputProps as AntProps, InputRef } from "antd";
|
3
|
-
export declare const HtmlInput: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<Omit<AntProps & import("react").RefAttributes<InputRef>, "ref"> & {
|
4
|
-
ref?: ((instance: InputRef | null) => void) | import("react").RefObject<InputRef> | null | undefined;
|
5
|
-
}, never>> & Omit<import("react").ForwardRefExoticComponent<AntProps & import("react").RefAttributes<InputRef>> & {
|
6
|
-
Group: import("react").FC<import("antd/es/input").GroupProps>;
|
7
|
-
Search: import("react").ForwardRefExoticComponent<import("antd/es/input").SearchProps & import("react").RefAttributes<InputRef>>;
|
8
|
-
TextArea: import("react").ForwardRefExoticComponent<import("antd/es/input").TextAreaProps & import("react").RefAttributes<import("antd/es/input/TextArea").TextAreaRef>>;
|
9
|
-
Password: import("react").ForwardRefExoticComponent<import("antd/es/input").PasswordProps & import("react").RefAttributes<InputRef>>;
|
10
|
-
OTP: import("react").ForwardRefExoticComponent<import("antd/es/input/OTP").OTPProps & import("react").RefAttributes<import("antd/es/input/OTP").OTPRef>>;
|
11
|
-
}, keyof import("react").Component<any, {}, any>>;
|
12
|
-
interface InputProps extends AntProps {
|
13
|
-
label?: React.ReactNode;
|
14
|
-
}
|
15
|
-
declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<InputRef>>;
|
16
|
-
export default Input;
|