tapquest-ui-yeulamvietnam 2.13.2 → 2.14.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/index.d.mts +9 -8
- package/package.json +1 -8
package/dist/index.d.mts
CHANGED
|
@@ -13,6 +13,7 @@ import * as antd_es_form_FormItem from 'antd/es/form/FormItem';
|
|
|
13
13
|
import * as antd_es_input_OTP from 'antd/es/input/OTP';
|
|
14
14
|
import * as antd_es_input_TextArea from 'antd/es/input/TextArea';
|
|
15
15
|
import * as antd_es_input from 'antd/es/input';
|
|
16
|
+
import * as rc_input from 'rc-input';
|
|
16
17
|
import * as antd_es_avatar_AvatarGroup from 'antd/es/avatar/AvatarGroup';
|
|
17
18
|
|
|
18
19
|
interface AppbarMenuItem {
|
|
@@ -238,19 +239,19 @@ declare const FormItem: styled_components_dist_types.IStyledComponentBase<"web",
|
|
|
238
239
|
};
|
|
239
240
|
}, keyof react.Component<any, {}, any>>;
|
|
240
241
|
|
|
241
|
-
declare const Input: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<Omit<antd.InputProps & react.RefAttributes<
|
|
242
|
-
ref?: react.Ref<
|
|
243
|
-
}, never>> & string & Omit<react.ForwardRefExoticComponent<antd.InputProps & react.RefAttributes<
|
|
242
|
+
declare const Input: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<Omit<antd.InputProps & react.RefAttributes<rc_input.InputRef>, "ref"> & {
|
|
243
|
+
ref?: react.Ref<rc_input.InputRef>;
|
|
244
|
+
}, never>> & string & Omit<react.ForwardRefExoticComponent<antd.InputProps & react.RefAttributes<rc_input.InputRef>> & {
|
|
244
245
|
Group: react.FC<antd_es_input.GroupProps>;
|
|
245
|
-
Search: react.ForwardRefExoticComponent<antd_es_input.SearchProps & react.RefAttributes<
|
|
246
|
+
Search: react.ForwardRefExoticComponent<antd_es_input.SearchProps & react.RefAttributes<rc_input.InputRef>>;
|
|
246
247
|
TextArea: react.ForwardRefExoticComponent<antd_es_input.TextAreaProps & react.RefAttributes<antd_es_input_TextArea.TextAreaRef>>;
|
|
247
|
-
Password: react.ForwardRefExoticComponent<antd_es_input.PasswordProps & react.RefAttributes<
|
|
248
|
+
Password: react.ForwardRefExoticComponent<antd_es_input.PasswordProps & react.RefAttributes<rc_input.InputRef>>;
|
|
248
249
|
OTP: react.ForwardRefExoticComponent<antd_es_input_OTP.OTPProps & react.RefAttributes<antd_es_input_OTP.OTPRef>>;
|
|
249
250
|
}, keyof react.Component<any, {}, any>>;
|
|
250
251
|
|
|
251
|
-
declare const InputPassword: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<Omit<antd_es_input.PasswordProps & react.RefAttributes<
|
|
252
|
-
ref?: react.Ref<
|
|
253
|
-
}, never>> & string & Omit<react.ForwardRefExoticComponent<antd_es_input.PasswordProps & react.RefAttributes<
|
|
252
|
+
declare const InputPassword: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<Omit<antd_es_input.PasswordProps & react.RefAttributes<rc_input.InputRef>, "ref"> & {
|
|
253
|
+
ref?: react.Ref<rc_input.InputRef>;
|
|
254
|
+
}, never>> & string & Omit<react.ForwardRefExoticComponent<antd_es_input.PasswordProps & react.RefAttributes<rc_input.InputRef>>, keyof react.Component<any, {}, any>>;
|
|
254
255
|
|
|
255
256
|
interface InputSearchProps extends InputProps {
|
|
256
257
|
placeholder?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tapquest-ui-yeulamvietnam",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -8,13 +8,6 @@
|
|
|
8
8
|
"main": "./dist/index.mjs",
|
|
9
9
|
"module": "./dist/index.mjs",
|
|
10
10
|
"types": "./dist/index.d.mts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.mjs",
|
|
14
|
-
"types": "./dist/index.d.mts"
|
|
15
|
-
},
|
|
16
|
-
"./package.json": "./package.json"
|
|
17
|
-
},
|
|
18
11
|
"scripts": {
|
|
19
12
|
"build": "tsup",
|
|
20
13
|
"dev": "tsup --watch",
|