@faasjs/ant-design 0.0.3-beta.84 → 0.0.3-beta.86
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.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -207,6 +207,8 @@ declare function FormItem<T = any>(props: FormItemProps<T>): react_jsx_runtime.J
|
|
|
207
207
|
declare namespace FormItem {
|
|
208
208
|
var useStatus: () => {
|
|
209
209
|
status?: "" | "error" | "success" | "warning" | "validating";
|
|
210
|
+
errors: react.ReactNode[];
|
|
211
|
+
warnings: react.ReactNode[];
|
|
210
212
|
};
|
|
211
213
|
}
|
|
212
214
|
|