react-crud-mui 0.2.39 → 0.2.40
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/components/detail-page/components/DetailPageDefaultLayout.d.ts +1 -3
- package/dist/components/detail-page/hooks/useDetailPageModal.d.ts +0 -2
- package/dist/components/detail-page/pages/DetailPageContent.d.ts +2 -12
- package/dist/coreui.js +2235 -2264
- package/package.json +1 -1
- package/dist/components/form/components/FormErrorsTracker.d.ts +0 -6
- package/dist/components/form/components/FormValuesTracker.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { FieldErrors, FieldValues } from 'react-hook-form';
|
|
2
|
-
interface FormValuesTrackerProps<TModel extends FieldValues> {
|
|
3
|
-
onErrorsChange(errors: FieldErrors<TModel>, isValid?: boolean): void;
|
|
4
|
-
}
|
|
5
|
-
declare function FormErrorsTracker<TModel extends FieldValues>({ onErrorsChange, }: FormValuesTrackerProps<TModel>): null;
|
|
6
|
-
export default FormErrorsTracker;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { FieldValues } from 'react-hook-form';
|
|
2
|
-
interface FormValuesTrackerProps<TModel extends FieldValues> {
|
|
3
|
-
onValuesChange(values: Partial<TModel>): void;
|
|
4
|
-
}
|
|
5
|
-
declare function FormValuesTracker<TModel extends FieldValues>({ onValuesChange, }: FormValuesTrackerProps<TModel>): null;
|
|
6
|
-
export default FormValuesTracker;
|