@progress/kendo-angular-treelist 24.0.0-develop.20 → 24.0.0-develop.21
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.
|
@@ -23,7 +23,7 @@ import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/k
|
|
|
23
23
|
import { DragTargetContainerDirective, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
|
24
24
|
import { orderBy, isCompositeFilterDescriptor, process, aggregateBy } from '@progress/kendo-data-query';
|
|
25
25
|
import * as i1$2 from '@angular/platform-browser';
|
|
26
|
-
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon,
|
|
26
|
+
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, chevronDownIcon, chevronRightIcon, chevronLeftIcon, reorderIcon, filterClearIcon, filterIcon, chevronUpIcon, columnsIcon, sortAscSmallIcon, sortDescSmallIcon, displayInlineFlexIcon, maxWidthIcon, moreVerticalIcon, fileExcelIcon, filePdfIcon } from '@progress/kendo-svg-icons';
|
|
27
27
|
import * as i107 from '@progress/kendo-angular-pager';
|
|
28
28
|
import { PagerTemplateDirective, PagerContextService, PagerNavigationService, KENDO_PAGER } from '@progress/kendo-angular-pager';
|
|
29
29
|
import { getter, setter } from '@progress/kendo-common';
|
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
|
52
|
-
publishDate:
|
|
53
|
-
version: '24.0.0-develop.
|
|
52
|
+
publishDate: 1778161097,
|
|
53
|
+
version: '24.0.0-develop.21',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -6272,9 +6272,9 @@ class CellComponent {
|
|
|
6272
6272
|
get childColumns() {
|
|
6273
6273
|
return columnsToRender([this.column]);
|
|
6274
6274
|
}
|
|
6275
|
-
|
|
6276
|
-
|
|
6277
|
-
|
|
6275
|
+
chevronDownIcon = chevronDownIcon;
|
|
6276
|
+
chevronRightIcon = chevronRightIcon;
|
|
6277
|
+
chevronLeftIcon = chevronLeftIcon;
|
|
6278
6278
|
reorderIcon = reorderIcon;
|
|
6279
6279
|
noneIcon = {
|
|
6280
6280
|
name: 'none',
|
|
@@ -6315,20 +6315,16 @@ class CellComponent {
|
|
|
6315
6315
|
context.rowIndex = this.viewItem.rowIndex;
|
|
6316
6316
|
}
|
|
6317
6317
|
get arrowIcon() {
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
6322
|
-
'caret-alt-down';
|
|
6323
|
-
return icon;
|
|
6318
|
+
if (this.isExpanded) {
|
|
6319
|
+
return 'chevron-down';
|
|
6320
|
+
}
|
|
6321
|
+
return this.localization.rtl ? 'chevron-left' : 'chevron-right';
|
|
6324
6322
|
}
|
|
6325
6323
|
get arrowSVGIcon() {
|
|
6326
|
-
|
|
6327
|
-
|
|
6328
|
-
|
|
6329
|
-
|
|
6330
|
-
this.caretAltDownIcon;
|
|
6331
|
-
return icon;
|
|
6324
|
+
if (this.isExpanded) {
|
|
6325
|
+
return this.chevronDownIcon;
|
|
6326
|
+
}
|
|
6327
|
+
return this.localization.rtl ? this.chevronLeftIcon : this.chevronRightIcon;
|
|
6332
6328
|
}
|
|
6333
6329
|
messageFor(token) {
|
|
6334
6330
|
return this.localization.get(token);
|
|
@@ -9806,7 +9802,7 @@ class FilterCellOperatorsComponent {
|
|
|
9806
9802
|
(keydown)="clearKeydown($event)">
|
|
9807
9803
|
</button>
|
|
9808
9804
|
}
|
|
9809
|
-
`, 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: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
9805
|
+
`, 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: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
9810
9806
|
}
|
|
9811
9807
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
9812
9808
|
type: Component,
|
|
@@ -12814,7 +12810,7 @@ class FilterMenuContainerComponent {
|
|
|
12814
12810
|
</div>
|
|
12815
12811
|
</div>
|
|
12816
12812
|
</form>
|
|
12817
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.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: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
12813
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.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: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
12818
12814
|
}
|
|
12819
12815
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
|
|
12820
12816
|
type: Component,
|
|
@@ -23456,7 +23452,7 @@ class ColumnChooserComponent {
|
|
|
23456
23452
|
(columnChange)="onChange($event)">
|
|
23457
23453
|
</kendo-treelist-columnlist>
|
|
23458
23454
|
</ng-template>
|
|
23459
|
-
`, 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"
|
|
23455
|
+
`, 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"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: ColumnListComponent, selector: "kendo-treelist-columnlist", inputs: ["columns", "autoSync", "ariaLabel", "allowHideAll", "applyText", "resetText", "actionsClass", "isLast", "isExpanded", "service"], outputs: ["reset", "apply", "columnChange"] }] });
|
|
23460
23456
|
}
|
|
23461
23457
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColumnChooserComponent, decorators: [{
|
|
23462
23458
|
type: Component,
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778161097,
|
|
11
|
+
"version": "24.0.0-develop.21",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.21",
|
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package": {
|
|
40
40
|
"productName": "Kendo UI for Angular",
|
|
41
41
|
"productCode": "KENDOUIANGULAR",
|
|
42
|
-
"publishDate":
|
|
42
|
+
"publishDate": 1778161097,
|
|
43
43
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
@@ -52,26 +52,26 @@
|
|
|
52
52
|
"@progress/kendo-data-query": "^1.7.3",
|
|
53
53
|
"@progress/kendo-drawing": "^1.25.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.11.0",
|
|
55
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
56
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
57
|
-
"@progress/kendo-angular-dateinputs": "24.0.0-develop.
|
|
58
|
-
"@progress/kendo-angular-dropdowns": "24.0.0-develop.
|
|
59
|
-
"@progress/kendo-angular-excel-export": "24.0.0-develop.
|
|
60
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
61
|
-
"@progress/kendo-angular-inputs": "24.0.0-develop.
|
|
62
|
-
"@progress/kendo-angular-intl": "24.0.0-develop.
|
|
63
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
64
|
-
"@progress/kendo-angular-label": "24.0.0-develop.
|
|
65
|
-
"@progress/kendo-angular-pager": "24.0.0-develop.
|
|
66
|
-
"@progress/kendo-angular-pdf-export": "24.0.0-develop.
|
|
67
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
68
|
-
"@progress/kendo-angular-toolbar": "24.0.0-develop.
|
|
69
|
-
"@progress/kendo-angular-utils": "24.0.0-develop.
|
|
55
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.21",
|
|
56
|
+
"@progress/kendo-angular-common": "24.0.0-develop.21",
|
|
57
|
+
"@progress/kendo-angular-dateinputs": "24.0.0-develop.21",
|
|
58
|
+
"@progress/kendo-angular-dropdowns": "24.0.0-develop.21",
|
|
59
|
+
"@progress/kendo-angular-excel-export": "24.0.0-develop.21",
|
|
60
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.21",
|
|
61
|
+
"@progress/kendo-angular-inputs": "24.0.0-develop.21",
|
|
62
|
+
"@progress/kendo-angular-intl": "24.0.0-develop.21",
|
|
63
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.21",
|
|
64
|
+
"@progress/kendo-angular-label": "24.0.0-develop.21",
|
|
65
|
+
"@progress/kendo-angular-pager": "24.0.0-develop.21",
|
|
66
|
+
"@progress/kendo-angular-pdf-export": "24.0.0-develop.21",
|
|
67
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.21",
|
|
68
|
+
"@progress/kendo-angular-toolbar": "24.0.0-develop.21",
|
|
69
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.21",
|
|
70
70
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"tslib": "^2.3.1",
|
|
74
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
74
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.21",
|
|
75
75
|
"@progress/kendo-common": "^1.0.1",
|
|
76
76
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
77
77
|
},
|
|
@@ -43,9 +43,9 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
|
43
43
|
get isBoundColumn(): boolean;
|
|
44
44
|
get isSpanColumn(): boolean;
|
|
45
45
|
get childColumns(): ColumnComponent[];
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
chevronDownIcon: SVGIcon;
|
|
47
|
+
chevronRightIcon: SVGIcon;
|
|
48
|
+
chevronLeftIcon: SVGIcon;
|
|
49
49
|
reorderIcon: SVGIcon;
|
|
50
50
|
noneIcon: SVGIcon;
|
|
51
51
|
cellContext: any;
|
|
@@ -9,13 +9,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
|
11
11
|
// peer dep of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '24.0.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '24.0.0-develop.21',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '24.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-dialog': '24.0.0-develop.21',
|
|
15
15
|
// peer dependency of kendo-angular-icons
|
|
16
16
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
17
17
|
// peer dependency of kendo-angular-dateinputs
|
|
18
|
-
'@progress/kendo-angular-navigation': '24.0.0-develop.
|
|
18
|
+
'@progress/kendo-angular-navigation': '24.0.0-develop.21',
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|