@toolbox-web/grid-angular 0.12.1 → 0.13.1
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/README.md +98 -0
- package/fesm2022/toolbox-web-grid-angular-features-clipboard.mjs +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-clipboard.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-export.mjs +16 -1
- package/fesm2022/toolbox-web-grid-angular-features-export.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-filtering.mjs +16 -1
- package/fesm2022/toolbox-web-grid-angular-features-filtering.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-pinned-columns.mjs +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-pinned-columns.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-print.mjs +16 -1
- package/fesm2022/toolbox-web-grid-angular-features-print.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-selection.mjs +35 -1
- package/fesm2022/toolbox-web-grid-angular-features-selection.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-undo-redo.mjs +63 -5
- package/fesm2022/toolbox-web-grid-angular-features-undo-redo.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular.mjs +1002 -14
- package/fesm2022/toolbox-web-grid-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/types/toolbox-web-grid-angular-features-undo-redo.d.ts +24 -4
- package/types/toolbox-web-grid-angular-features-undo-redo.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular.d.ts +578 -9
- package/types/toolbox-web-grid-angular.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -49,13 +49,33 @@ interface UndoRedoMethods {
|
|
|
49
49
|
*/
|
|
50
50
|
redo: () => EditAction | null;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* Reactive signal indicating whether undo is available.
|
|
53
|
+
* Updates automatically when edits are made, undone, redone, or history is cleared.
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```typescript
|
|
57
|
+
* // In template:
|
|
58
|
+
* // <button [disabled]="!undoRedo.canUndo()">Undo</button>
|
|
59
|
+
*
|
|
60
|
+
* // In computed:
|
|
61
|
+
* readonly undoAvailable = computed(() => this.undoRedo.canUndo());
|
|
62
|
+
* ```
|
|
53
63
|
*/
|
|
54
|
-
canUndo:
|
|
64
|
+
canUndo: Signal<boolean>;
|
|
55
65
|
/**
|
|
56
|
-
*
|
|
66
|
+
* Reactive signal indicating whether redo is available.
|
|
67
|
+
* Updates automatically when edits are made, undone, redone, or history is cleared.
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* ```typescript
|
|
71
|
+
* // In template:
|
|
72
|
+
* // <button [disabled]="!undoRedo.canRedo()">Redo</button>
|
|
73
|
+
*
|
|
74
|
+
* // In computed:
|
|
75
|
+
* readonly redoAvailable = computed(() => this.undoRedo.canRedo());
|
|
76
|
+
* ```
|
|
57
77
|
*/
|
|
58
|
-
canRedo:
|
|
78
|
+
canRedo: Signal<boolean>;
|
|
59
79
|
/**
|
|
60
80
|
* Clear all undo/redo history.
|
|
61
81
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-undo-redo.d.ts","sources":["../../../../libs/grid-angular/features/undo-redo/src/index.ts"],"sourcesContent":[null],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BG;;AAcH;;;;AAIG;;AAED;;;AAGG;AACH,gBAAA,UAAA;AAEA;;;AAGG;AACH,gBAAA,UAAA;AAEA;;AAEG;;AAGH;;AAEG
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-undo-redo.d.ts","sources":["../../../../libs/grid-angular/features/undo-redo/src/index.ts"],"sourcesContent":[null],"names":[],"mappings":";;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BG;;AAcH;;;;AAIG;;AAED;;;AAGG;AACH,gBAAA,UAAA;AAEA;;;AAGG;AACH,gBAAA,UAAA;AAEA;;;;;;;;;;;;AAYG;AACH,aAAA,MAAA;AAEA;;;;;;;;;;;;AAYG;AACH,aAAA,MAAA;AAEA;;AAEG;;AAGH;;AAEG;AACH,wBAAA,UAAA;AAEA;;AAEG;AACH,wBAAA,UAAA;AAEA;;AAEG;AACH,aAAA,MAAA;AACD;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BG;AACH,iBAAA,kBAAA,IAAA,eAAA;;;;"}
|