@ai-table/state 0.6.1 → 0.7.0
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.
|
@@ -356,8 +356,10 @@ const getRecordsBySharedJson = (recordJsonArray, fields) => {
|
|
|
356
356
|
class UndoManagerService {
|
|
357
357
|
constructor() {
|
|
358
358
|
this._undoManager = null;
|
|
359
|
-
this._canUndoCount = signal(0,
|
|
360
|
-
|
|
359
|
+
this._canUndoCount = signal(0, /* @ts-ignore */
|
|
360
|
+
...(ngDevMode ? [{ debugName: "_canUndoCount" }] : /* istanbul ignore next */ []));
|
|
361
|
+
this._canRedoCount = signal(0, /* @ts-ignore */
|
|
362
|
+
...(ngDevMode ? [{ debugName: "_canRedoCount" }] : /* istanbul ignore next */ []));
|
|
361
363
|
this._aiTable = null;
|
|
362
364
|
}
|
|
363
365
|
get undoManager() {
|
|
@@ -402,10 +404,10 @@ class UndoManagerService {
|
|
|
402
404
|
this._canUndoCount.set(0);
|
|
403
405
|
this._canRedoCount.set(0);
|
|
404
406
|
}
|
|
405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
406
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: UndoManagerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
408
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: UndoManagerService }); }
|
|
407
409
|
}
|
|
408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: UndoManagerService, decorators: [{
|
|
409
411
|
type: Injectable
|
|
410
412
|
}] });
|
|
411
413
|
|