UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

19 lines (18 loc) 476 B
export class LayoutSelectionPageInfo { constructor() { this.oldItems = []; this.newItems = []; this.isChanged = false; } beforeRecreatePageSelection() { this.newItems = []; this.isChanged = this.oldItems.length > 0; } changesCollected() { if (this.isChanged) { this.oldItems = this.newItems; this.newItems = []; this.isChanged = false; } } }