@nutui/nutui-react 1.5.4 → 1.5.5-beta.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/CHANGELOG.md +9 -1
- package/dist/esm/Form.js +6 -4
- package/dist/esm/Image.js +10 -12
- 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 +119 -90
- package/dist/nutui.react.umd.js +119 -90
- 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
|
@@ -957,7 +957,7 @@ interface InputProps extends BasicComponent {
|
|
|
957
957
|
onClickRightIcon?: (value: any) => void;
|
|
958
958
|
onClick?: (value: any) => void;
|
|
959
959
|
}
|
|
960
|
-
declare const Input:
|
|
960
|
+
declare const Input: React__default.ForwardRefExoticComponent<Partial<InputProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, "onFocus" | "onBlur" | "onChange" | "onClick"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
961
961
|
|
|
962
962
|
interface InputNumberProps extends BasicComponent {
|
|
963
963
|
disabled: boolean;
|