@rilaykit/core 5.0.0 → 5.1.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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -255,6 +255,9 @@ interface FieldRendererProps {
|
|
|
255
255
|
children: React__default.ReactNode;
|
|
256
256
|
id: string;
|
|
257
257
|
disabled?: boolean;
|
|
258
|
+
error?: ValidationError[];
|
|
259
|
+
isValidating?: boolean;
|
|
260
|
+
touched?: boolean;
|
|
258
261
|
[key: string]: any;
|
|
259
262
|
}
|
|
260
263
|
type FormRowRenderer = RendererChildrenFunction<FormRowRendererProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -255,6 +255,9 @@ interface FieldRendererProps {
|
|
|
255
255
|
children: React__default.ReactNode;
|
|
256
256
|
id: string;
|
|
257
257
|
disabled?: boolean;
|
|
258
|
+
error?: ValidationError[];
|
|
259
|
+
isValidating?: boolean;
|
|
260
|
+
touched?: boolean;
|
|
258
261
|
[key: string]: any;
|
|
259
262
|
}
|
|
260
263
|
type FormRowRenderer = RendererChildrenFunction<FormRowRendererProps>;
|