@overmap-ai/core 1.0.35-projects-licensing.16 → 1.0.35
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/forms/renderer/PatchForm/Provider.d.ts +4 -0
- package/dist/overmap-core.js +229 -431
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +229 -431
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/sdk.d.ts +1 -2
- package/dist/sdk/services/MainService.d.ts +1 -2
- package/dist/sdk/services/ProjectService.d.ts +3 -2
- package/dist/sdk/services/index.d.ts +0 -1
- package/dist/store/slices/categorySlice.d.ts +0 -1
- package/dist/store/slices/index.d.ts +0 -1
- package/dist/store/slices/issueSlice.d.ts +0 -1
- package/dist/store/slices/organizationSlice.d.ts +1 -5
- package/dist/store/slices/projectFileSlice.d.ts +0 -1
- package/dist/store/slices/projectSlice.d.ts +1 -7
- package/dist/store/slices/workspaceSlice.d.ts +0 -1
- package/dist/store/store.d.ts +1 -4
- package/dist/typings/models/base.d.ts +0 -4
- package/dist/typings/models/index.d.ts +0 -1
- package/dist/typings/models/organizations.d.ts +0 -2
- package/dist/typings/models/projects.d.ts +0 -2
- package/package.json +1 -1
- package/dist/sdk/services/LicenseService.d.ts +0 -9
- package/dist/store/slices/licenseSlice.d.ts +0 -25
- package/dist/typings/models/license.d.ts +0 -19
|
@@ -19,6 +19,10 @@ interface PatchFormProviderProps {
|
|
|
19
19
|
* ``` */
|
|
20
20
|
onError: (error: FormikErrors<Form | NewForm>) => void;
|
|
21
21
|
className?: string;
|
|
22
|
+
/** If true (default), the form will only submit if there are changes. */
|
|
23
|
+
requiresDiff?: boolean;
|
|
24
|
+
/** Called when the form's dirty state changes. */
|
|
25
|
+
onDirtyChange?: (dirty: boolean) => void;
|
|
22
26
|
}
|
|
23
27
|
/** Use PatchForms to create patch edits to existing forms rather than editing the entire form. */
|
|
24
28
|
export declare const PatchFormProvider: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<PatchFormProviderProps & import("react").RefAttributes<HTMLFormElement>>>;
|