igniteui-angular 21.0.2 → 21.0.3
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/chat/README.md +93 -0
- package/fesm2022/igniteui-angular-directives.mjs +1 -1
- package/fesm2022/igniteui-angular-directives.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +241 -2
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +235 -2
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs +3384 -3188
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs +238 -2
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-grids-grid.d.ts +12 -1
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +23 -13
- package/types/igniteui-angular-grids-pivot-grid.d.ts +501 -492
- package/types/igniteui-angular-grids-tree-grid.d.ts +12 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, inject, TemplateRef, Directive, Pipe, Input, ChangeDetectionStrategy, Component, forwardRef, HostBinding, ViewChildren, IterableDiffers, booleanAttribute, ContentChild, ViewChild, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
+
import { Injectable, inject, TemplateRef, Directive, Pipe, Input, ChangeDetectionStrategy, Component, forwardRef, HostBinding, ViewChildren, IterableDiffers, booleanAttribute, ContentChild, ViewChild, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
3
3
|
import { NgClass, NgStyle, NgTemplateOutlet, DecimalPipe, PercentPipe, CurrencyPipe, DatePipe } from '@angular/common';
|
|
4
4
|
import { GridBaseAPIService, IgxGridSelectionService, GridSelectionMode, IGX_GRID_BASE, GridSummaryPosition, IgxTreeGridRow, IgxGridCellImageAltPipe, IgxStringReplacePipe, IgxColumnFormatterPipe, IgxRowDirective, IgxRowDragDirective, IgxGridCellComponent, IgxGridNotGroupedPipe, IgxGridCellStylesPipe, IgxGridCellStyleClassesPipe, IgxGridDataMapperPipe, IgxGridTransactionStatePipe, IgxGroupByAreaDirective, IgxGroupAreaDropDirective, IgxGroupByMetaPipe, IgxGridTransaction, IgxGridCell, IgxSummaryRow, IgxGridHeaderRowComponent, IgxGridBodyDirective, IgxGridDragSelectDirective, IgxColumnMovingDropDirective, IgxSummaryRowComponent, IgxRowEditTabStopDirective, IgxGridColumnResizerComponent, IgxHasVisibleColumnsPipe, IgxGridRowPinningPipe, IgxGridRowClassesPipe, IgxGridRowStylesPipe, IgxSummaryDataPipe, IgxGridCRUDService, IgxGridValidationService, IgxGridSummaryService, IgxGridNavigationService, IGX_GRID_SERVICE_BASE, IgxFilteringService, IgxColumnResizingService, IgxRowAddTextDirective, IgxRowEditActionsDirective, IgxRowEditTextDirective, IgxGridFooterComponent, IgxAdvancedFilteringDialogComponent, IgxRowExpandedIndicatorDirective, IgxRowCollapsedIndicatorDirective, IgxHeaderExpandedIndicatorDirective, IgxHeaderCollapsedIndicatorDirective, IgxExcelStyleHeaderIconDirective, IgxSortAscendingHeaderIconDirective, IgxSortDescendingHeaderIconDirective, IgxSortHeaderIconDirective, IgxDragIndicatorIconDirective, IgxRowDragGhostDirective, IgxGridStateDirective, IgxGridPinningActionsComponent, IgxGridEditingActionsComponent, IgxGridActionsBaseDirective, IgxGridActionButtonComponent, IgxGridHeaderComponent, IgxGridHeaderGroupComponent, IgxFilterCellTemplateDirective, IgxSummaryTemplateDirective, IgxCellTemplateDirective, IgxCellValidationErrorDirective, IgxCellHeaderTemplateDirective, IgxCellFooterTemplateDirective, IgxCellEditorTemplateDirective, IgxCollapsibleIndicatorTemplateDirective, IgxColumnComponent, IgxColumnGroupComponent, IgxColumnLayoutComponent, IgxColumnActionsComponent, IgxColumnHidingDirective, IgxColumnPinningDirective, IgxRowSelectorDirective, IgxGroupByRowSelectorDirective, IgxHeadSelectorDirective, IgxCSVTextDirective, IgxExcelTextDirective, IgxGridToolbarActionsComponent, IgxGridToolbarAdvancedFilteringComponent, IgxGridToolbarComponent, IgxGridToolbarExporterComponent, IgxGridToolbarHidingComponent, IgxGridToolbarPinningComponent, IgxGridToolbarTitleComponent, IgxGridToolbarDirective, IgxGridExcelStyleFilteringComponent, IgxExcelStyleHeaderComponent, IgxExcelStyleSortingComponent, IgxExcelStylePinningComponent, IgxExcelStyleHidingComponent, IgxExcelStyleSelectingComponent, IgxExcelStyleClearFiltersComponent, IgxExcelStyleConditionalFilterComponent, IgxExcelStyleMovingComponent, IgxExcelStyleSearchComponent, IgxExcelStyleColumnOperationsTemplateDirective, IgxExcelStyleFilterOperationsTemplateDirective, IgxExcelStyleLoadingValuesTemplateDirective, IgxColumnRequiredValidatorDirective, IgxColumnMinValidatorDirective, IgxColumnMaxValidatorDirective, IgxColumnEmailValidatorDirective, IgxColumnMinLengthValidatorDirective, IgxColumnMaxLengthValidatorDirective, IgxColumnPatternValidatorDirective } from 'igniteui-angular/grids/core';
|
|
5
5
|
import { TransactionType, GridColumnDataType, DataUtil, cloneArray, IgxDataRecordSorting, TreeGridFilteringStrategy, FilterUtil, mergeObjects, GridSummaryCalculationMode, FilteringExpressionsTree, cloneHierarchicalArray, HammerGesturesManager, IgxHierarchicalTransactionFactory, DefaultTreeGridMergeStrategy, TransactionEventOrigin, IgxOverlayOutletDirective, IgxSorting, formatDate } from 'igniteui-angular/core';
|
|
@@ -2463,10 +2463,246 @@ const IGX_TREE_GRID_DIRECTIVES = [
|
|
|
2463
2463
|
IgxPaginatorContentDirective,
|
|
2464
2464
|
IgxPaginatorDirective
|
|
2465
2465
|
];
|
|
2466
|
+
/**
|
|
2467
|
+
* @hidden
|
|
2468
|
+
* IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components
|
|
2469
|
+
*/
|
|
2470
|
+
class IgxTreeGridModule {
|
|
2471
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.2", ngImport: i0, type: IgxTreeGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2472
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.2", ngImport: i0, type: IgxTreeGridModule, imports: [IgxTreeGridComponent,
|
|
2473
|
+
IgxTreeGridGroupByAreaComponent,
|
|
2474
|
+
IgxTreeGridGroupingPipe,
|
|
2475
|
+
IgxRowAddTextDirective,
|
|
2476
|
+
IgxRowEditActionsDirective,
|
|
2477
|
+
IgxRowEditTextDirective,
|
|
2478
|
+
IgxRowEditTabStopDirective,
|
|
2479
|
+
// IGX_GRID_COMMON_DIRECTIVES:
|
|
2480
|
+
IgxRowDirective,
|
|
2481
|
+
IgxGridFooterComponent,
|
|
2482
|
+
IgxAdvancedFilteringDialogComponent,
|
|
2483
|
+
IgxRowExpandedIndicatorDirective,
|
|
2484
|
+
IgxRowCollapsedIndicatorDirective,
|
|
2485
|
+
IgxHeaderExpandedIndicatorDirective,
|
|
2486
|
+
IgxHeaderCollapsedIndicatorDirective,
|
|
2487
|
+
IgxExcelStyleHeaderIconDirective,
|
|
2488
|
+
IgxSortAscendingHeaderIconDirective,
|
|
2489
|
+
IgxSortDescendingHeaderIconDirective,
|
|
2490
|
+
IgxSortHeaderIconDirective,
|
|
2491
|
+
IgxDragIndicatorIconDirective,
|
|
2492
|
+
IgxRowDragGhostDirective,
|
|
2493
|
+
IgxGridStateDirective,
|
|
2494
|
+
// IGX_GRID_ACTIONS
|
|
2495
|
+
IgxGridPinningActionsComponent,
|
|
2496
|
+
IgxGridEditingActionsComponent,
|
|
2497
|
+
IgxGridActionsBaseDirective,
|
|
2498
|
+
IgxGridActionButtonComponent,
|
|
2499
|
+
// IGX_GRID_HEADERS_DIRECTIVES:
|
|
2500
|
+
IgxGridHeaderComponent,
|
|
2501
|
+
IgxGridHeaderGroupComponent,
|
|
2502
|
+
IgxGridHeaderRowComponent,
|
|
2503
|
+
// IGX_GRID_COLUMN_DIRECTIVES:
|
|
2504
|
+
IgxFilterCellTemplateDirective,
|
|
2505
|
+
IgxSummaryTemplateDirective,
|
|
2506
|
+
IgxCellTemplateDirective,
|
|
2507
|
+
IgxCellValidationErrorDirective,
|
|
2508
|
+
IgxCellHeaderTemplateDirective,
|
|
2509
|
+
IgxCellFooterTemplateDirective,
|
|
2510
|
+
IgxCellEditorTemplateDirective,
|
|
2511
|
+
IgxCollapsibleIndicatorTemplateDirective,
|
|
2512
|
+
IgxColumnComponent,
|
|
2513
|
+
IgxColumnGroupComponent,
|
|
2514
|
+
IgxColumnLayoutComponent,
|
|
2515
|
+
// IGX_GRID_COLUMN_ACTIONS_DIRECTIVES:
|
|
2516
|
+
IgxColumnActionsComponent,
|
|
2517
|
+
IgxColumnHidingDirective,
|
|
2518
|
+
IgxColumnPinningDirective,
|
|
2519
|
+
// IGX_GRID_SELECTION_DIRECTIVES:
|
|
2520
|
+
IgxRowSelectorDirective,
|
|
2521
|
+
IgxGroupByRowSelectorDirective,
|
|
2522
|
+
IgxHeadSelectorDirective,
|
|
2523
|
+
// IGX_GRID_TOOLBAR_DIRECTIVES:
|
|
2524
|
+
IgxCSVTextDirective,
|
|
2525
|
+
IgxExcelTextDirective,
|
|
2526
|
+
IgxGridToolbarActionsComponent,
|
|
2527
|
+
IgxGridToolbarAdvancedFilteringComponent,
|
|
2528
|
+
IgxGridToolbarComponent,
|
|
2529
|
+
IgxGridToolbarExporterComponent,
|
|
2530
|
+
IgxGridToolbarHidingComponent,
|
|
2531
|
+
IgxGridToolbarPinningComponent,
|
|
2532
|
+
IgxGridToolbarTitleComponent,
|
|
2533
|
+
IgxGridToolbarDirective,
|
|
2534
|
+
// IGX_GRID_EXCEL_STYLE_FILTER_DIRECTIVES:
|
|
2535
|
+
IgxGridExcelStyleFilteringComponent,
|
|
2536
|
+
IgxExcelStyleHeaderComponent,
|
|
2537
|
+
IgxExcelStyleSortingComponent,
|
|
2538
|
+
IgxExcelStylePinningComponent,
|
|
2539
|
+
IgxExcelStyleHidingComponent,
|
|
2540
|
+
IgxExcelStyleSelectingComponent,
|
|
2541
|
+
IgxExcelStyleClearFiltersComponent,
|
|
2542
|
+
IgxExcelStyleConditionalFilterComponent,
|
|
2543
|
+
IgxExcelStyleMovingComponent,
|
|
2544
|
+
IgxExcelStyleSearchComponent,
|
|
2545
|
+
IgxExcelStyleColumnOperationsTemplateDirective,
|
|
2546
|
+
IgxExcelStyleFilterOperationsTemplateDirective,
|
|
2547
|
+
IgxExcelStyleLoadingValuesTemplateDirective,
|
|
2548
|
+
// IGX_PAGINATOR_DIRECTIVES:
|
|
2549
|
+
IgxColumnRequiredValidatorDirective,
|
|
2550
|
+
IgxColumnMinValidatorDirective,
|
|
2551
|
+
IgxColumnMaxValidatorDirective,
|
|
2552
|
+
IgxColumnEmailValidatorDirective,
|
|
2553
|
+
IgxColumnMinLengthValidatorDirective,
|
|
2554
|
+
IgxColumnMaxLengthValidatorDirective,
|
|
2555
|
+
IgxColumnPatternValidatorDirective,
|
|
2556
|
+
// IGX_PAGINATOR_DIRECTIVES:
|
|
2557
|
+
IgxPaginatorComponent,
|
|
2558
|
+
IgxPageNavigationComponent,
|
|
2559
|
+
IgxPageSizeSelectorComponent,
|
|
2560
|
+
IgxPaginatorContentDirective,
|
|
2561
|
+
IgxPaginatorDirective], exports: [IgxTreeGridComponent,
|
|
2562
|
+
IgxTreeGridGroupByAreaComponent,
|
|
2563
|
+
IgxTreeGridGroupingPipe,
|
|
2564
|
+
IgxRowAddTextDirective,
|
|
2565
|
+
IgxRowEditActionsDirective,
|
|
2566
|
+
IgxRowEditTextDirective,
|
|
2567
|
+
IgxRowEditTabStopDirective,
|
|
2568
|
+
// IGX_GRID_COMMON_DIRECTIVES:
|
|
2569
|
+
IgxRowDirective,
|
|
2570
|
+
IgxGridFooterComponent,
|
|
2571
|
+
IgxAdvancedFilteringDialogComponent,
|
|
2572
|
+
IgxRowExpandedIndicatorDirective,
|
|
2573
|
+
IgxRowCollapsedIndicatorDirective,
|
|
2574
|
+
IgxHeaderExpandedIndicatorDirective,
|
|
2575
|
+
IgxHeaderCollapsedIndicatorDirective,
|
|
2576
|
+
IgxExcelStyleHeaderIconDirective,
|
|
2577
|
+
IgxSortAscendingHeaderIconDirective,
|
|
2578
|
+
IgxSortDescendingHeaderIconDirective,
|
|
2579
|
+
IgxSortHeaderIconDirective,
|
|
2580
|
+
IgxDragIndicatorIconDirective,
|
|
2581
|
+
IgxRowDragGhostDirective,
|
|
2582
|
+
IgxGridStateDirective,
|
|
2583
|
+
// IGX_GRID_ACTIONS
|
|
2584
|
+
IgxGridPinningActionsComponent,
|
|
2585
|
+
IgxGridEditingActionsComponent,
|
|
2586
|
+
IgxGridActionsBaseDirective,
|
|
2587
|
+
IgxGridActionButtonComponent,
|
|
2588
|
+
// IGX_GRID_HEADERS_DIRECTIVES:
|
|
2589
|
+
IgxGridHeaderComponent,
|
|
2590
|
+
IgxGridHeaderGroupComponent,
|
|
2591
|
+
IgxGridHeaderRowComponent,
|
|
2592
|
+
// IGX_GRID_COLUMN_DIRECTIVES:
|
|
2593
|
+
IgxFilterCellTemplateDirective,
|
|
2594
|
+
IgxSummaryTemplateDirective,
|
|
2595
|
+
IgxCellTemplateDirective,
|
|
2596
|
+
IgxCellValidationErrorDirective,
|
|
2597
|
+
IgxCellHeaderTemplateDirective,
|
|
2598
|
+
IgxCellFooterTemplateDirective,
|
|
2599
|
+
IgxCellEditorTemplateDirective,
|
|
2600
|
+
IgxCollapsibleIndicatorTemplateDirective,
|
|
2601
|
+
IgxColumnComponent,
|
|
2602
|
+
IgxColumnGroupComponent,
|
|
2603
|
+
IgxColumnLayoutComponent,
|
|
2604
|
+
// IGX_GRID_COLUMN_ACTIONS_DIRECTIVES:
|
|
2605
|
+
IgxColumnActionsComponent,
|
|
2606
|
+
IgxColumnHidingDirective,
|
|
2607
|
+
IgxColumnPinningDirective,
|
|
2608
|
+
// IGX_GRID_SELECTION_DIRECTIVES:
|
|
2609
|
+
IgxRowSelectorDirective,
|
|
2610
|
+
IgxGroupByRowSelectorDirective,
|
|
2611
|
+
IgxHeadSelectorDirective,
|
|
2612
|
+
// IGX_GRID_TOOLBAR_DIRECTIVES:
|
|
2613
|
+
IgxCSVTextDirective,
|
|
2614
|
+
IgxExcelTextDirective,
|
|
2615
|
+
IgxGridToolbarActionsComponent,
|
|
2616
|
+
IgxGridToolbarAdvancedFilteringComponent,
|
|
2617
|
+
IgxGridToolbarComponent,
|
|
2618
|
+
IgxGridToolbarExporterComponent,
|
|
2619
|
+
IgxGridToolbarHidingComponent,
|
|
2620
|
+
IgxGridToolbarPinningComponent,
|
|
2621
|
+
IgxGridToolbarTitleComponent,
|
|
2622
|
+
IgxGridToolbarDirective,
|
|
2623
|
+
// IGX_GRID_EXCEL_STYLE_FILTER_DIRECTIVES:
|
|
2624
|
+
IgxGridExcelStyleFilteringComponent,
|
|
2625
|
+
IgxExcelStyleHeaderComponent,
|
|
2626
|
+
IgxExcelStyleSortingComponent,
|
|
2627
|
+
IgxExcelStylePinningComponent,
|
|
2628
|
+
IgxExcelStyleHidingComponent,
|
|
2629
|
+
IgxExcelStyleSelectingComponent,
|
|
2630
|
+
IgxExcelStyleClearFiltersComponent,
|
|
2631
|
+
IgxExcelStyleConditionalFilterComponent,
|
|
2632
|
+
IgxExcelStyleMovingComponent,
|
|
2633
|
+
IgxExcelStyleSearchComponent,
|
|
2634
|
+
IgxExcelStyleColumnOperationsTemplateDirective,
|
|
2635
|
+
IgxExcelStyleFilterOperationsTemplateDirective,
|
|
2636
|
+
IgxExcelStyleLoadingValuesTemplateDirective,
|
|
2637
|
+
// IGX_PAGINATOR_DIRECTIVES:
|
|
2638
|
+
IgxColumnRequiredValidatorDirective,
|
|
2639
|
+
IgxColumnMinValidatorDirective,
|
|
2640
|
+
IgxColumnMaxValidatorDirective,
|
|
2641
|
+
IgxColumnEmailValidatorDirective,
|
|
2642
|
+
IgxColumnMinLengthValidatorDirective,
|
|
2643
|
+
IgxColumnMaxLengthValidatorDirective,
|
|
2644
|
+
IgxColumnPatternValidatorDirective,
|
|
2645
|
+
// IGX_PAGINATOR_DIRECTIVES:
|
|
2646
|
+
IgxPaginatorComponent,
|
|
2647
|
+
IgxPageNavigationComponent,
|
|
2648
|
+
IgxPageSizeSelectorComponent,
|
|
2649
|
+
IgxPaginatorContentDirective,
|
|
2650
|
+
IgxPaginatorDirective] }); }
|
|
2651
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.2", ngImport: i0, type: IgxTreeGridModule, imports: [IgxTreeGridComponent,
|
|
2652
|
+
IgxTreeGridGroupByAreaComponent,
|
|
2653
|
+
IgxGridFooterComponent,
|
|
2654
|
+
IgxAdvancedFilteringDialogComponent,
|
|
2655
|
+
// IGX_GRID_ACTIONS
|
|
2656
|
+
IgxGridPinningActionsComponent,
|
|
2657
|
+
IgxGridEditingActionsComponent,
|
|
2658
|
+
IgxGridActionButtonComponent,
|
|
2659
|
+
// IGX_GRID_HEADERS_DIRECTIVES:
|
|
2660
|
+
IgxGridHeaderComponent,
|
|
2661
|
+
IgxGridHeaderGroupComponent,
|
|
2662
|
+
IgxGridHeaderRowComponent,
|
|
2663
|
+
IgxColumnComponent,
|
|
2664
|
+
IgxColumnGroupComponent,
|
|
2665
|
+
IgxColumnLayoutComponent,
|
|
2666
|
+
// IGX_GRID_COLUMN_ACTIONS_DIRECTIVES:
|
|
2667
|
+
IgxColumnActionsComponent,
|
|
2668
|
+
IgxGridToolbarActionsComponent,
|
|
2669
|
+
IgxGridToolbarAdvancedFilteringComponent,
|
|
2670
|
+
IgxGridToolbarComponent,
|
|
2671
|
+
IgxGridToolbarExporterComponent,
|
|
2672
|
+
IgxGridToolbarHidingComponent,
|
|
2673
|
+
IgxGridToolbarPinningComponent,
|
|
2674
|
+
IgxGridToolbarTitleComponent,
|
|
2675
|
+
// IGX_GRID_EXCEL_STYLE_FILTER_DIRECTIVES:
|
|
2676
|
+
IgxGridExcelStyleFilteringComponent,
|
|
2677
|
+
IgxExcelStyleHeaderComponent,
|
|
2678
|
+
IgxExcelStyleSortingComponent,
|
|
2679
|
+
IgxExcelStylePinningComponent,
|
|
2680
|
+
IgxExcelStyleHidingComponent,
|
|
2681
|
+
IgxExcelStyleSelectingComponent,
|
|
2682
|
+
IgxExcelStyleClearFiltersComponent,
|
|
2683
|
+
IgxExcelStyleConditionalFilterComponent,
|
|
2684
|
+
IgxExcelStyleMovingComponent,
|
|
2685
|
+
IgxExcelStyleSearchComponent,
|
|
2686
|
+
// IGX_PAGINATOR_DIRECTIVES:
|
|
2687
|
+
IgxPaginatorComponent,
|
|
2688
|
+
IgxPageNavigationComponent,
|
|
2689
|
+
IgxPageSizeSelectorComponent] }); }
|
|
2690
|
+
}
|
|
2691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.2", ngImport: i0, type: IgxTreeGridModule, decorators: [{
|
|
2692
|
+
type: NgModule,
|
|
2693
|
+
args: [{
|
|
2694
|
+
imports: [
|
|
2695
|
+
...IGX_TREE_GRID_DIRECTIVES
|
|
2696
|
+
],
|
|
2697
|
+
exports: [
|
|
2698
|
+
...IGX_TREE_GRID_DIRECTIVES
|
|
2699
|
+
]
|
|
2700
|
+
}]
|
|
2701
|
+
}] });
|
|
2466
2702
|
|
|
2467
2703
|
/**
|
|
2468
2704
|
* Generated bundle index. Do not edit.
|
|
2469
2705
|
*/
|
|
2470
2706
|
|
|
2471
|
-
export { IGX_TREE_GRID_DIRECTIVES, ITreeGridAggregation, IgxGroupedTreeGridSorting, IgxTreeGridComponent, IgxTreeGridGroupByAreaComponent, IgxTreeGridGroupingPipe };
|
|
2707
|
+
export { IGX_TREE_GRID_DIRECTIVES, ITreeGridAggregation, IgxGroupedTreeGridSorting, IgxTreeGridComponent, IgxTreeGridGroupByAreaComponent, IgxTreeGridGroupingPipe, IgxTreeGridModule };
|
|
2472
2708
|
//# sourceMappingURL=igniteui-angular-grids-tree-grid.mjs.map
|