@codetectonics/mantle 1.0.13 → 1.0.14
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/index.d.ts
CHANGED
|
@@ -647,7 +647,7 @@ interface FormPageService {
|
|
|
647
647
|
onFormValueChanged(pageContent: DynamicFormContent, formValue: any): any;
|
|
648
648
|
formDialogLayoutChanges(section: DynamicLayoutGridSection, record?: any): any;
|
|
649
649
|
onDialogFormContentLoaded(content: DialogNestedFormParams): void;
|
|
650
|
-
onDialogFormValueChanged(dialogContent: DialogNestedFormParams, formValue: any): any;
|
|
650
|
+
onDialogFormValueChanged(dialogContent: DialogNestedFormParams, formValue: any, form?: FormGroup): any;
|
|
651
651
|
beforeSave(params: any): void;
|
|
652
652
|
onSaveSuccess(response: WebApiSaveResponse): void;
|
|
653
653
|
onSaveFailure(response: WebApiSaveResponse): void;
|
|
@@ -2825,7 +2825,7 @@ declare class FeatureConfigService implements WebApiCrudAdapter, WebsocketAdapte
|
|
|
2825
2825
|
onFormValueChanged(pageContent: DynamicFormContent, formValue: any): any;
|
|
2826
2826
|
onDialogFormContentLoaded(content: DialogNestedFormParams): void;
|
|
2827
2827
|
formDialogLayoutChanges(section: DynamicLayoutGridSection, record?: any): any;
|
|
2828
|
-
onDialogFormValueChanged(dialogContent: DialogNestedFormParams, formValue: any): any;
|
|
2828
|
+
onDialogFormValueChanged(dialogContent: DialogNestedFormParams, formValue: any, form?: FormGroup): any;
|
|
2829
2829
|
additionalFormPageButtons(record: any): FormPageButton[];
|
|
2830
2830
|
save(id: string | undefined, value: any, onSuccess: (response: WebApiSaveResponse) => void, onFailure: (response: WebApiSaveResponse) => void): void;
|
|
2831
2831
|
beforeSave(value: any): void;
|