@meshmakers/shared-ui 3.3.400 → 3.3.420
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/package.json
CHANGED
|
@@ -385,6 +385,7 @@ interface BaseFormConfig {
|
|
|
385
385
|
isViewMode?: boolean;
|
|
386
386
|
isLoading?: boolean;
|
|
387
387
|
isSaving?: boolean;
|
|
388
|
+
showCancelButton?: boolean;
|
|
388
389
|
showLoadingOverlay?: boolean;
|
|
389
390
|
/**
|
|
390
391
|
* Indicates whether the form has unsaved changes.
|
|
@@ -404,6 +405,7 @@ declare class BaseFormComponent implements HasUnsavedChanges {
|
|
|
404
405
|
protected get saveButtonText(): string;
|
|
405
406
|
protected get cancelButtonText(): string;
|
|
406
407
|
protected get showSaveButton(): boolean;
|
|
408
|
+
protected get showCancelButton(): boolean;
|
|
407
409
|
protected get saveButtonDisabled(): boolean;
|
|
408
410
|
protected onSave(): void;
|
|
409
411
|
protected onCancel(): void;
|