@progress/kendo-angular-grid 19.0.0-develop.1 → 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/dragdrop/drag-hint.service.d.ts +3 -2
- 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/dragdrop/drag-hint.service.mjs +7 -4
- 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/form/form-formfield.component.mjs +1 -1
- 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/filtering/cell/autocomplete-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -1
- package/esm2022/filtering/filter-input.directive.mjs +14 -2
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2022/grid.component.mjs +57 -1
- package/esm2022/grid.module.mjs +104 -100
- package/esm2022/index.mjs +4 -0
- package/esm2022/localization/messages.mjs +43 -1
- package/esm2022/navigation/navigation.service.mjs +1 -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/rendering/cell.component.mjs +1 -1
- package/esm2022/rendering/table-body.component.mjs +10 -2
- package/esm2022/row-reordering/row-reorder.service.mjs +15 -0
- 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 +566 -102
- package/filtering/filter-input.directive.d.ts +1 -0
- 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/row-reordering/row-reorder.service.d.ts +2 -0
- 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';
|
|
@@ -225,21 +225,24 @@ const fontIconsMarkup = (safeTitle) => `
|
|
|
225
225
|
* @hidden
|
|
226
226
|
*/
|
|
227
227
|
class DragHintService {
|
|
228
|
-
|
|
228
|
+
sanitizer;
|
|
229
229
|
iconsService;
|
|
230
230
|
dom;
|
|
231
231
|
cancelIcon = cancelIcon;
|
|
232
|
-
constructor(
|
|
233
|
-
this.
|
|
232
|
+
constructor(sanitizer, iconsService) {
|
|
233
|
+
this.sanitizer = sanitizer;
|
|
234
234
|
this.iconsService = iconsService;
|
|
235
235
|
}
|
|
236
|
+
ngOnDestroy() {
|
|
237
|
+
this.remove();
|
|
238
|
+
}
|
|
236
239
|
create(title) {
|
|
237
240
|
if (!isDocumentAvailable()) {
|
|
238
241
|
return;
|
|
239
242
|
}
|
|
240
243
|
this.dom = document.createElement("div");
|
|
241
244
|
decorate(this.dom);
|
|
242
|
-
const safeTitle = this.
|
|
245
|
+
const safeTitle = this.sanitizer.sanitize(SecurityContext.HTML, title);
|
|
243
246
|
const innerHtml = this.isSVG ?
|
|
244
247
|
svgIconsMarkup(this.cancelIcon.viewBox, this.cancelIcon.content, safeTitle) :
|
|
245
248
|
fontIconsMarkup(safeTitle);
|
|
@@ -3921,7 +3924,7 @@ class NavigationService {
|
|
|
3921
3924
|
if (!this.onCellKeydown(args)) {
|
|
3922
3925
|
return;
|
|
3923
3926
|
}
|
|
3924
|
-
const confirm = !args.defaultPrevented && args.keyCode === Keys.Enter && isTextInput(args.
|
|
3927
|
+
const confirm = !args.defaultPrevented && args.keyCode === Keys.Enter && isTextInput(args.target);
|
|
3925
3928
|
if (args.keyCode === Keys.Escape || args.keyCode === Keys.F2 || confirm) {
|
|
3926
3929
|
this.leaveCell();
|
|
3927
3930
|
this.cursor.reset();
|
|
@@ -4079,12 +4082,12 @@ class NavigationService {
|
|
|
4079
4082
|
const offset = direction === 'Up' ? Math.abs(this.lastCellRowIndex - this.activeRowIndex) : (this.activeRowIndex + cellRowspan - this.lastCellRowIndex - 1);
|
|
4080
4083
|
return offset;
|
|
4081
4084
|
}
|
|
4082
|
-
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 });
|
|
4083
4086
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService });
|
|
4084
4087
|
}
|
|
4085
4088
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavigationService, decorators: [{
|
|
4086
4089
|
type: Injectable
|
|
4087
|
-
}], 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: [{
|
|
4088
4091
|
type: Optional
|
|
4089
4092
|
}] }]; } });
|
|
4090
4093
|
|
|
@@ -6996,7 +6999,7 @@ class FilterCellOperatorsComponent {
|
|
|
6996
6999
|
[size]="size"
|
|
6997
7000
|
(click)="clearClick()"
|
|
6998
7001
|
(keydown)="clearKeydown($event)"></button>
|
|
6999
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "
|
|
7002
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
7000
7003
|
}
|
|
7001
7004
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
7002
7005
|
type: Component,
|
|
@@ -7061,6 +7064,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
7061
7064
|
* @hidden
|
|
7062
7065
|
*/
|
|
7063
7066
|
class FilterInputDirective {
|
|
7067
|
+
ngZone;
|
|
7064
7068
|
element;
|
|
7065
7069
|
renderer;
|
|
7066
7070
|
change = new EventEmitter();
|
|
@@ -7079,12 +7083,19 @@ class FilterInputDirective {
|
|
|
7079
7083
|
changeRequestsSubscription;
|
|
7080
7084
|
unsubscribeEvents;
|
|
7081
7085
|
constructor(valueAccessors, ngZone, element, renderer) {
|
|
7086
|
+
this.ngZone = ngZone;
|
|
7082
7087
|
this.element = element;
|
|
7083
7088
|
this.renderer = renderer;
|
|
7084
7089
|
this.accessor = valueAccessors[0];
|
|
7085
7090
|
ngZone.runOutsideAngular(() => {
|
|
7086
7091
|
const unsubscribeStart = renderer.listen(element.nativeElement, 'compositionstart', () => this.composing = true);
|
|
7087
|
-
const unsubscribeEnd = renderer.listen(element.nativeElement, 'compositionend', () =>
|
|
7092
|
+
const unsubscribeEnd = renderer.listen(element.nativeElement, 'compositionend', (event) => {
|
|
7093
|
+
this.composing = false;
|
|
7094
|
+
const value = event.target?.value;
|
|
7095
|
+
this.filterDelay > 0 ?
|
|
7096
|
+
this.changeRequests.next(value) :
|
|
7097
|
+
this.change.emit(value);
|
|
7098
|
+
});
|
|
7088
7099
|
this.unsubscribeEvents = () => {
|
|
7089
7100
|
unsubscribeStart();
|
|
7090
7101
|
unsubscribeEnd();
|
|
@@ -7111,7 +7122,11 @@ class FilterInputDirective {
|
|
|
7111
7122
|
subscribeChanges() {
|
|
7112
7123
|
this.changeRequestsSubscription = this.changeRequests
|
|
7113
7124
|
.pipe(debounceTime(this.filterDelay), filter(() => !this.composing))
|
|
7114
|
-
.subscribe(x =>
|
|
7125
|
+
.subscribe((x) => {
|
|
7126
|
+
this.ngZone.run(() => {
|
|
7127
|
+
this.change.emit(x);
|
|
7128
|
+
});
|
|
7129
|
+
});
|
|
7115
7130
|
}
|
|
7116
7131
|
unsubscribeChanges() {
|
|
7117
7132
|
if (this.changeRequestsSubscription) {
|
|
@@ -8002,7 +8017,7 @@ class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent {
|
|
|
8002
8017
|
(keydown.shift.tab)="onShiftTab($event)">
|
|
8003
8018
|
</kendo-dropdownlist>
|
|
8004
8019
|
<ng-content></ng-content>
|
|
8005
|
-
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "
|
|
8020
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
|
|
8006
8021
|
}
|
|
8007
8022
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuInputWrapperComponent, decorators: [{
|
|
8008
8023
|
type: Component,
|
|
@@ -8233,7 +8248,7 @@ class StringFilterMenuComponent extends StringFilterComponent {
|
|
|
8233
8248
|
[placeholder]="extraPlaceholder"
|
|
8234
8249
|
[menuTabbingService]="menuTabbingService">
|
|
8235
8250
|
</kendo-grid-string-filter-menu-input>
|
|
8236
|
-
`, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-grid-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "isFirstDropDown", "menuTabbingService", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "
|
|
8251
|
+
`, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-grid-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "isFirstDropDown", "menuTabbingService", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
|
|
8237
8252
|
}
|
|
8238
8253
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
|
|
8239
8254
|
type: Component,
|
|
@@ -8718,7 +8733,7 @@ class NumericFilterMenuComponent extends NumericFilterComponent {
|
|
|
8718
8733
|
[menuTabbingService]="menuTabbingService"
|
|
8719
8734
|
[placeholder]="extraPlaceholder">
|
|
8720
8735
|
</kendo-grid-numeric-filter-menu-input>
|
|
8721
|
-
`, isInline: true, dependencies: [{ kind: "component", type: NumericFilterMenuInputComponent, selector: "kendo-grid-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "filterDelay", "isFirstDropDown", "menuTabbingService", "step", "min", "max", "spinners", "decimals", "format", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "
|
|
8736
|
+
`, isInline: true, dependencies: [{ kind: "component", type: NumericFilterMenuInputComponent, selector: "kendo-grid-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "filterDelay", "isFirstDropDown", "menuTabbingService", "step", "min", "max", "spinners", "decimals", "format", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
|
|
8722
8737
|
}
|
|
8723
8738
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
|
|
8724
8739
|
type: Component,
|
|
@@ -9033,7 +9048,7 @@ class DateFilterMenuInputComponent {
|
|
|
9033
9048
|
></kendo-datepicker-messages>
|
|
9034
9049
|
</kendo-datepicker>
|
|
9035
9050
|
</kendo-grid-filter-menu-input-wrapper>
|
|
9036
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-grid-filter-menu-input-wrapper", inputs: ["filterService", "isFirstDropDown", "menuTabbingService", "currentFilter"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "
|
|
9051
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-grid-filter-menu-input-wrapper", inputs: ["filterService", "isFirstDropDown", "menuTabbingService", "currentFilter"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }] });
|
|
9037
9052
|
}
|
|
9038
9053
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateFilterMenuInputComponent, decorators: [{
|
|
9039
9054
|
type: Component,
|
|
@@ -9224,7 +9239,7 @@ class DateFilterMenuComponent extends DateFilterComponent {
|
|
|
9224
9239
|
[weekNumber]="weekNumber"
|
|
9225
9240
|
[menuTabbingService]="menuTabbingService">
|
|
9226
9241
|
</kendo-grid-date-filter-menu-input>
|
|
9227
|
-
`, isInline: true, dependencies: [{ kind: "component", type: DateFilterMenuInputComponent, selector: "kendo-grid-date-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "menuTabbingService", "format", "formatPlaceholder", "placeholder", "min", "max", "activeView", "bottomView", "topView", "weekNumber", "isFirstDropDown"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "
|
|
9242
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DateFilterMenuInputComponent, selector: "kendo-grid-date-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "menuTabbingService", "format", "formatPlaceholder", "placeholder", "min", "max", "activeView", "bottomView", "topView", "weekNumber", "isFirstDropDown"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }] });
|
|
9228
9243
|
}
|
|
9229
9244
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateFilterMenuComponent, decorators: [{
|
|
9230
9245
|
type: Component,
|
|
@@ -10173,7 +10188,7 @@ class AutoCompleteFilterCellComponent extends BaseFilterCellComponent {
|
|
|
10173
10188
|
[value]="currentFilter?.value">
|
|
10174
10189
|
</kendo-autocomplete>
|
|
10175
10190
|
</kendo-grid-filter-wrapper-cell>
|
|
10176
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: AutoCompleteComponent, selector: "kendo-autocomplete", inputs: ["highlightFirst", "showStickyHeader", "focusableId", "data", "value", "valueField", "placeholder", "adaptiveMode", "
|
|
10191
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: AutoCompleteComponent, selector: "kendo-autocomplete", inputs: ["highlightFirst", "showStickyHeader", "focusableId", "data", "value", "valueField", "placeholder", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "loading", "clearButton", "suggest", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoAutoComplete"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }] });
|
|
10177
10192
|
}
|
|
10178
10193
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AutoCompleteFilterCellComponent, decorators: [{
|
|
10179
10194
|
type: Component,
|
|
@@ -10272,7 +10287,7 @@ class BooleanFilterCellComponent extends BooleanFilterComponent {
|
|
|
10272
10287
|
[value]="currentFilter?.value">
|
|
10273
10288
|
</kendo-dropdownlist>
|
|
10274
10289
|
</kendo-grid-filter-wrapper-cell>
|
|
10275
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "
|
|
10290
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }] });
|
|
10276
10291
|
}
|
|
10277
10292
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanFilterCellComponent, decorators: [{
|
|
10278
10293
|
type: Component,
|
|
@@ -10382,7 +10397,7 @@ class DateFilterCellComponent extends DateFilterComponent {
|
|
|
10382
10397
|
></kendo-datepicker-messages>
|
|
10383
10398
|
</kendo-datepicker>
|
|
10384
10399
|
</kendo-grid-filter-wrapper-cell>
|
|
10385
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "
|
|
10400
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "component", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages" }] });
|
|
10386
10401
|
}
|
|
10387
10402
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateFilterCellComponent, decorators: [{
|
|
10388
10403
|
type: Component,
|
|
@@ -11602,6 +11617,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11602
11617
|
args: ['columnList']
|
|
11603
11618
|
}] } });
|
|
11604
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
|
+
|
|
11605
11702
|
let incrementingId$2 = 0;
|
|
11606
11703
|
/**
|
|
11607
11704
|
* Represents the `column-chooser` toolbar tool of the Grid.
|
|
@@ -11617,7 +11714,7 @@ let incrementingId$2 = 0;
|
|
|
11617
11714
|
* </kendo-grid>
|
|
11618
11715
|
* ```
|
|
11619
11716
|
*/
|
|
11620
|
-
class ColumnChooserToolbarDirective {
|
|
11717
|
+
class ColumnChooserToolbarDirective extends ToolbarToolBase {
|
|
11621
11718
|
renderer;
|
|
11622
11719
|
popupSerivce;
|
|
11623
11720
|
host;
|
|
@@ -11639,7 +11736,8 @@ class ColumnChooserToolbarDirective {
|
|
|
11639
11736
|
popupRef;
|
|
11640
11737
|
subs = new Subscription();
|
|
11641
11738
|
nextId = incrementingId$2++;
|
|
11642
|
-
constructor(renderer, popupSerivce, host, ctx, zone, refresh) {
|
|
11739
|
+
constructor(renderer, popupSerivce, host, ctx, zone, refresh, cdr) {
|
|
11740
|
+
super(host, ToolbarToolName.columns, ctx, zone, cdr);
|
|
11643
11741
|
this.renderer = renderer;
|
|
11644
11742
|
this.popupSerivce = popupSerivce;
|
|
11645
11743
|
this.host = host;
|
|
@@ -11647,29 +11745,13 @@ class ColumnChooserToolbarDirective {
|
|
|
11647
11745
|
this.zone = zone;
|
|
11648
11746
|
this.refresh = refresh;
|
|
11649
11747
|
}
|
|
11650
|
-
ngOnInit() {
|
|
11651
|
-
this.subs.add(this.host.click.subscribe(e => this.onClick(e)));
|
|
11652
|
-
const hasToolbarIcon = isPresent$1(this.host.toolbarOptions.icon) && this.host.toolbarOptions.icon !== '';
|
|
11653
|
-
const hasOverflowIcon = isPresent$1(this.host.overflowOptions.icon) && this.host.overflowOptions.icon !== '';
|
|
11654
|
-
const hasIcon = hasToolbarIcon && hasOverflowIcon;
|
|
11655
|
-
const hasSvgIcon = isPresent$1(this.host.toolbarOptions.svgIcon) && isPresent$1(this.host.overflowOptions.svgIcon);
|
|
11656
|
-
if (!hasIcon) {
|
|
11657
|
-
this.host.icon = 'columns';
|
|
11658
|
-
}
|
|
11659
|
-
if (!hasSvgIcon) {
|
|
11660
|
-
this.host.svgIcon = columnsIcon;
|
|
11661
|
-
}
|
|
11662
|
-
}
|
|
11663
11748
|
ngAfterViewInit() {
|
|
11664
|
-
|
|
11665
|
-
|
|
11666
|
-
this.
|
|
11667
|
-
|
|
11668
|
-
|
|
11669
|
-
}
|
|
11670
|
-
this.host.toolbarButtonElement.nativeElement.setAttribute('aria-haspopup', 'dialog');
|
|
11671
|
-
this.host.toolbarButtonElement.nativeElement.setAttribute('aria-expanded', 'false');
|
|
11672
|
-
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
|
+
});
|
|
11673
11755
|
this.subs.add(this.refresh.onRefresh.pipe(filter((tool) => tool === this.host)).subscribe((tool) => {
|
|
11674
11756
|
if (tool.overflows && this.popupRef) {
|
|
11675
11757
|
this.popupRef.close();
|
|
@@ -11677,6 +11759,7 @@ class ColumnChooserToolbarDirective {
|
|
|
11677
11759
|
}));
|
|
11678
11760
|
}
|
|
11679
11761
|
ngOnDestroy() {
|
|
11762
|
+
super.ngOnDestroy();
|
|
11680
11763
|
this.subs.unsubscribe();
|
|
11681
11764
|
}
|
|
11682
11765
|
/**
|
|
@@ -11743,8 +11826,8 @@ class ColumnChooserToolbarDirective {
|
|
|
11743
11826
|
this.host.toolbarButtonElement.nativeElement.removeAttribute('aria-controls');
|
|
11744
11827
|
focusAnchor && this.host.toolbarButtonElement.nativeElement.focus();
|
|
11745
11828
|
}
|
|
11746
|
-
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:
|
|
11747
|
-
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 });
|
|
11748
11831
|
}
|
|
11749
11832
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnChooserToolbarDirective, decorators: [{
|
|
11750
11833
|
type: Directive,
|
|
@@ -11752,7 +11835,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11752
11835
|
selector: '[kendoGridColumnChooserTool]',
|
|
11753
11836
|
standalone: true
|
|
11754
11837
|
}]
|
|
11755
|
-
}], 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: [{
|
|
11756
11839
|
type: Input
|
|
11757
11840
|
}], allowHideAll: [{
|
|
11758
11841
|
type: Input
|
|
@@ -15702,6 +15785,7 @@ class SelectionService {
|
|
|
15702
15785
|
ev.rangeStartRow = { dataItem: this.lastSelectionData, index: this.lastSelectionStartIndex };
|
|
15703
15786
|
ev.rangeEndRow = { dataItem: item.data, index: item.index };
|
|
15704
15787
|
}
|
|
15788
|
+
this.syncCurrentSelection(ev);
|
|
15705
15789
|
this.changes.emit(ev);
|
|
15706
15790
|
}
|
|
15707
15791
|
toggle(item) {
|
|
@@ -15781,6 +15865,7 @@ class SelectionService {
|
|
|
15781
15865
|
deselectedRows: [rowArgs],
|
|
15782
15866
|
selectedRows: []
|
|
15783
15867
|
};
|
|
15868
|
+
this.syncCurrentSelection(ev);
|
|
15784
15869
|
this.changes.emit(ev);
|
|
15785
15870
|
}
|
|
15786
15871
|
}
|
|
@@ -15853,6 +15938,7 @@ class SelectionService {
|
|
|
15853
15938
|
if (this.options.cellAggregates) {
|
|
15854
15939
|
ev.cellAggregates = this.aggregateService.onSelectionChange(ev);
|
|
15855
15940
|
}
|
|
15941
|
+
this.syncCurrentSelection(ev);
|
|
15856
15942
|
this.changes.emit(ev);
|
|
15857
15943
|
}
|
|
15858
15944
|
selectRange(startIndex, endIndex, preserveSelection, existingSelections = []) {
|
|
@@ -15986,6 +16072,14 @@ class SelectionService {
|
|
|
15986
16072
|
this.dataChangedSubscription = null;
|
|
15987
16073
|
}
|
|
15988
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
|
+
}
|
|
15989
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 });
|
|
15990
16084
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionService });
|
|
15991
16085
|
}
|
|
@@ -18161,7 +18255,7 @@ class CellComponent {
|
|
|
18161
18255
|
</ng-container>
|
|
18162
18256
|
</ng-container>
|
|
18163
18257
|
</ng-container>
|
|
18164
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "directive", type: SelectionCheckboxDirective, selector: "[kendoGridSelectionCheckbox]", inputs: ["kendoGridSelectionCheckbox"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "
|
|
18258
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { kind: "directive", type: SelectionCheckboxDirective, selector: "[kendoGridSelectionCheckbox]", inputs: ["kendoGridSelectionCheckbox"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "pipe", type: FieldAccessorPipe, name: "valueOf" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
|
18165
18259
|
}
|
|
18166
18260
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CellComponent, decorators: [{
|
|
18167
18261
|
type: Component,
|
|
@@ -18638,6 +18732,15 @@ class TableBodyComponent {
|
|
|
18638
18732
|
clickHandler(eventArg) {
|
|
18639
18733
|
const element = this.element.nativeElement;
|
|
18640
18734
|
const target = this.eventTarget(eventArg);
|
|
18735
|
+
const selectionEnabled = this.selectable && this.selectable.enabled !== false;
|
|
18736
|
+
if (eventArg.keyCode === Keys.Space) {
|
|
18737
|
+
if (!selectionEnabled) {
|
|
18738
|
+
return;
|
|
18739
|
+
}
|
|
18740
|
+
if (!this.editService.isEditing()) {
|
|
18741
|
+
eventArg.preventDefault();
|
|
18742
|
+
}
|
|
18743
|
+
}
|
|
18641
18744
|
let cell, row, body, gridElement;
|
|
18642
18745
|
let currentTarget = target;
|
|
18643
18746
|
do {
|
|
@@ -18655,7 +18758,6 @@ class TableBodyComponent {
|
|
|
18655
18758
|
if (!focusable && !matchesNodeName('label')(target) && !hasClasses(target, IGNORE_TARGET_CLASSSES) &&
|
|
18656
18759
|
!closestInScope(target, matchesClasses(IGNORE_CONTAINER_CLASSES), cell)) {
|
|
18657
18760
|
const args = this.cellClickArgs(cell, row, eventArg);
|
|
18658
|
-
const selectionEnabled = this.selectable && this.selectable.enabled !== false;
|
|
18659
18761
|
if (selectionEnabled && !this.isRowSelectable({ index: args.rowIndex, dataItem: args.dataItem })) {
|
|
18660
18762
|
return;
|
|
18661
18763
|
}
|
|
@@ -18686,7 +18788,7 @@ class TableBodyComponent {
|
|
|
18686
18788
|
}));
|
|
18687
18789
|
}
|
|
18688
18790
|
cellKeydownHandler(args) {
|
|
18689
|
-
if (args.keyCode === Keys.Enter) {
|
|
18791
|
+
if (args.keyCode === Keys.Enter || args.keyCode === Keys.Space) {
|
|
18690
18792
|
this.clickHandler(args);
|
|
18691
18793
|
}
|
|
18692
18794
|
}
|
|
@@ -19611,6 +19713,7 @@ class RemoveCommandDirective extends Button {
|
|
|
19611
19713
|
*/
|
|
19612
19714
|
onClick(e) {
|
|
19613
19715
|
e.preventDefault();
|
|
19716
|
+
e.stopImmediatePropagation();
|
|
19614
19717
|
this.editService.remove(this.rowIndex);
|
|
19615
19718
|
}
|
|
19616
19719
|
constructor(editService, cellContext, element, renderer, ctx, ngZone) {
|
|
@@ -20001,8 +20104,8 @@ const packageMetadata = {
|
|
|
20001
20104
|
productName: 'Kendo UI for Angular',
|
|
20002
20105
|
productCode: 'KENDOUIANGULAR',
|
|
20003
20106
|
productCodes: ['KENDOUIANGULAR'],
|
|
20004
|
-
publishDate:
|
|
20005
|
-
version: '19.0.0-develop.
|
|
20107
|
+
publishDate: 1746798571,
|
|
20108
|
+
version: '19.0.0-develop.11',
|
|
20006
20109
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
20007
20110
|
};
|
|
20008
20111
|
|
|
@@ -21013,6 +21116,10 @@ class RowReorderService {
|
|
|
21013
21116
|
constructor(renderer) {
|
|
21014
21117
|
this.renderer = renderer;
|
|
21015
21118
|
}
|
|
21119
|
+
ngOnDestroy() {
|
|
21120
|
+
this.destroyDropIndicator();
|
|
21121
|
+
this.destroyHintElement();
|
|
21122
|
+
}
|
|
21016
21123
|
press(ev) {
|
|
21017
21124
|
this.dragTarget = ev.dragTarget;
|
|
21018
21125
|
this.offsetY = ev.dragEvent.offsetY;
|
|
@@ -21044,12 +21151,14 @@ class RowReorderService {
|
|
|
21044
21151
|
}
|
|
21045
21152
|
dragEnd() {
|
|
21046
21153
|
this.destroyDropIndicator();
|
|
21154
|
+
this.destroyHintElement();
|
|
21047
21155
|
this.dragTarget = null;
|
|
21048
21156
|
this.dropTarget = null;
|
|
21049
21157
|
this.hintElement = null;
|
|
21050
21158
|
}
|
|
21051
21159
|
drop(ev) {
|
|
21052
21160
|
this.destroyDropIndicator();
|
|
21161
|
+
this.destroyHintElement();
|
|
21053
21162
|
const rowReorderArgs = this.rowReorderArgs(this.dragTarget, this.dropTarget, ev.dragData);
|
|
21054
21163
|
this.rowReorder.emit(rowReorderArgs);
|
|
21055
21164
|
}
|
|
@@ -21131,6 +21240,15 @@ class RowReorderService {
|
|
|
21131
21240
|
this.dropIndicator = null;
|
|
21132
21241
|
}
|
|
21133
21242
|
}
|
|
21243
|
+
destroyHintElement() {
|
|
21244
|
+
if (!isDocumentAvailable()) {
|
|
21245
|
+
return;
|
|
21246
|
+
}
|
|
21247
|
+
if (this.hintElement?.parentElement) {
|
|
21248
|
+
this.hintElement.parentElement.removeChild(this.hintElement);
|
|
21249
|
+
this.hintElement = null;
|
|
21250
|
+
}
|
|
21251
|
+
}
|
|
21134
21252
|
decorateHint() {
|
|
21135
21253
|
hintClasses.forEach(className => this.renderer.addClass(this.hintElement, className));
|
|
21136
21254
|
Object.keys(hintStyles)
|
|
@@ -23476,6 +23594,34 @@ class GridMessages extends ComponentMessages {
|
|
|
23476
23594
|
* The label for the bottom toolbar.
|
|
23477
23595
|
*/
|
|
23478
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;
|
|
23479
23625
|
/**
|
|
23480
23626
|
* The label for the group panel toolbar.
|
|
23481
23627
|
*/
|
|
@@ -23550,7 +23696,7 @@ class GridMessages extends ComponentMessages {
|
|
|
23550
23696
|
*/
|
|
23551
23697
|
externalEditingCancelText;
|
|
23552
23698
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
23553
|
-
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 });
|
|
23554
23700
|
}
|
|
23555
23701
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridMessages, decorators: [{
|
|
23556
23702
|
type: Directive,
|
|
@@ -23716,6 +23862,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
23716
23862
|
type: Input
|
|
23717
23863
|
}], bottomToolbarLabel: [{
|
|
23718
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
|
|
23719
23879
|
}], groupPanelLabel: [{
|
|
23720
23880
|
type: Input
|
|
23721
23881
|
}], dragRowHandleLabel: [{
|
|
@@ -24267,6 +24427,12 @@ class GridComponent {
|
|
|
24267
24427
|
* @default false
|
|
24268
24428
|
*/
|
|
24269
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;
|
|
24270
24436
|
/**
|
|
24271
24437
|
* Fires when the Grid filter is modified through the UI.
|
|
24272
24438
|
* You have to handle the event yourself and filter the data.
|
|
@@ -24907,6 +25073,12 @@ class GridComponent {
|
|
|
24907
25073
|
if (this.selectionSubscription) {
|
|
24908
25074
|
this.selectionSubscription.unsubscribe();
|
|
24909
25075
|
}
|
|
25076
|
+
if (this.rowReorderSubscription) {
|
|
25077
|
+
this.rowReorderSubscription.unsubscribe();
|
|
25078
|
+
}
|
|
25079
|
+
if (this.columnReorderSubscription) {
|
|
25080
|
+
this.columnReorderSubscription.unsubscribe();
|
|
25081
|
+
}
|
|
24910
25082
|
if (this.stateChangeSubscription) {
|
|
24911
25083
|
this.stateChangeSubscription.unsubscribe();
|
|
24912
25084
|
}
|
|
@@ -25854,7 +26026,7 @@ class GridComponent {
|
|
|
25854
26026
|
this.dropTargetContainer?.notify();
|
|
25855
26027
|
}
|
|
25856
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 });
|
|
25857
|
-
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: [
|
|
25858
26030
|
BrowserSupportService,
|
|
25859
26031
|
LocalizationService,
|
|
25860
26032
|
ColumnInfoService,
|
|
@@ -26140,6 +26312,27 @@ class GridComponent {
|
|
|
26140
26312
|
i18n-bottomToolbarLabel="kendo.grid.bottomToolbarLabel|The label for the Grid bottom toolbar"
|
|
26141
26313
|
bottomToolbarLabel="Bottom toolbar"
|
|
26142
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
|
+
|
|
26143
26336
|
i18n-groupPanelLabel="kendo.grid.groupPanelLabel|The label for the Grid group panel toolbar"
|
|
26144
26337
|
groupPanelLabel="Group panel"
|
|
26145
26338
|
|
|
@@ -26593,7 +26786,7 @@ class GridComponent {
|
|
|
26593
26786
|
<div #dialogContainer></div>
|
|
26594
26787
|
|
|
26595
26788
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
26596
|
-
`, 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 });
|
|
26597
26790
|
}
|
|
26598
26791
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridComponent, decorators: [{
|
|
26599
26792
|
type: Component,
|
|
@@ -26888,6 +27081,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
26888
27081
|
i18n-bottomToolbarLabel="kendo.grid.bottomToolbarLabel|The label for the Grid bottom toolbar"
|
|
26889
27082
|
bottomToolbarLabel="Bottom toolbar"
|
|
26890
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
|
+
|
|
26891
27105
|
i18n-groupPanelLabel="kendo.grid.groupPanelLabel|The label for the Grid group panel toolbar"
|
|
26892
27106
|
groupPanelLabel="Group panel"
|
|
26893
27107
|
|
|
@@ -27417,6 +27631,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
27417
27631
|
type: Input
|
|
27418
27632
|
}], hideHeader: [{
|
|
27419
27633
|
type: Input
|
|
27634
|
+
}], showInactiveTools: [{
|
|
27635
|
+
type: Input
|
|
27420
27636
|
}], filterChange: [{
|
|
27421
27637
|
type: Output
|
|
27422
27638
|
}], pageChange: [{
|
|
@@ -28335,7 +28551,7 @@ class FormFormFieldComponent {
|
|
|
28335
28551
|
<kendo-formerror *ngFor="let err of control?.formControl?.errors | keyvalue">{{control.errors ? control.errors[err.key] : messageFor('formValidationError', err.key, control.name)}}</kendo-formerror>
|
|
28336
28552
|
</ng-container>
|
|
28337
28553
|
</kendo-formfield>
|
|
28338
|
-
`, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4$1.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: i4$1.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4$1.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4$1.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4$1.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "
|
|
28554
|
+
`, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4$1.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: i4$1.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4$1.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4$1.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4$1.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
|
|
28339
28555
|
}
|
|
28340
28556
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFormFieldComponent, decorators: [{
|
|
28341
28557
|
type: Component,
|
|
@@ -29613,22 +29829,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29613
29829
|
* </kendo-grid>
|
|
29614
29830
|
* ```
|
|
29615
29831
|
*/
|
|
29616
|
-
class PDFCommandToolbarDirective {
|
|
29832
|
+
class PDFCommandToolbarDirective extends ToolbarToolBase {
|
|
29617
29833
|
pdfService;
|
|
29618
29834
|
host;
|
|
29619
|
-
|
|
29620
|
-
|
|
29835
|
+
constructor(pdfService, host, ctx, zone, cdr) {
|
|
29836
|
+
super(host, ToolbarToolName.pdfExport, ctx, zone, cdr);
|
|
29621
29837
|
this.pdfService = pdfService;
|
|
29622
29838
|
this.host = host;
|
|
29623
29839
|
}
|
|
29624
29840
|
ngOnInit() {
|
|
29625
|
-
|
|
29841
|
+
super.ngOnInit();
|
|
29626
29842
|
this.host.className = 'k-grid-pdf';
|
|
29627
|
-
this.host.svgIcon = filePdfIcon;
|
|
29628
|
-
this.host.icon = 'file-pdf';
|
|
29629
|
-
}
|
|
29630
|
-
ngOnDestroy() {
|
|
29631
|
-
this.clickSub.unsubscribe();
|
|
29632
29843
|
}
|
|
29633
29844
|
/**
|
|
29634
29845
|
* @hidden
|
|
@@ -29637,8 +29848,8 @@ class PDFCommandToolbarDirective {
|
|
|
29637
29848
|
e.preventDefault();
|
|
29638
29849
|
this.pdfService.exportClick.emit();
|
|
29639
29850
|
}
|
|
29640
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, deps: [{ token: PDFService }, { token:
|
|
29641
|
-
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 });
|
|
29642
29853
|
}
|
|
29643
29854
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PDFCommandToolbarDirective, decorators: [{
|
|
29644
29855
|
type: Directive,
|
|
@@ -29646,7 +29857,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29646
29857
|
selector: '[kendoGridPDFTool]',
|
|
29647
29858
|
standalone: true
|
|
29648
29859
|
}]
|
|
29649
|
-
}], ctorParameters: function () { return [{ type: PDFService }, { type:
|
|
29860
|
+
}], ctorParameters: function () { return [{ type: PDFService }, { type: i51.ToolBarButtonComponent }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
29650
29861
|
|
|
29651
29862
|
/**
|
|
29652
29863
|
* Represents the `export-to-Excel` toolbar tool of the Grid.
|
|
@@ -29668,22 +29879,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29668
29879
|
* </kendo-grid>
|
|
29669
29880
|
* ```
|
|
29670
29881
|
*/
|
|
29671
|
-
class ExcelCommandToolbarDirective {
|
|
29882
|
+
class ExcelCommandToolbarDirective extends ToolbarToolBase {
|
|
29672
29883
|
excelService;
|
|
29673
|
-
host
|
|
29674
|
-
|
|
29675
|
-
constructor(excelService, host) {
|
|
29884
|
+
constructor(excelService, host, ctx, zone, cdr) {
|
|
29885
|
+
super(host, ToolbarToolName.excelExport, ctx, zone, cdr);
|
|
29676
29886
|
this.excelService = excelService;
|
|
29677
|
-
this.host = host;
|
|
29678
29887
|
}
|
|
29679
29888
|
ngOnInit() {
|
|
29680
|
-
|
|
29889
|
+
super.ngOnInit();
|
|
29681
29890
|
this.host.className = 'k-grid-excel';
|
|
29682
|
-
this.host.svgIcon = fileExcelIcon;
|
|
29683
|
-
this.host.icon = 'file-excel';
|
|
29684
|
-
}
|
|
29685
|
-
ngOnDestroy() {
|
|
29686
|
-
this.clickSub.unsubscribe();
|
|
29687
29891
|
}
|
|
29688
29892
|
/**
|
|
29689
29893
|
* @hidden
|
|
@@ -29692,8 +29896,8 @@ class ExcelCommandToolbarDirective {
|
|
|
29692
29896
|
e.preventDefault();
|
|
29693
29897
|
this.excelService.exportClick.emit();
|
|
29694
29898
|
}
|
|
29695
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, deps: [{ token: ExcelService }, { token:
|
|
29696
|
-
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 });
|
|
29697
29901
|
}
|
|
29698
29902
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExcelCommandToolbarDirective, decorators: [{
|
|
29699
29903
|
type: Directive,
|
|
@@ -29701,7 +29905,81 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29701
29905
|
selector: '[kendoGridExcelTool]',
|
|
29702
29906
|
standalone: true
|
|
29703
29907
|
}]
|
|
29704
|
-
}], 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 }]; } });
|
|
29705
29983
|
|
|
29706
29984
|
/**
|
|
29707
29985
|
* Represents the command for adding a new item to the Grid.
|
|
@@ -29721,22 +29999,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29721
29999
|
* </kendo-grid>
|
|
29722
30000
|
* ```
|
|
29723
30001
|
*/
|
|
29724
|
-
class AddCommandToolbarDirective {
|
|
30002
|
+
class AddCommandToolbarDirective extends ToolbarEditingToolBase {
|
|
29725
30003
|
editService;
|
|
29726
30004
|
host;
|
|
29727
|
-
|
|
29728
|
-
|
|
30005
|
+
constructor(editService, host, ctx, zone, cdr) {
|
|
30006
|
+
super(host, ToolbarToolName.add, ctx, zone, cdr, editService);
|
|
29729
30007
|
this.editService = editService;
|
|
29730
30008
|
this.host = host;
|
|
29731
30009
|
}
|
|
29732
30010
|
ngOnInit() {
|
|
29733
|
-
|
|
30011
|
+
super.ngOnInit();
|
|
29734
30012
|
this.host.className = 'k-grid-add-command';
|
|
29735
|
-
this.host.svgIcon = plusIcon;
|
|
29736
|
-
this.host.icon = 'plus';
|
|
29737
|
-
}
|
|
29738
|
-
ngOnDestroy() {
|
|
29739
|
-
this.clickSub.unsubscribe();
|
|
29740
30013
|
}
|
|
29741
30014
|
/**
|
|
29742
30015
|
* @hidden
|
|
@@ -29745,8 +30018,8 @@ class AddCommandToolbarDirective {
|
|
|
29745
30018
|
e.preventDefault();
|
|
29746
30019
|
this.editService.beginAdd();
|
|
29747
30020
|
}
|
|
29748
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, deps: [{ token: EditService }, { token:
|
|
29749
|
-
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 });
|
|
29750
30023
|
}
|
|
29751
30024
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddCommandToolbarDirective, decorators: [{
|
|
29752
30025
|
type: Directive,
|
|
@@ -29754,7 +30027,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
29754
30027
|
selector: '[kendoGridAddTool]',
|
|
29755
30028
|
standalone: true
|
|
29756
30029
|
}]
|
|
29757
|
-
}], ctorParameters: function () { return [{ type: EditService }, { type:
|
|
30030
|
+
}], ctorParameters: function () { return [{ type: EditService }, { type: i51.ToolBarButtonComponent }, { type: ContextService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
29758
30031
|
|
|
29759
30032
|
const directions = initialDirection => initialDirection === "asc" ? ["asc", "desc"] : ["desc", "asc"];
|
|
29760
30033
|
/**
|
|
@@ -30122,7 +30395,7 @@ class SortCommandToolbarDirective {
|
|
|
30122
30395
|
this.removeClickListener = null;
|
|
30123
30396
|
}
|
|
30124
30397
|
}
|
|
30125
|
-
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 });
|
|
30126
30399
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SortCommandToolbarDirective, isStandalone: true, selector: "[kendoGridSortTool]", ngImport: i0 });
|
|
30127
30400
|
}
|
|
30128
30401
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortCommandToolbarDirective, decorators: [{
|
|
@@ -30131,7 +30404,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
30131
30404
|
selector: '[kendoGridSortTool]',
|
|
30132
30405
|
standalone: true
|
|
30133
30406
|
}]
|
|
30134
|
-
}], 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 }]; } });
|
|
30135
30408
|
|
|
30136
30409
|
/**
|
|
30137
30410
|
* @hidden
|
|
@@ -30534,7 +30807,7 @@ class FilterCommandToolbarDirective {
|
|
|
30534
30807
|
this.removeClickListener = null;
|
|
30535
30808
|
}
|
|
30536
30809
|
}
|
|
30537
|
-
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 });
|
|
30538
30811
|
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterCommandToolbarDirective, isStandalone: true, selector: "[kendoGridFilterTool]", ngImport: i0 });
|
|
30539
30812
|
}
|
|
30540
30813
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterCommandToolbarDirective, decorators: [{
|
|
@@ -30543,7 +30816,194 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
30543
30816
|
selector: '[kendoGridFilterTool]',
|
|
30544
30817
|
standalone: true
|
|
30545
30818
|
}]
|
|
30546
|
-
}], 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 }]; } });
|
|
30547
31007
|
|
|
30548
31008
|
// DRAGGABLE COLUMN
|
|
30549
31009
|
/**
|
|
@@ -30765,6 +31225,10 @@ const KENDO_GRID_BODY_EXPORTS = [
|
|
|
30765
31225
|
RemoveCommandDirective,
|
|
30766
31226
|
AddCommandDirective,
|
|
30767
31227
|
AddCommandToolbarDirective,
|
|
31228
|
+
EditCommandToolbarDirective,
|
|
31229
|
+
SaveCommandToolbarDirective,
|
|
31230
|
+
RemoveCommandToolbarDirective,
|
|
31231
|
+
CancelCommandToolbarDirective,
|
|
30768
31232
|
CellLoadingTemplateDirective,
|
|
30769
31233
|
LoadingTemplateDirective,
|
|
30770
31234
|
RowReorderColumnComponent,
|
|
@@ -30895,7 +31359,7 @@ const KENDO_GRID = [
|
|
|
30895
31359
|
*/
|
|
30896
31360
|
class GridModule {
|
|
30897
31361
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
30898
|
-
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] });
|
|
30899
31363
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, providers: [
|
|
30900
31364
|
PopupService,
|
|
30901
31365
|
ResizeBatchService,
|
|
@@ -30910,7 +31374,7 @@ class GridModule {
|
|
|
30910
31374
|
MonthViewService,
|
|
30911
31375
|
YearViewService,
|
|
30912
31376
|
NavigationService$1
|
|
30913
|
-
], 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] });
|
|
30914
31378
|
}
|
|
30915
31379
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, decorators: [{
|
|
30916
31380
|
type: NgModule,
|
|
@@ -31026,5 +31490,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
31026
31490
|
* Generated bundle index. Do not edit.
|
|
31027
31491
|
*/
|
|
31028
31492
|
|
|
31029
|
-
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 };
|
|
31030
31494
|
|