Skip to content

Commit

Permalink
Form and editors: making IsDirty readonly (#25582)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMoiseev authored Sep 15, 2023
1 parent 3694042 commit b682a77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/devextreme/js/ui/editor/editor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export interface EditorOptions<TComponent> extends WidgetOptions<TComponent> {
* @default false
* @public
*/
isDirty?: boolean;
readonly isDirty?: boolean;
}
/**
* @docid
Expand Down
2 changes: 1 addition & 1 deletion packages/devextreme/js/ui/form.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ export interface dxFormOptions extends WidgetOptions<dxForm> {
* @default false
* @public
*/
isDirty?: boolean;
readonly isDirty?: boolean;
}
/**
* @docid
Expand Down
4 changes: 2 additions & 2 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16759,7 +16759,7 @@ declare module DevExpress.ui {
/**
* [descr:dxFormOptions.isDirty]
*/
isDirty?: boolean;
readonly isDirty?: boolean;
}
/**
* @deprecated Use SimpleItem instead
Expand Down Expand Up @@ -29604,7 +29604,7 @@ declare module DevExpress.ui {
/**
* [descr:EditorOptions.isDirty]
*/
isDirty?: boolean;
readonly isDirty?: boolean;
}
/**
* [descr:dxFilterBuilderField]
Expand Down

0 comments on commit b682a77

Please sign in to comment.