@toolbox-web/grid-angular 1.3.0 → 1.4.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.
Files changed (102) hide show
  1. package/README.md +146 -54
  2. package/fesm2022/toolbox-web-grid-angular-features-clipboard.mjs +58 -0
  3. package/fesm2022/toolbox-web-grid-angular-features-clipboard.mjs.map +1 -1
  4. package/fesm2022/toolbox-web-grid-angular-features-column-virtualization.mjs +37 -0
  5. package/fesm2022/toolbox-web-grid-angular-features-column-virtualization.mjs.map +1 -1
  6. package/fesm2022/toolbox-web-grid-angular-features-context-menu.mjs +51 -0
  7. package/fesm2022/toolbox-web-grid-angular-features-context-menu.mjs.map +1 -1
  8. package/fesm2022/toolbox-web-grid-angular-features-editing.mjs +115 -1
  9. package/fesm2022/toolbox-web-grid-angular-features-editing.mjs.map +1 -1
  10. package/fesm2022/toolbox-web-grid-angular-features-export.mjs +55 -2
  11. package/fesm2022/toolbox-web-grid-angular-features-export.mjs.map +1 -1
  12. package/fesm2022/toolbox-web-grid-angular-features-filtering.mjs +159 -5
  13. package/fesm2022/toolbox-web-grid-angular-features-filtering.mjs.map +1 -1
  14. package/fesm2022/toolbox-web-grid-angular-features-grouping-columns.mjs +83 -0
  15. package/fesm2022/toolbox-web-grid-angular-features-grouping-columns.mjs.map +1 -1
  16. package/fesm2022/toolbox-web-grid-angular-features-grouping-rows.mjs +82 -0
  17. package/fesm2022/toolbox-web-grid-angular-features-grouping-rows.mjs.map +1 -1
  18. package/fesm2022/toolbox-web-grid-angular-features-master-detail.mjs +109 -2
  19. package/fesm2022/toolbox-web-grid-angular-features-master-detail.mjs.map +1 -1
  20. package/fesm2022/toolbox-web-grid-angular-features-multi-sort.mjs +38 -0
  21. package/fesm2022/toolbox-web-grid-angular-features-multi-sort.mjs.map +1 -1
  22. package/fesm2022/toolbox-web-grid-angular-features-pinned-columns.mjs +37 -0
  23. package/fesm2022/toolbox-web-grid-angular-features-pinned-columns.mjs.map +1 -1
  24. package/fesm2022/toolbox-web-grid-angular-features-pinned-rows.mjs +103 -0
  25. package/fesm2022/toolbox-web-grid-angular-features-pinned-rows.mjs.map +1 -1
  26. package/fesm2022/toolbox-web-grid-angular-features-pivot.mjs +36 -0
  27. package/fesm2022/toolbox-web-grid-angular-features-pivot.mjs.map +1 -1
  28. package/fesm2022/toolbox-web-grid-angular-features-print.mjs +58 -2
  29. package/fesm2022/toolbox-web-grid-angular-features-print.mjs.map +1 -1
  30. package/fesm2022/toolbox-web-grid-angular-features-reorder-columns.mjs +52 -0
  31. package/fesm2022/toolbox-web-grid-angular-features-reorder-columns.mjs.map +1 -1
  32. package/fesm2022/toolbox-web-grid-angular-features-reorder-rows.mjs +41 -0
  33. package/fesm2022/toolbox-web-grid-angular-features-reorder-rows.mjs.map +1 -1
  34. package/fesm2022/toolbox-web-grid-angular-features-responsive.mjs +105 -2
  35. package/fesm2022/toolbox-web-grid-angular-features-responsive.mjs.map +1 -1
  36. package/fesm2022/toolbox-web-grid-angular-features-row-drag-drop.mjs +77 -0
  37. package/fesm2022/toolbox-web-grid-angular-features-row-drag-drop.mjs.map +1 -1
  38. package/fesm2022/toolbox-web-grid-angular-features-selection.mjs +52 -2
  39. package/fesm2022/toolbox-web-grid-angular-features-selection.mjs.map +1 -1
  40. package/fesm2022/toolbox-web-grid-angular-features-server-side.mjs +36 -0
  41. package/fesm2022/toolbox-web-grid-angular-features-server-side.mjs.map +1 -1
  42. package/fesm2022/toolbox-web-grid-angular-features-tooltip.mjs +36 -0
  43. package/fesm2022/toolbox-web-grid-angular-features-tooltip.mjs.map +1 -1
  44. package/fesm2022/toolbox-web-grid-angular-features-tree.mjs +53 -0
  45. package/fesm2022/toolbox-web-grid-angular-features-tree.mjs.map +1 -1
  46. package/fesm2022/toolbox-web-grid-angular-features-undo-redo.mjs +57 -2
  47. package/fesm2022/toolbox-web-grid-angular-features-undo-redo.mjs.map +1 -1
  48. package/fesm2022/toolbox-web-grid-angular-features-visibility.mjs +53 -0
  49. package/fesm2022/toolbox-web-grid-angular-features-visibility.mjs.map +1 -1
  50. package/fesm2022/toolbox-web-grid-angular.mjs +1238 -682
  51. package/fesm2022/toolbox-web-grid-angular.mjs.map +1 -1
  52. package/package.json +1 -1
  53. package/types/toolbox-web-grid-angular-features-clipboard.d.ts +23 -0
  54. package/types/toolbox-web-grid-angular-features-clipboard.d.ts.map +1 -1
  55. package/types/toolbox-web-grid-angular-features-column-virtualization.d.ts +19 -0
  56. package/types/toolbox-web-grid-angular-features-column-virtualization.d.ts.map +1 -1
  57. package/types/toolbox-web-grid-angular-features-context-menu.d.ts +22 -0
  58. package/types/toolbox-web-grid-angular-features-context-menu.d.ts.map +1 -1
  59. package/types/toolbox-web-grid-angular-features-editing.d.ts +32 -0
  60. package/types/toolbox-web-grid-angular-features-editing.d.ts.map +1 -1
  61. package/types/toolbox-web-grid-angular-features-export.d.ts +21 -3
  62. package/types/toolbox-web-grid-angular-features-export.d.ts.map +1 -1
  63. package/types/toolbox-web-grid-angular-features-filtering.d.ts +67 -6
  64. package/types/toolbox-web-grid-angular-features-filtering.d.ts.map +1 -1
  65. package/types/toolbox-web-grid-angular-features-grouping-columns.d.ts +19 -0
  66. package/types/toolbox-web-grid-angular-features-grouping-columns.d.ts.map +1 -1
  67. package/types/toolbox-web-grid-angular-features-grouping-rows.d.ts +25 -0
  68. package/types/toolbox-web-grid-angular-features-grouping-rows.d.ts.map +1 -1
  69. package/types/toolbox-web-grid-angular-features-master-detail.d.ts +23 -0
  70. package/types/toolbox-web-grid-angular-features-master-detail.d.ts.map +1 -1
  71. package/types/toolbox-web-grid-angular-features-multi-sort.d.ts +19 -0
  72. package/types/toolbox-web-grid-angular-features-multi-sort.d.ts.map +1 -1
  73. package/types/toolbox-web-grid-angular-features-pinned-columns.d.ts +18 -0
  74. package/types/toolbox-web-grid-angular-features-pinned-columns.d.ts.map +1 -1
  75. package/types/toolbox-web-grid-angular-features-pinned-rows.d.ts +19 -0
  76. package/types/toolbox-web-grid-angular-features-pinned-rows.d.ts.map +1 -1
  77. package/types/toolbox-web-grid-angular-features-pivot.d.ts +19 -0
  78. package/types/toolbox-web-grid-angular-features-pivot.d.ts.map +1 -1
  79. package/types/toolbox-web-grid-angular-features-print.d.ts +22 -3
  80. package/types/toolbox-web-grid-angular-features-print.d.ts.map +1 -1
  81. package/types/toolbox-web-grid-angular-features-reorder-columns.d.ts +22 -0
  82. package/types/toolbox-web-grid-angular-features-reorder-columns.d.ts.map +1 -1
  83. package/types/toolbox-web-grid-angular-features-reorder-rows.d.ts +19 -0
  84. package/types/toolbox-web-grid-angular-features-reorder-rows.d.ts.map +1 -1
  85. package/types/toolbox-web-grid-angular-features-responsive.d.ts +22 -0
  86. package/types/toolbox-web-grid-angular-features-responsive.d.ts.map +1 -1
  87. package/types/toolbox-web-grid-angular-features-row-drag-drop.d.ts +27 -0
  88. package/types/toolbox-web-grid-angular-features-row-drag-drop.d.ts.map +1 -1
  89. package/types/toolbox-web-grid-angular-features-selection.d.ts +21 -3
  90. package/types/toolbox-web-grid-angular-features-selection.d.ts.map +1 -1
  91. package/types/toolbox-web-grid-angular-features-server-side.d.ts +19 -0
  92. package/types/toolbox-web-grid-angular-features-server-side.d.ts.map +1 -1
  93. package/types/toolbox-web-grid-angular-features-tooltip.d.ts +19 -0
  94. package/types/toolbox-web-grid-angular-features-tooltip.d.ts.map +1 -1
  95. package/types/toolbox-web-grid-angular-features-tree.d.ts +22 -0
  96. package/types/toolbox-web-grid-angular-features-tree.d.ts.map +1 -1
  97. package/types/toolbox-web-grid-angular-features-undo-redo.d.ts +22 -3
  98. package/types/toolbox-web-grid-angular-features-undo-redo.d.ts.map +1 -1
  99. package/types/toolbox-web-grid-angular-features-visibility.d.ts +22 -0
  100. package/types/toolbox-web-grid-angular-features-visibility.d.ts.map +1 -1
  101. package/types/toolbox-web-grid-angular.d.ts +865 -107
  102. package/types/toolbox-web-grid-angular.d.ts.map +1 -1
@@ -1,2 +1,29 @@
1
1
  export { _Augmentation as _RowDragDropAugmentation } from '@toolbox-web/grid/features/row-drag-drop';
2
+ import * as _angular_core from '@angular/core';
3
+ import { OnInit, OnDestroy } from '@angular/core';
4
+ import { RowDragDropConfig, RowMoveDetail, RowDragStartDetail, RowDragEndDetail, RowDropDetail, RowTransferDetail } from '@toolbox-web/grid/plugins/row-drag-drop';
5
+
6
+ /**
7
+ * Owns the binding(s) `[rowDragDrop], [rowMove], [rowDragStart], [rowDragEnd], [rowDrop], [rowTransfer]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridRowDragDropDirective implements OnInit, OnDestroy {
12
+ private readonly elementRef;
13
+ readonly rowDragDrop: _angular_core.InputSignal<boolean | RowDragDropConfig<any> | undefined>;
14
+ readonly rowMove: _angular_core.OutputEmitterRef<RowMoveDetail<any>>;
15
+ readonly rowDragStart: _angular_core.OutputEmitterRef<RowDragStartDetail<any>>;
16
+ readonly rowDragEnd: _angular_core.OutputEmitterRef<RowDragEndDetail<any>>;
17
+ readonly rowDrop: _angular_core.OutputEmitterRef<RowDropDetail<any>>;
18
+ readonly rowTransfer: _angular_core.OutputEmitterRef<RowTransferDetail<any>>;
19
+ private readonly listeners;
20
+ private static readonly EVENTS;
21
+ constructor();
22
+ ngOnInit(): void;
23
+ ngOnDestroy(): void;
24
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridRowDragDropDirective, never>;
25
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridRowDragDropDirective, "tbw-grid[rowDragDrop], tbw-grid[rowMove], tbw-grid[rowDragStart], tbw-grid[rowDragEnd], tbw-grid[rowDrop], tbw-grid[rowTransfer]", never, { "rowDragDrop": { "alias": "rowDragDrop"; "required": false; "isSignal": true; }; }, { "rowMove": "rowMove"; "rowDragStart": "rowDragStart"; "rowDragEnd": "rowDragEnd"; "rowDrop": "rowDrop"; "rowTransfer": "rowTransfer"; }, never, never, true, never>;
26
+ }
27
+
28
+ export { GridRowDragDropDirective };
2
29
  //# sourceMappingURL=toolbox-web-grid-angular-features-row-drag-drop.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbox-web-grid-angular-features-row-drag-drop.d.ts","sources":[],"mappings":"","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-row-drag-drop.d.ts","sources":["../../../../libs/grid-angular/features/row-drag-drop/src/grid-row-drag-drop.directive.ts"],"mappings":";;;;;AAmBA;;;;AAIG;AACH,cAKa,wBAAyB,YAAW,MAAM,EAAE,SAAS;AAChE;0BAGoB,aAAA,CAAA,WAAA,WAAA,iBAAA;sBAEJ,aAAA,CAAA,gBAAA,CAAA,aAAA;2BAEK,aAAA,CAAA,gBAAA,CAAA,kBAAA;yBAEF,aAAA,CAAA,gBAAA,CAAA,gBAAA;sBAEH,aAAA,CAAA,gBAAA,CAAA,aAAA;0BAEI,aAAA,CAAA,gBAAA,CAAA,iBAAA;AAEpB;AACA;;AAQA;AAmBA;oDA5CW,wBAAwB;sDAAxB,wBAAwB;AAmDpC;;;;","names":[]}
@@ -1,7 +1,25 @@
1
- import { Signal } from '@angular/core';
2
- import { SelectionResult, CellRange } from '@toolbox-web/grid/plugins/selection';
1
+ import * as _angular_core from '@angular/core';
2
+ import { OnInit, OnDestroy, Signal } from '@angular/core';
3
+ import { SelectionConfig, SelectionChangeDetail, SelectionResult, CellRange } from '@toolbox-web/grid/plugins/selection';
3
4
  export { _Augmentation as _SelectionAugmentation } from '@toolbox-web/grid/features/selection';
4
5
 
6
+ /**
7
+ * Owns the binding(s) `[selection], [selectionChange]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridSelectionDirective implements OnInit, OnDestroy {
12
+ private readonly elementRef;
13
+ readonly selection: _angular_core.InputSignal<SelectionConfig<any> | "cell" | "row" | "range" | undefined>;
14
+ readonly selectionChange: _angular_core.OutputEmitterRef<SelectionChangeDetail>;
15
+ private listener?;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ ngOnDestroy(): void;
19
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridSelectionDirective, never>;
20
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridSelectionDirective, "tbw-grid[selection], tbw-grid[selectionChange]", never, { "selection": { "alias": "selection"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
21
+ }
22
+
5
23
  /**
6
24
  * Selection feature for @toolbox-web/grid-angular
7
25
  *
@@ -168,6 +186,6 @@ interface SelectionMethods<TRow = unknown> {
168
186
  */
169
187
  declare function injectGridSelection<TRow = unknown>(selector?: string): SelectionMethods<TRow>;
170
188
 
171
- export { injectGridSelection };
189
+ export { GridSelectionDirective, injectGridSelection };
172
190
  export type { SelectionMethods };
173
191
  //# sourceMappingURL=toolbox-web-grid-angular-features-selection.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbox-web-grid-angular-features-selection.d.ts","sources":["../../../../libs/grid-angular/features/selection/src/index.ts"],"mappings":";;;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCG;;AAaH;;;;;AAKG;AACG,UAAW,gBAAgB;AAC/B;;AAEG;;AAGH;;AAEG;;AAGH;;;AAGG;AACH,wBAAoB,eAAe;AAEnC;;AAEG;;AAGH;;AAEG;wBACiB,SAAS;AAE7B;;;;;;;;;;;;;;AAcG;AACH,eAAW,MAAM,CAAC,eAAe;AAEjC;;;;;;;;;;;;;;;AAeG;AACH,wBAAoB,MAAM;AAE1B;;;;;;;;;;;;;;;;;;AAkBG;AACH,kBAAc,MAAM;AAEpB;;;AAGG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CG;AACH,iBAAgB,mBAAmB,qCAAyC,gBAAgB;;;;","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-selection.d.ts","sources":["../../../../libs/grid-angular/features/selection/src/grid-selection.directive.ts","../../../../libs/grid-angular/features/selection/src/index.ts"],"mappings":";;;;;AAYA;;;;AAIG;AACH,cAIa,sBAAuB,YAAW,MAAM,EAAE,SAAS;AAC9D;wBAGkB,aAAA,CAAA,WAAA,CAAA,eAAA;8BACM,aAAA,CAAA,gBAAA,CAAA,qBAAA;;;AAUxB;AAMA;oDArBW,sBAAsB;sDAAtB,sBAAsB;AA8BlC;;ACnDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCG;;AAcH;;;;;AAKG;AACG,UAAW,gBAAgB;AAC/B;;AAEG;;AAGH;;AAEG;;AAGH;;;AAGG;AACH,wBAAoB,eAAe;AAEnC;;AAEG;;AAGH;;AAEG;wBACiB,SAAS;AAE7B;;;;;;;;;;;;;;AAcG;AACH,eAAW,MAAM,CAAC,eAAe;AAEjC;;;;;;;;;;;;;;;AAeG;AACH,wBAAoB,MAAM;AAE1B;;;;;;;;;;;;;;;;;;AAkBG;AACH,kBAAc,MAAM;AAEpB;;;AAGG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0CG;AACH,iBAAgB,mBAAmB,qCAAyC,gBAAgB;;;;","names":[]}
@@ -1,2 +1,21 @@
1
1
  export { _Augmentation as _ServerSideAugmentation } from '@toolbox-web/grid/features/server-side';
2
+ import * as i0 from '@angular/core';
3
+ import { OnDestroy } from '@angular/core';
4
+ import { ServerSideConfig } from '@toolbox-web/grid/plugins/server-side';
5
+
6
+ /**
7
+ * Owns the binding(s) `[serverSide]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridServerSideDirective implements OnDestroy {
12
+ private readonly elementRef;
13
+ readonly serverSide: i0.InputSignal<ServerSideConfig | undefined>;
14
+ constructor();
15
+ ngOnDestroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridServerSideDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GridServerSideDirective, "tbw-grid[serverSide]", never, { "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
+ }
19
+
20
+ export { GridServerSideDirective };
2
21
  //# sourceMappingURL=toolbox-web-grid-angular-features-server-side.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbox-web-grid-angular-features-server-side.d.ts","sources":[],"mappings":"","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-server-side.d.ts","sources":["../../../../libs/grid-angular/features/server-side/src/grid-server-side.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,uBAAwB,YAAW,SAAS;AACvD;yBAEmBA,EAAA,CAAA,WAAA,CAAA,gBAAA;;AAMnB;yCATW,uBAAuB;2CAAvB,uBAAuB;AAYnC;;;;","names":["_angular_core"]}
@@ -1,2 +1,21 @@
1
1
  export { _Augmentation as _TooltipAugmentation } from '@toolbox-web/grid/features/tooltip';
2
+ import * as i0 from '@angular/core';
3
+ import { OnDestroy } from '@angular/core';
4
+ import { TooltipConfig } from '@toolbox-web/grid/plugins/tooltip';
5
+
6
+ /**
7
+ * Owns the binding(s) `[tooltip]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridTooltipDirective implements OnDestroy {
12
+ private readonly elementRef;
13
+ readonly tooltip: i0.InputSignal<boolean | TooltipConfig | undefined>;
14
+ constructor();
15
+ ngOnDestroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridTooltipDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GridTooltipDirective, "tbw-grid[tooltip]", never, { "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
+ }
19
+
20
+ export { GridTooltipDirective };
2
21
  //# sourceMappingURL=toolbox-web-grid-angular-features-tooltip.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbox-web-grid-angular-features-tooltip.d.ts","sources":[],"mappings":"","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-tooltip.d.ts","sources":["../../../../libs/grid-angular/features/tooltip/src/grid-tooltip.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,oBAAqB,YAAW,SAAS;AACpD;sBAEgBA,EAAA,CAAA,WAAA,WAAA,aAAA;;AAMhB;yCATW,oBAAoB;2CAApB,oBAAoB;AAYhC;;;;","names":["_angular_core"]}
@@ -1,2 +1,24 @@
1
1
  export { _Augmentation as _TreeAugmentation } from '@toolbox-web/grid/features/tree';
2
+ import * as _angular_core from '@angular/core';
3
+ import { OnInit, OnDestroy } from '@angular/core';
4
+ import { TreeConfig, TreeExpandDetail } from '@toolbox-web/grid/plugins/tree';
5
+
6
+ /**
7
+ * Owns the binding(s) `[tree], [treeExpand]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridTreeDirective implements OnInit, OnDestroy {
12
+ private readonly elementRef;
13
+ readonly tree: _angular_core.InputSignal<boolean | TreeConfig | undefined>;
14
+ readonly treeExpand: _angular_core.OutputEmitterRef<TreeExpandDetail<any>>;
15
+ private listener?;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ ngOnDestroy(): void;
19
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridTreeDirective, never>;
20
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridTreeDirective, "tbw-grid[tree], tbw-grid[treeExpand]", never, { "tree": { "alias": "tree"; "required": false; "isSignal": true; }; }, { "treeExpand": "treeExpand"; }, never, never, true, never>;
21
+ }
22
+
23
+ export { GridTreeDirective };
2
24
  //# sourceMappingURL=toolbox-web-grid-angular-features-tree.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbox-web-grid-angular-features-tree.d.ts","sources":[],"mappings":"","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-tree.d.ts","sources":["../../../../libs/grid-angular/features/tree/src/grid-tree.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,iBAAkB,YAAW,MAAM,EAAE,SAAS;AACzD;mBAEa,aAAA,CAAA,WAAA,WAAA,UAAA;yBAEM,aAAA,CAAA,gBAAA,CAAA,gBAAA;;;AAUnB;AAOA;oDAtBW,iBAAiB;sDAAjB,iBAAiB;AA+B7B;;;;","names":[]}
@@ -1,7 +1,26 @@
1
- import { Signal } from '@angular/core';
2
- import { UndoRedoAction } from '@toolbox-web/grid/plugins/undo-redo';
1
+ import * as _angular_core from '@angular/core';
2
+ import { OnInit, OnDestroy, Signal } from '@angular/core';
3
+ import { UndoRedoConfig, UndoRedoDetail, UndoRedoAction } from '@toolbox-web/grid/plugins/undo-redo';
3
4
  export { _Augmentation as _UndoRedoAugmentation } from '@toolbox-web/grid/features/undo-redo';
4
5
 
6
+ /**
7
+ * Owns the binding(s) `[undoRedo], [undo], [redo]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridUndoRedoDirective implements OnInit, OnDestroy {
12
+ private readonly elementRef;
13
+ readonly undoRedo: _angular_core.InputSignal<boolean | UndoRedoConfig | undefined>;
14
+ readonly undo: _angular_core.OutputEmitterRef<UndoRedoDetail>;
15
+ readonly redo: _angular_core.OutputEmitterRef<UndoRedoDetail>;
16
+ private readonly listeners;
17
+ constructor();
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridUndoRedoDirective, never>;
21
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridUndoRedoDirective, "tbw-grid[undoRedo], tbw-grid[undo], tbw-grid[redo]", never, { "undoRedo": { "alias": "undoRedo"; "required": false; "isSignal": true; }; }, { "undo": "undo"; "redo": "redo"; }, never, never, true, never>;
22
+ }
23
+
5
24
  /**
6
25
  * Undo/Redo feature for @toolbox-web/grid-angular
7
26
  *
@@ -146,6 +165,6 @@ interface UndoRedoMethods {
146
165
  */
147
166
  declare function injectGridUndoRedo(selector?: string): UndoRedoMethods;
148
167
 
149
- export { injectGridUndoRedo };
168
+ export { GridUndoRedoDirective, injectGridUndoRedo };
150
169
  export type { UndoRedoMethods };
151
170
  //# sourceMappingURL=toolbox-web-grid-angular-features-undo-redo.d.ts.map
@@ -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"],"mappings":";;;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BG;;AAQH;;;;AAIG;UACc,eAAe;AAC9B;;;AAGG;AACH,gBAAY,cAAc;AAE1B;;;AAGG;AACH,gBAAY,cAAc;AAE1B;;;;;;;;;;;;AAYG;AACH,aAAS,MAAM;AAEf;;;;;;;;;;;;AAYG;AACH,aAAS,MAAM;AAEf;;AAEG;;AAGH;;AAEG;AACH,wBAAoB,cAAc;AAElC;;AAEG;AACH,wBAAoB,cAAc;AAElC;;;AAGG;AACH;AAEA;;;;AAIG;;AAGH;;;;;AAKG;;AAGH;;AAEG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+BG;AACH,iBAAgB,kBAAkB,qBAAyB,eAAe;;;;","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-undo-redo.d.ts","sources":["../../../../libs/grid-angular/features/undo-redo/src/grid-undo-redo.directive.ts","../../../../libs/grid-angular/features/undo-redo/src/index.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,qBAAsB,YAAW,MAAM,EAAE,SAAS;AAC7D;uBAEiB,aAAA,CAAA,WAAA,WAAA,cAAA;mBACJ,aAAA,CAAA,gBAAA,CAAA,cAAA;mBACA,aAAA,CAAA,gBAAA,CAAA,cAAA;AAEb;;AASA;AAWA;oDA3BW,qBAAqB;sDAArB,qBAAqB;AAmCjC;;ACvDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BG;;AASH;;;;AAIG;UACc,eAAe;AAC9B;;;AAGG;AACH,gBAAY,cAAc;AAE1B;;;AAGG;AACH,gBAAY,cAAc;AAE1B;;;;;;;;;;;;AAYG;AACH,aAAS,MAAM;AAEf;;;;;;;;;;;;AAYG;AACH,aAAS,MAAM;AAEf;;AAEG;;AAGH;;AAEG;AACH,wBAAoB,cAAc;AAElC;;AAEG;AACH,wBAAoB,cAAc;AAElC;;;AAGG;AACH;AAEA;;;;AAIG;;AAGH;;;;;AAKG;;AAGH;;AAEG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+BG;AACH,iBAAgB,kBAAkB,qBAAyB,eAAe;;;;","names":[]}
@@ -1,2 +1,24 @@
1
1
  export { _Augmentation as _VisibilityAugmentation } from '@toolbox-web/grid/features/visibility';
2
+ import * as _angular_core from '@angular/core';
3
+ import { OnInit, OnDestroy } from '@angular/core';
4
+ import { VisibilityConfig, ColumnVisibilityDetail } from '@toolbox-web/grid/plugins/visibility';
5
+
6
+ /**
7
+ * Owns the binding(s) `[visibility], [columnVisibility]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
8
+ *
9
+ * @category Directive
10
+ */
11
+ declare class GridVisibilityDirective implements OnInit, OnDestroy {
12
+ private readonly elementRef;
13
+ readonly visibility: _angular_core.InputSignal<boolean | VisibilityConfig | undefined>;
14
+ readonly columnVisibility: _angular_core.OutputEmitterRef<ColumnVisibilityDetail>;
15
+ private listener?;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ ngOnDestroy(): void;
19
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridVisibilityDirective, never>;
20
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridVisibilityDirective, "tbw-grid[visibility], tbw-grid[columnVisibility]", never, { "visibility": { "alias": "visibility"; "required": false; "isSignal": true; }; }, { "columnVisibility": "columnVisibility"; }, never, never, true, never>;
21
+ }
22
+
23
+ export { GridVisibilityDirective };
2
24
  //# sourceMappingURL=toolbox-web-grid-angular-features-visibility.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolbox-web-grid-angular-features-visibility.d.ts","sources":[],"mappings":"","names":[]}
1
+ {"version":3,"file":"toolbox-web-grid-angular-features-visibility.d.ts","sources":["../../../../libs/grid-angular/features/visibility/src/grid-visibility.directive.ts"],"mappings":";;;;;AAaA;;;;AAIG;AACH,cAIa,uBAAwB,YAAW,MAAM,EAAE,SAAS;AAC/D;yBAEmB,aAAA,CAAA,WAAA,WAAA,gBAAA;+BACM,aAAA,CAAA,gBAAA,CAAA,sBAAA;;;AAUzB;AAMA;oDApBW,uBAAuB;sDAAvB,uBAAuB;AA6BnC;;;;","names":[]}