@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.
- package/README.md +146 -54
- package/fesm2022/toolbox-web-grid-angular-features-clipboard.mjs +58 -0
- package/fesm2022/toolbox-web-grid-angular-features-clipboard.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-column-virtualization.mjs +37 -0
- package/fesm2022/toolbox-web-grid-angular-features-column-virtualization.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-context-menu.mjs +51 -0
- package/fesm2022/toolbox-web-grid-angular-features-context-menu.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-editing.mjs +115 -1
- package/fesm2022/toolbox-web-grid-angular-features-editing.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-export.mjs +55 -2
- package/fesm2022/toolbox-web-grid-angular-features-export.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-filtering.mjs +159 -5
- package/fesm2022/toolbox-web-grid-angular-features-filtering.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-grouping-columns.mjs +83 -0
- package/fesm2022/toolbox-web-grid-angular-features-grouping-columns.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-grouping-rows.mjs +82 -0
- package/fesm2022/toolbox-web-grid-angular-features-grouping-rows.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-master-detail.mjs +109 -2
- package/fesm2022/toolbox-web-grid-angular-features-master-detail.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-multi-sort.mjs +38 -0
- package/fesm2022/toolbox-web-grid-angular-features-multi-sort.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-pinned-columns.mjs +37 -0
- package/fesm2022/toolbox-web-grid-angular-features-pinned-columns.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-pinned-rows.mjs +103 -0
- package/fesm2022/toolbox-web-grid-angular-features-pinned-rows.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-pivot.mjs +36 -0
- package/fesm2022/toolbox-web-grid-angular-features-pivot.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-print.mjs +58 -2
- package/fesm2022/toolbox-web-grid-angular-features-print.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-reorder-columns.mjs +52 -0
- package/fesm2022/toolbox-web-grid-angular-features-reorder-columns.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-reorder-rows.mjs +41 -0
- package/fesm2022/toolbox-web-grid-angular-features-reorder-rows.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-responsive.mjs +105 -2
- package/fesm2022/toolbox-web-grid-angular-features-responsive.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-row-drag-drop.mjs +77 -0
- package/fesm2022/toolbox-web-grid-angular-features-row-drag-drop.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-selection.mjs +52 -2
- package/fesm2022/toolbox-web-grid-angular-features-selection.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-server-side.mjs +36 -0
- package/fesm2022/toolbox-web-grid-angular-features-server-side.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-tooltip.mjs +36 -0
- package/fesm2022/toolbox-web-grid-angular-features-tooltip.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-tree.mjs +53 -0
- package/fesm2022/toolbox-web-grid-angular-features-tree.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-undo-redo.mjs +57 -2
- package/fesm2022/toolbox-web-grid-angular-features-undo-redo.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular-features-visibility.mjs +53 -0
- package/fesm2022/toolbox-web-grid-angular-features-visibility.mjs.map +1 -1
- package/fesm2022/toolbox-web-grid-angular.mjs +1238 -682
- package/fesm2022/toolbox-web-grid-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/types/toolbox-web-grid-angular-features-clipboard.d.ts +23 -0
- package/types/toolbox-web-grid-angular-features-clipboard.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-column-virtualization.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-column-virtualization.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-context-menu.d.ts +22 -0
- package/types/toolbox-web-grid-angular-features-context-menu.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-editing.d.ts +32 -0
- package/types/toolbox-web-grid-angular-features-editing.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-export.d.ts +21 -3
- package/types/toolbox-web-grid-angular-features-export.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-filtering.d.ts +67 -6
- package/types/toolbox-web-grid-angular-features-filtering.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-grouping-columns.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-grouping-columns.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-grouping-rows.d.ts +25 -0
- package/types/toolbox-web-grid-angular-features-grouping-rows.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-master-detail.d.ts +23 -0
- package/types/toolbox-web-grid-angular-features-master-detail.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-multi-sort.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-multi-sort.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-pinned-columns.d.ts +18 -0
- package/types/toolbox-web-grid-angular-features-pinned-columns.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-pinned-rows.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-pinned-rows.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-pivot.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-pivot.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-print.d.ts +22 -3
- package/types/toolbox-web-grid-angular-features-print.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-reorder-columns.d.ts +22 -0
- package/types/toolbox-web-grid-angular-features-reorder-columns.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-reorder-rows.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-reorder-rows.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-responsive.d.ts +22 -0
- package/types/toolbox-web-grid-angular-features-responsive.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-row-drag-drop.d.ts +27 -0
- package/types/toolbox-web-grid-angular-features-row-drag-drop.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-selection.d.ts +21 -3
- package/types/toolbox-web-grid-angular-features-selection.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-server-side.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-server-side.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-tooltip.d.ts +19 -0
- package/types/toolbox-web-grid-angular-features-tooltip.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-tree.d.ts +22 -0
- package/types/toolbox-web-grid-angular-features-tree.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-undo-redo.d.ts +22 -3
- package/types/toolbox-web-grid-angular-features-undo-redo.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular-features-visibility.d.ts +22 -0
- package/types/toolbox-web-grid-angular-features-visibility.d.ts.map +1 -1
- package/types/toolbox-web-grid-angular.d.ts +865 -107
- package/types/toolbox-web-grid-angular.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,2 +1,25 @@
|
|
|
1
1
|
export { _Augmentation as _ClipboardAugmentation } from '@toolbox-web/grid/features/clipboard';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { ClipboardConfig, CopyDetail, PasteDetail } from '@toolbox-web/grid/plugins/clipboard';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[clipboard], [copy], [paste]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridClipboardDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly clipboard: _angular_core.InputSignal<boolean | ClipboardConfig | undefined>;
|
|
14
|
+
readonly copy: _angular_core.OutputEmitterRef<CopyDetail>;
|
|
15
|
+
readonly paste: _angular_core.OutputEmitterRef<PasteDetail>;
|
|
16
|
+
private readonly listeners;
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridClipboardDirective, never>;
|
|
21
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridClipboardDirective, "tbw-grid[clipboard], tbw-grid[copy], tbw-grid[paste]", never, { "clipboard": { "alias": "clipboard"; "required": false; "isSignal": true; }; }, { "copy": "copy"; "paste": "paste"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { GridClipboardDirective };
|
|
2
25
|
//# sourceMappingURL=toolbox-web-grid-angular-features-clipboard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-clipboard.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-clipboard.d.ts","sources":["../../../../libs/grid-angular/features/clipboard/src/grid-clipboard.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,sBAAuB,YAAW,MAAM,EAAE,SAAS;AAC9D;wBAEkB,aAAA,CAAA,WAAA,WAAA,eAAA;mBACL,aAAA,CAAA,gBAAA,CAAA,UAAA;oBACC,aAAA,CAAA,gBAAA,CAAA,WAAA;AAEd;;AASA;AAWA;oDA3BW,sBAAsB;sDAAtB,sBAAsB;AAmClC;;;;","names":[]}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
export { _Augmentation as _ColumnVirtualizationAugmentation } from '@toolbox-web/grid/features/column-virtualization';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { ColumnVirtualizationConfig } from '@toolbox-web/grid/plugins/column-virtualization';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[columnVirtualization]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridColumnVirtualizationDirective implements OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly columnVirtualization: i0.InputSignal<boolean | ColumnVirtualizationConfig | undefined>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridColumnVirtualizationDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridColumnVirtualizationDirective, "tbw-grid[columnVirtualization]", never, { "columnVirtualization": { "alias": "columnVirtualization"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { GridColumnVirtualizationDirective };
|
|
2
21
|
//# sourceMappingURL=toolbox-web-grid-angular-features-column-virtualization.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-column-virtualization.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-column-virtualization.d.ts","sources":["../../../../libs/grid-angular/features/column-virtualization/src/grid-column-virtualization.directive.ts"],"mappings":";;;;;AAYA;;;;AAIG;AACH,cAIa,iCAAkC,YAAW,SAAS;AACjE;mCAE6BA,EAAA,CAAA,WAAA,WAAA,0BAAA;;AAM7B;yCATW,iCAAiC;2CAAjC,iCAAiC;AAY7C;;;;","names":["_angular_core"]}
|
|
@@ -1,2 +1,24 @@
|
|
|
1
1
|
export { _Augmentation as _ContextMenuAugmentation } from '@toolbox-web/grid/features/context-menu';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { ContextMenuConfig, ContextMenuOpenDetail } from '@toolbox-web/grid/plugins/context-menu';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[contextMenu], [contextMenuOpen]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridContextMenuDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly contextMenu: _angular_core.InputSignal<boolean | ContextMenuConfig | undefined>;
|
|
14
|
+
readonly contextMenuOpen: _angular_core.OutputEmitterRef<ContextMenuOpenDetail>;
|
|
15
|
+
private listener?;
|
|
16
|
+
constructor();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridContextMenuDirective, never>;
|
|
20
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridContextMenuDirective, "tbw-grid[contextMenu], tbw-grid[contextMenuOpen]", never, { "contextMenu": { "alias": "contextMenu"; "required": false; "isSignal": true; }; }, { "contextMenuOpen": "contextMenuOpen"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { GridContextMenuDirective };
|
|
2
24
|
//# sourceMappingURL=toolbox-web-grid-angular-features-context-menu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-context-menu.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-context-menu.d.ts","sources":["../../../../libs/grid-angular/features/context-menu/src/grid-context-menu.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,wBAAyB,YAAW,MAAM,EAAE,SAAS;AAChE;0BAEoB,aAAA,CAAA,WAAA,WAAA,iBAAA;8BACI,aAAA,CAAA,gBAAA,CAAA,qBAAA;;;AAUxB;AAMA;oDApBW,wBAAwB;sDAAxB,wBAAwB;AA6BpC;;;;","names":[]}
|
|
@@ -1,2 +1,34 @@
|
|
|
1
1
|
export { _Augmentation as _EditingAugmentation } from '@toolbox-web/grid/features/editing';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { CellCommitEvent, RowCommitEvent } from '@toolbox-web/grid-angular';
|
|
5
|
+
export { BaseGridEditor, BaseGridEditorCVA, BaseOverlayEditor, FormArrayContext, GridColumnEditor, GridEditorContext, GridFormArray, GridLazyForm, LazyFormFactory, OverlayPosition, RowFormChangeEvent, StructuralEditorContext, TbwEditor, getFormArrayContext, getLazyFormContext } from '@toolbox-web/grid-angular';
|
|
6
|
+
import { EditingConfig, CellCancelDetail, ChangedRowsResetDetail, EditOpenDetail, BeforeEditCloseDetail, EditCloseDetail, DirtyChangeDetail } from '@toolbox-web/grid/plugins/editing';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Owns the binding(s) `[editing], [cellCommit], [cellCancel], [rowCommit], [changedRowsReset], [editOpen], [beforeEditClose], [editClose], [dirtyChange]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
10
|
+
*
|
|
11
|
+
* @category Directive
|
|
12
|
+
*/
|
|
13
|
+
declare class GridEditingDirective implements OnInit, OnDestroy {
|
|
14
|
+
private readonly elementRef;
|
|
15
|
+
readonly editing: _angular_core.InputSignal<boolean | EditingConfig | "click" | "dblclick" | "manual" | undefined>;
|
|
16
|
+
readonly cellCommit: _angular_core.OutputEmitterRef<CellCommitEvent<unknown, unknown>>;
|
|
17
|
+
readonly cellCancel: _angular_core.OutputEmitterRef<CellCancelDetail>;
|
|
18
|
+
readonly rowCommit: _angular_core.OutputEmitterRef<RowCommitEvent<unknown>>;
|
|
19
|
+
readonly changedRowsReset: _angular_core.OutputEmitterRef<ChangedRowsResetDetail<any>>;
|
|
20
|
+
readonly editOpen: _angular_core.OutputEmitterRef<EditOpenDetail<any>>;
|
|
21
|
+
readonly beforeEditClose: _angular_core.OutputEmitterRef<BeforeEditCloseDetail<any>>;
|
|
22
|
+
readonly editClose: _angular_core.OutputEmitterRef<EditCloseDetail<any>>;
|
|
23
|
+
readonly dirtyChange: _angular_core.OutputEmitterRef<DirtyChangeDetail<any>>;
|
|
24
|
+
private readonly listeners;
|
|
25
|
+
private static readonly EVENTS;
|
|
26
|
+
constructor();
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridEditingDirective, never>;
|
|
30
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridEditingDirective, "tbw-grid[editing], tbw-grid[cellCommit], tbw-grid[cellCancel], tbw-grid[rowCommit], tbw-grid[changedRowsReset], tbw-grid[editOpen], tbw-grid[beforeEditClose], tbw-grid[editClose], tbw-grid[dirtyChange]", never, { "editing": { "alias": "editing"; "required": false; "isSignal": true; }; }, { "cellCommit": "cellCommit"; "cellCancel": "cellCancel"; "rowCommit": "rowCommit"; "changedRowsReset": "changedRowsReset"; "editOpen": "editOpen"; "beforeEditClose": "beforeEditClose"; "editClose": "editClose"; "dirtyChange": "dirtyChange"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export { GridEditingDirective };
|
|
2
34
|
//# sourceMappingURL=toolbox-web-grid-angular-features-editing.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-editing.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-editing.d.ts","sources":["../../../../libs/grid-angular/features/editing/src/grid-editing.directive.ts"],"mappings":";;;;;;;AAiCA;;;;AAIG;AACH,cAKa,oBAAqB,YAAW,MAAM,EAAE,SAAS;AAC5D;sBAEgB,aAAA,CAAA,WAAA,WAAA,aAAA;yBACG,aAAA,CAAA,gBAAA,CAAA,eAAA;yBACA,aAAA,CAAA,gBAAA,CAAA,gBAAA;wBACD,aAAA,CAAA,gBAAA,CAAA,cAAA;+BAEO,aAAA,CAAA,gBAAA,CAAA,sBAAA;uBAER,aAAA,CAAA,gBAAA,CAAA,cAAA;8BAEO,aAAA,CAAA,gBAAA,CAAA,qBAAA;wBAEN,aAAA,CAAA,gBAAA,CAAA,eAAA;0BAEE,aAAA,CAAA,gBAAA,CAAA,iBAAA;AAEpB;AACA;;AAiBA;AAsBA;oDA1DW,oBAAoB;sDAApB,oBAAoB;AAiEhC;;;;","names":[]}
|
|
@@ -1,7 +1,25 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { OnInit, OnDestroy, Signal } from '@angular/core';
|
|
3
|
+
import { ExportConfig, ExportCompleteDetail, ExportParams, ExportFormat } from '@toolbox-web/grid/plugins/export';
|
|
3
4
|
export { _Augmentation as _ExportAugmentation } from '@toolbox-web/grid/features/export';
|
|
4
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[export], [exportComplete]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridExportDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly exportFeature: _angular_core.InputSignal<boolean | ExportConfig | undefined>;
|
|
14
|
+
readonly exportComplete: _angular_core.OutputEmitterRef<ExportCompleteDetail>;
|
|
15
|
+
private listener?;
|
|
16
|
+
constructor();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridExportDirective, never>;
|
|
20
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridExportDirective, "tbw-grid[export], tbw-grid[exportComplete]", never, { "exportFeature": { "alias": "export"; "required": false; "isSignal": true; }; }, { "exportComplete": "exportComplete"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
|
|
5
23
|
/**
|
|
6
24
|
* Export feature for @toolbox-web/grid-angular
|
|
7
25
|
*
|
|
@@ -114,6 +132,6 @@ interface ExportMethods {
|
|
|
114
132
|
*/
|
|
115
133
|
declare function injectGridExport(selector?: string): ExportMethods;
|
|
116
134
|
|
|
117
|
-
export { injectGridExport };
|
|
135
|
+
export { GridExportDirective, injectGridExport };
|
|
118
136
|
export type { ExportMethods };
|
|
119
137
|
//# sourceMappingURL=toolbox-web-grid-angular-features-export.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-export.d.ts","sources":["../../../../libs/grid-angular/features/export/src/index.ts"],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-export.d.ts","sources":["../../../../libs/grid-angular/features/export/src/grid-export.directive.ts","../../../../libs/grid-angular/features/export/src/index.ts"],"mappings":";;;;;AAgBA;;;;AAIG;AACH,cAIa,mBAAoB,YAAW,MAAM,EAAE,SAAS;AAC3D;4BAEsB,aAAA,CAAA,WAAA,WAAA,YAAA;6BACC,aAAA,CAAA,gBAAA,CAAA,oBAAA;;;AAUvB;AAMA;oDApBW,mBAAmB;sDAAnB,mBAAmB;AA6B/B;;ACtDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BG;;AASH;;;;;AAKG;UACc,aAAa;AAC5B;;;;AAIG;AACH,8CAA0C,OAAO,CAAC,YAAY;AAE9D;;;;AAIG;AACH,gDAA4C,OAAO,CAAC,YAAY;AAEhE;;;;AAIG;AACH,+CAA2C,OAAO,CAAC,YAAY;AAE/D;;AAEG;;AAGH;;AAEG;AACH;gBAA+B,YAAY;mBAAa,IAAI;AAAE;AAE9D;;;AAGG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCG;AACH,iBAAgB,gBAAgB,qBAAyB,aAAa;;;;","names":[]}
|
|
@@ -1,14 +1,75 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { OnInit, OnDestroy, Signal } from '@angular/core';
|
|
3
|
+
import { FilterConfig, FilterChangeDetail, FilterModel, BlankMode } from '@toolbox-web/grid/plugins/filtering';
|
|
3
4
|
export { _Augmentation as _FilteringAugmentation } from '@toolbox-web/grid/features/filtering';
|
|
5
|
+
export { BaseFilterPanel } from '@toolbox-web/grid-angular';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Owns the `[filtering]` input and `(filterChange)` output on `<tbw-grid>`.
|
|
9
|
+
*
|
|
10
|
+
* Selector matches when *either* binding is present so users can pick the
|
|
11
|
+
* style that suits their template — both go through the same claim and the
|
|
12
|
+
* same wiring.
|
|
13
|
+
* @category Directive
|
|
14
|
+
*/
|
|
15
|
+
declare class GridFilteringDirective implements OnInit, OnDestroy {
|
|
16
|
+
private readonly elementRef;
|
|
17
|
+
/**
|
|
18
|
+
* Enable column filtering. Identical semantics to the deprecated input on
|
|
19
|
+
* `Grid` — this directive owns the binding when both are present.
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```html
|
|
23
|
+
* <tbw-grid [filtering]="true" />
|
|
24
|
+
* <tbw-grid [filtering]="{ debounceMs: 200 }" />
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
readonly filtering: _angular_core.InputSignal<boolean | FilterConfig<any> | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Emitted when filter values change.
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```html
|
|
33
|
+
* <tbw-grid (filterChange)="onFilterChange($event)" />
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
readonly filterChange: _angular_core.OutputEmitterRef<FilterChangeDetail>;
|
|
37
|
+
private listener?;
|
|
38
|
+
constructor();
|
|
39
|
+
ngOnInit(): void;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridFilteringDirective, never>;
|
|
42
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridFilteringDirective, "tbw-grid[filtering], tbw-grid[filterChange]", never, { "filtering": { "alias": "filtering"; "required": false; "isSignal": true; }; }, { "filterChange": "filterChange"; }, never, never, true, never>;
|
|
43
|
+
}
|
|
4
44
|
|
|
5
45
|
/**
|
|
6
46
|
* Filtering feature for @toolbox-web/grid-angular
|
|
7
47
|
*
|
|
8
|
-
*
|
|
9
|
-
* Also exports `injectGridFiltering()` for programmatic filter control.
|
|
48
|
+
* Two ways to use:
|
|
10
49
|
*
|
|
11
|
-
*
|
|
50
|
+
* 1. **Recommended (tree-shakeable surface):** add `GridFilteringDirective`
|
|
51
|
+
* to your component's `imports`. The directive owns the `[filtering]`
|
|
52
|
+
* input and `(filterChange)` output, so the typed surface tree-shakes
|
|
53
|
+
* away when the feature is not imported.
|
|
54
|
+
* 2. **Legacy (non-breaking, deprecated):** side-effect import the feature
|
|
55
|
+
* entry; the matching `[filtering]` / `(filterChange)` bindings on the
|
|
56
|
+
* central `Grid` directive will work as in v1.x. These bindings on `Grid`
|
|
57
|
+
* are marked `@deprecated` and will be removed in v2.0.0.
|
|
58
|
+
*
|
|
59
|
+
* Either way `injectGridFiltering()` is available for programmatic control.
|
|
60
|
+
*
|
|
61
|
+
* @example Recommended (directive-owned binding)
|
|
62
|
+
* ```typescript
|
|
63
|
+
* import { Grid } from '@toolbox-web/grid-angular';
|
|
64
|
+
* import { GridFilteringDirective } from '@toolbox-web/grid-angular/features/filtering';
|
|
65
|
+
*
|
|
66
|
+
* @Component({
|
|
67
|
+
* imports: [Grid, GridFilteringDirective],
|
|
68
|
+
* template: `<tbw-grid [filtering]="true" (filterChange)="onChange($event)" />`,
|
|
69
|
+
* })
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
72
|
+
* @example Legacy (deprecated; works without importing the directive)
|
|
12
73
|
* ```typescript
|
|
13
74
|
* import '@toolbox-web/grid-angular/features/filtering';
|
|
14
75
|
*
|
|
@@ -145,6 +206,6 @@ interface FilteringMethods {
|
|
|
145
206
|
*/
|
|
146
207
|
declare function injectGridFiltering(selector?: string): FilteringMethods;
|
|
147
208
|
|
|
148
|
-
export { injectGridFiltering };
|
|
209
|
+
export { GridFilteringDirective, injectGridFiltering };
|
|
149
210
|
export type { FilteringMethods };
|
|
150
211
|
//# sourceMappingURL=toolbox-web-grid-angular-features-filtering.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-filtering.d.ts","sources":["../../../../libs/grid-angular/features/filtering/src/index.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-filtering.d.ts","sources":["../../../../libs/grid-angular/features/filtering/src/grid-filtering.directive.ts","../../../../libs/grid-angular/features/filtering/src/index.ts"],"mappings":";;;;;;AAiDA;;;;;;;AAOG;AACH,cAIa,sBAAuB,YAAW,MAAM,EAAE,SAAS;AAC9D;AAEA;;;;;;;;;AASG;wBAEe,aAAA,CAAA,WAAA,WAAA,YAAA;AAElB;;;;;;;AAOG;2BACkB,aAAA,CAAA,gBAAA,CAAA,kBAAA;;;AAiBrB;AAQA;oDAjDW,sBAAsB;sDAAtB,sBAAsB;AA6DlC;;AC1HD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkDG;;AA8CH;;;;AAIG;UACc,gBAAgB;AAC/B;;;;;AAKG;AACH,uCAAmC,IAAI,CAAC,WAAW;;AAAiD;AAEpG;;AAEG;kCAC2B,WAAW;AAEzC;;AAEG;AACH,sBAAkB,WAAW;AAE7B;;;AAGG;8BACuB,WAAW;;AAAkC;AAEvE;;;AAGG;AACH;;AAAgD;AAEhD;;;AAGG;;;AAC6D;AAEhE;;AAEG;AACH;AAEA;;AAEG;;AAGH;;AAEG;;AAGH;;AAEG;AACH,2BAAuB,WAAW;AAElC;;AAEG;AACH,qCAAiC,SAAS;AAE1C;;AAEG;6CACsC,SAAS;AAElD;;AAEG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCG;AACH,iBAAgB,mBAAmB,qBAAyB,gBAAgB;;;;","names":[]}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
export { _Augmentation as _GroupingColumnsAugmentation } from '@toolbox-web/grid/features/grouping-columns';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { GroupingColumnsConfig } from '@toolbox-web/grid/plugins/grouping-columns';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[groupingColumns]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridGroupingColumnsDirective implements OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly groupingColumns: i0.InputSignal<boolean | GroupingColumnsConfig | undefined>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridGroupingColumnsDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridGroupingColumnsDirective, "tbw-grid[groupingColumns]", never, { "groupingColumns": { "alias": "groupingColumns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { GridGroupingColumnsDirective };
|
|
2
21
|
//# sourceMappingURL=toolbox-web-grid-angular-features-grouping-columns.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-grouping-columns.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-grouping-columns.d.ts","sources":["../../../../libs/grid-angular/features/grouping-columns/src/grid-grouping-columns.directive.ts"],"mappings":";;;;;AAYA;;;;AAIG;AACH,cAIa,4BAA6B,YAAW,SAAS;AAC5D;8BAEwBA,EAAA,CAAA,WAAA,WAAA,qBAAA;;AAMxB;yCATW,4BAA4B;2CAA5B,4BAA4B;AAYxC;;;;","names":["_angular_core"]}
|
|
@@ -1,2 +1,27 @@
|
|
|
1
1
|
export { _Augmentation as _GroupingRowsAugmentation } from '@toolbox-web/grid/features/grouping-rows';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { GroupingRowsConfig, GroupToggleDetail, GroupExpandDetail, GroupCollapseDetail } from '@toolbox-web/grid/plugins/grouping-rows';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[groupingRows], [groupToggle], [groupExpand], [groupCollapse]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridGroupingRowsDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly groupingRows: _angular_core.InputSignal<GroupingRowsConfig | undefined>;
|
|
14
|
+
readonly groupToggle: _angular_core.OutputEmitterRef<GroupToggleDetail>;
|
|
15
|
+
readonly groupExpand: _angular_core.OutputEmitterRef<GroupExpandDetail>;
|
|
16
|
+
readonly groupCollapse: _angular_core.OutputEmitterRef<GroupCollapseDetail>;
|
|
17
|
+
private readonly listeners;
|
|
18
|
+
private static readonly EVENTS;
|
|
19
|
+
constructor();
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridGroupingRowsDirective, never>;
|
|
23
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridGroupingRowsDirective, "tbw-grid[groupingRows], tbw-grid[groupToggle], tbw-grid[groupExpand], tbw-grid[groupCollapse]", never, { "groupingRows": { "alias": "groupingRows"; "required": false; "isSignal": true; }; }, { "groupToggle": "groupToggle"; "groupExpand": "groupExpand"; "groupCollapse": "groupCollapse"; }, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export { GridGroupingRowsDirective };
|
|
2
27
|
//# sourceMappingURL=toolbox-web-grid-angular-features-grouping-rows.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-grouping-rows.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-grouping-rows.d.ts","sources":["../../../../libs/grid-angular/features/grouping-rows/src/grid-grouping-rows.directive.ts"],"mappings":";;;;;AAiBA;;;;AAIG;AACH,cAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;AACjE;2BAEqB,aAAA,CAAA,WAAA,CAAA,kBAAA;0BACD,aAAA,CAAA,gBAAA,CAAA,iBAAA;0BACA,aAAA,CAAA,gBAAA,CAAA,iBAAA;4BACE,aAAA,CAAA,gBAAA,CAAA,mBAAA;AAEtB;AACA;;AAQA;AAYA;oDA7BW,yBAAyB;sDAAzB,yBAAyB;AAoCrC;;;;","names":[]}
|
|
@@ -1,2 +1,25 @@
|
|
|
1
1
|
export { _Augmentation as _MasterDetailAugmentation } from '@toolbox-web/grid/features/master-detail';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { MasterDetailConfig, DetailExpandDetail } from '@toolbox-web/grid/plugins/master-detail';
|
|
5
|
+
export { GridDetailContext, GridDetailView, getDetailTemplate } from '@toolbox-web/grid-angular';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Owns the binding(s) `[masterDetail], [detailExpand]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
9
|
+
*
|
|
10
|
+
* @category Directive
|
|
11
|
+
*/
|
|
12
|
+
declare class GridMasterDetailDirective implements OnInit, OnDestroy {
|
|
13
|
+
private readonly elementRef;
|
|
14
|
+
readonly masterDetail: _angular_core.InputSignal<MasterDetailConfig | undefined>;
|
|
15
|
+
readonly detailExpand: _angular_core.OutputEmitterRef<DetailExpandDetail>;
|
|
16
|
+
private listener?;
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridMasterDetailDirective, never>;
|
|
21
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridMasterDetailDirective, "tbw-grid[masterDetail], tbw-grid[detailExpand]", never, { "masterDetail": { "alias": "masterDetail"; "required": false; "isSignal": true; }; }, { "detailExpand": "detailExpand"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { GridMasterDetailDirective };
|
|
2
25
|
//# sourceMappingURL=toolbox-web-grid-angular-features-master-detail.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-master-detail.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-master-detail.d.ts","sources":["../../../../libs/grid-angular/features/master-detail/src/grid-master-detail.directive.ts"],"mappings":";;;;;;AAgBA;;;;AAIG;AACH,cAIa,yBAA0B,YAAW,MAAM,EAAE,SAAS;AACjE;2BAEqB,aAAA,CAAA,WAAA,CAAA,kBAAA;2BACA,aAAA,CAAA,gBAAA,CAAA,kBAAA;;;AAUrB;AAMA;oDApBW,yBAAyB;sDAAzB,yBAAyB;AA6BrC;;;;","names":[]}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
export { _Augmentation as _MultiSortAugmentation } from '@toolbox-web/grid/features/multi-sort';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { MultiSortConfig } from '@toolbox-web/grid/plugins/multi-sort';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[multiSort]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridMultiSortDirective implements OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly multiSort: i0.InputSignal<boolean | MultiSortConfig | "single" | "multi" | undefined>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridMultiSortDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMultiSortDirective, "tbw-grid[multiSort]", never, { "multiSort": { "alias": "multiSort"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { GridMultiSortDirective };
|
|
2
21
|
//# sourceMappingURL=toolbox-web-grid-angular-features-multi-sort.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-multi-sort.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-multi-sort.d.ts","sources":["../../../../libs/grid-angular/features/multi-sort/src/grid-multi-sort.directive.ts"],"mappings":";;;;;AAaA;;;;AAIG;AACH,cAIa,sBAAuB,YAAW,SAAS;AACtD;wBAEkBA,EAAA,CAAA,WAAA,WAAA,eAAA;;AAMlB;yCATW,sBAAsB;2CAAtB,sBAAsB;AAYlC;;;;","names":["_angular_core"]}
|
|
@@ -1,2 +1,20 @@
|
|
|
1
1
|
export { _Augmentation as _PinnedColumnsAugmentation } from '@toolbox-web/grid/features/pinned-columns';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Owns the binding(s) `[pinnedColumns]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
7
|
+
*
|
|
8
|
+
* @category Directive
|
|
9
|
+
*/
|
|
10
|
+
declare class GridPinnedColumnsDirective implements OnDestroy {
|
|
11
|
+
private readonly elementRef;
|
|
12
|
+
readonly pinnedColumns: i0.InputSignal<boolean | undefined>;
|
|
13
|
+
constructor();
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridPinnedColumnsDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridPinnedColumnsDirective, "tbw-grid[pinnedColumns]", never, { "pinnedColumns": { "alias": "pinnedColumns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export { GridPinnedColumnsDirective };
|
|
2
20
|
//# sourceMappingURL=toolbox-web-grid-angular-features-pinned-columns.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-pinned-columns.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-pinned-columns.d.ts","sources":["../../../../libs/grid-angular/features/pinned-columns/src/grid-pinned-columns.directive.ts"],"mappings":";;;;AAWA;;;;AAIG;AACH,cAIa,0BAA2B,YAAW,SAAS;AAC1D;4BAEsBA,EAAA,CAAA,WAAA;;AAMtB;yCATW,0BAA0B;2CAA1B,0BAA0B;AAYtC;;;;","names":["_angular_core"]}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
export { _Augmentation as _PinnedRowsAugmentation } from '@toolbox-web/grid/features/pinned-rows';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { PinnedRowsConfig } from '@toolbox-web/grid/plugins/pinned-rows';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[pinnedRows]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridPinnedRowsDirective implements OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly pinnedRows: i0.InputSignal<boolean | PinnedRowsConfig | undefined>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridPinnedRowsDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridPinnedRowsDirective, "tbw-grid[pinnedRows]", never, { "pinnedRows": { "alias": "pinnedRows"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { GridPinnedRowsDirective };
|
|
2
21
|
//# sourceMappingURL=toolbox-web-grid-angular-features-pinned-rows.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-pinned-rows.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-pinned-rows.d.ts","sources":["../../../../libs/grid-angular/features/pinned-rows/src/grid-pinned-rows.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,uBAAwB,YAAW,SAAS;AACvD;yBAEmBA,EAAA,CAAA,WAAA,WAAA,gBAAA;;AAMnB;yCATW,uBAAuB;2CAAvB,uBAAuB;AAYnC;;;;","names":["_angular_core"]}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
export { _Augmentation as _PivotAugmentation } from '@toolbox-web/grid/features/pivot';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { PivotConfig } from '@toolbox-web/grid/plugins/pivot';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[pivot]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridPivotDirective implements OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly pivot: i0.InputSignal<PivotConfig | undefined>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridPivotDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridPivotDirective, "tbw-grid[pivot]", never, { "pivot": { "alias": "pivot"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { GridPivotDirective };
|
|
2
21
|
//# sourceMappingURL=toolbox-web-grid-angular-features-pivot.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-pivot.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-pivot.d.ts","sources":["../../../../libs/grid-angular/features/pivot/src/grid-pivot.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,kBAAmB,YAAW,SAAS;AAClD;oBAEcA,EAAA,CAAA,WAAA,CAAA,WAAA;;AAMd;yCATW,kBAAkB;2CAAlB,kBAAkB;AAY9B;;;;","names":["_angular_core"]}
|
|
@@ -1,7 +1,26 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { OnInit, OnDestroy, Signal } from '@angular/core';
|
|
3
|
+
import { PrintConfig, PrintStartDetail, PrintCompleteDetail, PrintParams } from '@toolbox-web/grid/plugins/print';
|
|
3
4
|
export { _Augmentation as _PrintAugmentation } from '@toolbox-web/grid/features/print';
|
|
4
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[print], [printStart], [printComplete]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridPrintDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly print: _angular_core.InputSignal<boolean | PrintConfig | undefined>;
|
|
14
|
+
readonly printStart: _angular_core.OutputEmitterRef<PrintStartDetail>;
|
|
15
|
+
readonly printComplete: _angular_core.OutputEmitterRef<PrintCompleteDetail>;
|
|
16
|
+
private readonly listeners;
|
|
17
|
+
constructor();
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridPrintDirective, never>;
|
|
21
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridPrintDirective, "tbw-grid[print], tbw-grid[printStart], tbw-grid[printComplete]", never, { "print": { "alias": "print"; "required": false; "isSignal": true; }; }, { "printStart": "printStart"; "printComplete": "printComplete"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
23
|
+
|
|
5
24
|
/**
|
|
6
25
|
* Print feature for @toolbox-web/grid-angular
|
|
7
26
|
*
|
|
@@ -92,6 +111,6 @@ interface PrintMethods {
|
|
|
92
111
|
*/
|
|
93
112
|
declare function injectGridPrint(selector?: string): PrintMethods;
|
|
94
113
|
|
|
95
|
-
export { injectGridPrint };
|
|
114
|
+
export { GridPrintDirective, injectGridPrint };
|
|
96
115
|
export type { PrintMethods };
|
|
97
116
|
//# sourceMappingURL=toolbox-web-grid-angular-features-print.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-print.d.ts","sources":["../../../../libs/grid-angular/features/print/src/index.ts"],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-print.d.ts","sources":["../../../../libs/grid-angular/features/print/src/grid-print.directive.ts","../../../../libs/grid-angular/features/print/src/index.ts"],"mappings":";;;;;AAYA;;;;AAIG;AACH,cAIa,kBAAmB,YAAW,MAAM,EAAE,SAAS;AAC1D;oBAEc,aAAA,CAAA,WAAA,WAAA,WAAA;yBACK,aAAA,CAAA,gBAAA,CAAA,gBAAA;4BACG,aAAA,CAAA,gBAAA,CAAA,mBAAA;AAEtB;;AASA;AAWA;oDA3BW,kBAAkB;sDAAlB,kBAAkB;AAmC9B;;ACxDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BG;;AASH;;;;AAIG;UACc,YAAY;AAC3B;;;;AAIG;qBACc,WAAW,KAAK,OAAO;AAExC;;AAEG;;AAGH;;AAEG;AACH,aAAS,MAAM;AAChB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCG;AACH,iBAAgB,eAAe,qBAAyB,YAAY;;;;","names":[]}
|
|
@@ -1,2 +1,24 @@
|
|
|
1
1
|
export { _Augmentation as _ReorderColumnsAugmentation } from '@toolbox-web/grid/features/reorder-columns';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { ReorderConfig, ColumnMoveDetail } from '@toolbox-web/grid/plugins/reorder-columns';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[reorderColumns], [columnMove]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridReorderColumnsDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly reorderColumns: _angular_core.InputSignal<boolean | ReorderConfig | undefined>;
|
|
14
|
+
readonly columnMove: _angular_core.OutputEmitterRef<ColumnMoveDetail>;
|
|
15
|
+
private listener?;
|
|
16
|
+
constructor();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridReorderColumnsDirective, never>;
|
|
20
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridReorderColumnsDirective, "tbw-grid[reorderColumns], tbw-grid[columnMove]", never, { "reorderColumns": { "alias": "reorderColumns"; "required": false; "isSignal": true; }; }, { "columnMove": "columnMove"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { GridReorderColumnsDirective };
|
|
2
24
|
//# sourceMappingURL=toolbox-web-grid-angular-features-reorder-columns.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-reorder-columns.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-reorder-columns.d.ts","sources":["../../../../libs/grid-angular/features/reorder-columns/src/grid-reorder-columns.directive.ts"],"mappings":";;;;;AAYA;;;;AAIG;AACH,cAIa,2BAA4B,YAAW,MAAM,EAAE,SAAS;AACnE;6BAEuB,aAAA,CAAA,WAAA,WAAA,aAAA;yBACJ,aAAA,CAAA,gBAAA,CAAA,gBAAA;;;AAUnB;AAMA;oDApBW,2BAA2B;sDAA3B,2BAA2B;AA6BvC;;;;","names":[]}
|
|
@@ -1,2 +1,21 @@
|
|
|
1
1
|
export { _Augmentation as _ReorderRowsAugmentation } from '@toolbox-web/grid/features/reorder-rows';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnDestroy } from '@angular/core';
|
|
4
|
+
import { RowReorderConfig } from '@toolbox-web/grid/plugins/reorder-rows';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[reorderRows]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridReorderRowsDirective implements OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly reorderRows: i0.InputSignal<boolean | RowReorderConfig | undefined>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridReorderRowsDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridReorderRowsDirective, "tbw-grid[reorderRows]", never, { "reorderRows": { "alias": "reorderRows"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { GridReorderRowsDirective };
|
|
2
21
|
//# sourceMappingURL=toolbox-web-grid-angular-features-reorder-rows.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-reorder-rows.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-reorder-rows.d.ts","sources":["../../../../libs/grid-angular/features/reorder-rows/src/grid-reorder-rows.directive.ts"],"mappings":";;;;;AAgBA;;;;AAIG;AACH,cAIa,wBAAyB,YAAW,SAAS;AACxD;0BAEoBA,EAAA,CAAA,WAAA,WAAA,gBAAA;;AAMpB;yCATW,wBAAwB;2CAAxB,wBAAwB;AAYpC;;;;","names":["_angular_core"]}
|
|
@@ -1,2 +1,24 @@
|
|
|
1
1
|
export { _Augmentation as _ResponsiveAugmentation } from '@toolbox-web/grid/features/responsive';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
4
|
+
import { ResponsivePluginConfig, ResponsiveChangeDetail } from '@toolbox-web/grid/plugins/responsive';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Owns the binding(s) `[responsive], [responsiveChange]` on `<tbw-grid>` for the matching feature plugin. See {@link GridFilteringDirective} for the full rationale.
|
|
8
|
+
*
|
|
9
|
+
* @category Directive
|
|
10
|
+
*/
|
|
11
|
+
declare class GridResponsiveDirective implements OnInit, OnDestroy {
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
readonly responsive: _angular_core.InputSignal<boolean | ResponsivePluginConfig<unknown> | undefined>;
|
|
14
|
+
readonly responsiveChange: _angular_core.OutputEmitterRef<ResponsiveChangeDetail>;
|
|
15
|
+
private listener?;
|
|
16
|
+
constructor();
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridResponsiveDirective, never>;
|
|
20
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridResponsiveDirective, "tbw-grid[responsive], tbw-grid[responsiveChange]", never, { "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; }, { "responsiveChange": "responsiveChange"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { GridResponsiveDirective };
|
|
2
24
|
//# sourceMappingURL=toolbox-web-grid-angular-features-responsive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbox-web-grid-angular-features-responsive.d.ts","sources":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"file":"toolbox-web-grid-angular-features-responsive.d.ts","sources":["../../../../libs/grid-angular/features/responsive/src/grid-responsive.directive.ts"],"mappings":";;;;;AAWA;;;;AAIG;AACH,cAIa,uBAAwB,YAAW,MAAM,EAAE,SAAS;AAC/D;yBAEmB,aAAA,CAAA,WAAA,WAAA,sBAAA;+BACM,aAAA,CAAA,gBAAA,CAAA,sBAAA;;;AAUzB;AAMA;oDApBW,uBAAuB;sDAAvB,uBAAuB;AA6BnC;;;;","names":[]}
|