@progress/kendo-angular-grid 16.6.1-develop.1 → 16.6.1-develop.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/column-resizing/table.directive.d.ts +1 -1
- package/directives.d.ts +6 -7
- package/esm2020/column-resizing/table.directive.mjs +2 -3
- package/esm2020/directives.mjs +0 -2
- package/esm2020/filtering/cell/row-filtering.module.mjs +24 -25
- package/esm2020/filtering/menu/filter-menu.module.mjs +38 -39
- package/esm2020/filtering/shared-filtering.module.mjs +24 -25
- package/esm2020/grid.component.mjs +11 -1
- package/esm2020/grid.module.mjs +119 -118
- package/esm2020/grouping/group.module.mjs +13 -14
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pager/pager.module.mjs +14 -15
- package/esm2020/rendering/body.module.mjs +25 -26
- package/esm2020/rendering/footer/footer.module.mjs +4 -5
- package/esm2020/rendering/header/header.module.mjs +61 -62
- package/esm2020/rendering/list.component.mjs +5 -1
- package/esm2020/shared.module.mjs +4 -5
- package/fesm2015/progress-kendo-angular-grid.mjs +277 -264
- package/fesm2020/progress-kendo-angular-grid.mjs +277 -264
- package/filtering/cell/row-filtering.module.d.ts +23 -24
- package/filtering/menu/filter-menu.module.d.ts +37 -38
- package/filtering/shared-filtering.module.d.ts +23 -24
- package/grid.module.d.ts +116 -116
- package/grouping/group.module.d.ts +12 -13
- package/package.json +16 -16
- package/pager/pager.module.d.ts +13 -14
- package/rendering/body.module.d.ts +24 -25
- package/rendering/footer/footer.module.d.ts +4 -5
- package/rendering/header/header.module.d.ts +60 -61
- package/schematics/ngAdd/index.js +4 -4
- package/shared.module.d.ts +3 -4
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { InjectionToken, EventEmitter, Injectable, SecurityContext, Optional, Inject, Directive, SkipSelf, Input, Host, Output, HostBinding, QueryList, isDevMode, Component, ContentChildren, ContentChild, forwardRef, Pipe, TemplateRef, ChangeDetectionStrategy, ViewChildren, ViewChild, Self, NgZone, HostListener, ElementRef, ViewEncapsulation, NgModule } from '@angular/core';
|
|
7
|
-
import { merge, of, Subject, from, Subscription, interval, zip as zip$1,
|
|
7
|
+
import { merge, of, Subject, from, Subscription, interval, fromEvent, Observable, zip as zip$1, BehaviorSubject } from 'rxjs';
|
|
8
8
|
import * as i9 from '@progress/kendo-angular-common';
|
|
9
9
|
import { isDocumentAvailable, Keys, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, isChanged as isChanged$1, KendoInput, guid, hasObservers, ResizeSensorComponent, isPresent as isPresent$1, closest as closest$1, isFocusable as isFocusable$1, shouldShowValidationUI, WatermarkOverlayComponent, ResizeBatchService, DraggableModule } from '@progress/kendo-angular-common';
|
|
10
|
-
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime,
|
|
10
|
+
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, auditTime, bufferCount } from 'rxjs/operators';
|
|
11
11
|
import { plusIcon, cancelIcon, lockIcon, unlockIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, columnsIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, reorderIcon, minusIcon, caretAltToLeftIcon, caretAltToRightIcon, insertMiddleIcon } from '@progress/kendo-svg-icons';
|
|
12
12
|
import * as i1 from '@angular/platform-browser';
|
|
13
13
|
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
@@ -18,7 +18,7 @@ import { orderBy, isCompositeFilterDescriptor, groupBy, process, filterBy } from
|
|
|
18
18
|
import { NgFor, NgIf, NgTemplateOutlet, NgSwitch, NgSwitchCase, NgClass, NgStyle, NgSwitchDefault } from '@angular/common';
|
|
19
19
|
import { getter } from '@progress/kendo-common';
|
|
20
20
|
import * as i1$3 from '@progress/kendo-angular-intl';
|
|
21
|
-
import * as
|
|
21
|
+
import * as i17 from '@progress/kendo-angular-buttons';
|
|
22
22
|
import { ChipListComponent, ChipComponent, ButtonComponent, Button, KENDO_CHIPLIST } from '@progress/kendo-angular-buttons';
|
|
23
23
|
import * as i5 from '@progress/kendo-angular-popup';
|
|
24
24
|
import { PopupService, KENDO_POPUP } from '@progress/kendo-angular-popup';
|
|
@@ -4595,251 +4595,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4595
4595
|
}]
|
|
4596
4596
|
}], ctorParameters: function () { return [{ type: i1$3.IntlService }]; } });
|
|
4597
4597
|
|
|
4598
|
-
/**
|
|
4599
|
-
* @hidden
|
|
4600
|
-
*/
|
|
4601
|
-
const isLocked = column => column.parent ? isLocked(column.parent) : !!column.locked;
|
|
4602
|
-
/**
|
|
4603
|
-
* @hidden
|
|
4604
|
-
*/
|
|
4605
|
-
const resizeArgs = (column, extra) => Object.assign({
|
|
4606
|
-
columns: leafColumns([column]),
|
|
4607
|
-
locked: isLocked(column)
|
|
4608
|
-
}, extra);
|
|
4609
|
-
/**
|
|
4610
|
-
* @hidden
|
|
4611
|
-
*/
|
|
4612
|
-
class ColumnResizingService {
|
|
4613
|
-
constructor() {
|
|
4614
|
-
this.changes = new EventEmitter();
|
|
4615
|
-
this.tables = [];
|
|
4616
|
-
this.batch = null;
|
|
4617
|
-
}
|
|
4618
|
-
start(column) {
|
|
4619
|
-
this.trackColumns(column);
|
|
4620
|
-
const columns = (this.column.isColumnGroup ? [column] : [])
|
|
4621
|
-
.concat(leafColumns([column]));
|
|
4622
|
-
this.changes.emit({
|
|
4623
|
-
columns: columns,
|
|
4624
|
-
locked: isLocked(this.column),
|
|
4625
|
-
type: 'start'
|
|
4626
|
-
});
|
|
4627
|
-
}
|
|
4628
|
-
resizeColumns(deltaPercent) {
|
|
4629
|
-
const action = resizeArgs(this.column, {
|
|
4630
|
-
deltaPercent,
|
|
4631
|
-
type: 'resizeColumn'
|
|
4632
|
-
});
|
|
4633
|
-
this.changes.emit(action);
|
|
4634
|
-
}
|
|
4635
|
-
resizeTable(column, delta) {
|
|
4636
|
-
const action = resizeArgs(column, {
|
|
4637
|
-
delta,
|
|
4638
|
-
type: 'resizeTable'
|
|
4639
|
-
});
|
|
4640
|
-
this.changes.emit(action);
|
|
4641
|
-
}
|
|
4642
|
-
resizedColumn(state) {
|
|
4643
|
-
this.resizedColumns.push(state);
|
|
4644
|
-
}
|
|
4645
|
-
end() {
|
|
4646
|
-
this.changes.emit({
|
|
4647
|
-
columns: [],
|
|
4648
|
-
resizedColumns: this.resizedColumns,
|
|
4649
|
-
type: 'end'
|
|
4650
|
-
});
|
|
4651
|
-
}
|
|
4652
|
-
registerTable(tableMetadata) {
|
|
4653
|
-
this.tables.push(tableMetadata);
|
|
4654
|
-
const unregisterTable = () => {
|
|
4655
|
-
this.tables.splice(this.tables.indexOf(tableMetadata), 1);
|
|
4656
|
-
};
|
|
4657
|
-
return unregisterTable;
|
|
4658
|
-
}
|
|
4659
|
-
measureColumns(info) {
|
|
4660
|
-
if (this.batch !== null) {
|
|
4661
|
-
this.batch.push(...info);
|
|
4662
|
-
}
|
|
4663
|
-
else {
|
|
4664
|
-
this.autoFitBatch(info, () => this.end());
|
|
4665
|
-
}
|
|
4666
|
-
}
|
|
4667
|
-
autoFit(...columns) {
|
|
4668
|
-
const nonLockedColumns = columns.filter(column => !column.isLocked);
|
|
4669
|
-
this.autoFitStart(nonLockedColumns);
|
|
4670
|
-
this.autoFitBatch(this.batch, () => {
|
|
4671
|
-
if (nonLockedColumns.length < columns.length) {
|
|
4672
|
-
const lockedColumns = columns.filter(column => column.isLocked);
|
|
4673
|
-
this.autoFitStart(lockedColumns);
|
|
4674
|
-
this.autoFitBatch(this.batch, () => this.end());
|
|
4675
|
-
}
|
|
4676
|
-
else {
|
|
4677
|
-
this.end();
|
|
4678
|
-
}
|
|
4679
|
-
});
|
|
4680
|
-
}
|
|
4681
|
-
trackColumns(column) {
|
|
4682
|
-
this.resizedColumns = [];
|
|
4683
|
-
this.column = column;
|
|
4684
|
-
}
|
|
4685
|
-
autoFitStart(columns) {
|
|
4686
|
-
this.batch = [];
|
|
4687
|
-
this.resizedColumns = [];
|
|
4688
|
-
if (columns.length === 0) {
|
|
4689
|
-
return;
|
|
4690
|
-
}
|
|
4691
|
-
const locked = columns[0].isLocked;
|
|
4692
|
-
this.changes.emit({
|
|
4693
|
-
type: 'start',
|
|
4694
|
-
columns,
|
|
4695
|
-
locked
|
|
4696
|
-
});
|
|
4697
|
-
this.changes.emit({
|
|
4698
|
-
type: 'triggerAutoFit',
|
|
4699
|
-
columns,
|
|
4700
|
-
locked
|
|
4701
|
-
});
|
|
4702
|
-
}
|
|
4703
|
-
autoFitBatch(info, onComplete) {
|
|
4704
|
-
const locked = info.length > 0 ? info[0].column.isLocked : false;
|
|
4705
|
-
const observables = this.tables
|
|
4706
|
-
.filter(table => table.locked === locked)
|
|
4707
|
-
.map(table => table.autoFit(info));
|
|
4708
|
-
zip$1(...observables)
|
|
4709
|
-
.pipe(take(1))
|
|
4710
|
-
.subscribe(widths => {
|
|
4711
|
-
this.changes.emit({
|
|
4712
|
-
columns: info.map(i => i.column),
|
|
4713
|
-
type: 'autoFitComplete',
|
|
4714
|
-
widths,
|
|
4715
|
-
locked
|
|
4716
|
-
});
|
|
4717
|
-
if (onComplete) {
|
|
4718
|
-
onComplete();
|
|
4719
|
-
}
|
|
4720
|
-
});
|
|
4721
|
-
this.batch = null;
|
|
4722
|
-
}
|
|
4723
|
-
}
|
|
4724
|
-
ColumnResizingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnResizingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4725
|
-
ColumnResizingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnResizingService });
|
|
4726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnResizingService, decorators: [{
|
|
4727
|
-
type: Injectable
|
|
4728
|
-
}] });
|
|
4729
|
-
|
|
4730
|
-
/**
|
|
4731
|
-
* @hidden
|
|
4732
|
-
*/
|
|
4733
|
-
const columnsToResize = ({ columns }) => Math.max(1, resizableColumns(columns).length);
|
|
4734
|
-
/**
|
|
4735
|
-
* @hidden
|
|
4736
|
-
*/
|
|
4737
|
-
const row = selector => element => element.querySelector(selector);
|
|
4738
|
-
/**
|
|
4739
|
-
* @hidden
|
|
4740
|
-
*/
|
|
4741
|
-
const headerRow = index => element => element.querySelectorAll('thead>tr')[index];
|
|
4742
|
-
/**
|
|
4743
|
-
* @hidden
|
|
4744
|
-
*/
|
|
4745
|
-
const cell = (index, selector = 'td') => element => element.querySelectorAll(`${selector}:not(.k-group-cell):not(.k-hierarchy-cell)`)[index];
|
|
4746
|
-
/**
|
|
4747
|
-
* @hidden
|
|
4748
|
-
*/
|
|
4749
|
-
const offsetWidth = element => element.offsetWidth;
|
|
4750
|
-
/**
|
|
4751
|
-
* @hidden
|
|
4752
|
-
*/
|
|
4753
|
-
const pipe = (...fns) => data => fns.reduce((state, fn) => state ? fn(state) : 0, data);
|
|
4754
|
-
/**
|
|
4755
|
-
* @hidden
|
|
4756
|
-
*/
|
|
4757
|
-
class TableDirective {
|
|
4758
|
-
constructor(element, renderer, service, zone, cdr) {
|
|
4759
|
-
this.element = element;
|
|
4760
|
-
this.renderer = renderer;
|
|
4761
|
-
this.service = service;
|
|
4762
|
-
this.zone = zone;
|
|
4763
|
-
this.cdr = cdr;
|
|
4764
|
-
this.locked = false;
|
|
4765
|
-
this.firstResize = false;
|
|
4766
|
-
}
|
|
4767
|
-
get minWidth() {
|
|
4768
|
-
return this.firstResize ? 0 : null;
|
|
4769
|
-
}
|
|
4770
|
-
ngOnInit() {
|
|
4771
|
-
const obs = this.service
|
|
4772
|
-
.changes.pipe(filter(e => this.locked === e.locked));
|
|
4773
|
-
this.subscription = obs.pipe(filter(e => e.type === 'start'), tap(this.initState.bind(this)), map(columnsToResize), switchMap((take) => obs.pipe(filter(e => e.type === 'resizeTable'), map(e => e.delta), bufferCount(take)))).subscribe(this.resize.bind(this));
|
|
4774
|
-
this.autoFitSubscription = this.service
|
|
4775
|
-
.registerTable({
|
|
4776
|
-
autoFit: this.autoFitObservable.bind(this),
|
|
4777
|
-
locked: this.locked
|
|
4778
|
-
});
|
|
4779
|
-
}
|
|
4780
|
-
ngOnDestroy() {
|
|
4781
|
-
if (this.subscription) {
|
|
4782
|
-
this.subscription.unsubscribe();
|
|
4783
|
-
}
|
|
4784
|
-
if (this.autoFitSubscription) {
|
|
4785
|
-
this.autoFitSubscription();
|
|
4786
|
-
this.autoFitSubscription = null;
|
|
4787
|
-
}
|
|
4788
|
-
}
|
|
4789
|
-
initState() {
|
|
4790
|
-
this.firstResize = true;
|
|
4791
|
-
if (!this.virtualColumns || this.locked) {
|
|
4792
|
-
this.originalWidth = offsetWidth(this.element.nativeElement);
|
|
4793
|
-
}
|
|
4794
|
-
}
|
|
4795
|
-
resize(deltas) {
|
|
4796
|
-
if (!this.virtualColumns || this.locked) {
|
|
4797
|
-
const delta = deltas.reduce((sum, item) => sum + item, 0);
|
|
4798
|
-
const width = this.originalWidth + delta;
|
|
4799
|
-
this.renderer.setStyle(this.element.nativeElement, 'width', width + 'px');
|
|
4800
|
-
}
|
|
4801
|
-
this.cdr.detectChanges();
|
|
4802
|
-
}
|
|
4803
|
-
autoFitObservable(columnInfo) {
|
|
4804
|
-
return Observable.create(observer => {
|
|
4805
|
-
this.zone.runOutsideAngular(() => {
|
|
4806
|
-
this.renderer.addClass(this.element.nativeElement, 'k-autofitting');
|
|
4807
|
-
this.cdr.detectChanges();
|
|
4808
|
-
const widths = columnInfo.map(this.measureColumn.bind(this));
|
|
4809
|
-
this.renderer.removeClass(this.element.nativeElement, 'k-autofitting');
|
|
4810
|
-
observer.next(widths);
|
|
4811
|
-
});
|
|
4812
|
-
});
|
|
4813
|
-
}
|
|
4814
|
-
measureColumn(info) {
|
|
4815
|
-
const dom = this.element.nativeElement;
|
|
4816
|
-
const header = pipe(headerRow(info.level), cell(info.headerIndex, 'th'), offsetWidth)(dom);
|
|
4817
|
-
let data = 0;
|
|
4818
|
-
if (!info.isParentSpan || (info.isParentSpan && info.isLastInSpan)) {
|
|
4819
|
-
data = pipe(row('tbody>tr:not(.k-grouping-row):not(.k-grid-norecords)'), cell(info.index), offsetWidth)(dom);
|
|
4820
|
-
}
|
|
4821
|
-
const footer = pipe(row('tfoot>tr'), cell(info.index), offsetWidth)(dom);
|
|
4822
|
-
return Math.max(header, data, footer);
|
|
4823
|
-
}
|
|
4824
|
-
}
|
|
4825
|
-
TableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ColumnResizingService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4826
|
-
TableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TableDirective, isStandalone: true, selector: "table", inputs: { locked: "locked", virtualColumns: "virtualColumns" }, host: { properties: { "style.min-width": "this.minWidth" } }, ngImport: i0 });
|
|
4827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableDirective, decorators: [{
|
|
4828
|
-
type: Directive,
|
|
4829
|
-
args: [{
|
|
4830
|
-
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
4831
|
-
selector: 'table',
|
|
4832
|
-
standalone: true
|
|
4833
|
-
}]
|
|
4834
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: ColumnResizingService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { locked: [{
|
|
4835
|
-
type: Input
|
|
4836
|
-
}], virtualColumns: [{
|
|
4837
|
-
type: Input
|
|
4838
|
-
}], minWidth: [{
|
|
4839
|
-
type: HostBinding,
|
|
4840
|
-
args: ['style.min-width']
|
|
4841
|
-
}] } });
|
|
4842
|
-
|
|
4843
4598
|
/**
|
|
4844
4599
|
* @hidden
|
|
4845
4600
|
*/
|
|
@@ -13669,6 +13424,138 @@ class ColumnReorderEvent extends PreventableEvent {
|
|
|
13669
13424
|
}
|
|
13670
13425
|
}
|
|
13671
13426
|
|
|
13427
|
+
/**
|
|
13428
|
+
* @hidden
|
|
13429
|
+
*/
|
|
13430
|
+
const isLocked = column => column.parent ? isLocked(column.parent) : !!column.locked;
|
|
13431
|
+
/**
|
|
13432
|
+
* @hidden
|
|
13433
|
+
*/
|
|
13434
|
+
const resizeArgs = (column, extra) => Object.assign({
|
|
13435
|
+
columns: leafColumns([column]),
|
|
13436
|
+
locked: isLocked(column)
|
|
13437
|
+
}, extra);
|
|
13438
|
+
/**
|
|
13439
|
+
* @hidden
|
|
13440
|
+
*/
|
|
13441
|
+
class ColumnResizingService {
|
|
13442
|
+
constructor() {
|
|
13443
|
+
this.changes = new EventEmitter();
|
|
13444
|
+
this.tables = [];
|
|
13445
|
+
this.batch = null;
|
|
13446
|
+
}
|
|
13447
|
+
start(column) {
|
|
13448
|
+
this.trackColumns(column);
|
|
13449
|
+
const columns = (this.column.isColumnGroup ? [column] : [])
|
|
13450
|
+
.concat(leafColumns([column]));
|
|
13451
|
+
this.changes.emit({
|
|
13452
|
+
columns: columns,
|
|
13453
|
+
locked: isLocked(this.column),
|
|
13454
|
+
type: 'start'
|
|
13455
|
+
});
|
|
13456
|
+
}
|
|
13457
|
+
resizeColumns(deltaPercent) {
|
|
13458
|
+
const action = resizeArgs(this.column, {
|
|
13459
|
+
deltaPercent,
|
|
13460
|
+
type: 'resizeColumn'
|
|
13461
|
+
});
|
|
13462
|
+
this.changes.emit(action);
|
|
13463
|
+
}
|
|
13464
|
+
resizeTable(column, delta) {
|
|
13465
|
+
const action = resizeArgs(column, {
|
|
13466
|
+
delta,
|
|
13467
|
+
type: 'resizeTable'
|
|
13468
|
+
});
|
|
13469
|
+
this.changes.emit(action);
|
|
13470
|
+
}
|
|
13471
|
+
resizedColumn(state) {
|
|
13472
|
+
this.resizedColumns.push(state);
|
|
13473
|
+
}
|
|
13474
|
+
end() {
|
|
13475
|
+
this.changes.emit({
|
|
13476
|
+
columns: [],
|
|
13477
|
+
resizedColumns: this.resizedColumns,
|
|
13478
|
+
type: 'end'
|
|
13479
|
+
});
|
|
13480
|
+
}
|
|
13481
|
+
registerTable(tableMetadata) {
|
|
13482
|
+
this.tables.push(tableMetadata);
|
|
13483
|
+
const unregisterTable = () => {
|
|
13484
|
+
this.tables.splice(this.tables.indexOf(tableMetadata), 1);
|
|
13485
|
+
};
|
|
13486
|
+
return unregisterTable;
|
|
13487
|
+
}
|
|
13488
|
+
measureColumns(info) {
|
|
13489
|
+
if (this.batch !== null) {
|
|
13490
|
+
this.batch.push(...info);
|
|
13491
|
+
}
|
|
13492
|
+
else {
|
|
13493
|
+
this.autoFitBatch(info, () => this.end());
|
|
13494
|
+
}
|
|
13495
|
+
}
|
|
13496
|
+
autoFit(...columns) {
|
|
13497
|
+
const nonLockedColumns = columns.filter(column => !column.isLocked);
|
|
13498
|
+
this.autoFitStart(nonLockedColumns);
|
|
13499
|
+
this.autoFitBatch(this.batch, () => {
|
|
13500
|
+
if (nonLockedColumns.length < columns.length) {
|
|
13501
|
+
const lockedColumns = columns.filter(column => column.isLocked);
|
|
13502
|
+
this.autoFitStart(lockedColumns);
|
|
13503
|
+
this.autoFitBatch(this.batch, () => this.end());
|
|
13504
|
+
}
|
|
13505
|
+
else {
|
|
13506
|
+
this.end();
|
|
13507
|
+
}
|
|
13508
|
+
});
|
|
13509
|
+
}
|
|
13510
|
+
trackColumns(column) {
|
|
13511
|
+
this.resizedColumns = [];
|
|
13512
|
+
this.column = column;
|
|
13513
|
+
}
|
|
13514
|
+
autoFitStart(columns) {
|
|
13515
|
+
this.batch = [];
|
|
13516
|
+
this.resizedColumns = [];
|
|
13517
|
+
if (columns.length === 0) {
|
|
13518
|
+
return;
|
|
13519
|
+
}
|
|
13520
|
+
const locked = columns[0].isLocked;
|
|
13521
|
+
this.changes.emit({
|
|
13522
|
+
type: 'start',
|
|
13523
|
+
columns,
|
|
13524
|
+
locked
|
|
13525
|
+
});
|
|
13526
|
+
this.changes.emit({
|
|
13527
|
+
type: 'triggerAutoFit',
|
|
13528
|
+
columns,
|
|
13529
|
+
locked
|
|
13530
|
+
});
|
|
13531
|
+
}
|
|
13532
|
+
autoFitBatch(info, onComplete) {
|
|
13533
|
+
const locked = info.length > 0 ? info[0].column.isLocked : false;
|
|
13534
|
+
const observables = this.tables
|
|
13535
|
+
.filter(table => table.locked === locked)
|
|
13536
|
+
.map(table => table.autoFit(info));
|
|
13537
|
+
zip$1(...observables)
|
|
13538
|
+
.pipe(take(1))
|
|
13539
|
+
.subscribe(widths => {
|
|
13540
|
+
this.changes.emit({
|
|
13541
|
+
columns: info.map(i => i.column),
|
|
13542
|
+
type: 'autoFitComplete',
|
|
13543
|
+
widths,
|
|
13544
|
+
locked
|
|
13545
|
+
});
|
|
13546
|
+
if (onComplete) {
|
|
13547
|
+
onComplete();
|
|
13548
|
+
}
|
|
13549
|
+
});
|
|
13550
|
+
this.batch = null;
|
|
13551
|
+
}
|
|
13552
|
+
}
|
|
13553
|
+
ColumnResizingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnResizingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13554
|
+
ColumnResizingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnResizingService });
|
|
13555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnResizingService, decorators: [{
|
|
13556
|
+
type: Injectable
|
|
13557
|
+
}] });
|
|
13558
|
+
|
|
13672
13559
|
/**
|
|
13673
13560
|
* @hidden
|
|
13674
13561
|
*/
|
|
@@ -19503,8 +19390,8 @@ const packageMetadata = {
|
|
|
19503
19390
|
name: '@progress/kendo-angular-grid',
|
|
19504
19391
|
productName: 'Kendo UI for Angular',
|
|
19505
19392
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
19506
|
-
publishDate:
|
|
19507
|
-
version: '16.6.1-develop.
|
|
19393
|
+
publishDate: 1722952721,
|
|
19394
|
+
version: '16.6.1-develop.3',
|
|
19508
19395
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
19509
19396
|
};
|
|
19510
19397
|
|
|
@@ -21253,6 +21140,118 @@ class ScrollerService {
|
|
|
21253
21140
|
}
|
|
21254
21141
|
}
|
|
21255
21142
|
|
|
21143
|
+
/**
|
|
21144
|
+
* @hidden
|
|
21145
|
+
*/
|
|
21146
|
+
const columnsToResize = ({ columns }) => Math.max(1, resizableColumns(columns).length);
|
|
21147
|
+
/**
|
|
21148
|
+
* @hidden
|
|
21149
|
+
*/
|
|
21150
|
+
const row = selector => element => element.querySelector(selector);
|
|
21151
|
+
/**
|
|
21152
|
+
* @hidden
|
|
21153
|
+
*/
|
|
21154
|
+
const headerRow = index => element => element.querySelectorAll('thead>tr')[index];
|
|
21155
|
+
/**
|
|
21156
|
+
* @hidden
|
|
21157
|
+
*/
|
|
21158
|
+
const cell = (index, selector = 'td') => element => element.querySelectorAll(`${selector}:not(.k-group-cell):not(.k-hierarchy-cell)`)[index];
|
|
21159
|
+
/**
|
|
21160
|
+
* @hidden
|
|
21161
|
+
*/
|
|
21162
|
+
const offsetWidth = element => element.offsetWidth;
|
|
21163
|
+
/**
|
|
21164
|
+
* @hidden
|
|
21165
|
+
*/
|
|
21166
|
+
const pipe = (...fns) => data => fns.reduce((state, fn) => state ? fn(state) : 0, data);
|
|
21167
|
+
/**
|
|
21168
|
+
* @hidden
|
|
21169
|
+
*/
|
|
21170
|
+
class TableDirective {
|
|
21171
|
+
constructor(element, renderer, service, zone, cdr) {
|
|
21172
|
+
this.element = element;
|
|
21173
|
+
this.renderer = renderer;
|
|
21174
|
+
this.service = service;
|
|
21175
|
+
this.zone = zone;
|
|
21176
|
+
this.cdr = cdr;
|
|
21177
|
+
this.locked = false;
|
|
21178
|
+
this.firstResize = false;
|
|
21179
|
+
}
|
|
21180
|
+
get minWidth() {
|
|
21181
|
+
return this.firstResize ? 0 : null;
|
|
21182
|
+
}
|
|
21183
|
+
ngOnInit() {
|
|
21184
|
+
const obs = this.service
|
|
21185
|
+
.changes.pipe(filter(e => this.locked === e.locked));
|
|
21186
|
+
this.subscription = obs.pipe(filter(e => e.type === 'start'), tap(this.initState.bind(this)), map(columnsToResize), switchMap((take) => obs.pipe(filter(e => e.type === 'resizeTable'), map(e => e.delta), bufferCount(take)))).subscribe(this.resize.bind(this));
|
|
21187
|
+
this.autoFitSubscription = this.service
|
|
21188
|
+
.registerTable({
|
|
21189
|
+
autoFit: this.autoFitObservable.bind(this),
|
|
21190
|
+
locked: this.locked
|
|
21191
|
+
});
|
|
21192
|
+
}
|
|
21193
|
+
ngOnDestroy() {
|
|
21194
|
+
if (this.subscription) {
|
|
21195
|
+
this.subscription.unsubscribe();
|
|
21196
|
+
}
|
|
21197
|
+
if (this.autoFitSubscription) {
|
|
21198
|
+
this.autoFitSubscription();
|
|
21199
|
+
this.autoFitSubscription = null;
|
|
21200
|
+
}
|
|
21201
|
+
}
|
|
21202
|
+
initState() {
|
|
21203
|
+
this.firstResize = true;
|
|
21204
|
+
if (!this.virtualColumns || this.locked) {
|
|
21205
|
+
this.originalWidth = offsetWidth(this.element.nativeElement);
|
|
21206
|
+
}
|
|
21207
|
+
}
|
|
21208
|
+
resize(deltas) {
|
|
21209
|
+
if (!this.virtualColumns || this.locked) {
|
|
21210
|
+
const delta = deltas.reduce((sum, item) => sum + item, 0);
|
|
21211
|
+
const width = this.originalWidth + delta;
|
|
21212
|
+
this.renderer.setStyle(this.element.nativeElement, 'width', width + 'px');
|
|
21213
|
+
}
|
|
21214
|
+
this.cdr.detectChanges();
|
|
21215
|
+
}
|
|
21216
|
+
autoFitObservable(columnInfo) {
|
|
21217
|
+
return Observable.create(observer => {
|
|
21218
|
+
this.zone.runOutsideAngular(() => {
|
|
21219
|
+
this.renderer.addClass(this.element.nativeElement, 'k-autofitting');
|
|
21220
|
+
this.cdr.detectChanges();
|
|
21221
|
+
const widths = columnInfo.map(this.measureColumn.bind(this));
|
|
21222
|
+
this.renderer.removeClass(this.element.nativeElement, 'k-autofitting');
|
|
21223
|
+
observer.next(widths);
|
|
21224
|
+
});
|
|
21225
|
+
});
|
|
21226
|
+
}
|
|
21227
|
+
measureColumn(info) {
|
|
21228
|
+
const dom = this.element.nativeElement;
|
|
21229
|
+
const header = pipe(headerRow(info.level), cell(info.headerIndex, 'th'), offsetWidth)(dom);
|
|
21230
|
+
let data = 0;
|
|
21231
|
+
if (!info.isParentSpan || (info.isParentSpan && info.isLastInSpan)) {
|
|
21232
|
+
data = pipe(row('tbody>tr:not(.k-grouping-row):not(.k-grid-norecords)'), cell(info.index), offsetWidth)(dom);
|
|
21233
|
+
}
|
|
21234
|
+
const footer = pipe(row('tfoot>tr'), cell(info.index), offsetWidth)(dom);
|
|
21235
|
+
return Math.max(header, data, footer);
|
|
21236
|
+
}
|
|
21237
|
+
}
|
|
21238
|
+
TableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ColumnResizingService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
21239
|
+
TableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TableDirective, isStandalone: true, selector: "[kendoGridResizableTable]", inputs: { locked: "locked", virtualColumns: "virtualColumns" }, host: { properties: { "style.min-width": "this.minWidth" } }, ngImport: i0 });
|
|
21240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableDirective, decorators: [{
|
|
21241
|
+
type: Directive,
|
|
21242
|
+
args: [{
|
|
21243
|
+
selector: '[kendoGridResizableTable]',
|
|
21244
|
+
standalone: true
|
|
21245
|
+
}]
|
|
21246
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: ColumnResizingService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { locked: [{
|
|
21247
|
+
type: Input
|
|
21248
|
+
}], virtualColumns: [{
|
|
21249
|
+
type: Input
|
|
21250
|
+
}], minWidth: [{
|
|
21251
|
+
type: HostBinding,
|
|
21252
|
+
args: ['style.min-width']
|
|
21253
|
+
}] } });
|
|
21254
|
+
|
|
21256
21255
|
const elementAt = (index, elements, elementOffset) => {
|
|
21257
21256
|
for (let idx = 0, elementIdx = 0; idx < elements.length; idx++) {
|
|
21258
21257
|
const offset = elementOffset(elements[idx]);
|
|
@@ -21823,6 +21822,7 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
21823
21822
|
>
|
|
21824
21823
|
<div role="presentation" class="k-grid-table-wrap">
|
|
21825
21824
|
<table
|
|
21825
|
+
kendoGridResizableTable
|
|
21826
21826
|
[locked]="true"
|
|
21827
21827
|
#lockedTable
|
|
21828
21828
|
class="k-grid-table"
|
|
@@ -21873,6 +21873,7 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
21873
21873
|
<table
|
|
21874
21874
|
[style.width.px]="nonLockedWidth"
|
|
21875
21875
|
#table
|
|
21876
|
+
kendoGridResizableTable
|
|
21876
21877
|
[virtualColumns]="virtualColumns"
|
|
21877
21878
|
class="k-grid-table"
|
|
21878
21879
|
kendoGridTable
|
|
@@ -21919,7 +21920,7 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
21919
21920
|
<div [style.width.px]="totalWidth"></div>
|
|
21920
21921
|
</div>
|
|
21921
21922
|
</div>
|
|
21922
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: TableDirective, selector: "
|
|
21923
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: TableDirective, selector: "[kendoGridResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "directive", type: GridTableDirective, selector: "[kendoGridTable]", inputs: ["size"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoGridColGroup]", inputs: ["columns", "groups", "detailTemplate", "sort"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoGridTableBody]", inputs: ["columns", "allColumns", "groups", "detailTemplate", "noRecordsTemplate", "data", "skip", "selectable", "filterable", "noRecordsText", "isLocked", "isLoading", "isVirtual", "cellLoadingTemplate", "skipGroupDecoration", "showGroupFooters", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "trackBy", "rowSticky", "totalColumns", "rowClass"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoGridResizableContainer]", inputs: ["lockedWidth", "kendoGridResizableContainer"] }] });
|
|
21923
21924
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListComponent, decorators: [{
|
|
21924
21925
|
type: Component,
|
|
21925
21926
|
args: [{
|
|
@@ -21943,6 +21944,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
21943
21944
|
>
|
|
21944
21945
|
<div role="presentation" class="k-grid-table-wrap">
|
|
21945
21946
|
<table
|
|
21947
|
+
kendoGridResizableTable
|
|
21946
21948
|
[locked]="true"
|
|
21947
21949
|
#lockedTable
|
|
21948
21950
|
class="k-grid-table"
|
|
@@ -21993,6 +21995,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
21993
21995
|
<table
|
|
21994
21996
|
[style.width.px]="nonLockedWidth"
|
|
21995
21997
|
#table
|
|
21998
|
+
kendoGridResizableTable
|
|
21996
21999
|
[virtualColumns]="virtualColumns"
|
|
21997
22000
|
class="k-grid-table"
|
|
21998
22001
|
kendoGridTable
|
|
@@ -24696,6 +24699,7 @@ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
24696
24699
|
class="k-grid-header-locked"
|
|
24697
24700
|
[style.width.px]="lockedWidth">
|
|
24698
24701
|
<table
|
|
24702
|
+
kendoGridResizableTable
|
|
24699
24703
|
[locked]="true"
|
|
24700
24704
|
role="presentation"
|
|
24701
24705
|
class="k-grid-header-table"
|
|
@@ -24736,6 +24740,7 @@ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
24736
24740
|
role="presentation"
|
|
24737
24741
|
class="k-grid-header-table"
|
|
24738
24742
|
[style.width.px]="nonLockedWidth"
|
|
24743
|
+
kendoGridResizableTable
|
|
24739
24744
|
[virtualColumns]="virtualColumns"
|
|
24740
24745
|
kendoGridTable
|
|
24741
24746
|
[size]="size">
|
|
@@ -24830,6 +24835,7 @@ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
24830
24835
|
<table
|
|
24831
24836
|
role="presentation"
|
|
24832
24837
|
class="k-grid-footer-table"
|
|
24838
|
+
kendoGridResizableTable
|
|
24833
24839
|
[locked]="true"
|
|
24834
24840
|
[style.width.px]="lockedWidth"
|
|
24835
24841
|
kendoGridTable
|
|
@@ -24858,6 +24864,7 @@ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
24858
24864
|
class="k-grid-footer-table"
|
|
24859
24865
|
[style.width.px]="nonLockedWidth"
|
|
24860
24866
|
kendoGridTable
|
|
24867
|
+
kendoGridResizableTable
|
|
24861
24868
|
[size]="size">
|
|
24862
24869
|
<colgroup kendoGridColGroup
|
|
24863
24870
|
[columns]="$any(headerLeafColumns)"
|
|
@@ -24881,6 +24888,7 @@ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
24881
24888
|
<table
|
|
24882
24889
|
[style.table-layout]="resizable ? 'fixed' : null"
|
|
24883
24890
|
kendoGridTable
|
|
24891
|
+
kendoGridResizableTable
|
|
24884
24892
|
role="presentation"
|
|
24885
24893
|
[size]="size">
|
|
24886
24894
|
<colgroup kendoGridColGroup
|
|
@@ -24974,7 +24982,7 @@ GridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
24974
24982
|
</ng-template>
|
|
24975
24983
|
|
|
24976
24984
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
24977
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoGridLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ToolbarComponent, selector: "kendo-grid-toolbar", inputs: ["position", "size", "navigable"] }, { kind: "component", type: PagerComponent, selector: "kendo-pager", inputs: ["total", "skip", "pageSize", "options", "size", "template"], outputs: ["pageChange"] }, { kind: "component", type: GroupPanelComponent, selector: "kendo-grid-group-panel", inputs: ["text", "navigable", "groups"], outputs: ["change"] }, { kind: "directive", type: TableDirective, selector: "
|
|
24985
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoGridLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ToolbarComponent, selector: "kendo-grid-toolbar", inputs: ["position", "size", "navigable"] }, { kind: "component", type: PagerComponent, selector: "kendo-pager", inputs: ["total", "skip", "pageSize", "options", "size", "template"], outputs: ["pageChange"] }, { kind: "component", type: GroupPanelComponent, selector: "kendo-grid-group-panel", inputs: ["text", "navigable", "groups"], outputs: ["change"] }, { kind: "directive", type: TableDirective, selector: "[kendoGridResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "directive", type: GridTableDirective, selector: "[kendoGridTable]", inputs: ["size"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoGridColGroup]", inputs: ["columns", "groups", "detailTemplate", "sort"] }, { kind: "component", type: HeaderComponent, selector: "[kendoGridHeader]", inputs: ["totalColumnLevels", "columns", "groups", "detailTemplate", "scrollable", "filterable", "sort", "filter", "sortable", "groupable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns", "tabIndex", "size"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoGridResizableContainer]", inputs: ["lockedWidth", "kendoGridResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-grid-list", inputs: ["data", "groups", "total", "rowHeight", "stickyRowHeight", "detailRowHeight", "take", "skip", "columns", "detailTemplate", "noRecordsTemplate", "selectable", "groupable", "filterable", "rowClass", "rowSticky", "loading", "trackBy", "virtualColumns", "isVirtual", "cellLoadingTemplate", "loadingTemplate", "sort", "size"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: GridMarqueeDirective, selector: "[kendoGridSelectionMarquee]" }, { kind: "component", type: FooterComponent, selector: "[kendoGridFooter]", inputs: ["columns", "groups", "detailTemplate", "scrollable", "lockedColumnsCount", "logicalRowIndex", "totalColumns"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoGridTableBody]", inputs: ["columns", "allColumns", "groups", "detailTemplate", "noRecordsTemplate", "data", "skip", "selectable", "filterable", "noRecordsText", "isLocked", "isLoading", "isVirtual", "cellLoadingTemplate", "skipGroupDecoration", "showGroupFooters", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "trackBy", "rowSticky", "totalColumns", "rowClass"] }, { kind: "component", type: LoadingComponent, selector: "[kendoGridLoading]", inputs: ["loadingTemplate"] }, { kind: "component", type: StatusBarComponent, selector: "kendo-grid-status-bar", inputs: ["statusBarTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], encapsulation: i0.ViewEncapsulation.None });
|
|
24978
24986
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GridComponent, decorators: [{
|
|
24979
24987
|
type: Component,
|
|
24980
24988
|
args: [{
|
|
@@ -25328,6 +25336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
25328
25336
|
class="k-grid-header-locked"
|
|
25329
25337
|
[style.width.px]="lockedWidth">
|
|
25330
25338
|
<table
|
|
25339
|
+
kendoGridResizableTable
|
|
25331
25340
|
[locked]="true"
|
|
25332
25341
|
role="presentation"
|
|
25333
25342
|
class="k-grid-header-table"
|
|
@@ -25368,6 +25377,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
25368
25377
|
role="presentation"
|
|
25369
25378
|
class="k-grid-header-table"
|
|
25370
25379
|
[style.width.px]="nonLockedWidth"
|
|
25380
|
+
kendoGridResizableTable
|
|
25371
25381
|
[virtualColumns]="virtualColumns"
|
|
25372
25382
|
kendoGridTable
|
|
25373
25383
|
[size]="size">
|
|
@@ -25462,6 +25472,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
25462
25472
|
<table
|
|
25463
25473
|
role="presentation"
|
|
25464
25474
|
class="k-grid-footer-table"
|
|
25475
|
+
kendoGridResizableTable
|
|
25465
25476
|
[locked]="true"
|
|
25466
25477
|
[style.width.px]="lockedWidth"
|
|
25467
25478
|
kendoGridTable
|
|
@@ -25490,6 +25501,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
25490
25501
|
class="k-grid-footer-table"
|
|
25491
25502
|
[style.width.px]="nonLockedWidth"
|
|
25492
25503
|
kendoGridTable
|
|
25504
|
+
kendoGridResizableTable
|
|
25493
25505
|
[size]="size">
|
|
25494
25506
|
<colgroup kendoGridColGroup
|
|
25495
25507
|
[columns]="$any(headerLeafColumns)"
|
|
@@ -25513,6 +25525,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
25513
25525
|
<table
|
|
25514
25526
|
[style.table-layout]="resizable ? 'fixed' : null"
|
|
25515
25527
|
kendoGridTable
|
|
25528
|
+
kendoGridResizableTable
|
|
25516
25529
|
role="presentation"
|
|
25517
25530
|
[size]="size">
|
|
25518
25531
|
<colgroup kendoGridColGroup
|
|
@@ -27290,7 +27303,6 @@ const KENDO_GRID_SHARED = [
|
|
|
27290
27303
|
FieldAccessorPipe,
|
|
27291
27304
|
DetailTemplateDirective,
|
|
27292
27305
|
SpanColumnComponent,
|
|
27293
|
-
TableDirective,
|
|
27294
27306
|
LoadingComponent,
|
|
27295
27307
|
GridTableDirective
|
|
27296
27308
|
];
|
|
@@ -27612,7 +27624,7 @@ const KENDO_GRID = [
|
|
|
27612
27624
|
class GridModule {
|
|
27613
27625
|
}
|
|
27614
27626
|
GridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27615
|
-
GridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GridModule, imports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27627
|
+
GridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GridModule, imports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective, FooterComponent, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, PagerTemplateDirective, PagerDropDownListDirective, PagerInputDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterMenuDropDownListDirective, BooleanFilterRadioButtonDirective, ColumnMenuChooserItemCheckedDirective, ColumnListComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, ColumnMenuContainerComponent, ColumnMenuItemDirective, ColumnMenuStickComponent, ColumnMenuPositionComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, GridComponent, ListComponent, ToolbarComponent, LocalizedMessagesDirective, CustomMessagesComponent, DataBindingDirective, ToolbarTemplateDirective, SelectionDirective, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, ExpandDetailsDirective, ExpandGroupDirective, GroupBindingDirective, GridMarqueeDirective, GridSpacerComponent, GridToolbarFocusableDirective, StatusBarComponent, StatusBarTemplateDirective, GridClipboardDirective, TableDirective], exports: [GridComponent, ToolbarTemplateDirective, ToolbarComponent, GridSpacerComponent, StatusBarTemplateDirective, DataBindingDirective, SelectionDirective, CustomMessagesComponent, GroupBindingDirective, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, ExpandDetailsDirective, ExpandGroupDirective, GridToolbarFocusableDirective, GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, PagerTemplateDirective, PagerDropDownListDirective, PagerInputDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterMenuDropDownListDirective, BooleanFilterRadioButtonDirective, ColumnChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuLockComponent, ColumnMenuStickComponent, ColumnMenuPositionComponent, ColumnMenuChooserComponent, ColumnMenuTemplateDirective, ColumnMenuContainerComponent, ColumnMenuItemDirective, ColumnMenuComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, GridClipboardDirective] });
|
|
27616
27628
|
GridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GridModule, providers: [
|
|
27617
27629
|
PopupService,
|
|
27618
27630
|
ResizeBatchService,
|
|
@@ -27643,7 +27655,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
27643
27655
|
...KENDO_GRID_FILTER_ROW,
|
|
27644
27656
|
...KENDO_GRID_FILTER_MENU,
|
|
27645
27657
|
...KENDO_GRID_COLUMN_MENU_DECLARATIONS,
|
|
27646
|
-
...KENDO_GRID_DECLARATIONS
|
|
27658
|
+
...KENDO_GRID_DECLARATIONS,
|
|
27659
|
+
TableDirective
|
|
27647
27660
|
],
|
|
27648
27661
|
providers: [
|
|
27649
27662
|
PopupService,
|
|
@@ -27672,7 +27685,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
27672
27685
|
class SharedModule {
|
|
27673
27686
|
}
|
|
27674
27687
|
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27675
|
-
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27688
|
+
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective], exports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, DraggableModule] });
|
|
27676
27689
|
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, providers: [IconsService], imports: [ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, DraggableModule] });
|
|
27677
27690
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
|
|
27678
27691
|
type: NgModule,
|
|
@@ -27697,7 +27710,7 @@ const ENTRY_COMPONENTS$1 = [
|
|
|
27697
27710
|
class RowFilterModule {
|
|
27698
27711
|
}
|
|
27699
27712
|
RowFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27700
|
-
RowFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, imports: [FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27713
|
+
RowFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, imports: [FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective], exports: [FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective] });
|
|
27701
27714
|
RowFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, providers: [
|
|
27702
27715
|
PopupService,
|
|
27703
27716
|
ResizeBatchService,
|
|
@@ -27753,7 +27766,7 @@ const ENTRY_COMPONENTS = [
|
|
|
27753
27766
|
class FilterMenuModule {
|
|
27754
27767
|
}
|
|
27755
27768
|
FilterMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27756
|
-
FilterMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27769
|
+
FilterMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterMenuDropDownListDirective, BooleanFilterRadioButtonDirective], exports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterMenuDropDownListDirective, BooleanFilterRadioButtonDirective] });
|
|
27757
27770
|
FilterMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, providers: [
|
|
27758
27771
|
PopupService,
|
|
27759
27772
|
ResizeBatchService,
|
|
@@ -27807,7 +27820,7 @@ const importedModules$1 = [
|
|
|
27807
27820
|
class BodyModule {
|
|
27808
27821
|
}
|
|
27809
27822
|
BodyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BodyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27810
|
-
BodyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BodyModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27823
|
+
BodyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BodyModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent], exports: [CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent] });
|
|
27811
27824
|
BodyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BodyModule, providers: [
|
|
27812
27825
|
IconsService,
|
|
27813
27826
|
PopupService,
|
|
@@ -27849,7 +27862,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
27849
27862
|
class GroupModule {
|
|
27850
27863
|
}
|
|
27851
27864
|
GroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27852
|
-
GroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GroupModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27865
|
+
GroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: GroupModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, DraggableColumnDirective, DropTargetDirective, i17.ChipComponent, i17.ChipListComponent, i5.PopupComponent, GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent], exports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent] });
|
|
27853
27866
|
GroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GroupModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, KENDO_CHIPLIST, KENDO_POPUP, GroupHeaderComponent, GroupPanelComponent] });
|
|
27854
27867
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GroupModule, decorators: [{
|
|
27855
27868
|
type: NgModule,
|
|
@@ -27876,7 +27889,7 @@ const importedModules = [
|
|
|
27876
27889
|
class HeaderModule {
|
|
27877
27890
|
}
|
|
27878
27891
|
HeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27879
|
-
HeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, imports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27892
|
+
HeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, imports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterMenuDropDownListDirective, BooleanFilterRadioButtonDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, DraggableColumnDirective, DropTargetDirective, ColumnMenuChooserItemCheckedDirective, ColumnListComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, ColumnMenuContainerComponent, ColumnMenuItemDirective, ColumnMenuStickComponent, ColumnMenuPositionComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective], exports: [HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective] });
|
|
27880
27893
|
HeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, providers: [
|
|
27881
27894
|
PopupService,
|
|
27882
27895
|
ResizeBatchService,
|
|
@@ -27925,7 +27938,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
27925
27938
|
class FooterModule {
|
|
27926
27939
|
}
|
|
27927
27940
|
FooterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27928
|
-
FooterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FooterModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27941
|
+
FooterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FooterModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FooterComponent], exports: [FooterComponent] });
|
|
27929
27942
|
FooterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterModule, providers: [IconsService], imports: [ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FooterComponent] });
|
|
27930
27943
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterModule, decorators: [{
|
|
27931
27944
|
type: NgModule,
|
|
@@ -27942,7 +27955,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
27942
27955
|
class PagerModule {
|
|
27943
27956
|
}
|
|
27944
27957
|
PagerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PagerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
27945
|
-
PagerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PagerModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
27958
|
+
PagerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PagerModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, PagerTemplateDirective, PagerDropDownListDirective, PagerInputDirective], exports: [PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, PagerTemplateDirective, PagerDropDownListDirective, PagerInputDirective] });
|
|
27946
27959
|
PagerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PagerModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent] });
|
|
27947
27960
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PagerModule, decorators: [{
|
|
27948
27961
|
type: NgModule,
|
|
@@ -28034,7 +28047,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
28034
28047
|
class SharedFilterModule {
|
|
28035
28048
|
}
|
|
28036
28049
|
SharedFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
28037
|
-
SharedFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent,
|
|
28050
|
+
SharedFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective], exports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i9.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective] });
|
|
28038
28051
|
SharedFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, providers: [
|
|
28039
28052
|
PopupService,
|
|
28040
28053
|
ResizeBatchService,
|