@progress/kendo-angular-grid 19.0.0-develop.10 → 19.0.0-develop.11
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-menu/column-chooser-tool.directive.d.ts +6 -6
- package/common/toolbar-tool-base.directive.d.ts +26 -0
- package/directives.d.ts +7 -3
- package/editing/add-command-tool.directive.d.ts +7 -6
- package/editing/cancel-command-tool.directive.d.ts +38 -0
- package/editing/edit-command-tool.directive.d.ts +38 -0
- package/editing/edit.service.d.ts +1 -1
- package/editing/remove-command-tool.directive.d.ts +39 -0
- package/editing/save-command-tool.directive.d.ts +38 -0
- package/editing/toolbar-editing-tool-base.directive.d.ts +29 -0
- package/esm2022/column-menu/column-chooser-tool.directive.mjs +17 -30
- package/esm2022/common/toolbar-tool-base.directive.mjs +81 -0
- package/esm2022/directives.mjs +8 -0
- package/esm2022/editing/add-command-tool.directive.mjs +12 -15
- package/esm2022/editing/cancel-command-tool.directive.mjs +64 -0
- package/esm2022/editing/edit-command-tool.directive.mjs +59 -0
- package/esm2022/editing/remove-command-tool.directive.mjs +60 -0
- package/esm2022/editing/remove-command.directive.mjs +1 -0
- package/esm2022/editing/save-command-tool.directive.mjs +64 -0
- package/esm2022/editing/toolbar-editing-tool-base.directive.mjs +91 -0
- package/esm2022/excel/excel-command-tool.directive.mjs +12 -17
- package/esm2022/grid.component.mjs +51 -1
- package/esm2022/grid.module.mjs +104 -100
- package/esm2022/index.mjs +4 -0
- package/esm2022/localization/messages.mjs +43 -1
- package/esm2022/navigation/toolbar-tool-name.mjs +17 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pdf/pdf-command-tool.directive.mjs +12 -15
- package/esm2022/selection/selection.service.mjs +11 -0
- package/excel/excel-command-tool.directive.d.ts +5 -5
- package/fesm2022/progress-kendo-angular-grid.mjs +502 -82
- package/grid.component.d.ts +7 -1
- package/grid.module.d.ts +104 -100
- package/index.d.ts +4 -0
- package/localization/messages.d.ts +29 -1
- package/navigation/toolbar-tool-name.d.ts +17 -0
- package/package.json +20 -20
- package/pdf/pdf-command-tool.directive.d.ts +6 -5
- package/schematics/ngAdd/index.js +4 -4
- package/selection/selection.service.d.ts +1 -0
|
@@ -10,11 +10,11 @@ import { isDocumentAvailable, Keys, isPresent as isPresent$1, anyChanged, Templa
|
|
|
10
10
|
import * as i1 from '@angular/platform-browser';
|
|
11
11
|
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
12
12
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
|
13
|
-
import { plusIcon, cancelIcon, lockIcon, unlockIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, checkIcon, arrowRotateCcwIcon, columnsIcon, chevronUpIcon, chevronDownIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, reorderIcon, minusIcon, insertMiddleIcon, xIcon,
|
|
13
|
+
import { plusIcon, cancelIcon, lockIcon, unlockIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, checkIcon, arrowRotateCcwIcon, columnsIcon, pencilIcon, saveIcon, trashIcon, fileExcelIcon, filePdfIcon, chevronUpIcon, chevronDownIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, reorderIcon, minusIcon, insertMiddleIcon, xIcon, arrowsSwapIcon } from '@progress/kendo-svg-icons';
|
|
14
14
|
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, skip, auditTime, bufferCount } from 'rxjs/operators';
|
|
15
15
|
import * as i1$2 from '@progress/kendo-angular-l10n';
|
|
16
16
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
17
|
-
import * as
|
|
17
|
+
import * as i50 from '@progress/kendo-angular-pager';
|
|
18
18
|
import { PagerContextService, PagerNavigationService, PagerTemplateDirective, KENDO_PAGER } from '@progress/kendo-angular-pager';
|
|
19
19
|
import { orderBy, isCompositeFilterDescriptor, groupBy, process, filterBy } from '@progress/kendo-data-query';
|
|
20
20
|
import { NgFor, NgIf, NgTemplateOutlet, NgSwitch, NgSwitchCase, NgClass, NgStyle, NgSwitchDefault, KeyValuePipe } from '@angular/common';
|
|
@@ -32,7 +32,7 @@ import * as i4$1 from '@progress/kendo-angular-inputs';
|
|
|
32
32
|
import { TextBoxComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, RadioButtonComponent, CheckBoxComponent, KENDO_FORMFIELD, KENDO_TEXTBOX, KENDO_NUMERICTEXTBOX, KENDO_CHECKBOX } from '@progress/kendo-angular-inputs';
|
|
33
33
|
import * as i5 from '@progress/kendo-angular-dateinputs';
|
|
34
34
|
import { DatePickerComponent, DatePickerCustomMessagesComponent, KENDO_DATEPICKER, CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, YearViewService, NavigationService as NavigationService$1 } from '@progress/kendo-angular-dateinputs';
|
|
35
|
-
import * as
|
|
35
|
+
import * as i51 from '@progress/kendo-angular-toolbar';
|
|
36
36
|
import { KENDO_TOOLBAR } from '@progress/kendo-angular-toolbar';
|
|
37
37
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
38
38
|
import { TabStripComponent, TabStripTabComponent, TabTitleDirective, TabContentDirective } from '@progress/kendo-angular-layout';
|
|
@@ -4082,12 +4082,12 @@ class NavigationService {
|
|
|
4082
4082
|
const offset = direction === 'Up' ? Math.abs(this.lastCellRowIndex - this.activeRowIndex) : (this.activeRowIndex + cellRowspan - this.lastCellRowIndex - 1);
|
|
4083
4083
|
return offset;
|
|
4084
4084
|
}
|
|
4085
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, deps: [{ token: i0.NgZone }, { token: DomEventsService }, { token:
|
|
4085
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, deps: [{ token: i0.NgZone }, { token: DomEventsService }, { token: i50.PagerContextService }, { token: ScrollRequestService }, { token: GroupsService }, { token: DetailsService }, { token: FocusRoot }, { token: EditService }, { token: i0.ChangeDetectorRef }, { token: ContextService }, { token: ColumnResizingService }, { token: FocusableDirective, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4086
4086
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService });
|
|
4087
4087
|
}
|
|
4088
4088
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, decorators: [{
|
|
4089
4089
|
type: Injectable
|
|
4090
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: DomEventsService }, { type:
|
|
4090
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: DomEventsService }, { type: i50.PagerContextService }, { type: ScrollRequestService }, { type: GroupsService }, { type: DetailsService }, { type: FocusRoot }, { type: EditService }, { type: i0.ChangeDetectorRef }, { type: ContextService }, { type: ColumnResizingService }, { type: FocusableDirective, decorators: [{
|
|
4091
4091
|
type: Optional
|
|
4092
4092
|
}] }]; } });
|
|
4093
4093
|
|
|
@@ -11617,6 +11617,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11617
11617
|
args: ['columnList']
|
|
11618
11618
|
}] } });
|
|
11619
11619
|
|
|
11620
|
+
/**
|
|
11621
|
+
* @hidden
|
|
11622
|
+
*/
|
|
11623
|
+
const ToolbarToolName = {
|
|
11624
|
+
edit: 'edit',
|
|
11625
|
+
save: 'save',
|
|
11626
|
+
remove: 'remove',
|
|
11627
|
+
cancel: 'cancel',
|
|
11628
|
+
add: 'add',
|
|
11629
|
+
columns: 'columns',
|
|
11630
|
+
excelExport: 'excelExport',
|
|
11631
|
+
pdfExport: 'pdfExport'
|
|
11632
|
+
};
|
|
11633
|
+
|
|
11634
|
+
const ICONS_MAP = {
|
|
11635
|
+
edit: { svgIcon: pencilIcon, icon: 'pencil' },
|
|
11636
|
+
save: { svgIcon: saveIcon, icon: 'save' },
|
|
11637
|
+
cancel: { svgIcon: cancelIcon, icon: 'cancel' },
|
|
11638
|
+
remove: { svgIcon: trashIcon, icon: 'trash' },
|
|
11639
|
+
add: { svgIcon: plusIcon, icon: 'plus' },
|
|
11640
|
+
excelExport: { svgIcon: fileExcelIcon, icon: 'file-excel' },
|
|
11641
|
+
pdfExport: { svgIcon: filePdfIcon, icon: 'file-pdf' },
|
|
11642
|
+
columns: { svgIcon: columnsIcon, icon: 'columns' }
|
|
11643
|
+
};
|
|
11644
|
+
/**
|
|
11645
|
+
* @hidden
|
|
11646
|
+
*/
|
|
11647
|
+
class ToolbarToolBase {
|
|
11648
|
+
host;
|
|
11649
|
+
commandName;
|
|
11650
|
+
ctx;
|
|
11651
|
+
zone;
|
|
11652
|
+
cdr;
|
|
11653
|
+
clickSub = new Subscription();
|
|
11654
|
+
constructor(host, commandName, ctx, zone, cdr) {
|
|
11655
|
+
this.host = host;
|
|
11656
|
+
this.commandName = commandName;
|
|
11657
|
+
this.ctx = ctx;
|
|
11658
|
+
this.zone = zone;
|
|
11659
|
+
this.cdr = cdr;
|
|
11660
|
+
}
|
|
11661
|
+
ngOnInit() {
|
|
11662
|
+
this.clickSub = this.host.click.subscribe(e => this.onClick(e));
|
|
11663
|
+
const hasIcon = (isPresent$1(this.host.toolbarOptions.icon) && this.host.toolbarOptions.icon !== '') &&
|
|
11664
|
+
(isPresent$1(this.host.overflowOptions.icon) && this.host.overflowOptions.icon !== '');
|
|
11665
|
+
const hasSvgIcon = isPresent$1(this.host.toolbarOptions.svgIcon) && isPresent$1(this.host.overflowOptions.svgIcon);
|
|
11666
|
+
if (!hasIcon) {
|
|
11667
|
+
this.host.icon = ICONS_MAP[this.commandName].icon;
|
|
11668
|
+
}
|
|
11669
|
+
if (!hasSvgIcon) {
|
|
11670
|
+
this.host.svgIcon = ICONS_MAP[this.commandName].svgIcon;
|
|
11671
|
+
}
|
|
11672
|
+
}
|
|
11673
|
+
ngAfterViewInit() {
|
|
11674
|
+
const hasText = isPresent$1(this.host.text);
|
|
11675
|
+
if (!hasText) {
|
|
11676
|
+
this.zone.runOutsideAngular(() => {
|
|
11677
|
+
setTimeout(() => {
|
|
11678
|
+
const messageKey = this.commandName === ToolbarToolName.columns ? 'columns' : `${this.commandName}ToolbarToolText`;
|
|
11679
|
+
this.host.text = this.ctx.localization.get(messageKey);
|
|
11680
|
+
this.zone.run(() => {
|
|
11681
|
+
this.cdr.markForCheck();
|
|
11682
|
+
});
|
|
11683
|
+
});
|
|
11684
|
+
});
|
|
11685
|
+
}
|
|
11686
|
+
}
|
|
11687
|
+
ngOnDestroy() {
|
|
11688
|
+
this.clickSub.unsubscribe();
|
|
11689
|
+
}
|
|
11690
|
+
onClick(_e) { }
|
|
11691
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolbarToolBase, deps: [{ token: i51.ToolBarButtonComponent }, { token: 'command' }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11692
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ToolbarToolBase, ngImport: i0 });
|
|
11693
|
+
}
|
|
11694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolbarToolBase, decorators: [{
|
|
11695
|
+
type: Directive,
|
|
11696
|
+
args: [{}]
|
|
11697
|
+
}], ctorParameters: function () { return [{ type: i51.ToolBarButtonComponent }, { type: undefined, decorators: [{
|
|
11698
|
+
type: Inject,
|
|
11699
|
+
args: ['command']
|
|
11700
|
+
}] }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
11701
|
+
|
|
11620
11702
|
let incrementingId$2 = 0;
|
|
11621
11703
|
/**
|
|
11622
11704
|
* Represents the `column-chooser` toolbar tool of the Grid.
|
|
@@ -11632,7 +11714,7 @@ let incrementingId$2 = 0;
|
|
|
11632
11714
|
* </kendo-grid>
|
|
11633
11715
|
* ```
|
|
11634
11716
|
*/
|
|
11635
|
-
class ColumnChooserToolbarDirective {
|
|
11717
|
+
class ColumnChooserToolbarDirective extends ToolbarToolBase {
|
|
11636
11718
|
renderer;
|
|
11637
11719
|
popupSerivce;
|
|
11638
11720
|
host;
|
|
@@ -11654,7 +11736,8 @@ class ColumnChooserToolbarDirective {
|
|
|
11654
11736
|
popupRef;
|
|
11655
11737
|
subs = new Subscription();
|
|
11656
11738
|
nextId = incrementingId$2++;
|
|
11657
|
-
constructor(renderer, popupSerivce, host, ctx, zone, refresh) {
|
|
11739
|
+
constructor(renderer, popupSerivce, host, ctx, zone, refresh, cdr) {
|
|
11740
|
+
super(host, ToolbarToolName.columns, ctx, zone, cdr);
|
|
11658
11741
|
this.renderer = renderer;
|
|
11659
11742
|
this.popupSerivce = popupSerivce;
|
|
11660
11743
|
this.host = host;
|
|
@@ -11662,29 +11745,13 @@ class ColumnChooserToolbarDirective {
|
|
|
11662
11745
|
this.zone = zone;
|
|
11663
11746
|
this.refresh = refresh;
|
|
11664
11747
|
}
|
|
11665
|
-
ngOnInit() {
|
|
11666
|
-
this.subs.add(this.host.click.subscribe(e => this.onClick(e)));
|
|
11667
|
-
const hasToolbarIcon = isPresent$1(this.host.toolbarOptions.icon) && this.host.toolbarOptions.icon !== '';
|
|
11668
|
-
const hasOverflowIcon = isPresent$1(this.host.overflowOptions.icon) && this.host.overflowOptions.icon !== '';
|
|
11669
|
-
const hasIcon = hasToolbarIcon && hasOverflowIcon;
|
|
11670
|
-
const hasSvgIcon = isPresent$1(this.host.toolbarOptions.svgIcon) && isPresent$1(this.host.overflowOptions.svgIcon);
|
|
11671
|
-
if (!hasIcon) {
|
|
11672
|
-
this.host.icon = 'columns';
|
|
11673
|
-
}
|
|
11674
|
-
if (!hasSvgIcon) {
|
|
11675
|
-
this.host.svgIcon = columnsIcon;
|
|
11676
|
-
}
|
|
11677
|
-
}
|
|
11678
11748
|
ngAfterViewInit() {
|
|
11679
|
-
|
|
11680
|
-
|
|
11681
|
-
this.
|
|
11682
|
-
|
|
11683
|
-
|
|
11684
|
-
}
|
|
11685
|
-
this.host.toolbarButtonElement.nativeElement.setAttribute('aria-haspopup', 'dialog');
|
|
11686
|
-
this.host.toolbarButtonElement.nativeElement.setAttribute('aria-expanded', 'false');
|
|
11687
|
-
this.host.toolbarButtonElement.nativeElement.setAttribute('title', this.ctx.localization.get('columns'));
|
|
11749
|
+
super.ngAfterViewInit();
|
|
11750
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
11751
|
+
this.host.toolbarButtonElement.nativeElement.setAttribute('aria-haspopup', 'dialog');
|
|
11752
|
+
this.host.toolbarButtonElement.nativeElement.setAttribute('aria-expanded', 'false');
|
|
11753
|
+
this.host.toolbarButtonElement.nativeElement.setAttribute('title', this.ctx.localization.get('columns'));
|
|
11754
|
+
});
|
|
11688
11755
|
this.subs.add(this.refresh.onRefresh.pipe(filter((tool) => tool === this.host)).subscribe((tool) => {
|
|
11689
11756
|
if (tool.overflows && this.popupRef) {
|
|
11690
11757
|
this.popupRef.close();
|
|
@@ -11692,6 +11759,7 @@ class ColumnChooserToolbarDirective {
|
|
|
11692
11759
|
}));
|
|
11693
11760
|
}
|
|
11694
11761
|
ngOnDestroy() {
|
|
11762
|
+
super.ngOnDestroy();
|
|
11695
11763
|
this.subs.unsubscribe();
|
|
11696
11764
|
}
|
|
11697
11765
|
/**
|
|
@@ -11758,8 +11826,8 @@ class ColumnChooserToolbarDirective {
|
|
|
11758
11826
|
this.host.toolbarButtonElement.nativeElement.removeAttribute('aria-controls');
|
|
11759
11827
|
focusAnchor && this.host.toolbarButtonElement.nativeElement.focus();
|
|
11760
11828
|
}
|
|
11761
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnChooserToolbarDirective, deps: [{ token: i0.Renderer2 }, { token: i1$5.PopupService }, { token:
|
|
11762
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ColumnChooserToolbarDirective, isStandalone: true, selector: "[kendoGridColumnChooserTool]", inputs: { autoSync: "autoSync", allowHideAll: "allowHideAll" }, ngImport: i0 });
|
|
11829
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnChooserToolbarDirective, deps: [{ token: i0.Renderer2 }, { token: i1$5.PopupService }, { token: i51.ToolBarButtonComponent }, { token: ContextService }, { token: i0.NgZone }, { token: i51.RefreshService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
11830
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ColumnChooserToolbarDirective, isStandalone: true, selector: "[kendoGridColumnChooserTool]", inputs: { autoSync: "autoSync", allowHideAll: "allowHideAll" }, usesInheritance: true, ngImport: i0 });
|
|
11763
11831
|
}
|
|
11764
11832
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnChooserToolbarDirective, decorators: [{
|
|
11765
11833
|
type: Directive,
|
|
@@ -11767,7 +11835,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11767
11835
|
selector: '[kendoGridColumnChooserTool]',
|
|
11768
11836
|
standalone: true
|
|
11769
11837
|
}]
|
|
11770
|
-
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i1$5.PopupService }, { type:
|
|
11838
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i1$5.PopupService }, { type: i51.ToolBarButtonComponent }, { type: ContextService }, { type: i0.NgZone }, { type: i51.RefreshService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { autoSync: [{
|
|
11771
11839
|
type: Input
|
|
11772
11840
|
}], allowHideAll: [{
|
|
11773
11841
|
type: Input
|
|
@@ -15717,6 +15785,7 @@ class SelectionService {
|
|
|
15717
15785
|
ev.rangeStartRow = { dataItem: this.lastSelectionData, index: this.lastSelectionStartIndex };
|
|
15718
15786
|
ev.rangeEndRow = { dataItem: item.data, index: item.index };
|
|
15719
15787
|
}
|
|
15788
|
+
this.syncCurrentSelection(ev);
|
|
15720
15789
|
this.changes.emit(ev);
|
|
15721
15790
|
}
|
|
15722
15791
|
toggle(item) {
|
|
@@ -15796,6 +15865,7 @@ class SelectionService {
|
|
|
15796
15865
|
deselectedRows: [rowArgs],
|
|
15797
15866
|
selectedRows: []
|
|
15798
15867
|
};
|
|
15868
|
+
this.syncCurrentSelection(ev);
|
|
15799
15869
|
this.changes.emit(ev);
|
|
15800
15870
|
}
|
|
15801
15871
|
}
|
|
@@ -15868,6 +15938,7 @@ class SelectionService {
|
|
|
15868
15938
|
if (this.options.cellAggregates) {
|
|
15869
15939
|
ev.cellAggregates = this.aggregateService.onSelectionChange(ev);
|
|
15870
15940
|
}
|
|
15941
|
+
this.syncCurrentSelection(ev);
|
|
15871
15942
|
this.changes.emit(ev);
|
|
15872
15943
|
}
|
|
15873
15944
|
selectRange(startIndex, endIndex, preserveSelection, existingSelections = []) {
|
|
@@ -16001,6 +16072,14 @@ class SelectionService {
|
|
|
16001
16072
|
this.dataChangedSubscription = null;
|
|
16002
16073
|
}
|
|
16003
16074
|
}
|
|
16075
|
+
syncCurrentSelection(ev) {
|
|
16076
|
+
for (const row of ev.deselectedRows) {
|
|
16077
|
+
this.currentSelection.splice(row.index, 1);
|
|
16078
|
+
}
|
|
16079
|
+
for (const row of ev.selectedRows) {
|
|
16080
|
+
this.currentSelection[row.index] = row;
|
|
16081
|
+
}
|
|
16082
|
+
}
|
|
16004
16083
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionService, deps: [{ token: DomEventsService }, { token: CellSelectionAggregateService }, { token: LocalDataChangesService }, { token: NavigationService }, { token: ContextService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16005
16084
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionService });
|
|
16006
16085
|
}
|
|
@@ -19634,6 +19713,7 @@ class RemoveCommandDirective extends Button {
|
|
|
19634
19713
|
*/
|
|
19635
19714
|
onClick(e) {
|
|
19636
19715
|
e.preventDefault();
|
|
19716
|
+
e.stopImmediatePropagation();
|
|
19637
19717
|
this.editService.remove(this.rowIndex);
|
|
19638
19718
|
}
|
|
19639
19719
|
constructor(editService, cellContext, element, renderer, ctx, ngZone) {
|
|
@@ -20024,8 +20104,8 @@ const packageMetadata = {
|
|
|
20024
20104
|
productName: 'Kendo UI for Angular',
|
|
20025
20105
|
productCode: 'KENDOUIANGULAR',
|
|
20026
20106
|
productCodes: ['KENDOUIANGULAR'],
|
|
20027
|
-
publishDate:
|
|
20028
|
-
version: '19.0.0-develop.
|
|
20107
|
+
publishDate: 1746798571,
|
|
20108
|
+
version: '19.0.0-develop.11',
|
|
20029
20109
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
20030
20110
|
};
|
|
20031
20111
|
|
|
@@ -23514,6 +23594,34 @@ class GridMessages extends ComponentMessages {
|
|
|
23514
23594
|
* The label for the bottom toolbar.
|
|
23515
23595
|
*/
|
|
23516
23596
|
bottomToolbarLabel;
|
|
23597
|
+
/**
|
|
23598
|
+
* The text for the Grid Edit toolbar tool.
|
|
23599
|
+
*/
|
|
23600
|
+
editToolbarToolText;
|
|
23601
|
+
/**
|
|
23602
|
+
* The text for the Grid Save toolbar tool.
|
|
23603
|
+
*/
|
|
23604
|
+
saveToolbarToolText;
|
|
23605
|
+
/**
|
|
23606
|
+
* The text for the Grid Add toolbar tool.
|
|
23607
|
+
*/
|
|
23608
|
+
addToolbarToolText;
|
|
23609
|
+
/**
|
|
23610
|
+
* The text for the Grid Cancel toolbar tool.
|
|
23611
|
+
*/
|
|
23612
|
+
cancelToolbarToolText;
|
|
23613
|
+
/**
|
|
23614
|
+
* The text for the Grid Remove toolbar tool.
|
|
23615
|
+
*/
|
|
23616
|
+
removeToolbarToolText;
|
|
23617
|
+
/**
|
|
23618
|
+
* The text for the Grid Excel Export toolbar tool.
|
|
23619
|
+
*/
|
|
23620
|
+
excelExportToolbarToolText;
|
|
23621
|
+
/**
|
|
23622
|
+
* The text for the Grid PDF Export toolbar tool.
|
|
23623
|
+
*/
|
|
23624
|
+
pdfExportToolbarToolText;
|
|
23517
23625
|
/**
|
|
23518
23626
|
* The label for the group panel toolbar.
|
|
23519
23627
|
*/
|
|
@@ -23588,7 +23696,7 @@ class GridMessages extends ComponentMessages {
|
|
|
23588
23696
|
*/
|
|
23589
23697
|
externalEditingCancelText;
|
|
23590
23698
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
23591
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GridMessages, selector: "kendo-grid-messages-base", inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItems: "pagerItems", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerInputLabel: "pagerInputLabel", pagerSelectPage: "pagerSelectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterMenuTitle: "filterMenuTitle", filterMenuOperatorsDropDownLabel: "filterMenuOperatorsDropDownLabel", filterMenuLogicDropDownLabel: "filterMenuLogicDropDownLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterToolbarToolText: "filterToolbarToolText", loading: "loading", gridLabel: "gridLabel", columnMenu: "columnMenu", setColumnPosition: "setColumnPosition", columns: "columns", lock: "lock", unlock: "unlock", stick: "stick", unstick: "unstick", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", autosizeThisColumn: "autosizeThisColumn", autosizeAllColumns: "autosizeAllColumns", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", sortToolbarToolText: "sortToolbarToolText", columnsApply: "columnsApply", columnsReset: "columnsReset", detailExpand: "detailExpand", detailCollapse: "detailCollapse", filterDateToday: "filterDateToday", filterDateToggle: "filterDateToggle", filterNumericDecrement: "filterNumericDecrement", filterNumericIncrement: "filterNumericIncrement", selectionCheckboxLabel: "selectionCheckboxLabel", selectAllCheckboxLabel: "selectAllCheckboxLabel", groupCollapse: "groupCollapse", groupExpand: "groupExpand", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", groupPanelLabel: "groupPanelLabel", dragRowHandleLabel: "dragRowHandleLabel", columnMenuFilterTabTitle: "columnMenuFilterTabTitle", columnMenuGeneralTabTitle: "columnMenuGeneralTabTitle", columnMenuColumnsTabTitle: "columnMenuColumnsTabTitle", groupChipMenuPrevious: "groupChipMenuPrevious", groupChipMenuNext: "groupChipMenuNext", formValidationErrorText: "formValidationErrorText", removeConfirmationDialogTitle: "removeConfirmationDialogTitle", removeConfirmationDialogContent: "removeConfirmationDialogContent", removeConfirmationDialogConfirmText: "removeConfirmationDialogConfirmText", removeConfirmationDialogRejectText: "removeConfirmationDialogRejectText", externalEditingTitle: "externalEditingTitle", externalEditingSaveText: "externalEditingSaveText", externalEditingCancelText: "externalEditingCancelText" }, usesInheritance: true, ngImport: i0 });
|
|
23699
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: GridMessages, selector: "kendo-grid-messages-base", inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItems: "pagerItems", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerInputLabel: "pagerInputLabel", pagerSelectPage: "pagerSelectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterMenuTitle: "filterMenuTitle", filterMenuOperatorsDropDownLabel: "filterMenuOperatorsDropDownLabel", filterMenuLogicDropDownLabel: "filterMenuLogicDropDownLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterToolbarToolText: "filterToolbarToolText", loading: "loading", gridLabel: "gridLabel", columnMenu: "columnMenu", setColumnPosition: "setColumnPosition", columns: "columns", lock: "lock", unlock: "unlock", stick: "stick", unstick: "unstick", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", autosizeThisColumn: "autosizeThisColumn", autosizeAllColumns: "autosizeAllColumns", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", sortToolbarToolText: "sortToolbarToolText", columnsApply: "columnsApply", columnsReset: "columnsReset", detailExpand: "detailExpand", detailCollapse: "detailCollapse", filterDateToday: "filterDateToday", filterDateToggle: "filterDateToggle", filterNumericDecrement: "filterNumericDecrement", filterNumericIncrement: "filterNumericIncrement", selectionCheckboxLabel: "selectionCheckboxLabel", selectAllCheckboxLabel: "selectAllCheckboxLabel", groupCollapse: "groupCollapse", groupExpand: "groupExpand", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", editToolbarToolText: "editToolbarToolText", saveToolbarToolText: "saveToolbarToolText", addToolbarToolText: "addToolbarToolText", cancelToolbarToolText: "cancelToolbarToolText", removeToolbarToolText: "removeToolbarToolText", excelExportToolbarToolText: "excelExportToolbarToolText", pdfExportToolbarToolText: "pdfExportToolbarToolText", groupPanelLabel: "groupPanelLabel", dragRowHandleLabel: "dragRowHandleLabel", columnMenuFilterTabTitle: "columnMenuFilterTabTitle", columnMenuGeneralTabTitle: "columnMenuGeneralTabTitle", columnMenuColumnsTabTitle: "columnMenuColumnsTabTitle", groupChipMenuPrevious: "groupChipMenuPrevious", groupChipMenuNext: "groupChipMenuNext", formValidationErrorText: "formValidationErrorText", removeConfirmationDialogTitle: "removeConfirmationDialogTitle", removeConfirmationDialogContent: "removeConfirmationDialogContent", removeConfirmationDialogConfirmText: "removeConfirmationDialogConfirmText", removeConfirmationDialogRejectText: "removeConfirmationDialogRejectText", externalEditingTitle: "externalEditingTitle", externalEditingSaveText: "externalEditingSaveText", externalEditingCancelText: "externalEditingCancelText" }, usesInheritance: true, ngImport: i0 });
|
|
23592
23700
|
}
|
|
23593
23701
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridMessages, decorators: [{
|
|
23594
23702
|
type: Directive,
|
|
@@ -23754,6 +23862,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
23754
23862
|
type: Input
|
|
23755
23863
|
}], bottomToolbarLabel: [{
|
|
23756
23864
|
type: Input
|
|
23865
|
+
}], editToolbarToolText: [{
|
|
23866
|
+
type: Input
|
|
23867
|
+
}], saveToolbarToolText: [{
|
|
23868
|
+
type: Input
|
|
23869
|
+
}], addToolbarToolText: [{
|
|
23870
|
+
type: Input
|
|
23871
|
+
}], cancelToolbarToolText: [{
|
|
23872
|
+
type: Input
|
|
23873
|
+
}], removeToolbarToolText: [{
|
|
23874
|
+
type: Input
|
|
23875
|
+
}], excelExportToolbarToolText: [{
|
|
23876
|
+
type: Input
|
|
23877
|
+
}], pdfExportToolbarToolText: [{
|
|
23878
|
+
type: Input
|
|
23757
23879
|
}], groupPanelLabel: [{
|
|
23758
23880
|
type: Input
|
|
23759
23881
|
}], dragRowHandleLabel: [{
|
|
@@ -24305,6 +24427,12 @@ class GridComponent {
|
|
|
24305
24427
|
* @default false
|
|
24306
24428
|
*/
|
|
24307
24429
|
hideHeader = false;
|
|
24430
|
+
/**
|
|
24431
|
+
* Specifies if the currently inactive toolbar tools will be visible. Applicable when the toolbar is configured using the <kendo-toolbar> component. By default, such tools are hidden.
|
|
24432
|
+
*
|
|
24433
|
+
* @default false
|
|
24434
|
+
*/
|
|
24435
|
+
showInactiveTools = false;
|
|
24308
24436
|
/**
|
|
24309
24437
|
* Fires when the Grid filter is modified through the UI.
|
|
24310
24438
|
* You have to handle the event yourself and filter the data.
|
|
@@ -25898,7 +26026,7 @@ class GridComponent {
|
|
|
25898
26026
|
this.dropTargetContainer?.notify();
|
|
25899
26027
|
}
|
|
25900
26028
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridComponent, deps: [{ token: BrowserSupportService }, { token: SelectionService }, { token: CellSelectionService }, { token: i0.ElementRef }, { token: GroupInfoService }, { token: GroupsService }, { token: ChangeNotificationService }, { token: DetailsService }, { token: EditService }, { token: FilterService }, { token: PDFService }, { token: ResponsiveService }, { token: i0.Renderer2 }, { token: ExcelService }, { token: i0.NgZone }, { token: ScrollSyncService }, { token: DomEventsService }, { token: ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: ColumnReorderService }, { token: ColumnInfoService }, { token: NavigationService }, { token: SortService }, { token: ScrollRequestService }, { token: i1$2.LocalizationService }, { token: ContextService }, { token: SizingOptionsService }, { token: RowReorderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
25901
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GridComponent, isStandalone: true, selector: "kendo-grid", inputs: { data: "data", pageSize: "pageSize", height: "height", rowHeight: "rowHeight", detailRowHeight: "detailRowHeight", skip: "skip", scrollable: "scrollable", selectable: "selectable", sort: "sort", size: "size", trackBy: "trackBy", filter: "filter", group: "group", virtualColumns: "virtualColumns", filterable: "filterable", sortable: "sortable", pageable: "pageable", groupable: "groupable", gridResizable: "gridResizable", rowReorderable: "rowReorderable", navigable: "navigable", navigatable: "navigatable", autoSize: "autoSize", rowClass: "rowClass", rowSticky: "rowSticky", rowSelected: "rowSelected", isRowSelectable: "isRowSelectable", cellSelected: "cellSelected", resizable: "resizable", reorderable: "reorderable", loading: "loading", columnMenu: "columnMenu", hideHeader: "hideHeader", isDetailExpanded: "isDetailExpanded", isGroupExpanded: "isGroupExpanded" }, outputs: { filterChange: "filterChange", pageChange: "pageChange", groupChange: "groupChange", sortChange: "sortChange", selectionChange: "selectionChange", rowReorder: "rowReorder", dataStateChange: "dataStateChange", groupExpand: "groupExpand", groupCollapse: "groupCollapse", detailExpand: "detailExpand", detailCollapse: "detailCollapse", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add", cellClose: "cellClose", cellClick: "cellClick", pdfExport: "pdfExport", excelExport: "excelExport", columnResize: "columnResize", columnReorder: "columnReorder", columnVisibilityChange: "columnVisibilityChange", columnLockedChange: "columnLockedChange", columnStickyChange: "columnStickyChange", scrollBottom: "scrollBottom", contentScroll: "contentScroll" }, host: { properties: { "attr.dir": "this.dir", "class.k-grid": "this.hostClass", "class.k-grid-sm": "this.sizeSmallClass", "class.k-grid-md": "this.sizeMediumClass", "class.k-grid-lockedcolumns": "this.lockedClasses", "class.k-grid-virtual": "this.virtualClasses", "class.k-grid-no-scrollbar": "this.noScrollbarClass", "class.k-grid-resizable": "this.isResizable", "style.minWidth": "this.minWidth", "style.maxWidth": "this.maxWidth", "style.minHeight": "this.minHeight", "style.maxHeight": "this.maxHeight" } }, providers: [
|
|
26029
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GridComponent, isStandalone: true, selector: "kendo-grid", inputs: { data: "data", pageSize: "pageSize", height: "height", rowHeight: "rowHeight", detailRowHeight: "detailRowHeight", skip: "skip", scrollable: "scrollable", selectable: "selectable", sort: "sort", size: "size", trackBy: "trackBy", filter: "filter", group: "group", virtualColumns: "virtualColumns", filterable: "filterable", sortable: "sortable", pageable: "pageable", groupable: "groupable", gridResizable: "gridResizable", rowReorderable: "rowReorderable", navigable: "navigable", navigatable: "navigatable", autoSize: "autoSize", rowClass: "rowClass", rowSticky: "rowSticky", rowSelected: "rowSelected", isRowSelectable: "isRowSelectable", cellSelected: "cellSelected", resizable: "resizable", reorderable: "reorderable", loading: "loading", columnMenu: "columnMenu", hideHeader: "hideHeader", showInactiveTools: "showInactiveTools", isDetailExpanded: "isDetailExpanded", isGroupExpanded: "isGroupExpanded" }, outputs: { filterChange: "filterChange", pageChange: "pageChange", groupChange: "groupChange", sortChange: "sortChange", selectionChange: "selectionChange", rowReorder: "rowReorder", dataStateChange: "dataStateChange", groupExpand: "groupExpand", groupCollapse: "groupCollapse", detailExpand: "detailExpand", detailCollapse: "detailCollapse", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add", cellClose: "cellClose", cellClick: "cellClick", pdfExport: "pdfExport", excelExport: "excelExport", columnResize: "columnResize", columnReorder: "columnReorder", columnVisibilityChange: "columnVisibilityChange", columnLockedChange: "columnLockedChange", columnStickyChange: "columnStickyChange", scrollBottom: "scrollBottom", contentScroll: "contentScroll" }, host: { properties: { "attr.dir": "this.dir", "class.k-grid": "this.hostClass", "class.k-grid-sm": "this.sizeSmallClass", "class.k-grid-md": "this.sizeMediumClass", "class.k-grid-lockedcolumns": "this.lockedClasses", "class.k-grid-virtual": "this.virtualClasses", "class.k-grid-no-scrollbar": "this.noScrollbarClass", "class.k-grid-resizable": "this.isResizable", "style.minWidth": "this.minWidth", "style.maxWidth": "this.maxWidth", "style.minHeight": "this.minHeight", "style.maxHeight": "this.maxHeight" } }, providers: [
|
|
25902
26030
|
BrowserSupportService,
|
|
25903
26031
|
LocalizationService,
|
|
25904
26032
|
ColumnInfoService,
|
|
@@ -26184,6 +26312,27 @@ class GridComponent {
|
|
|
26184
26312
|
i18n-bottomToolbarLabel="kendo.grid.bottomToolbarLabel|The label for the Grid bottom toolbar"
|
|
26185
26313
|
bottomToolbarLabel="Bottom toolbar"
|
|
26186
26314
|
|
|
26315
|
+
i18n-editToolbarToolText="kendo.grid.editToolbarToolText|The text for the Grid Edit toolbar tool"
|
|
26316
|
+
editToolbarToolText="Edit"
|
|
26317
|
+
|
|
26318
|
+
i18n-saveToolbarToolText="kendo.grid.saveToolbarToolText|The text for the Grid Save toolbar tool"
|
|
26319
|
+
saveToolbarToolText="Save"
|
|
26320
|
+
|
|
26321
|
+
i18n-addToolbarToolText="kendo.grid.addToolbarToolText|The text for the Grid Add toolbar tool"
|
|
26322
|
+
addToolbarToolText="Add"
|
|
26323
|
+
|
|
26324
|
+
i18n-cancelToolbarToolText="kendo.grid.cancelToolbarToolText|The text for the Grid Cancel toolbar tool"
|
|
26325
|
+
cancelToolbarToolText="Cancel"
|
|
26326
|
+
|
|
26327
|
+
i18n-removeToolbarToolText="kendo.grid.removeToolbarToolText|The text for the Grid Remove toolbar tool"
|
|
26328
|
+
removeToolbarToolText="Delete"
|
|
26329
|
+
|
|
26330
|
+
i18n-excelExportToolbarToolText="kendo.grid.excelExportToolbarToolText|The text for the Grid Excel export toolbar tool"
|
|
26331
|
+
excelExportToolbarToolText="Excel Export"
|
|
26332
|
+
|
|
26333
|
+
i18n-pdfExportToolbarToolText="kendo.grid.pdfExportToolbarToolText|The text for the Grid PDF export toolbar tool"
|
|
26334
|
+
pdfExportToolbarToolText="PDF Export"
|
|
26335
|
+
|
|
26187
26336
|
i18n-groupPanelLabel="kendo.grid.groupPanelLabel|The label for the Grid group panel toolbar"
|
|
26188
26337
|
groupPanelLabel="Group panel"
|
|
26189
26338
|
|
|
@@ -26637,7 +26786,7 @@ class GridComponent {
|
|
|
26637
26786
|
<div #dialogContainer></div>
|
|
26638
26787
|
|
|
26639
26788
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
26640
|
-
`, 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: 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", "cursorStyle", "hintContext"], 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", "totalColumnsCount"] }, { 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]" }, { kind: "component", type:
|
|
26789
|
+
`, 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: 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", "cursorStyle", "hintContext"], 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", "totalColumnsCount"] }, { 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]" }, { kind: "component", type: i50.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i50.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i50.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["size"] }, { kind: "component", type: i50.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i50.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i50.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["pageSizes", "size"] }, { kind: "component", type: i50.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i50.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i50.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager", "kendoPager"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
26641
26790
|
}
|
|
26642
26791
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridComponent, decorators: [{
|
|
26643
26792
|
type: Component,
|
|
@@ -26932,6 +27081,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
26932
27081
|
i18n-bottomToolbarLabel="kendo.grid.bottomToolbarLabel|The label for the Grid bottom toolbar"
|
|
26933
27082
|
bottomToolbarLabel="Bottom toolbar"
|
|
26934
27083
|
|
|
27084
|
+
i18n-editToolbarToolText="kendo.grid.editToolbarToolText|The text for the Grid Edit toolbar tool"
|
|
27085
|
+
editToolbarToolText="Edit"
|
|
27086
|
+
|
|
27087
|
+
i18n-saveToolbarToolText="kendo.grid.saveToolbarToolText|The text for the Grid Save toolbar tool"
|
|
27088
|
+
saveToolbarToolText="Save"
|
|
27089
|
+
|
|
27090
|
+
i18n-addToolbarToolText="kendo.grid.addToolbarToolText|The text for the Grid Add toolbar tool"
|
|
27091
|
+
addToolbarToolText="Add"
|
|
27092
|
+
|
|
27093
|
+
i18n-cancelToolbarToolText="kendo.grid.cancelToolbarToolText|The text for the Grid Cancel toolbar tool"
|
|
27094
|
+
cancelToolbarToolText="Cancel"
|
|
27095
|
+
|
|
27096
|
+
i18n-removeToolbarToolText="kendo.grid.removeToolbarToolText|The text for the Grid Remove toolbar tool"
|
|
27097
|
+
removeToolbarToolText="Delete"
|
|
27098
|
+
|
|
27099
|
+
i18n-excelExportToolbarToolText="kendo.grid.excelExportToolbarToolText|The text for the Grid Excel export toolbar tool"
|
|
27100
|
+
excelExportToolbarToolText="Excel Export"
|
|
27101
|
+
|
|
27102
|
+
i18n-pdfExportToolbarToolText="kendo.grid.pdfExportToolbarToolText|The text for the Grid PDF export toolbar tool"
|
|
27103
|
+
pdfExportToolbarToolText="PDF Export"
|
|
27104
|
+
|
|
26935
27105
|
i18n-groupPanelLabel="kendo.grid.groupPanelLabel|The label for the Grid group panel toolbar"
|
|
26936
27106
|
groupPanelLabel="Group panel"
|
|
26937
27107
|
|
|
@@ -27461,6 +27631,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
27461
27631
|
type: Input
|
|
27462
27632
|
}], hideHeader: [{
|
|
27463
27633
|
type: Input
|
|
27634
|
+
}], showInactiveTools: [{
|
|
27635
|
+
type: Input
|
|
27464
27636
|
}], filterChange: [{
|
|
27465
27637
|
type: Output
|
|
27466
27638
|
}], pageChange: [{
|
|
@@ -29657,22 +29829,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29657
29829
|
* </kendo-grid>
|
|
29658
29830
|
* ```
|
|
29659
29831
|
*/
|
|
29660
|
-
class PDFCommandToolbarDirective {
|
|
29832
|
+
class PDFCommandToolbarDirective extends ToolbarToolBase {
|
|
29661
29833
|
pdfService;
|
|
29662
29834
|
host;
|
|
29663
|
-
|
|
29664
|
-
|
|
29835
|
+
constructor(pdfService, host, ctx, zone, cdr) {
|
|
29836
|
+
super(host, ToolbarToolName.pdfExport, ctx, zone, cdr);
|
|
29665
29837
|
this.pdfService = pdfService;
|
|
29666
29838
|
this.host = host;
|
|
29667
29839
|
}
|
|
29668
29840
|
ngOnInit() {
|
|
29669
|
-
|
|
29841
|
+
super.ngOnInit();
|
|
29670
29842
|
this.host.className = 'k-grid-pdf';
|
|
29671
|
-
this.host.svgIcon = filePdfIcon;
|
|
29672
|
-
this.host.icon = 'file-pdf';
|
|
29673
|
-
}
|
|
29674
|
-
ngOnDestroy() {
|
|
29675
|
-
this.clickSub.unsubscribe();
|
|
29676
29843
|
}
|
|
29677
29844
|
/**
|
|
29678
29845
|
* @hidden
|
|
@@ -29681,8 +29848,8 @@ class PDFCommandToolbarDirective {
|
|
|
29681
29848
|
e.preventDefault();
|
|
29682
29849
|
this.pdfService.exportClick.emit();
|
|
29683
29850
|
}
|
|
29684
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token:
|
|
29685
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PDFCommandToolbarDirective, isStandalone: true, selector: "[kendoGridPDFTool]", ngImport: i0 });
|
|
29851
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token: i51.ToolBarButtonComponent }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29852
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: PDFCommandToolbarDirective, isStandalone: true, selector: "[kendoGridPDFTool]", usesInheritance: true, ngImport: i0 });
|
|
29686
29853
|
}
|
|
29687
29854
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, decorators: [{
|
|
29688
29855
|
type: Directive,
|
|
@@ -29690,7 +29857,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29690
29857
|
selector: '[kendoGridPDFTool]',
|
|
29691
29858
|
standalone: true
|
|
29692
29859
|
}]
|
|
29693
|
-
}], ctorParameters: function () { return [{ type: PDFService }, { type:
|
|
29860
|
+
}], ctorParameters: function () { return [{ type: PDFService }, { type: i51.ToolBarButtonComponent }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
29694
29861
|
|
|
29695
29862
|
/**
|
|
29696
29863
|
* Represents the `export-to-Excel` toolbar tool of the Grid.
|
|
@@ -29712,22 +29879,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29712
29879
|
* </kendo-grid>
|
|
29713
29880
|
* ```
|
|
29714
29881
|
*/
|
|
29715
|
-
class ExcelCommandToolbarDirective {
|
|
29882
|
+
class ExcelCommandToolbarDirective extends ToolbarToolBase {
|
|
29716
29883
|
excelService;
|
|
29717
|
-
host
|
|
29718
|
-
|
|
29719
|
-
constructor(excelService, host) {
|
|
29884
|
+
constructor(excelService, host, ctx, zone, cdr) {
|
|
29885
|
+
super(host, ToolbarToolName.excelExport, ctx, zone, cdr);
|
|
29720
29886
|
this.excelService = excelService;
|
|
29721
|
-
this.host = host;
|
|
29722
29887
|
}
|
|
29723
29888
|
ngOnInit() {
|
|
29724
|
-
|
|
29889
|
+
super.ngOnInit();
|
|
29725
29890
|
this.host.className = 'k-grid-excel';
|
|
29726
|
-
this.host.svgIcon = fileExcelIcon;
|
|
29727
|
-
this.host.icon = 'file-excel';
|
|
29728
|
-
}
|
|
29729
|
-
ngOnDestroy() {
|
|
29730
|
-
this.clickSub.unsubscribe();
|
|
29731
29891
|
}
|
|
29732
29892
|
/**
|
|
29733
29893
|
* @hidden
|
|
@@ -29736,8 +29896,8 @@ class ExcelCommandToolbarDirective {
|
|
|
29736
29896
|
e.preventDefault();
|
|
29737
29897
|
this.excelService.exportClick.emit();
|
|
29738
29898
|
}
|
|
29739
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token:
|
|
29740
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ExcelCommandToolbarDirective, isStandalone: true, selector: "[kendoGridExcelTool]", ngImport: i0 });
|
|
29899
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token: i51.ToolBarButtonComponent }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29900
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ExcelCommandToolbarDirective, isStandalone: true, selector: "[kendoGridExcelTool]", usesInheritance: true, ngImport: i0 });
|
|
29741
29901
|
}
|
|
29742
29902
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, decorators: [{
|
|
29743
29903
|
type: Directive,
|
|
@@ -29745,7 +29905,81 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29745
29905
|
selector: '[kendoGridExcelTool]',
|
|
29746
29906
|
standalone: true
|
|
29747
29907
|
}]
|
|
29748
|
-
}], ctorParameters: function () { return [{ type: ExcelService }, { type:
|
|
29908
|
+
}], ctorParameters: function () { return [{ type: ExcelService }, { type: i51.ToolBarButtonComponent }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
29909
|
+
|
|
29910
|
+
/**
|
|
29911
|
+
* @hidden
|
|
29912
|
+
*/
|
|
29913
|
+
class ToolbarEditingToolBase extends ToolbarToolBase {
|
|
29914
|
+
host;
|
|
29915
|
+
commandName;
|
|
29916
|
+
ctx;
|
|
29917
|
+
editService;
|
|
29918
|
+
selection;
|
|
29919
|
+
isEdited = false;
|
|
29920
|
+
lastToolState = null;
|
|
29921
|
+
constructor(host, commandName, ctx, zone, cdr, editService, selection) {
|
|
29922
|
+
super(host, commandName, ctx, zone, cdr);
|
|
29923
|
+
this.host = host;
|
|
29924
|
+
this.commandName = commandName;
|
|
29925
|
+
this.ctx = ctx;
|
|
29926
|
+
this.editService = editService;
|
|
29927
|
+
this.selection = selection;
|
|
29928
|
+
}
|
|
29929
|
+
ngDoCheck() {
|
|
29930
|
+
if (!isPresent$1(this.editService)) {
|
|
29931
|
+
return;
|
|
29932
|
+
}
|
|
29933
|
+
this.isEdited = this.editService.isEditing();
|
|
29934
|
+
let isToolInactive = false;
|
|
29935
|
+
const selectionPresent = isPresent$1(this.lastSelectionIndex);
|
|
29936
|
+
switch (this.commandName) {
|
|
29937
|
+
case ToolbarToolName.edit:
|
|
29938
|
+
isToolInactive = this.isEdited || !selectionPresent;
|
|
29939
|
+
break;
|
|
29940
|
+
case ToolbarToolName.save:
|
|
29941
|
+
isToolInactive = !(this.isEdited || this.editService.hasNewItem);
|
|
29942
|
+
break;
|
|
29943
|
+
case ToolbarToolName.remove:
|
|
29944
|
+
isToolInactive = this.isEdited || !selectionPresent;
|
|
29945
|
+
break;
|
|
29946
|
+
case ToolbarToolName.cancel:
|
|
29947
|
+
isToolInactive = !(this.isEdited || this.editService.hasNewItem);
|
|
29948
|
+
break;
|
|
29949
|
+
}
|
|
29950
|
+
if (this.lastToolState !== isToolInactive) {
|
|
29951
|
+
this.lastToolState = isToolInactive;
|
|
29952
|
+
if (this.ctx.grid.showInactiveTools) {
|
|
29953
|
+
this.host.disabled = isToolInactive;
|
|
29954
|
+
}
|
|
29955
|
+
else {
|
|
29956
|
+
this.host.isHidden = isToolInactive;
|
|
29957
|
+
const toolbar = this.host.host;
|
|
29958
|
+
toolbar.refreshService.refresh(this.host);
|
|
29959
|
+
if (toolbar.resizable) {
|
|
29960
|
+
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
29961
|
+
toolbar.onResize();
|
|
29962
|
+
});
|
|
29963
|
+
}
|
|
29964
|
+
}
|
|
29965
|
+
}
|
|
29966
|
+
}
|
|
29967
|
+
get lastSelectionIndex() {
|
|
29968
|
+
return this.selection?.selected[this.selection?.selected.length - 1];
|
|
29969
|
+
}
|
|
29970
|
+
get isSelectionPresent() {
|
|
29971
|
+
return isPresent$1(this.lastSelectionIndex) && this.lastSelectionIndex > -1;
|
|
29972
|
+
}
|
|
29973
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolbarEditingToolBase, deps: [{ token: i51.ToolBarButtonComponent }, { token: 'command' }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: EditService }, { token: SelectionService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29974
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ToolbarEditingToolBase, usesInheritance: true, ngImport: i0 });
|
|
29975
|
+
}
|
|
29976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolbarEditingToolBase, decorators: [{
|
|
29977
|
+
type: Directive,
|
|
29978
|
+
args: [{}]
|
|
29979
|
+
}], ctorParameters: function () { return [{ type: i51.ToolBarButtonComponent }, { type: undefined, decorators: [{
|
|
29980
|
+
type: Inject,
|
|
29981
|
+
args: ['command']
|
|
29982
|
+
}] }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: EditService }, { type: SelectionService }]; } });
|
|
29749
29983
|
|
|
29750
29984
|
/**
|
|
29751
29985
|
* Represents the command for adding a new item to the Grid.
|
|
@@ -29765,22 +29999,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29765
29999
|
* </kendo-grid>
|
|
29766
30000
|
* ```
|
|
29767
30001
|
*/
|
|
29768
|
-
class AddCommandToolbarDirective {
|
|
30002
|
+
class AddCommandToolbarDirective extends ToolbarEditingToolBase {
|
|
29769
30003
|
editService;
|
|
29770
30004
|
host;
|
|
29771
|
-
|
|
29772
|
-
|
|
30005
|
+
constructor(editService, host, ctx, zone, cdr) {
|
|
30006
|
+
super(host, ToolbarToolName.add, ctx, zone, cdr, editService);
|
|
29773
30007
|
this.editService = editService;
|
|
29774
30008
|
this.host = host;
|
|
29775
30009
|
}
|
|
29776
30010
|
ngOnInit() {
|
|
29777
|
-
|
|
30011
|
+
super.ngOnInit();
|
|
29778
30012
|
this.host.className = 'k-grid-add-command';
|
|
29779
|
-
this.host.svgIcon = plusIcon;
|
|
29780
|
-
this.host.icon = 'plus';
|
|
29781
|
-
}
|
|
29782
|
-
ngOnDestroy() {
|
|
29783
|
-
this.clickSub.unsubscribe();
|
|
29784
30013
|
}
|
|
29785
30014
|
/**
|
|
29786
30015
|
* @hidden
|
|
@@ -29789,8 +30018,8 @@ class AddCommandToolbarDirective {
|
|
|
29789
30018
|
e.preventDefault();
|
|
29790
30019
|
this.editService.beginAdd();
|
|
29791
30020
|
}
|
|
29792
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token:
|
|
29793
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AddCommandToolbarDirective, isStandalone: true, selector: "[kendoGridAddTool]", ngImport: i0 });
|
|
30021
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token: i51.ToolBarButtonComponent }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30022
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AddCommandToolbarDirective, isStandalone: true, selector: "[kendoGridAddTool]", usesInheritance: true, ngImport: i0 });
|
|
29794
30023
|
}
|
|
29795
30024
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, decorators: [{
|
|
29796
30025
|
type: Directive,
|
|
@@ -29798,7 +30027,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29798
30027
|
selector: '[kendoGridAddTool]',
|
|
29799
30028
|
standalone: true
|
|
29800
30029
|
}]
|
|
29801
|
-
}], ctorParameters: function () { return [{ type: EditService }, { type:
|
|
30030
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i51.ToolBarButtonComponent }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
29802
30031
|
|
|
29803
30032
|
const directions = initialDirection => initialDirection === "asc" ? ["asc", "desc"] : ["desc", "asc"];
|
|
29804
30033
|
/**
|
|
@@ -30166,7 +30395,7 @@ class SortCommandToolbarDirective {
|
|
|
30166
30395
|
this.removeClickListener = null;
|
|
30167
30396
|
}
|
|
30168
30397
|
}
|
|
30169
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortCommandToolbarDirective, deps: [{ token:
|
|
30398
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortCommandToolbarDirective, deps: [{ token: i51.ToolBarButtonComponent }, { token: i1$5.PopupService }, { token: ContextService }, { token: SortService }, { token: ColumnInfoService }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30170
30399
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SortCommandToolbarDirective, isStandalone: true, selector: "[kendoGridSortTool]", ngImport: i0 });
|
|
30171
30400
|
}
|
|
30172
30401
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortCommandToolbarDirective, decorators: [{
|
|
@@ -30175,7 +30404,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
30175
30404
|
selector: '[kendoGridSortTool]',
|
|
30176
30405
|
standalone: true
|
|
30177
30406
|
}]
|
|
30178
|
-
}], ctorParameters: function () { return [{ type:
|
|
30407
|
+
}], ctorParameters: function () { return [{ type: i51.ToolBarButtonComponent }, { type: i1$5.PopupService }, { type: ContextService }, { type: SortService }, { type: ColumnInfoService }, { type: i0.NgZone }, { type: i0.Renderer2 }]; } });
|
|
30179
30408
|
|
|
30180
30409
|
/**
|
|
30181
30410
|
* @hidden
|
|
@@ -30578,7 +30807,7 @@ class FilterCommandToolbarDirective {
|
|
|
30578
30807
|
this.removeClickListener = null;
|
|
30579
30808
|
}
|
|
30580
30809
|
}
|
|
30581
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCommandToolbarDirective, deps: [{ token:
|
|
30810
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCommandToolbarDirective, deps: [{ token: i51.ToolBarButtonComponent }, { token: i1$5.PopupService }, { token: ContextService }, { token: FilterService }, { token: ColumnInfoService }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30582
30811
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterCommandToolbarDirective, isStandalone: true, selector: "[kendoGridFilterTool]", ngImport: i0 });
|
|
30583
30812
|
}
|
|
30584
30813
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCommandToolbarDirective, decorators: [{
|
|
@@ -30587,7 +30816,194 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
30587
30816
|
selector: '[kendoGridFilterTool]',
|
|
30588
30817
|
standalone: true
|
|
30589
30818
|
}]
|
|
30590
|
-
}], ctorParameters: function () { return [{ type:
|
|
30819
|
+
}], ctorParameters: function () { return [{ type: i51.ToolBarButtonComponent }, { type: i1$5.PopupService }, { type: ContextService }, { type: FilterService }, { type: ColumnInfoService }, { type: i0.NgZone }, { type: i0.Renderer2 }]; } });
|
|
30820
|
+
|
|
30821
|
+
/**
|
|
30822
|
+
* Represents the `edit` command in the Grid.
|
|
30823
|
+
* You can apply this directive to any `kendo-toolbar-button` element inside a
|
|
30824
|
+
* ToolbarComponent used in the Grid.
|
|
30825
|
+
*
|
|
30826
|
+
* When the user clicks the toolbar button that is associated with the directive, the
|
|
30827
|
+
* [edit]({% slug api_grid_gridcomponent %}#toc-edit) event is triggered.
|
|
30828
|
+
*
|
|
30829
|
+
* @example
|
|
30830
|
+
* ```html-no-run
|
|
30831
|
+
* <kendo-grid>
|
|
30832
|
+
* <kendo-toolbar>
|
|
30833
|
+
* <kendo-toolbar-button text="Edit" kendoGridEditTool></kendo-toolbar-button>
|
|
30834
|
+
* </kendo-toolbar>
|
|
30835
|
+
* </kendo-grid>
|
|
30836
|
+
* ```
|
|
30837
|
+
*/
|
|
30838
|
+
class EditCommandToolbarDirective extends ToolbarEditingToolBase {
|
|
30839
|
+
editService;
|
|
30840
|
+
constructor(editService, host, selection, ctx, zone, cdr) {
|
|
30841
|
+
super(host, ToolbarToolName.edit, ctx, zone, cdr, editService, selection);
|
|
30842
|
+
this.editService = editService;
|
|
30843
|
+
}
|
|
30844
|
+
/**
|
|
30845
|
+
* @hidden
|
|
30846
|
+
*/
|
|
30847
|
+
onClick(e) {
|
|
30848
|
+
e.preventDefault();
|
|
30849
|
+
if (!this.isSelectionPresent) {
|
|
30850
|
+
return;
|
|
30851
|
+
}
|
|
30852
|
+
this.editService.beginEdit(this.lastSelectionIndex);
|
|
30853
|
+
}
|
|
30854
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditCommandToolbarDirective, deps: [{ token: EditService }, { token: i51.ToolBarButtonComponent }, { token: SelectionService }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30855
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditCommandToolbarDirective, isStandalone: true, selector: "[kendoGridEditTool]", usesInheritance: true, ngImport: i0 });
|
|
30856
|
+
}
|
|
30857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditCommandToolbarDirective, decorators: [{
|
|
30858
|
+
type: Directive,
|
|
30859
|
+
args: [{
|
|
30860
|
+
selector: '[kendoGridEditTool]',
|
|
30861
|
+
standalone: true
|
|
30862
|
+
}]
|
|
30863
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i51.ToolBarButtonComponent }, { type: SelectionService }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
30864
|
+
|
|
30865
|
+
/**
|
|
30866
|
+
* Represents the `save` command in the Grid.
|
|
30867
|
+
* You can apply this directive to any `kendo-toolbar-button` element inside a
|
|
30868
|
+
* ToolbarComponent used in the Grid.
|
|
30869
|
+
*
|
|
30870
|
+
* When the user clicks the toolbar button that is associated with the directive, the
|
|
30871
|
+
* [save]({% slug api_grid_gridcomponent %}#toc-save) event is triggered.
|
|
30872
|
+
*
|
|
30873
|
+
* @example
|
|
30874
|
+
* ```html-no-run
|
|
30875
|
+
* <kendo-grid>
|
|
30876
|
+
* <kendo-toolbar>
|
|
30877
|
+
* <kendo-toolbar-button text="Save" kendoGridSaveTool></kendo-toolbar-button>
|
|
30878
|
+
* </kendo-toolbar>
|
|
30879
|
+
* </kendo-grid>
|
|
30880
|
+
* ```
|
|
30881
|
+
*/
|
|
30882
|
+
class SaveCommandToolbarDirective extends ToolbarEditingToolBase {
|
|
30883
|
+
editService;
|
|
30884
|
+
constructor(editService, host, selection, ctx, zone, cdr) {
|
|
30885
|
+
super(host, ToolbarToolName.save, ctx, zone, cdr, editService, selection);
|
|
30886
|
+
this.editService = editService;
|
|
30887
|
+
}
|
|
30888
|
+
/**
|
|
30889
|
+
* @hidden
|
|
30890
|
+
*/
|
|
30891
|
+
onClick(e) {
|
|
30892
|
+
e.preventDefault();
|
|
30893
|
+
if (this.editService.hasNewItem) {
|
|
30894
|
+
this.editService.save();
|
|
30895
|
+
}
|
|
30896
|
+
else if (this.isSelectionPresent && this.editService.isEdited(this.lastSelectionIndex)) {
|
|
30897
|
+
this.editService.save(this.lastSelectionIndex);
|
|
30898
|
+
}
|
|
30899
|
+
else {
|
|
30900
|
+
this.editService.editedIndices.forEach(i => this.editService.save(i.index));
|
|
30901
|
+
}
|
|
30902
|
+
}
|
|
30903
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SaveCommandToolbarDirective, deps: [{ token: EditService }, { token: i51.ToolBarButtonComponent }, { token: SelectionService }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30904
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SaveCommandToolbarDirective, isStandalone: true, selector: "[kendoGridSaveTool]", usesInheritance: true, ngImport: i0 });
|
|
30905
|
+
}
|
|
30906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SaveCommandToolbarDirective, decorators: [{
|
|
30907
|
+
type: Directive,
|
|
30908
|
+
args: [{
|
|
30909
|
+
selector: '[kendoGridSaveTool]',
|
|
30910
|
+
standalone: true
|
|
30911
|
+
}]
|
|
30912
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i51.ToolBarButtonComponent }, { type: SelectionService }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
30913
|
+
|
|
30914
|
+
/**
|
|
30915
|
+
* Represents the `remove` command in the Grid.
|
|
30916
|
+
* You can apply this directive to any `kendo-toolbar-button` element inside a
|
|
30917
|
+
* ToolbarComponent used in the Grid.
|
|
30918
|
+
*
|
|
30919
|
+
* When the user clicks the toolbar button that is associated with the directive, the
|
|
30920
|
+
* [remove]({% slug api_grid_gridcomponent %}#toc-remove) event is triggered.
|
|
30921
|
+
*
|
|
30922
|
+
* @example
|
|
30923
|
+
* ```html-no-run
|
|
30924
|
+
* <kendo-grid>
|
|
30925
|
+
* <kendo-toolbar>
|
|
30926
|
+
* <kendo-toolbar-button text="Remove row" kendoGridRemoveTool></kendo-toolbar-button>
|
|
30927
|
+
* </kendo-toolbar>
|
|
30928
|
+
* </kendo-grid>
|
|
30929
|
+
* ```
|
|
30930
|
+
*/
|
|
30931
|
+
class RemoveCommandToolbarDirective extends ToolbarEditingToolBase {
|
|
30932
|
+
editService;
|
|
30933
|
+
selection;
|
|
30934
|
+
constructor(editService, host, selection, ctx, zone, cdr) {
|
|
30935
|
+
super(host, ToolbarToolName.remove, ctx, zone, cdr, editService, selection);
|
|
30936
|
+
this.editService = editService;
|
|
30937
|
+
this.selection = selection;
|
|
30938
|
+
}
|
|
30939
|
+
/**
|
|
30940
|
+
* @hidden
|
|
30941
|
+
*/
|
|
30942
|
+
onClick(e) {
|
|
30943
|
+
e.preventDefault();
|
|
30944
|
+
if (this.isSelectionPresent) {
|
|
30945
|
+
this.editService.remove(this.lastSelectionIndex);
|
|
30946
|
+
}
|
|
30947
|
+
}
|
|
30948
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RemoveCommandToolbarDirective, deps: [{ token: EditService }, { token: i51.ToolBarButtonComponent }, { token: SelectionService }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30949
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RemoveCommandToolbarDirective, isStandalone: true, selector: "[kendoGridRemoveTool]", usesInheritance: true, ngImport: i0 });
|
|
30950
|
+
}
|
|
30951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RemoveCommandToolbarDirective, decorators: [{
|
|
30952
|
+
type: Directive,
|
|
30953
|
+
args: [{
|
|
30954
|
+
selector: '[kendoGridRemoveTool]',
|
|
30955
|
+
standalone: true
|
|
30956
|
+
}]
|
|
30957
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i51.ToolBarButtonComponent }, { type: SelectionService }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
30958
|
+
|
|
30959
|
+
/**
|
|
30960
|
+
* Represents the `cancel` command in the Grid.
|
|
30961
|
+
* You can apply this directive to any `kendo-toolbar-button` element inside a
|
|
30962
|
+
* ToolbarComponent used in the Grid.
|
|
30963
|
+
*
|
|
30964
|
+
* When the user clicks the toolbar button that is associated with the directive, the
|
|
30965
|
+
* [cancel]({% slug api_grid_gridcomponent %}#toc-cancel) event is triggered.
|
|
30966
|
+
*
|
|
30967
|
+
* @example
|
|
30968
|
+
* ```html-no-run
|
|
30969
|
+
* <kendo-grid>
|
|
30970
|
+
* <kendo-toolbar>
|
|
30971
|
+
* <kendo-toolbar-button text="Cancel" kendoGridCancelTool></kendo-toolbar-button>
|
|
30972
|
+
* </kendo-toolbar>
|
|
30973
|
+
* </kendo-grid>
|
|
30974
|
+
* ```
|
|
30975
|
+
*/
|
|
30976
|
+
class CancelCommandToolbarDirective extends ToolbarEditingToolBase {
|
|
30977
|
+
editService;
|
|
30978
|
+
constructor(editService, host, selection, ctx, zone, cdr) {
|
|
30979
|
+
super(host, ToolbarToolName.cancel, ctx, zone, cdr, editService, selection);
|
|
30980
|
+
this.editService = editService;
|
|
30981
|
+
}
|
|
30982
|
+
/**
|
|
30983
|
+
* @hidden
|
|
30984
|
+
*/
|
|
30985
|
+
onClick(e) {
|
|
30986
|
+
e.preventDefault();
|
|
30987
|
+
if (this.editService.hasNewItem) {
|
|
30988
|
+
this.editService.endEdit();
|
|
30989
|
+
}
|
|
30990
|
+
else if (this.isSelectionPresent && this.editService.isEdited(this.lastSelectionIndex)) {
|
|
30991
|
+
this.editService.endEdit(this.lastSelectionIndex);
|
|
30992
|
+
}
|
|
30993
|
+
else {
|
|
30994
|
+
this.editService.editedIndices.forEach(i => this.editService.endEdit(i.index));
|
|
30995
|
+
}
|
|
30996
|
+
}
|
|
30997
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CancelCommandToolbarDirective, deps: [{ token: EditService }, { token: i51.ToolBarButtonComponent }, { token: SelectionService }, { token: ContextService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
30998
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CancelCommandToolbarDirective, isStandalone: true, selector: "[kendoGridCancelTool]", usesInheritance: true, ngImport: i0 });
|
|
30999
|
+
}
|
|
31000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CancelCommandToolbarDirective, decorators: [{
|
|
31001
|
+
type: Directive,
|
|
31002
|
+
args: [{
|
|
31003
|
+
selector: '[kendoGridCancelTool]',
|
|
31004
|
+
standalone: true
|
|
31005
|
+
}]
|
|
31006
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i51.ToolBarButtonComponent }, { type: SelectionService }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
30591
31007
|
|
|
30592
31008
|
// DRAGGABLE COLUMN
|
|
30593
31009
|
/**
|
|
@@ -30809,6 +31225,10 @@ const KENDO_GRID_BODY_EXPORTS = [
|
|
|
30809
31225
|
RemoveCommandDirective,
|
|
30810
31226
|
AddCommandDirective,
|
|
30811
31227
|
AddCommandToolbarDirective,
|
|
31228
|
+
EditCommandToolbarDirective,
|
|
31229
|
+
SaveCommandToolbarDirective,
|
|
31230
|
+
RemoveCommandToolbarDirective,
|
|
31231
|
+
CancelCommandToolbarDirective,
|
|
30812
31232
|
CellLoadingTemplateDirective,
|
|
30813
31233
|
LoadingTemplateDirective,
|
|
30814
31234
|
RowReorderColumnComponent,
|
|
@@ -30939,7 +31359,7 @@ const KENDO_GRID = [
|
|
|
30939
31359
|
*/
|
|
30940
31360
|
class GridModule {
|
|
30941
31361
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
30942
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: GridModule, imports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i1$3.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, AddCommandToolbarDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent, SortCommandToolbarDirective, FilterCommandToolbarDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective, FooterComponent,
|
|
31362
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: GridModule, imports: [GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i1$3.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, AddCommandToolbarDirective, EditCommandToolbarDirective, SaveCommandToolbarDirective, RemoveCommandToolbarDirective, CancelCommandToolbarDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent, SortCommandToolbarDirective, FilterCommandToolbarDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective, FooterComponent, i50.CustomMessagesComponent, i50.PagerFocusableDirective, i50.PagerInfoComponent, i50.PagerInputComponent, i50.PagerNextButtonsComponent, i50.PagerNumericButtonsComponent, i50.PagerPageSizesComponent, i50.PagerPrevButtonsComponent, i50.PagerTemplateDirective, i50.PagerComponent, i50.PagerSpacerComponent, i51.ToolBarComponent, i51.ToolbarCustomMessagesComponent, i51.ToolBarButtonComponent, i51.ToolBarButtonGroupComponent, i51.ToolBarDropDownButtonComponent, i51.ToolBarSeparatorComponent, i51.ToolBarSpacerComponent, i51.ToolBarSplitButtonComponent, i51.ToolBarToolComponent, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i1$3.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, i1$3.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, ColumnChooserToolbarDirective, 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, ExternalEditingDirective, ExpandDetailsDirective, ExpandGroupDirective, GroupBindingDirective, GridMarqueeDirective, GridSpacerComponent, GridToolbarFocusableDirective, StatusBarComponent, StatusBarTemplateDirective, GridClipboardDirective, FormComponent, DialogFormComponent, FormFormFieldComponent, i51.ToolBarComponent, i51.ToolbarCustomMessagesComponent, i51.ToolBarButtonComponent, i51.ToolBarButtonGroupComponent, i51.ToolBarDropDownButtonComponent, i51.ToolBarSeparatorComponent, i51.ToolBarSpacerComponent, i51.ToolBarSplitButtonComponent, i51.ToolBarToolComponent, TableDirective], exports: [GridComponent, ToolbarTemplateDirective, ToolbarComponent, GridSpacerComponent, StatusBarTemplateDirective, DataBindingDirective, SelectionDirective, CustomMessagesComponent, GroupBindingDirective, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, ExternalEditingDirective, ExpandDetailsDirective, ExpandGroupDirective, GridToolbarFocusableDirective, GroupHeaderTemplateDirective, GroupHeaderColumnTemplateDirective, GroupFooterTemplateDirective, GroupHeaderComponent, GroupPanelComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, FooterTemplateDirective, ColGroupComponent, ResizableContainerDirective, i1$3.TemplateContextDirective, FieldAccessorPipe, DetailTemplateDirective, SpanColumnComponent, LoadingComponent, GridTableDirective, CommandColumnComponent, CheckboxColumnComponent, SelectionCheckboxDirective, CellTemplateDirective, EditTemplateDirective, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, TableBodyComponent, NoRecordsTemplateDirective, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, AddCommandToolbarDirective, EditCommandToolbarDirective, SaveCommandToolbarDirective, RemoveCommandToolbarDirective, CancelCommandToolbarDirective, CellLoadingTemplateDirective, LoadingTemplateDirective, RowReorderColumnComponent, SortCommandToolbarDirective, FilterCommandToolbarDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, SelectAllCheckboxDirective, 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, ColumnChooserToolbarDirective, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuLockComponent, ColumnMenuStickComponent, ColumnMenuPositionComponent, ColumnMenuChooserComponent, ColumnMenuTemplateDirective, ColumnMenuContainerComponent, ColumnMenuItemDirective, ColumnMenuComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, GridClipboardDirective, i51.ToolBarComponent, i51.ToolbarCustomMessagesComponent, i51.ToolBarButtonComponent, i51.ToolBarButtonGroupComponent, i51.ToolBarDropDownButtonComponent, i51.ToolBarSeparatorComponent, i51.ToolBarSpacerComponent, i51.ToolBarSplitButtonComponent, i51.ToolBarToolComponent, i50.CustomMessagesComponent, i50.PagerFocusableDirective, i50.PagerInfoComponent, i50.PagerInputComponent, i50.PagerNextButtonsComponent, i50.PagerNumericButtonsComponent, i50.PagerPageSizesComponent, i50.PagerPrevButtonsComponent, i50.PagerTemplateDirective, i50.PagerComponent, i50.PagerSpacerComponent] });
|
|
30943
31363
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, providers: [
|
|
30944
31364
|
PopupService,
|
|
30945
31365
|
ResizeBatchService,
|
|
@@ -30954,7 +31374,7 @@ class GridModule {
|
|
|
30954
31374
|
MonthViewService,
|
|
30955
31375
|
YearViewService,
|
|
30956
31376
|
NavigationService$1
|
|
30957
|
-
], imports: [GroupHeaderComponent, GroupPanelComponent, TableBodyComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent,
|
|
31377
|
+
], imports: [GroupHeaderComponent, GroupPanelComponent, TableBodyComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent, i50.CustomMessagesComponent, i50.PagerInfoComponent, i50.PagerInputComponent, i50.PagerNextButtonsComponent, i50.PagerNumericButtonsComponent, i50.PagerPageSizesComponent, i50.PagerPrevButtonsComponent, i50.PagerComponent, i50.PagerSpacerComponent, i51.ToolBarComponent, i51.ToolbarCustomMessagesComponent, i51.ToolBarButtonComponent, i51.ToolBarButtonGroupComponent, i51.ToolBarDropDownButtonComponent, i51.ToolBarSeparatorComponent, i51.ToolBarSpacerComponent, i51.ToolBarSplitButtonComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, ColumnListComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuStickComponent, ColumnMenuPositionComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuAutoSizeAllColumnsComponent, GridComponent, ListComponent, FormComponent, DialogFormComponent, FormFormFieldComponent, i51.ToolBarComponent, i51.ToolbarCustomMessagesComponent, i51.ToolBarButtonComponent, i51.ToolBarButtonGroupComponent, i51.ToolBarDropDownButtonComponent, i51.ToolBarSeparatorComponent, i51.ToolBarSpacerComponent, i51.ToolBarSplitButtonComponent] });
|
|
30958
31378
|
}
|
|
30959
31379
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, decorators: [{
|
|
30960
31380
|
type: NgModule,
|
|
@@ -31070,5 +31490,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
31070
31490
|
* Generated bundle index. Do not edit.
|
|
31071
31491
|
*/
|
|
31072
31492
|
|
|
31073
|
-
export { AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, BrowserSupportService, CELL_CONTEXT, CancelCommandDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditService as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridClipboardDirective, GridComponent, GridModule, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupBindingDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RemoveCommandDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, count, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable, slice };
|
|
31493
|
+
export { AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, BrowserSupportService, CELL_CONTEXT, CancelCommandDirective, CancelCommandToolbarDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditCommandToolbarDirective, EditService as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridClipboardDirective, GridComponent, GridModule, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupBindingDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, count, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable, slice };
|
|
31074
31494
|
|