@progress/kendo-angular-grid 23.3.0-develop.2 → 23.3.0-develop.20
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/columns/command-column.component.d.ts +1 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +123 -295
- package/grid.component.d.ts +2 -2
- package/index.d.ts +1 -1
- package/localization/messages.d.ts +5 -1
- package/package-metadata.mjs +2 -2
- package/package.json +24 -24
- package/rendering/header/header.component.d.ts +0 -1
- package/rendering/list.component.d.ts +2 -2
- package/rendering/toolbar/tools/smartbox/smartbox-component/smartbox.component.d.ts +5 -4
- package/schematics/ngAdd/index.js +7 -7
- package/selection/cell-selection.service.d.ts +1 -0
- package/selection/selection-default.d.ts +6 -2
- package/selection/selection.service.d.ts +2 -0
- package/layout/browser-support.service.d.ts +0 -22
- package/rendering/toolbar/tools/smartbox/segmented-control/models.d.ts +0 -36
- package/rendering/toolbar/tools/smartbox/segmented-control/segmented-control.component.d.ts +0 -45
|
@@ -7,11 +7,12 @@ import { EventEmitter, Injectable, SecurityContext, InjectionToken, Optional, In
|
|
|
7
7
|
import { merge, of, Subject, zip as zip$1, from, Subscription, interval, fromEvent, Observable, BehaviorSubject } from 'rxjs';
|
|
8
8
|
import * as i1$3 from '@progress/kendo-angular-common';
|
|
9
9
|
import { isDocumentAvailable, Keys, hasClasses as hasClasses$1, isPresent as isPresent$1, normalizeKeys, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, replaceMessagePlaceholder, isChanged as isChanged$1, KendoInput, guid, areObjectsEqual, PrefixTemplateDirective, closest as closest$1, hasObservers, ResizeSensorComponent, isFirefox, firefoxMaxHeight, closestInScope as closestInScope$1, isFocusable as isFocusable$1, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
|
+
export { BrowserSupportService, ScrollbarService } from '@progress/kendo-angular-common';
|
|
10
11
|
import * as i1 from '@angular/platform-browser';
|
|
11
12
|
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
12
13
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
|
13
14
|
import { plusIcon, cancelIcon, lockIcon, unlockIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, searchIcon, checkIcon, arrowRotateCcwIcon, columnsIcon, sparklesIcon, fileCsvIcon, filePdfIcon, fileExcelIcon, trashIcon, saveIcon, pencilIcon, chevronUpIcon, chevronDownIcon, chevronRightIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, reorderIcon, minusIcon, insertMiddleIcon, xIcon, xCircleIcon, plusCircleIcon, chevronLeftIcon, undoIcon, redoIcon, arrowsSwapIcon, groupIcon, tableWizardIcon, clockArrowRotateIcon, fileClockOutlineIcon, zoomSparkleIcon, arrowUpOutlineIcon, stopSmIcon, lightbulbOutlineIcon } from '@progress/kendo-svg-icons';
|
|
14
|
-
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, skip,
|
|
15
|
+
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, skip, bufferCount, flatMap } from 'rxjs/operators';
|
|
15
16
|
import * as i1$2 from '@progress/kendo-angular-l10n';
|
|
16
17
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
17
18
|
import * as i56 from '@progress/kendo-angular-pager';
|
|
@@ -24,7 +25,7 @@ import { parseDate } from '@progress/kendo-angular-intl';
|
|
|
24
25
|
import * as i2 from '@progress/kendo-angular-popup';
|
|
25
26
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
26
27
|
import * as i1$6 from '@progress/kendo-angular-buttons';
|
|
27
|
-
import { ChipListComponent, ChipComponent, ButtonComponent, Button, KENDO_BUTTON, ButtonDirective,
|
|
28
|
+
import { ChipListComponent, ChipComponent, ButtonComponent, Button, KENDO_BUTTON, ButtonDirective, SpeechToTextButtonComponent, SegmentedControlComponent } from '@progress/kendo-angular-buttons';
|
|
28
29
|
import * as i1$5 from '@progress/kendo-angular-dropdowns';
|
|
29
30
|
import { DropDownListComponent, AutoCompleteComponent, DataService, SelectionService as SelectionService$1, NavigationService as NavigationService$1, DisabledItemsService } from '@progress/kendo-angular-dropdowns';
|
|
30
31
|
import * as i2$2 from '@angular/forms';
|
|
@@ -653,8 +654,8 @@ const contains$1 = (parent, node, matchSelf = false) => {
|
|
|
653
654
|
* @hidden
|
|
654
655
|
*/
|
|
655
656
|
const isVisible = (element) => {
|
|
656
|
-
if (!isDocumentAvailable()) {
|
|
657
|
-
return;
|
|
657
|
+
if (!isDocumentAvailable() || !element?.getBoundingClientRect) {
|
|
658
|
+
return false;
|
|
658
659
|
}
|
|
659
660
|
const rect = element.getBoundingClientRect();
|
|
660
661
|
const hasSize = rect.width > 0 && rect.height > 0;
|
|
@@ -8217,7 +8218,7 @@ class FilterCellOperatorsComponent {
|
|
|
8217
8218
|
(click)="clearClick()"
|
|
8218
8219
|
(keydown)="clearKeydown($event)"></button>
|
|
8219
8220
|
}
|
|
8220
|
-
`, 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: 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"] }] });
|
|
8221
|
+
`, 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: 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", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
8221
8222
|
}
|
|
8222
8223
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
8223
8224
|
type: Component,
|
|
@@ -11654,7 +11655,7 @@ class FilterMenuContainerComponent {
|
|
|
11654
11655
|
}
|
|
11655
11656
|
</div>
|
|
11656
11657
|
</form>
|
|
11657
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: FilterMenuHostDirective, selector: "[kendoFilterMenuHost]", inputs: ["filterService", "menuTabbingService"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: MultiCheckboxFilterComponent, selector: "kendo-grid-multicheckbox-filter", inputs: ["column"], outputs: ["filterChange"] }, { 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"] }] });
|
|
11658
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: FilterMenuHostDirective, selector: "[kendoFilterMenuHost]", inputs: ["filterService", "menuTabbingService"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: MultiCheckboxFilterComponent, selector: "kendo-grid-multicheckbox-filter", inputs: ["column"], outputs: ["filterChange"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
11658
11659
|
}
|
|
11659
11660
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
|
|
11660
11661
|
type: Component,
|
|
@@ -13550,7 +13551,7 @@ class ColumnChooserContentComponent {
|
|
|
13550
13551
|
}
|
|
13551
13552
|
</div>
|
|
13552
13553
|
</form>
|
|
13553
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { 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"] }, { kind: "component", type: ColumnListComponent, selector: "kendo-grid-columnlist", inputs: ["columns", "filteredColumns", "autoSync", "showSelectAll", "isFiltered", "ariaLabel", "allowHideAll", "applyText", "resetText", "selectAllText", "isLast", "isExpanded", "service", "filterable"], outputs: ["reset", "apply", "columnChange"] }, { 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"] }, { kind: "directive", type: PrefixTemplateDirective, selector: "[kendoPrefixTemplate]", inputs: ["showSeparator"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
13554
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: ColumnListComponent, selector: "kendo-grid-columnlist", inputs: ["columns", "filteredColumns", "autoSync", "showSelectAll", "isFiltered", "ariaLabel", "allowHideAll", "applyText", "resetText", "selectAllText", "isLast", "isExpanded", "service", "filterable"], outputs: ["reset", "apply", "columnChange"] }, { 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"] }, { kind: "directive", type: PrefixTemplateDirective, selector: "[kendoPrefixTemplate]", inputs: ["showSeparator"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
13554
13555
|
}
|
|
13555
13556
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColumnChooserContentComponent, decorators: [{
|
|
13556
13557
|
type: Component,
|
|
@@ -13836,7 +13837,7 @@ class ColumnChooserComponent {
|
|
|
13836
13837
|
>
|
|
13837
13838
|
</kendo-grid-column-chooser-content>
|
|
13838
13839
|
</ng-template>
|
|
13839
|
-
`, isInline: true, dependencies: [{ 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"] }, { kind: "component", type: ColumnChooserContentComponent, selector: "kendo-grid-column-chooser-content", inputs: ["filterable", "showSelectAll", "showCheckedCount", "allowHideAll", "autoSync", "actionsClass", "closeOnReset", "columns", "isLast", "isExpanded", "service"], outputs: ["close"] }] });
|
|
13840
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: ColumnChooserContentComponent, selector: "kendo-grid-column-chooser-content", inputs: ["filterable", "showSelectAll", "showCheckedCount", "allowHideAll", "autoSync", "actionsClass", "closeOnReset", "columns", "isLast", "isExpanded", "service"], outputs: ["close"] }] });
|
|
13840
13841
|
}
|
|
13841
13842
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColumnChooserComponent, decorators: [{
|
|
13842
13843
|
type: Component,
|
|
@@ -19333,6 +19334,10 @@ class SelectionService {
|
|
|
19333
19334
|
cellAggregates
|
|
19334
19335
|
};
|
|
19335
19336
|
}
|
|
19337
|
+
setSelectionStart(row) {
|
|
19338
|
+
this.lastSelectionStartIndex = row?.index ?? 0;
|
|
19339
|
+
this.lastSelectionData = row?.dataItem ?? {};
|
|
19340
|
+
}
|
|
19336
19341
|
get selectAllState() {
|
|
19337
19342
|
return this._selectAllState;
|
|
19338
19343
|
}
|
|
@@ -19750,6 +19755,9 @@ class CellSelectionService {
|
|
|
19750
19755
|
});
|
|
19751
19756
|
}
|
|
19752
19757
|
}
|
|
19758
|
+
setSelectionStartColumn(index) {
|
|
19759
|
+
this.lastSelectionItemColIndex = index;
|
|
19760
|
+
}
|
|
19753
19761
|
getIterator() {
|
|
19754
19762
|
const accessor = this.settings.view.accessor();
|
|
19755
19763
|
if (!accessor) {
|
|
@@ -20230,9 +20238,6 @@ class HeaderComponent {
|
|
|
20230
20238
|
isCheckboxColumn(column) {
|
|
20231
20239
|
return isCheckboxColumn(column) && !column.templateRef;
|
|
20232
20240
|
}
|
|
20233
|
-
isRowReorderColumn(column) {
|
|
20234
|
-
return isRowReorderColumn(column);
|
|
20235
|
-
}
|
|
20236
20241
|
addStickyStyles(column) {
|
|
20237
20242
|
const stickyStyles = this.columnInfoService.stickyColumnsStyles(column);
|
|
20238
20243
|
return { ...column.headerStyle, ...stickyStyles };
|
|
@@ -20509,9 +20514,12 @@ class HeaderComponent {
|
|
|
20509
20514
|
@if (isCheckboxColumn(column) && !column.title && !column.headerTemplateRef && !$any(column).showSelectAll) {
|
|
20510
20515
|
<span class="k-sr-only">{{messageFor('checkboxColumnHeaderLabel')}}</span>
|
|
20511
20516
|
}
|
|
20512
|
-
@if (
|
|
20517
|
+
@if ($any(column).isRowReorderColumn && !column.title && !column.headerTemplateRef) {
|
|
20513
20518
|
<span class="k-sr-only">{{messageFor('dragColumnHeaderLabel')}}</span>
|
|
20514
20519
|
}
|
|
20520
|
+
@if ($any(column).isCommandColumn && !column.title && !column.headerTemplateRef) {
|
|
20521
|
+
<span class="k-sr-only">{{messageFor('commandColumnHeaderLabel')}}</span>
|
|
20522
|
+
}
|
|
20515
20523
|
@if (resizable) {
|
|
20516
20524
|
<span kendoGridColumnHandle
|
|
20517
20525
|
kendoDraggable
|
|
@@ -20765,9 +20773,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
20765
20773
|
@if (isCheckboxColumn(column) && !column.title && !column.headerTemplateRef && !$any(column).showSelectAll) {
|
|
20766
20774
|
<span class="k-sr-only">{{messageFor('checkboxColumnHeaderLabel')}}</span>
|
|
20767
20775
|
}
|
|
20768
|
-
@if (
|
|
20776
|
+
@if ($any(column).isRowReorderColumn && !column.title && !column.headerTemplateRef) {
|
|
20769
20777
|
<span class="k-sr-only">{{messageFor('dragColumnHeaderLabel')}}</span>
|
|
20770
20778
|
}
|
|
20779
|
+
@if ($any(column).isCommandColumn && !column.title && !column.headerTemplateRef) {
|
|
20780
|
+
<span class="k-sr-only">{{messageFor('commandColumnHeaderLabel')}}</span>
|
|
20781
|
+
}
|
|
20771
20782
|
@if (resizable) {
|
|
20772
20783
|
<span kendoGridColumnHandle
|
|
20773
20784
|
kendoDraggable
|
|
@@ -21202,6 +21213,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
21202
21213
|
class CommandColumnComponent extends ColumnBase {
|
|
21203
21214
|
parent;
|
|
21204
21215
|
template;
|
|
21216
|
+
isCommandColumn = true;
|
|
21205
21217
|
constructor(parent, idService) {
|
|
21206
21218
|
super(parent, idService);
|
|
21207
21219
|
this.parent = parent;
|
|
@@ -21952,7 +21964,7 @@ class CellComponent {
|
|
|
21952
21964
|
}
|
|
21953
21965
|
}
|
|
21954
21966
|
}
|
|
21955
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { 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: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { 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: "pipe", type: FieldAccessorPipe, name: "valueOf" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.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"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { 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"] }] });
|
|
21967
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { 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: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { 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: "pipe", type: FieldAccessorPipe, name: "valueOf" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.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"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
21956
21968
|
}
|
|
21957
21969
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CellComponent, decorators: [{
|
|
21958
21970
|
type: Component,
|
|
@@ -24230,8 +24242,8 @@ const packageMetadata = {
|
|
|
24230
24242
|
productName: 'Kendo UI for Angular',
|
|
24231
24243
|
productCode: 'KENDOUIANGULAR',
|
|
24232
24244
|
productCodes: ['KENDOUIANGULAR'],
|
|
24233
|
-
publishDate:
|
|
24234
|
-
version: '23.3.0-develop.
|
|
24245
|
+
publishDate: 1774614933,
|
|
24246
|
+
version: '23.3.0-develop.20',
|
|
24235
24247
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
24236
24248
|
};
|
|
24237
24249
|
|
|
@@ -24955,92 +24967,6 @@ const normalizeSettings = ({ buttonCount = 10, info = true, type = 'numeric', pa
|
|
|
24955
24967
|
*/
|
|
24956
24968
|
const normalize = (settings) => normalizeSettings(settings === true ? {} : settings);
|
|
24957
24969
|
|
|
24958
|
-
const canCreateElement = () => isDocumentAvailable() && document.createElement;
|
|
24959
|
-
let cachedScrollbarWidth = null;
|
|
24960
|
-
let cachedPixelRatio;
|
|
24961
|
-
let cachedRtlScrollLeft = null;
|
|
24962
|
-
function scrollbarWidth() {
|
|
24963
|
-
if (cachedScrollbarWidth === null && canCreateElement()) {
|
|
24964
|
-
cachedPixelRatio = window.devicePixelRatio || 1;
|
|
24965
|
-
const div = document.createElement("div");
|
|
24966
|
-
div.style.cssText = "overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block";
|
|
24967
|
-
div.innerHTML = " ";
|
|
24968
|
-
document.body.appendChild(div);
|
|
24969
|
-
cachedScrollbarWidth = div.offsetWidth - div.scrollWidth;
|
|
24970
|
-
document.body.removeChild(div);
|
|
24971
|
-
}
|
|
24972
|
-
return cachedScrollbarWidth;
|
|
24973
|
-
}
|
|
24974
|
-
function rtlScrollLeft() {
|
|
24975
|
-
if (cachedRtlScrollLeft === null && canCreateElement()) {
|
|
24976
|
-
const outer = document.createElement('div');
|
|
24977
|
-
outer.style.direction = 'rtl';
|
|
24978
|
-
outer.style.display = 'block';
|
|
24979
|
-
outer.style.clear = 'both';
|
|
24980
|
-
outer.style.width = '100px';
|
|
24981
|
-
outer.style.visibility = 'hidden';
|
|
24982
|
-
outer.style.position = 'absolute';
|
|
24983
|
-
outer.style.left = '-10000px';
|
|
24984
|
-
outer.style.overflow = 'scroll';
|
|
24985
|
-
outer.style.zoom = '1';
|
|
24986
|
-
const inner = document.createElement('div');
|
|
24987
|
-
inner.style.width = '200px';
|
|
24988
|
-
inner.style.height = '1px';
|
|
24989
|
-
outer.append(inner);
|
|
24990
|
-
document.body.appendChild(outer);
|
|
24991
|
-
const initial = outer.scrollLeft;
|
|
24992
|
-
outer.scrollLeft = -1;
|
|
24993
|
-
cachedRtlScrollLeft = outer.scrollLeft < 0 ? outer.scrollLeft : initial;
|
|
24994
|
-
document.body.removeChild(outer);
|
|
24995
|
-
}
|
|
24996
|
-
return cachedRtlScrollLeft;
|
|
24997
|
-
}
|
|
24998
|
-
/**
|
|
24999
|
-
* @hidden
|
|
25000
|
-
* move to kendo-common
|
|
25001
|
-
*/
|
|
25002
|
-
class BrowserSupportService {
|
|
25003
|
-
zone;
|
|
25004
|
-
changeDetector;
|
|
25005
|
-
changes = new EventEmitter();
|
|
25006
|
-
subscriptions;
|
|
25007
|
-
constructor(zone, changeDetector) {
|
|
25008
|
-
this.zone = zone;
|
|
25009
|
-
this.changeDetector = changeDetector;
|
|
25010
|
-
if (typeof window === 'undefined') {
|
|
25011
|
-
return;
|
|
25012
|
-
}
|
|
25013
|
-
this.zone.runOutsideAngular(() => {
|
|
25014
|
-
this.subscriptions = fromEvent(window, 'resize').pipe(auditTime(100)).subscribe(() => {
|
|
25015
|
-
if (cachedPixelRatio !== window.devicePixelRatio) {
|
|
25016
|
-
zone.run(() => {
|
|
25017
|
-
cachedScrollbarWidth = null;
|
|
25018
|
-
this.changes.emit();
|
|
25019
|
-
this.changeDetector.markForCheck();
|
|
25020
|
-
});
|
|
25021
|
-
}
|
|
25022
|
-
});
|
|
25023
|
-
});
|
|
25024
|
-
}
|
|
25025
|
-
ngOnDestroy() {
|
|
25026
|
-
if (this.subscriptions) {
|
|
25027
|
-
this.subscriptions.unsubscribe();
|
|
25028
|
-
this.subscriptions = null;
|
|
25029
|
-
}
|
|
25030
|
-
}
|
|
25031
|
-
get scrollbarWidth() {
|
|
25032
|
-
return scrollbarWidth();
|
|
25033
|
-
}
|
|
25034
|
-
get rtlScrollLeft() {
|
|
25035
|
-
return rtlScrollLeft();
|
|
25036
|
-
}
|
|
25037
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService, deps: [{ token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25038
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService });
|
|
25039
|
-
}
|
|
25040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService, decorators: [{
|
|
25041
|
-
type: Injectable
|
|
25042
|
-
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
25043
|
-
|
|
25044
24970
|
const isGroupItem = (source) => {
|
|
25045
24971
|
return source.items !== undefined &&
|
|
25046
24972
|
source.field !== undefined;
|
|
@@ -25510,13 +25436,25 @@ class Selection {
|
|
|
25510
25436
|
*
|
|
25511
25437
|
* @default 0
|
|
25512
25438
|
*/
|
|
25513
|
-
rangeSelectionStartRow
|
|
25439
|
+
set rangeSelectionStartRow(value) {
|
|
25440
|
+
this._rangeSelectionStartRow = value;
|
|
25441
|
+
this.ctx.grid.selectionService?.setSelectionStart(this._rangeSelectionStartRow);
|
|
25442
|
+
}
|
|
25443
|
+
get rangeSelectionStartRow() {
|
|
25444
|
+
return this._rangeSelectionStartRow;
|
|
25445
|
+
}
|
|
25514
25446
|
/**
|
|
25515
25447
|
* Sets the starting column index for `Shift`+click range selection when cell selection is on.
|
|
25516
25448
|
*
|
|
25517
25449
|
* @default 0
|
|
25518
25450
|
*/
|
|
25519
|
-
rangeSelectionStartColumnIndex
|
|
25451
|
+
set rangeSelectionStartColumnIndex(value) {
|
|
25452
|
+
this._rangeSelectionStartColumnIndex = value;
|
|
25453
|
+
this.ctx.grid.cellSelectionService?.setSelectionStartColumn(this.rangeSelectionStartColumnIndex);
|
|
25454
|
+
}
|
|
25455
|
+
get rangeSelectionStartColumnIndex() {
|
|
25456
|
+
return this._rangeSelectionStartColumnIndex ?? 0;
|
|
25457
|
+
}
|
|
25520
25458
|
/**
|
|
25521
25459
|
* Sets the item key to store in `selectedKeys`.
|
|
25522
25460
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/grid/selection/persisting#using-data-item-field).
|
|
@@ -25535,6 +25473,8 @@ class Selection {
|
|
|
25535
25473
|
selectedKeysChange = new EventEmitter();
|
|
25536
25474
|
rowSelectionState = new Set();
|
|
25537
25475
|
cellSelectionState = new PairSet();
|
|
25476
|
+
_rangeSelectionStartRow;
|
|
25477
|
+
_rangeSelectionStartColumnIndex = 0;
|
|
25538
25478
|
/**
|
|
25539
25479
|
* @hidden
|
|
25540
25480
|
*/
|
|
@@ -27662,8 +27602,13 @@ class ListComponent {
|
|
|
27662
27602
|
// depending on the varying row heights, so we need to adjust the scroll position.
|
|
27663
27603
|
if (isPresent(this.scrollToIndex)) {
|
|
27664
27604
|
const offset = this.scroller.rowHeightService.offset(this.scrollToIndex);
|
|
27665
|
-
|
|
27666
|
-
|
|
27605
|
+
const el = this.container.nativeElement;
|
|
27606
|
+
const maxScrollTop = el.scrollHeight - el.clientHeight;
|
|
27607
|
+
// Only adjust if scrollTop can actually increase; otherwise adjustScroll
|
|
27608
|
+
// sets scrollSyncing=true but the scrollTop stays clamped, which blocks
|
|
27609
|
+
// the pending scroll event from being processed by the scroller.
|
|
27610
|
+
if (offset > el.scrollTop && el.scrollTop < maxScrollTop) {
|
|
27611
|
+
this.scroller.adjustScroll(offset - el.scrollTop);
|
|
27667
27612
|
}
|
|
27668
27613
|
this.scrollToIndex = null;
|
|
27669
27614
|
}
|
|
@@ -28196,7 +28141,7 @@ class ListComponent {
|
|
|
28196
28141
|
this.scroller.scrollHeightContainer = this.container.nativeElement.querySelector('.k-height-container');
|
|
28197
28142
|
this.scroller.total = this.isVirtual && !this.ctx.grid?.pageable ? this.total : this.allItems.length;
|
|
28198
28143
|
}
|
|
28199
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: DetailsService }, { token: ChangeNotificationService }, { token: SuspendService }, { token: GroupsService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ScrollSyncService }, { token: ResizeService }, { token: EditService }, { token:
|
|
28144
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: DetailsService }, { token: ChangeNotificationService }, { token: SuspendService }, { token: GroupsService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ScrollSyncService }, { token: ResizeService }, { token: EditService }, { token: i1$3.ScrollbarService }, { token: NavigationService }, { token: ScrollRequestService }, { token: ContextService }, { token: ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: PDFService }, { token: ColumnInfoService }, { token: DataMappingService }], target: i0.ɵɵFactoryTarget.Component });
|
|
28200
28145
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ListComponent, isStandalone: true, selector: "kendo-grid-list", inputs: { data: "data", groups: "groups", total: "total", rowHeight: "rowHeight", detailRowHeight: "detailRowHeight", take: "take", skip: "skip", columns: "columns", detailTemplate: "detailTemplate", noRecordsTemplate: "noRecordsTemplate", selectable: "selectable", groupable: "groupable", filterable: "filterable", rowClass: "rowClass", rowSticky: "rowSticky", loading: "loading", trackBy: "trackBy", virtualColumns: "virtualColumns", isVirtual: "isVirtual", cellLoadingTemplate: "cellLoadingTemplate", loadingTemplate: "loadingTemplate", sort: "sort", size: "size" }, outputs: { contentScroll: "contentScroll", pageChange: "pageChange", scrollBottom: "scrollBottom" }, host: { properties: { "class.k-grid-container": "this.hostClass", "attr.role": "this.hostRole" } }, providers: [
|
|
28201
28146
|
{
|
|
28202
28147
|
provide: SCROLLER_FACTORY_TOKEN,
|
|
@@ -28473,7 +28418,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
28473
28418
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
28474
28419
|
type: Inject,
|
|
28475
28420
|
args: [SCROLLER_FACTORY_TOKEN]
|
|
28476
|
-
}] }, { type: DetailsService }, { type: ChangeNotificationService }, { type: SuspendService }, { type: GroupsService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type:
|
|
28421
|
+
}] }, { type: DetailsService }, { type: ChangeNotificationService }, { type: SuspendService }, { type: GroupsService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type: i1$3.ScrollbarService }, { type: NavigationService }, { type: ScrollRequestService }, { type: ContextService }, { type: ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: PDFService }, { type: ColumnInfoService }, { type: DataMappingService }], propDecorators: { hostClass: [{
|
|
28477
28422
|
type: HostBinding,
|
|
28478
28423
|
args: ['class.k-grid-container']
|
|
28479
28424
|
}], hostRole: [{
|
|
@@ -29391,8 +29336,12 @@ class GridMessages extends ComponentMessages {
|
|
|
29391
29336
|
* Sets the screen-reader-only content for the row reorder column header.
|
|
29392
29337
|
*/
|
|
29393
29338
|
dragColumnHeaderLabel;
|
|
29339
|
+
/**
|
|
29340
|
+
* Sets the screen-reader-only content for the command column header.
|
|
29341
|
+
*/
|
|
29342
|
+
commandColumnHeaderLabel;
|
|
29394
29343
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
29395
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: GridMessages, isStandalone: true, 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", aiAssistantApplyButtonText: "aiAssistantApplyButtonText", aiAssistantToolbarToolText: "aiAssistantToolbarToolText", aiAssistantWindowTitle: "aiAssistantWindowTitle", aiAssistantWindowCloseTitle: "aiAssistantWindowCloseTitle", aiAssistantOutputCardTitle: "aiAssistantOutputCardTitle", aiAssistantOutputCardBodyContent: "aiAssistantOutputCardBodyContent", aiAssistantSelectionNotEnabled: "aiAssistantSelectionNotEnabled", aiAssistantSelectionRowModeRequired: "aiAssistantSelectionRowModeRequired", aiAssistantSelectionCellModeRequired: "aiAssistantSelectionCellModeRequired", aiAssistantWindowMaximizeTitle: "aiAssistantWindowMaximizeTitle", aiAssistantWindowMinimizeTitle: "aiAssistantWindowMinimizeTitle", aiAssistantWindowRestoreTitle: "aiAssistantWindowRestoreTitle", 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", adaptiveFilterOperatorsTitle: "adaptiveFilterOperatorsTitle", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", adaptiveCloseButtonTitle: "adaptiveCloseButtonTitle", adaptiveBackButtonTitle: "adaptiveBackButtonTitle", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterToolbarToolText: "filterToolbarToolText", loading: "loading", gridLabel: "gridLabel", columnMenu: "columnMenu", setColumnPosition: "setColumnPosition", columns: "columns", columnChooserSelectAll: "columnChooserSelectAll", columnChooserSearchLabel: "columnChooserSearchLabel", columnChooserSelectedColumnsCount: "columnChooserSelectedColumnsCount", columnsSubtitle: "columnsSubtitle", adaptiveFilterTitle: "adaptiveFilterTitle", adaptiveSortTitle: "adaptiveSortTitle", adaptiveGroupTitle: "adaptiveGroupTitle", filterClearAllButton: "filterClearAllButton", groupClearButton: "groupClearButton", sortClearButton: "sortClearButton", sortDoneButton: "sortDoneButton", groupDoneButton: "groupDoneButton", 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", checkboxColumnHeaderLabel: "checkboxColumnHeaderLabel", groupCollapse: "groupCollapse", groupExpand: "groupExpand", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", editToolbarToolText: "editToolbarToolText", saveToolbarToolText: "saveToolbarToolText", addToolbarToolText: "addToolbarToolText", cancelToolbarToolText: "cancelToolbarToolText", removeToolbarToolText: "removeToolbarToolText", excelExportToolbarToolText: "excelExportToolbarToolText", csvExportToolbarToolText: "csvExportToolbarToolText", pdfExportToolbarToolText: "pdfExportToolbarToolText", groupPanelLabel: "groupPanelLabel", dragRowHandleLabel: "dragRowHandleLabel", columnMenuFilterTabTitle: "columnMenuFilterTabTitle", columnMenuGeneralTabTitle: "columnMenuGeneralTabTitle", columnMenuColumnsTabTitle: "columnMenuColumnsTabTitle", groupChipMenuPrevious: "groupChipMenuPrevious", groupChipMenuNext: "groupChipMenuNext", groupToolbarToolText: "groupToolbarToolText", formValidationErrorText: "formValidationErrorText", removeConfirmationDialogTitle: "removeConfirmationDialogTitle", removeConfirmationDialogContent: "removeConfirmationDialogContent", removeConfirmationDialogConfirmText: "removeConfirmationDialogConfirmText", removeConfirmationDialogRejectText: "removeConfirmationDialogRejectText", externalEditingTitle: "externalEditingTitle", externalEditingAddTitle: "externalEditingAddTitle", externalEditingSaveText: "externalEditingSaveText", externalEditingCancelText: "externalEditingCancelText", multiCheckboxFilterSearchPlaceholder: "multiCheckboxFilterSearchPlaceholder", multiCheckboxFilterSelectAllLabel: "multiCheckboxFilterSelectAllLabel", multiCheckboxFilterSelectedItemsCount: "multiCheckboxFilterSelectedItemsCount", smartBoxSpeechToTextButton: "smartBoxSpeechToTextButton", smartBoxSubmitPromptButton: "smartBoxSubmitPromptButton", smartBoxSearchPlaceholder: "smartBoxSearchPlaceholder", smartBoxSemanticSearchPlaceholder: "smartBoxSemanticSearchPlaceholder", smartBoxAIAssistantPlaceholder: "smartBoxAIAssistantPlaceholder", smartBoxSuggestedPrompts: "smartBoxSuggestedPrompts", smartBoxNoPreviousSearches: "smartBoxNoPreviousSearches", smartBoxNoPreviousPrompts: "smartBoxNoPreviousPrompts", smartBoxPreviouslySearched: "smartBoxPreviouslySearched", smartBoxPreviouslyAsked: "smartBoxPreviouslyAsked", searchModeListItemText: "searchModeListItemText", searchModeListItemDescription: "searchModeListItemDescription", semanticSearchModeListItemText: "semanticSearchModeListItemText", semanticSearchModeListItemDescription: "semanticSearchModeListItemDescription", smartBoxSearchModePopupButton: "smartBoxSearchModePopupButton", smartBoxAIAssistantModePopupButton: "smartBoxAIAssistantModePopupButton", detailColumnHeaderLabel: "detailColumnHeaderLabel", dragColumnHeaderLabel: "dragColumnHeaderLabel" }, usesInheritance: true, ngImport: i0 });
|
|
29344
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: GridMessages, isStandalone: true, 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", aiAssistantApplyButtonText: "aiAssistantApplyButtonText", aiAssistantToolbarToolText: "aiAssistantToolbarToolText", aiAssistantWindowTitle: "aiAssistantWindowTitle", aiAssistantWindowCloseTitle: "aiAssistantWindowCloseTitle", aiAssistantOutputCardTitle: "aiAssistantOutputCardTitle", aiAssistantOutputCardBodyContent: "aiAssistantOutputCardBodyContent", aiAssistantSelectionNotEnabled: "aiAssistantSelectionNotEnabled", aiAssistantSelectionRowModeRequired: "aiAssistantSelectionRowModeRequired", aiAssistantSelectionCellModeRequired: "aiAssistantSelectionCellModeRequired", aiAssistantWindowMaximizeTitle: "aiAssistantWindowMaximizeTitle", aiAssistantWindowMinimizeTitle: "aiAssistantWindowMinimizeTitle", aiAssistantWindowRestoreTitle: "aiAssistantWindowRestoreTitle", 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", adaptiveFilterOperatorsTitle: "adaptiveFilterOperatorsTitle", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", adaptiveCloseButtonTitle: "adaptiveCloseButtonTitle", adaptiveBackButtonTitle: "adaptiveBackButtonTitle", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterToolbarToolText: "filterToolbarToolText", loading: "loading", gridLabel: "gridLabel", columnMenu: "columnMenu", setColumnPosition: "setColumnPosition", columns: "columns", columnChooserSelectAll: "columnChooserSelectAll", columnChooserSearchLabel: "columnChooserSearchLabel", columnChooserSelectedColumnsCount: "columnChooserSelectedColumnsCount", columnsSubtitle: "columnsSubtitle", adaptiveFilterTitle: "adaptiveFilterTitle", adaptiveSortTitle: "adaptiveSortTitle", adaptiveGroupTitle: "adaptiveGroupTitle", filterClearAllButton: "filterClearAllButton", groupClearButton: "groupClearButton", sortClearButton: "sortClearButton", sortDoneButton: "sortDoneButton", groupDoneButton: "groupDoneButton", 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", checkboxColumnHeaderLabel: "checkboxColumnHeaderLabel", groupCollapse: "groupCollapse", groupExpand: "groupExpand", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", editToolbarToolText: "editToolbarToolText", saveToolbarToolText: "saveToolbarToolText", addToolbarToolText: "addToolbarToolText", cancelToolbarToolText: "cancelToolbarToolText", removeToolbarToolText: "removeToolbarToolText", excelExportToolbarToolText: "excelExportToolbarToolText", csvExportToolbarToolText: "csvExportToolbarToolText", pdfExportToolbarToolText: "pdfExportToolbarToolText", groupPanelLabel: "groupPanelLabel", dragRowHandleLabel: "dragRowHandleLabel", columnMenuFilterTabTitle: "columnMenuFilterTabTitle", columnMenuGeneralTabTitle: "columnMenuGeneralTabTitle", columnMenuColumnsTabTitle: "columnMenuColumnsTabTitle", groupChipMenuPrevious: "groupChipMenuPrevious", groupChipMenuNext: "groupChipMenuNext", groupToolbarToolText: "groupToolbarToolText", formValidationErrorText: "formValidationErrorText", removeConfirmationDialogTitle: "removeConfirmationDialogTitle", removeConfirmationDialogContent: "removeConfirmationDialogContent", removeConfirmationDialogConfirmText: "removeConfirmationDialogConfirmText", removeConfirmationDialogRejectText: "removeConfirmationDialogRejectText", externalEditingTitle: "externalEditingTitle", externalEditingAddTitle: "externalEditingAddTitle", externalEditingSaveText: "externalEditingSaveText", externalEditingCancelText: "externalEditingCancelText", multiCheckboxFilterSearchPlaceholder: "multiCheckboxFilterSearchPlaceholder", multiCheckboxFilterSelectAllLabel: "multiCheckboxFilterSelectAllLabel", multiCheckboxFilterSelectedItemsCount: "multiCheckboxFilterSelectedItemsCount", smartBoxSpeechToTextButton: "smartBoxSpeechToTextButton", smartBoxSubmitPromptButton: "smartBoxSubmitPromptButton", smartBoxSearchPlaceholder: "smartBoxSearchPlaceholder", smartBoxSemanticSearchPlaceholder: "smartBoxSemanticSearchPlaceholder", smartBoxAIAssistantPlaceholder: "smartBoxAIAssistantPlaceholder", smartBoxSuggestedPrompts: "smartBoxSuggestedPrompts", smartBoxNoPreviousSearches: "smartBoxNoPreviousSearches", smartBoxNoPreviousPrompts: "smartBoxNoPreviousPrompts", smartBoxPreviouslySearched: "smartBoxPreviouslySearched", smartBoxPreviouslyAsked: "smartBoxPreviouslyAsked", searchModeListItemText: "searchModeListItemText", searchModeListItemDescription: "searchModeListItemDescription", semanticSearchModeListItemText: "semanticSearchModeListItemText", semanticSearchModeListItemDescription: "semanticSearchModeListItemDescription", smartBoxSearchModePopupButton: "smartBoxSearchModePopupButton", smartBoxAIAssistantModePopupButton: "smartBoxAIAssistantModePopupButton", detailColumnHeaderLabel: "detailColumnHeaderLabel", dragColumnHeaderLabel: "dragColumnHeaderLabel", commandColumnHeaderLabel: "commandColumnHeaderLabel" }, usesInheritance: true, ngImport: i0 });
|
|
29396
29345
|
}
|
|
29397
29346
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GridMessages, decorators: [{
|
|
29398
29347
|
type: Directive,
|
|
@@ -29705,6 +29654,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
29705
29654
|
type: Input
|
|
29706
29655
|
}], dragColumnHeaderLabel: [{
|
|
29707
29656
|
type: Input
|
|
29657
|
+
}], commandColumnHeaderLabel: [{
|
|
29658
|
+
type: Input
|
|
29708
29659
|
}] } });
|
|
29709
29660
|
|
|
29710
29661
|
/**
|
|
@@ -30107,7 +30058,7 @@ class SortToolbarToolComponent {
|
|
|
30107
30058
|
{{ctx?.localization.get('sortClearButton')}}
|
|
30108
30059
|
</button>
|
|
30109
30060
|
</div>
|
|
30110
|
-
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i1$6.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"] }] });
|
|
30061
|
+
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i1$6.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
30111
30062
|
}
|
|
30112
30063
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SortToolbarToolComponent, decorators: [{
|
|
30113
30064
|
type: Component,
|
|
@@ -30439,7 +30390,7 @@ class FormComponent {
|
|
|
30439
30390
|
</div>
|
|
30440
30391
|
}
|
|
30441
30392
|
</div>
|
|
30442
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: FormFormFieldComponent, selector: "kendo-form-formfield", inputs: ["control", "floatingLabel", "showError"] }, { kind: "component", type: i1$6.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"] }] });
|
|
30393
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: FormFormFieldComponent, selector: "kendo-form-formfield", inputs: ["control", "floatingLabel", "showError"] }, { kind: "component", type: i1$6.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
30443
30394
|
}
|
|
30444
30395
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FormComponent, decorators: [{
|
|
30445
30396
|
type: Component,
|
|
@@ -30549,7 +30500,7 @@ class DialogFormComponent extends DialogContentBase {
|
|
|
30549
30500
|
{{messageFor('externalEditingCancelText')}}
|
|
30550
30501
|
</button>
|
|
30551
30502
|
</kendo-dialog-actions>
|
|
30552
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FormComponent, selector: "kendo-grid-external-form", inputs: ["controls", "formSettings", "formGroup", "actionButtons"], outputs: ["formSubmit"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: i1$6.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"] }] });
|
|
30503
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FormComponent, selector: "kendo-grid-external-form", inputs: ["controls", "formSettings", "formGroup", "actionButtons"], outputs: ["formSubmit"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: i1$6.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
30553
30504
|
}
|
|
30554
30505
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DialogFormComponent, decorators: [{
|
|
30555
30506
|
type: Component,
|
|
@@ -30903,7 +30854,7 @@ class GroupToolbarToolComponent {
|
|
|
30903
30854
|
</button>
|
|
30904
30855
|
</div>
|
|
30905
30856
|
}
|
|
30906
|
-
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i1$6.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"] }] });
|
|
30857
|
+
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i1$6.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
30907
30858
|
}
|
|
30908
30859
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GroupToolbarToolComponent, decorators: [{
|
|
30909
30860
|
type: Component,
|
|
@@ -31752,7 +31703,7 @@ class AdaptiveRendererComponent {
|
|
|
31752
31703
|
{{messageFor('filterFilterButton')}}
|
|
31753
31704
|
</button>
|
|
31754
31705
|
</ng-template>
|
|
31755
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["actions", "actionsLayout", "overlayClickClose", "title", "subtitle", "items", "cssClass", "cssStyle", "animation", "expanded", "titleId", "initialFocus"], outputs: ["expandedChange", "action", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "component", type: ActionSheetViewComponent, selector: "kendo-actionsheet-view", inputs: ["title", "subtitle", "titleId"] }, { kind: "component", type: FilterToolbarToolComponent, selector: "kendo-filter-toolbar-tool", outputs: ["close"] }, { kind: "component", type: GroupToolbarToolComponent, selector: "kendo-group-toolbar-tool", inputs: ["adaptive"], outputs: ["close", "groupClear"] }, { kind: "component", type: ButtonDirective, 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"] }, { kind: "directive", type: ActionSheetHeaderTemplateDirective, selector: "[kendoActionSheetHeaderTemplate]" }, { kind: "directive", type: ActionSheetContentTemplateDirective, selector: "[kendoActionSheetContentTemplate]" }, { kind: "directive", type: ActionSheetFooterTemplateDirective, selector: "[kendoActionSheetFooterTemplate]" }, { kind: "component", type: ColumnMenuContainerComponent, selector: "kendo-grid-columnmenu-container" }, { kind: "component", type: ColumnMenuFilterComponent, selector: "kendo-grid-columnmenu-filter", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuSortComponent, selector: "kendo-grid-columnmenu-sort" }, { kind: "component", type: ColumnMenuLockComponent, selector: "kendo-grid-columnmenu-lock" }, { kind: "component", type: ColumnMenuStickComponent, selector: "kendo-grid-columnmenu-stick" }, { kind: "component", type: ColumnMenuPositionComponent, selector: "kendo-grid-columnmenu-position", inputs: ["expanded", "showLock", "showStick", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuChooserComponent, selector: "kendo-grid-columnmenu-chooser", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuAutoSizeColumnComponent, selector: "kendo-grid-columnmenu-autosize-column", inputs: ["column"] }, { kind: "component", type: ColumnMenuAutoSizeAllColumnsComponent, selector: "kendo-grid-columnmenu-autosize-all-columns" }, { kind: "component", type: ColumnMenuItemComponent, selector: "kendo-grid-columnmenu-item", inputs: ["icon", "svgIcon", "indicatorIcon", "text", "selected", "disabled", "expanded", "focused", "service", "column"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ColumnMenuItemDirective, selector: "[kendoGridColumnMenuItem]", inputs: ["kendoGridColumnMenuItem"] }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-grid-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: FormComponent, selector: "kendo-grid-external-form", inputs: ["controls", "formSettings", "formGroup", "actionButtons"], outputs: ["formSubmit"] }, { kind: "component", type: ColumnChooserContentComponent, selector: "kendo-grid-column-chooser-content", inputs: ["filterable", "showSelectAll", "showCheckedCount", "allowHideAll", "autoSync", "actionsClass", "closeOnReset", "columns", "isLast", "isExpanded", "service"], outputs: ["close"] }] });
|
|
31706
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["actions", "actionsLayout", "overlayClickClose", "title", "subtitle", "items", "cssClass", "cssStyle", "animation", "expanded", "titleId", "initialFocus"], outputs: ["expandedChange", "action", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "component", type: ActionSheetViewComponent, selector: "kendo-actionsheet-view", inputs: ["title", "subtitle", "titleId"] }, { kind: "component", type: FilterToolbarToolComponent, selector: "kendo-filter-toolbar-tool", outputs: ["close"] }, { kind: "component", type: GroupToolbarToolComponent, selector: "kendo-group-toolbar-tool", inputs: ["adaptive"], outputs: ["close", "groupClear"] }, { kind: "component", type: ButtonDirective, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: ActionSheetHeaderTemplateDirective, selector: "[kendoActionSheetHeaderTemplate]" }, { kind: "directive", type: ActionSheetContentTemplateDirective, selector: "[kendoActionSheetContentTemplate]" }, { kind: "directive", type: ActionSheetFooterTemplateDirective, selector: "[kendoActionSheetFooterTemplate]" }, { kind: "component", type: ColumnMenuContainerComponent, selector: "kendo-grid-columnmenu-container" }, { kind: "component", type: ColumnMenuFilterComponent, selector: "kendo-grid-columnmenu-filter", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuSortComponent, selector: "kendo-grid-columnmenu-sort" }, { kind: "component", type: ColumnMenuLockComponent, selector: "kendo-grid-columnmenu-lock" }, { kind: "component", type: ColumnMenuStickComponent, selector: "kendo-grid-columnmenu-stick" }, { kind: "component", type: ColumnMenuPositionComponent, selector: "kendo-grid-columnmenu-position", inputs: ["expanded", "showLock", "showStick", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuChooserComponent, selector: "kendo-grid-columnmenu-chooser", inputs: ["expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ColumnMenuAutoSizeColumnComponent, selector: "kendo-grid-columnmenu-autosize-column", inputs: ["column"] }, { kind: "component", type: ColumnMenuAutoSizeAllColumnsComponent, selector: "kendo-grid-columnmenu-autosize-all-columns" }, { kind: "component", type: ColumnMenuItemComponent, selector: "kendo-grid-columnmenu-item", inputs: ["icon", "svgIcon", "indicatorIcon", "text", "selected", "disabled", "expanded", "focused", "service", "column"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ColumnMenuItemDirective, selector: "[kendoGridColumnMenuItem]", inputs: ["kendoGridColumnMenuItem"] }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-grid-filter-menu-container", inputs: ["column", "isLast", "isExpanded", "menuTabbingService", "filter", "actionsClass"], outputs: ["close"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: FormComponent, selector: "kendo-grid-external-form", inputs: ["controls", "formSettings", "formGroup", "actionButtons"], outputs: ["formSubmit"] }, { kind: "component", type: ColumnChooserContentComponent, selector: "kendo-grid-column-chooser-content", inputs: ["filterable", "showSelectAll", "showCheckedCount", "allowHideAll", "autoSync", "actionsClass", "closeOnReset", "columns", "isLast", "isExpanded", "service"], outputs: ["close"] }] });
|
|
31756
31707
|
}
|
|
31757
31708
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AdaptiveRendererComponent, decorators: [{
|
|
31758
31709
|
type: Component,
|
|
@@ -34756,9 +34707,8 @@ class GridComponent {
|
|
|
34756
34707
|
this.dragTargetContainer?.notify();
|
|
34757
34708
|
this.dropTargetContainer?.notify();
|
|
34758
34709
|
}
|
|
34759
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GridComponent, deps: [{ token:
|
|
34710
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GridComponent, deps: [{ token: i1$3.ScrollbarService }, { 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: CSVService }, { 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: AdaptiveGridService }, { token: RowReorderService }, { token: DataMappingService }, { token: GridAIRequestResponseService }, { token: IdService }, { token: SearchService }], target: i0.ɵɵFactoryTarget.Component });
|
|
34760
34711
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: GridComponent, isStandalone: true, selector: "kendo-grid", inputs: { data: "data", pageSize: "pageSize", height: "height", rowHeight: "rowHeight", adaptiveMode: "adaptiveMode", 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", 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", dataLayoutMode: "dataLayoutMode" }, outputs: { filterChange: "filterChange", pageChange: "pageChange", groupChange: "groupChange", sortChange: "sortChange", selectionChange: "selectionChange", rowReorder: "rowReorder", dataStateChange: "dataStateChange", gridStateChange: "gridStateChange", 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", csvExport: "csvExport", 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-stack": "this.stackedClass", "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: [
|
|
34761
|
-
BrowserSupportService,
|
|
34762
34712
|
LocalizationService,
|
|
34763
34713
|
ColumnInfoService,
|
|
34764
34714
|
SelectionService,
|
|
@@ -35271,6 +35221,9 @@ class GridComponent {
|
|
|
35271
35221
|
|
|
35272
35222
|
i18n-checkboxColumnHeaderLabel="kendo.grid.checkboxColumnHeaderLabel|The screen-reader-only content for the checkbox column header"
|
|
35273
35223
|
checkboxColumnHeaderLabel="Selection"
|
|
35224
|
+
|
|
35225
|
+
i18n-commandColumnHeaderLabel="kendo.grid.commandColumnHeaderLabel|The screen-reader-only content for the command column header"
|
|
35226
|
+
commandColumnHeaderLabel="Command"
|
|
35274
35227
|
>
|
|
35275
35228
|
</ng-container>
|
|
35276
35229
|
@if (showTopToolbar) {
|
|
@@ -35745,7 +35698,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
35745
35698
|
encapsulation: ViewEncapsulation.None,
|
|
35746
35699
|
exportAs: 'kendoGrid',
|
|
35747
35700
|
providers: [
|
|
35748
|
-
BrowserSupportService,
|
|
35749
35701
|
LocalizationService,
|
|
35750
35702
|
ColumnInfoService,
|
|
35751
35703
|
SelectionService,
|
|
@@ -36260,6 +36212,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
36260
36212
|
|
|
36261
36213
|
i18n-checkboxColumnHeaderLabel="kendo.grid.checkboxColumnHeaderLabel|The screen-reader-only content for the checkbox column header"
|
|
36262
36214
|
checkboxColumnHeaderLabel="Selection"
|
|
36215
|
+
|
|
36216
|
+
i18n-commandColumnHeaderLabel="kendo.grid.commandColumnHeaderLabel|The screen-reader-only content for the command column header"
|
|
36217
|
+
commandColumnHeaderLabel="Command"
|
|
36263
36218
|
>
|
|
36264
36219
|
</ng-container>
|
|
36265
36220
|
@if (showTopToolbar) {
|
|
@@ -36754,7 +36709,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
36754
36709
|
ResizeSensorComponent
|
|
36755
36710
|
]
|
|
36756
36711
|
}]
|
|
36757
|
-
}], ctorParameters: () => [{ type:
|
|
36712
|
+
}], ctorParameters: () => [{ type: i1$3.ScrollbarService }, { type: SelectionService }, { type: CellSelectionService }, { type: i0.ElementRef }, { type: GroupInfoService }, { type: GroupsService }, { type: ChangeNotificationService }, { type: DetailsService }, { type: EditService }, { type: FilterService }, { type: PDFService }, { type: ResponsiveService }, { type: i0.Renderer2 }, { type: ExcelService }, { type: CSVService }, { type: i0.NgZone }, { type: ScrollSyncService }, { type: DomEventsService }, { type: ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: ColumnReorderService }, { type: ColumnInfoService }, { type: NavigationService }, { type: SortService }, { type: ScrollRequestService }, { type: i1$2.LocalizationService }, { type: ContextService }, { type: SizingOptionsService }, { type: AdaptiveGridService }, { type: RowReorderService }, { type: DataMappingService }, { type: GridAIRequestResponseService }, { type: IdService }, { type: SearchService }], propDecorators: { data: [{
|
|
36758
36713
|
type: Input
|
|
36759
36714
|
}], pageSize: [{
|
|
36760
36715
|
type: Input
|
|
@@ -39719,7 +39674,7 @@ class FilterToolWrapperComponent {
|
|
|
39719
39674
|
{{ctx?.localization.get('filterClearAllButton')}}
|
|
39720
39675
|
</button>
|
|
39721
39676
|
</div>
|
|
39722
|
-
`, isInline: true, dependencies: [{ kind: "component", type: i1$6.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"] }] });
|
|
39677
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i1$6.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
39723
39678
|
}
|
|
39724
39679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterToolWrapperComponent, decorators: [{
|
|
39725
39680
|
type: Component,
|
|
@@ -41190,158 +41145,6 @@ class GridSmartBoxSearchEvent extends SmartBoxSearchEvent {
|
|
|
41190
41145
|
}
|
|
41191
41146
|
}
|
|
41192
41147
|
|
|
41193
|
-
const SIZES_MAP = {
|
|
41194
|
-
small: 'sm',
|
|
41195
|
-
medium: 'md',
|
|
41196
|
-
large: 'lg'
|
|
41197
|
-
};
|
|
41198
|
-
/**
|
|
41199
|
-
* @hidden
|
|
41200
|
-
*/
|
|
41201
|
-
class SegmentedControlComponent {
|
|
41202
|
-
renderer;
|
|
41203
|
-
wrapper;
|
|
41204
|
-
cdr;
|
|
41205
|
-
zone;
|
|
41206
|
-
hostClasses = true;
|
|
41207
|
-
hostRole = 'group';
|
|
41208
|
-
thumb;
|
|
41209
|
-
/**
|
|
41210
|
-
* Specifies the collection of buttons that will be rendered inside the SegmentedControlComponent.
|
|
41211
|
-
*/
|
|
41212
|
-
buttons = [];
|
|
41213
|
-
/**
|
|
41214
|
-
* Sets the padding of the control.
|
|
41215
|
-
*
|
|
41216
|
-
* @default undefined
|
|
41217
|
-
*/
|
|
41218
|
-
set size(size) {
|
|
41219
|
-
const newSize = size;
|
|
41220
|
-
this.handleSizeClass(newSize, this._size);
|
|
41221
|
-
this._size = newSize;
|
|
41222
|
-
}
|
|
41223
|
-
get size() {
|
|
41224
|
-
return this._size;
|
|
41225
|
-
}
|
|
41226
|
-
/**
|
|
41227
|
-
* Fires when a button is clicked.
|
|
41228
|
-
*/
|
|
41229
|
-
buttonClick = new EventEmitter();
|
|
41230
|
-
ngAfterViewInit() {
|
|
41231
|
-
this.handleSizeClass(this._size, null);
|
|
41232
|
-
this.selectedButtonIndex = this.buttons.indexOf(this.buttons.find(b => b.selected)) || 0;
|
|
41233
|
-
this.cdr.detectChanges();
|
|
41234
|
-
this.zone.onStable.pipe(take(1)).subscribe(() => this.showSelectionIndicator());
|
|
41235
|
-
}
|
|
41236
|
-
handleClick(button, index) {
|
|
41237
|
-
this.selectedButtonIndex = index;
|
|
41238
|
-
this.cdr.detectChanges();
|
|
41239
|
-
this.buttonClick.emit(button);
|
|
41240
|
-
this.showSelectionIndicator();
|
|
41241
|
-
}
|
|
41242
|
-
getInnerIconClass(button) {
|
|
41243
|
-
const baseClass = 'k-segmented-control-button-icon';
|
|
41244
|
-
return button.iconInnerCssClass ? `${baseClass} ${button.iconInnerCssClass}` : baseClass;
|
|
41245
|
-
}
|
|
41246
|
-
constructor(renderer, wrapper, cdr, zone) {
|
|
41247
|
-
this.renderer = renderer;
|
|
41248
|
-
this.wrapper = wrapper;
|
|
41249
|
-
this.cdr = cdr;
|
|
41250
|
-
this.zone = zone;
|
|
41251
|
-
}
|
|
41252
|
-
showSelectionIndicator() {
|
|
41253
|
-
const element = this.wrapper.nativeElement;
|
|
41254
|
-
const controlRect = element.getBoundingClientRect();
|
|
41255
|
-
const selectedItem = element.querySelector('.k-segmented-control-button.k-selected');
|
|
41256
|
-
const selectionIndicator = this.thumb ? this.thumb.nativeElement : null;
|
|
41257
|
-
if (!selectedItem || !selectionIndicator) {
|
|
41258
|
-
return;
|
|
41259
|
-
}
|
|
41260
|
-
const itemRect = selectedItem.getBoundingClientRect();
|
|
41261
|
-
const left = itemRect.left - controlRect.left;
|
|
41262
|
-
const right = controlRect.right - itemRect.right;
|
|
41263
|
-
this.renderer.setStyle(selectionIndicator, 'left', `${left}px`);
|
|
41264
|
-
this.renderer.setStyle(selectionIndicator, 'right', `${right}px`);
|
|
41265
|
-
}
|
|
41266
|
-
selectedButtonIndex = 0;
|
|
41267
|
-
_size;
|
|
41268
|
-
handleSizeClass(newValue, prevValue) {
|
|
41269
|
-
if (!this.wrapper) {
|
|
41270
|
-
return;
|
|
41271
|
-
}
|
|
41272
|
-
const elem = this.wrapper.nativeElement;
|
|
41273
|
-
const classToRemove = prevValue ? `k-segmented-control-${SIZES_MAP[prevValue]}` : null;
|
|
41274
|
-
const classToAdd = newValue ? `k-segmented-control-${SIZES_MAP[newValue]}` : null;
|
|
41275
|
-
classToRemove && this.renderer.removeClass(elem, classToRemove);
|
|
41276
|
-
classToAdd && this.renderer.addClass(elem, classToAdd);
|
|
41277
|
-
}
|
|
41278
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SegmentedControlComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
41279
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: SegmentedControlComponent, isStandalone: true, selector: "kendo-segmented-control", inputs: { buttons: "buttons", size: "size" }, outputs: { buttonClick: "buttonClick" }, host: { properties: { "class.k-segmented-control": "this.hostClasses", "class.k-segmented-control-stretched": "this.hostClasses", "attr.role": "this.hostRole" } }, viewQueries: [{ propertyName: "thumb", first: true, predicate: ["thumb"], descendants: true }], ngImport: i0, template: `
|
|
41280
|
-
<div class="k-segmented-control-thumb" #thumb [attr.aria-hidden]="true"></div>
|
|
41281
|
-
@for (button of buttons; track $index; let idx = $index) {
|
|
41282
|
-
<button type="button"
|
|
41283
|
-
class="k-segmented-control-button"
|
|
41284
|
-
[class.k-disabled]="button.disabled"
|
|
41285
|
-
[attr.disabled]="button.disabled ? true : null"
|
|
41286
|
-
(click)="handleClick(button, idx)"
|
|
41287
|
-
[class.k-selected]="selectedButtonIndex === idx"
|
|
41288
|
-
[attr.aria-pressed]="selectedButtonIndex === idx ? 'true' : 'false'">
|
|
41289
|
-
<kendo-icon-wrapper
|
|
41290
|
-
[innerCssClass]="getInnerIconClass(button)"
|
|
41291
|
-
[name]="button.icon"
|
|
41292
|
-
[svgIcon]="button.svgIcon">
|
|
41293
|
-
</kendo-icon-wrapper>
|
|
41294
|
-
<span class="k-segmented-control-button-text">{{button.text}}</span>
|
|
41295
|
-
</button>
|
|
41296
|
-
}
|
|
41297
|
-
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
41298
|
-
}
|
|
41299
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SegmentedControlComponent, decorators: [{
|
|
41300
|
-
type: Component,
|
|
41301
|
-
args: [{
|
|
41302
|
-
selector: 'kendo-segmented-control',
|
|
41303
|
-
standalone: true,
|
|
41304
|
-
imports: [IconWrapperComponent],
|
|
41305
|
-
template: `
|
|
41306
|
-
<div class="k-segmented-control-thumb" #thumb [attr.aria-hidden]="true"></div>
|
|
41307
|
-
@for (button of buttons; track $index; let idx = $index) {
|
|
41308
|
-
<button type="button"
|
|
41309
|
-
class="k-segmented-control-button"
|
|
41310
|
-
[class.k-disabled]="button.disabled"
|
|
41311
|
-
[attr.disabled]="button.disabled ? true : null"
|
|
41312
|
-
(click)="handleClick(button, idx)"
|
|
41313
|
-
[class.k-selected]="selectedButtonIndex === idx"
|
|
41314
|
-
[attr.aria-pressed]="selectedButtonIndex === idx ? 'true' : 'false'">
|
|
41315
|
-
<kendo-icon-wrapper
|
|
41316
|
-
[innerCssClass]="getInnerIconClass(button)"
|
|
41317
|
-
[name]="button.icon"
|
|
41318
|
-
[svgIcon]="button.svgIcon">
|
|
41319
|
-
</kendo-icon-wrapper>
|
|
41320
|
-
<span class="k-segmented-control-button-text">{{button.text}}</span>
|
|
41321
|
-
</button>
|
|
41322
|
-
}
|
|
41323
|
-
`
|
|
41324
|
-
}]
|
|
41325
|
-
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }], propDecorators: { hostClasses: [{
|
|
41326
|
-
type: HostBinding,
|
|
41327
|
-
args: ['class.k-segmented-control']
|
|
41328
|
-
}, {
|
|
41329
|
-
type: HostBinding,
|
|
41330
|
-
args: ['class.k-segmented-control-stretched']
|
|
41331
|
-
}], hostRole: [{
|
|
41332
|
-
type: HostBinding,
|
|
41333
|
-
args: ['attr.role']
|
|
41334
|
-
}], thumb: [{
|
|
41335
|
-
type: ViewChild,
|
|
41336
|
-
args: ['thumb']
|
|
41337
|
-
}], buttons: [{
|
|
41338
|
-
type: Input
|
|
41339
|
-
}], size: [{
|
|
41340
|
-
type: Input
|
|
41341
|
-
}], buttonClick: [{
|
|
41342
|
-
type: Output
|
|
41343
|
-
}] } });
|
|
41344
|
-
|
|
41345
41148
|
/**
|
|
41346
41149
|
* Renders the prompt suggestion content.
|
|
41347
41150
|
*
|
|
@@ -41727,22 +41530,8 @@ class SmartBoxComponent {
|
|
|
41727
41530
|
aiAssistantHistory = [];
|
|
41728
41531
|
searchHistory = [];
|
|
41729
41532
|
semanticSearchHistory = [];
|
|
41730
|
-
|
|
41731
|
-
|
|
41732
|
-
if ((this.searchMode?.enabled || this.semanticSearchMode?.enabled) && this.aiAssistantMode?.enabled) {
|
|
41733
|
-
if (this.searchMode?.enabled && !this.semanticSearchMode?.enabled) {
|
|
41734
|
-
buttons.push({ text: this.messageFor('smartBoxSearchModePopupButton'), svgIcon: searchIcon, icon: 'search', selected: this.selectedView === 'search' });
|
|
41735
|
-
}
|
|
41736
|
-
else if (!this.searchMode?.enabled && this.semanticSearchMode?.enabled) {
|
|
41737
|
-
buttons.push({ text: this.messageFor('smartBoxSearchModePopupButton'), svgIcon: zoomSparkleIcon, icon: 'zoom-sparkle', selected: this.selectedView === 'semanticSearch', iconInnerCssClass: this.selectedView === 'semanticSearch' ? 'k-accent-icon' : '' });
|
|
41738
|
-
}
|
|
41739
|
-
else if (this.searchMode?.enabled && this.semanticSearchMode?.enabled) {
|
|
41740
|
-
buttons.push({ text: this.messageFor('smartBoxSearchModePopupButton'), svgIcon: searchIcon, icon: 'search', selected: this.selectedView === 'search' || this.selectedView === 'semanticSearch', iconInnerCssClass: this.selectedView === 'semanticSearch' ? 'k-accent-icon' : '' });
|
|
41741
|
-
}
|
|
41742
|
-
buttons.push({ text: this.messageFor('smartBoxAIAssistantModePopupButton'), svgIcon: sparklesIcon, icon: 'sparkles', selected: this.selectedView === 'aiAssistant', iconInnerCssClass: this.selectedView === 'aiAssistant' ? 'k-accent-icon' : '' });
|
|
41743
|
-
}
|
|
41744
|
-
return buttons;
|
|
41745
|
-
}
|
|
41533
|
+
segmentedControlButtons = [];
|
|
41534
|
+
segmentedControlSelectedIndex = 0;
|
|
41746
41535
|
get prefixIconName() {
|
|
41747
41536
|
switch (this.selectedView) {
|
|
41748
41537
|
case 'search':
|
|
@@ -41773,8 +41562,9 @@ class SmartBoxComponent {
|
|
|
41773
41562
|
formatDate(date, format) {
|
|
41774
41563
|
return this.intl.formatDate(date, format);
|
|
41775
41564
|
}
|
|
41776
|
-
onModeChange(
|
|
41565
|
+
onModeChange(index) {
|
|
41777
41566
|
this.clearTypingTimeout();
|
|
41567
|
+
const button = this.segmentedControlButtons[index];
|
|
41778
41568
|
let previousView;
|
|
41779
41569
|
if (this.searchListData.length > 0) {
|
|
41780
41570
|
previousView = this.searchListData.find(i => i.selected)?.text;
|
|
@@ -41799,6 +41589,7 @@ class SmartBoxComponent {
|
|
|
41799
41589
|
if (!previousView) {
|
|
41800
41590
|
this.updateSearchListData();
|
|
41801
41591
|
}
|
|
41592
|
+
this.updateSegmentedControlState();
|
|
41802
41593
|
this.modeChange.emit(this.selectedView);
|
|
41803
41594
|
if (this.selectedView === 'search') {
|
|
41804
41595
|
this.input.nativeElement.value = this.lastSearchValue || '';
|
|
@@ -41819,6 +41610,7 @@ class SmartBoxComponent {
|
|
|
41819
41610
|
else {
|
|
41820
41611
|
this.input.nativeElement.value = '';
|
|
41821
41612
|
}
|
|
41613
|
+
this.updateSegmentedControlState();
|
|
41822
41614
|
this.modeChange.emit(this.selectedView);
|
|
41823
41615
|
this.cdr.markForCheck();
|
|
41824
41616
|
}
|
|
@@ -42256,10 +42048,12 @@ class SmartBoxComponent {
|
|
|
42256
42048
|
const modeSettings = this[`${this._activeMode}Mode`];
|
|
42257
42049
|
if (modeSettings?.enabled) {
|
|
42258
42050
|
this.selectedView = this._activeMode;
|
|
42051
|
+
this.updateSegmentedControlState();
|
|
42259
42052
|
return;
|
|
42260
42053
|
}
|
|
42261
42054
|
}
|
|
42262
42055
|
if (this.selectedView && this[`${this.selectedView}Mode`]?.enabled) {
|
|
42056
|
+
this.updateSegmentedControlState();
|
|
42263
42057
|
return;
|
|
42264
42058
|
}
|
|
42265
42059
|
if (this.searchMode?.enabled) {
|
|
@@ -42275,6 +42069,36 @@ class SmartBoxComponent {
|
|
|
42275
42069
|
else {
|
|
42276
42070
|
this.selectedView = null;
|
|
42277
42071
|
}
|
|
42072
|
+
this.updateSegmentedControlState();
|
|
42073
|
+
}
|
|
42074
|
+
updateSegmentedControlState() {
|
|
42075
|
+
const buttons = [];
|
|
42076
|
+
if ((this.searchMode?.enabled || this.semanticSearchMode?.enabled) && this.aiAssistantMode?.enabled) {
|
|
42077
|
+
if (this.searchMode?.enabled) {
|
|
42078
|
+
buttons.push({
|
|
42079
|
+
text: this.messageFor('smartBoxSearchModePopupButton'),
|
|
42080
|
+
svgIcon: searchIcon,
|
|
42081
|
+
icon: 'search',
|
|
42082
|
+
iconInnerCssClass: this.selectedView === 'semanticSearch' ? 'k-accent-icon' : ''
|
|
42083
|
+
});
|
|
42084
|
+
}
|
|
42085
|
+
else {
|
|
42086
|
+
buttons.push({
|
|
42087
|
+
text: this.messageFor('smartBoxSearchModePopupButton'),
|
|
42088
|
+
svgIcon: zoomSparkleIcon,
|
|
42089
|
+
icon: 'zoom-sparkle',
|
|
42090
|
+
iconInnerCssClass: this.selectedView === 'semanticSearch' ? 'k-accent-icon' : ''
|
|
42091
|
+
});
|
|
42092
|
+
}
|
|
42093
|
+
buttons.push({
|
|
42094
|
+
text: this.messageFor('smartBoxAIAssistantModePopupButton'),
|
|
42095
|
+
svgIcon: sparklesIcon,
|
|
42096
|
+
icon: 'sparkles',
|
|
42097
|
+
iconInnerCssClass: this.selectedView === 'aiAssistant' ? 'k-accent-icon' : ''
|
|
42098
|
+
});
|
|
42099
|
+
}
|
|
42100
|
+
this.segmentedControlButtons = buttons;
|
|
42101
|
+
this.segmentedControlSelectedIndex = this.selectedView === 'aiAssistant' ? buttons.length - 1 : 0;
|
|
42278
42102
|
}
|
|
42279
42103
|
updateHistoryData() {
|
|
42280
42104
|
if (this.searchHistorySettings && this.searchHistory.length > this.searchHistorySettings.size) {
|
|
@@ -42403,8 +42227,10 @@ class SmartBoxComponent {
|
|
|
42403
42227
|
<ng-template #popupTemplate>
|
|
42404
42228
|
@if (segmentedControlButtons.length > 0) {
|
|
42405
42229
|
<kendo-segmented-control
|
|
42406
|
-
[
|
|
42407
|
-
|
|
42230
|
+
[items]="segmentedControlButtons"
|
|
42231
|
+
[selected]="segmentedControlSelectedIndex"
|
|
42232
|
+
layoutMode="stretch"
|
|
42233
|
+
(selectedChange)="onModeChange($event)"
|
|
42408
42234
|
size="small">
|
|
42409
42235
|
</kendo-segmented-control>
|
|
42410
42236
|
}
|
|
@@ -42576,14 +42402,14 @@ class SmartBoxComponent {
|
|
|
42576
42402
|
</div>
|
|
42577
42403
|
</div>
|
|
42578
42404
|
</ng-template>
|
|
42579
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
42405
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: SpeechToTextButtonComponent, selector: "button[kendoSpeechToTextButton]", inputs: ["disabled", "size", "rounded", "fillMode", "themeColor", "integrationMode", "lang", "continuous", "interimResults", "maxAlternatives"], outputs: ["start", "end", "result", "error", "click"], exportAs: ["kendoSpeechToTextButton"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: SegmentedControlComponent, selector: "kendo-segmented-control", inputs: ["items", "layoutMode", "size", "selected"], outputs: ["selectedChange"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
|
|
42580
42406
|
}
|
|
42581
42407
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SmartBoxComponent, decorators: [{
|
|
42582
42408
|
type: Component,
|
|
42583
42409
|
args: [{
|
|
42584
42410
|
selector: 'kendo-smartbox',
|
|
42585
42411
|
standalone: true,
|
|
42586
|
-
imports: [
|
|
42412
|
+
imports: [EventsOutsideAngularDirective, IconWrapperComponent, SpeechToTextButtonComponent, ButtonComponent, SegmentedControlComponent, TemplateContextDirective],
|
|
42587
42413
|
providers: [DataService, SelectionService$1, NavigationService$1, DisabledItemsService],
|
|
42588
42414
|
template: `
|
|
42589
42415
|
<span #innerWrapper
|
|
@@ -42677,8 +42503,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
42677
42503
|
<ng-template #popupTemplate>
|
|
42678
42504
|
@if (segmentedControlButtons.length > 0) {
|
|
42679
42505
|
<kendo-segmented-control
|
|
42680
|
-
[
|
|
42681
|
-
|
|
42506
|
+
[items]="segmentedControlButtons"
|
|
42507
|
+
[selected]="segmentedControlSelectedIndex"
|
|
42508
|
+
layoutMode="stretch"
|
|
42509
|
+
(selectedChange)="onModeChange($event)"
|
|
42682
42510
|
size="small">
|
|
42683
42511
|
</kendo-segmented-control>
|
|
42684
42512
|
}
|
|
@@ -43678,5 +43506,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
43678
43506
|
* Generated bundle index. Do not edit.
|
|
43679
43507
|
*/
|
|
43680
43508
|
|
|
43681
|
-
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective,
|
|
43509
|
+
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, CELL_CONTEXT, CSVCommandDirective, CSVCommandToolbarDirective, CSVComponent, CSVExportEvent, CSVModule, CSVService, 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_AI_REQUEST_OPTIONS, 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, FilterOperatorBase, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridAIAssistantResponseErrorEvent, GridAIAssistantResponseSuccessEvent, GridClipboardDirective, GridComponent, GridModule, GridSmartBoxHistoryItemTemplateDirective, GridSmartBoxPromptSuggestionTemplateDirective, GridSmartBoxResponseErrorEvent, GridSmartBoxResponseSuccessEvent, GridSmartBoxSearchEvent, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupCommandToolbarDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, HighlightDirective, 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_CSV_EXPORT, 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, MultiCheckboxFilterComponent, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RedoCommandToolbarDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectAllToolbarToolComponent, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SmartBoxToolbarToolComponent, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, UndoCommandToolbarDirective, UndoRedoDirective, UndoRedoEvent, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable };
|
|
43682
43510
|
|