@nutui/nutui-react-taro 1.5.4 → 1.5.5
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/CHANGELOG.md +9 -1
- package/dist/esm/Input.js +1 -1
- package/dist/esm/{input.taro-97af6c96.js → input.taro-77dcb8d9.js} +15 -7
- package/dist/esm/nutui-react.es.js +1 -1
- package/dist/locales/base.js +1 -1
- package/dist/locales/en-US.js +1 -1
- package/dist/locales/id-ID.js +1 -1
- package/dist/locales/zh-CN.js +1 -1
- package/dist/locales/zh-TW.js +1 -1
- package/dist/locales/zh-UG.js +1 -1
- package/dist/nutui.react.mjs +408 -375
- package/dist/nutui.react.umd.js +408 -375
- package/dist/style.css +1 -1
- package/dist/style.mjs +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/style.mjs
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -927,7 +927,7 @@ interface InputProps extends BasicComponent {
|
|
|
927
927
|
onClickRightIcon?: (value: any) => void;
|
|
928
928
|
onClick?: (value: any) => void;
|
|
929
929
|
}
|
|
930
|
-
declare const Input:
|
|
930
|
+
declare const Input: React__default.ForwardRefExoticComponent<Partial<InputProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, "onFocus" | "onBlur" | "onChange" | "onClick"> & React__default.RefAttributes<unknown>>;
|
|
931
931
|
|
|
932
932
|
interface InputNumberProps extends BasicComponent {
|
|
933
933
|
disabled: boolean;
|