@progress/kendo-angular-treelist 19.3.0-develop.4 → 19.3.0-develop.6
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/esm2022/column-menu/column-menu.component.mjs +1 -1
- package/esm2022/filtering/cell/autocomplete-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -2
- package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/string-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -2
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/utils.mjs +0 -4
- package/fesm2022/progress-kendo-angular-treelist.mjs +3 -7
- package/package.json +18 -18
- package/schematics/ngAdd/index.js +3 -3
- package/utils.d.ts +0 -4
@@ -23,8 +23,8 @@ import { IdService } from '../common/id.service';
|
|
23
23
|
import { ContextService } from '../common/provider.service';
|
24
24
|
import { ColumnMenuErrorMessages } from '../common/error-messages';
|
25
25
|
import { Subscription } from 'rxjs';
|
26
|
-
import { replaceMessagePlaceholder } from '../utils';
|
27
26
|
import { MenuTabbingService } from '../filtering/menu/menu-tabbing.service';
|
27
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
28
28
|
import * as i0 from "@angular/core";
|
29
29
|
import * as i1 from "../navigation/navigation.service";
|
30
30
|
import * as i2 from "../common/single-popup.service";
|
@@ -9,9 +9,9 @@ import { AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
|
|
9
9
|
import { ColumnComponent } from '../../columns/column.component';
|
10
10
|
import { FilterService } from '../filter.service';
|
11
11
|
import { BaseFilterCellComponent, localizeOperators } from '../base-filter-cell.component';
|
12
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
13
12
|
import { FilterInputDirective } from '../filter-input.directive';
|
14
13
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "../filter.service";
|
17
17
|
import * as i2 from "../../columns/column.component";
|
@@ -7,10 +7,10 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { BooleanFilterComponent } from '../boolean-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
13
12
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../filter.service";
|
16
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -7,10 +7,10 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { DateFilterComponent } from '../date-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
13
12
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../filter.service";
|
16
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -4,12 +4,11 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, EventEmitter, HostBinding, Input, Output, ViewChild } from '@angular/core';
|
6
6
|
import { NgIf } from '@angular/common';
|
7
|
-
import { Keys } from '@progress/kendo-angular-common';
|
7
|
+
import { Keys, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
8
8
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
9
9
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
10
10
|
import { filterClearIcon, filterIcon } from '@progress/kendo-svg-icons';
|
11
11
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
12
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
13
12
|
import { ColumnComponent } from '../../columns/column.component';
|
14
13
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
15
14
|
import * as i0 from "@angular/core";
|
@@ -7,10 +7,10 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { NumericFilterComponent } from '../numeric-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
12
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../filter.service";
|
16
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -7,11 +7,11 @@ import { ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { StringFilterComponent } from '../string-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
12
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
14
13
|
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "../filter.service";
|
17
17
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -4,12 +4,11 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, Input, HostBinding, ViewChild, ElementRef, ViewChildren, QueryList } from '@angular/core';
|
6
6
|
import { NgFor } from '@angular/common';
|
7
|
-
import { guid } from '@progress/kendo-angular-common';
|
7
|
+
import { guid, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
8
8
|
import { RadioButtonComponent } from '@progress/kendo-angular-inputs';
|
9
9
|
import { FilterService } from '../filter.service';
|
10
10
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
11
11
|
import { BooleanFilterComponent } from '../boolean-filter.component';
|
12
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
13
12
|
import { BooleanFilterRadioButtonDirective } from './filter-radio-button.directive';
|
14
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
15
14
|
import * as i0 from "@angular/core";
|
@@ -11,8 +11,8 @@ import { SinglePopupService } from '../../common/single-popup.service';
|
|
11
11
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
12
|
import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
|
13
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
15
14
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
15
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "../../common/single-popup.service";
|
18
18
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -12,7 +12,7 @@ import { setFilter, logicOperators } from '../base-filter-cell.component';
|
|
12
12
|
import { DateFilterMenuInputComponent } from './date-filter-menu-input.component';
|
13
13
|
import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
|
14
14
|
import { MenuTabbingService } from './menu-tabbing.service';
|
15
|
-
import { replaceMessagePlaceholder } from '
|
15
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "@progress/kendo-angular-l10n";
|
18
18
|
/**
|
@@ -8,8 +8,8 @@ import { FilterService } from '../filter.service';
|
|
8
8
|
import { FilterInputWrapperComponent } from "../filter-input-wrapper.component";
|
9
9
|
import { MenuTabbingService } from './menu-tabbing.service';
|
10
10
|
import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
|
11
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
12
11
|
import { ContextService } from '../../common/provider.service';
|
12
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
13
13
|
import * as i0 from "@angular/core";
|
14
14
|
import * as i1 from "../../common/provider.service";
|
15
15
|
/**
|
@@ -13,7 +13,7 @@ import { FilterMenuContainerComponent } from './filter-menu-container.component'
|
|
13
13
|
import { ContextService } from '../../common/provider.service';
|
14
14
|
import { NavigationService } from '../../navigation/navigation.service';
|
15
15
|
import { IdService } from '../../common/id.service';
|
16
|
-
import { replaceMessagePlaceholder } from '
|
16
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
17
17
|
import * as i0 from "@angular/core";
|
18
18
|
import * as i1 from "../filter.service";
|
19
19
|
import * as i2 from "../../common/single-popup.service";
|
@@ -10,7 +10,7 @@ import { FilterInputDirective } from '../filter-input.directive';
|
|
10
10
|
import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
|
11
11
|
import { MenuTabbingService } from './menu-tabbing.service';
|
12
12
|
import { ContextService } from '../../common/provider.service';
|
13
|
-
import { replaceMessagePlaceholder } from '
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../../common/provider.service";
|
16
16
|
/**
|
@@ -11,8 +11,8 @@ import { NumericFilterComponent } from '../numeric-filter.component';
|
|
11
11
|
import { setFilter, logicOperators } from '../base-filter-cell.component';
|
12
12
|
import { NumericFilterMenuInputComponent } from './numeric-filter-menu-input.component';
|
13
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
15
14
|
import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
|
15
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "@progress/kendo-angular-l10n";
|
18
18
|
/**
|
@@ -8,10 +8,10 @@ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
8
8
|
import { ColumnComponent } from "../../columns/column.component";
|
9
9
|
import { FilterService } from '../filter.service';
|
10
10
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
11
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
12
11
|
import { FilterInputDirective } from '../filter-input.directive';
|
13
12
|
import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
|
14
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "@progress/kendo-angular-l10n";
|
17
17
|
import * as i2 from "@angular/forms";
|
@@ -11,7 +11,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
11
11
|
import { setFilter, logicOperators } from '../base-filter-cell.component';
|
12
12
|
import { StringFilterMenuInputComponent } from './string-filter-menu-input.component';
|
13
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
-
import { replaceMessagePlaceholder } from '
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "@progress/kendo-angular-l10n";
|
17
17
|
/**
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
13
|
-
publishDate:
|
14
|
-
version: '19.3.0-develop.
|
13
|
+
publishDate: 1752079958,
|
14
|
+
version: '19.3.0-develop.6',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
package/esm2022/utils.mjs
CHANGED
@@ -111,7 +111,3 @@ export const cancelAnimationFrame = wnd.cancelAnimationFrame || wnd.msCancelRequ
|
|
111
111
|
/** @hidden */
|
112
112
|
export const isColumnEditable = (column, formGroup) => column.isEditable !== false &&
|
113
113
|
(column.editTemplate || (formGroup && column.field && formGroup.get(column.field)));
|
114
|
-
/**
|
115
|
-
* @hidden
|
116
|
-
*/
|
117
|
-
export const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
@@ -5,7 +5,7 @@
|
|
5
5
|
import * as i0 from '@angular/core';
|
6
6
|
import { Directive, Optional, EventEmitter, Injectable, QueryList, Input, ContentChildren, ContentChild, InjectionToken, forwardRef, Component, SkipSelf, Host, isDevMode, SecurityContext, Inject, Output, HostBinding, Pipe, ViewChild, ViewChildren, Self, HostListener, NgZone, TemplateRef, ChangeDetectionStrategy, ViewEncapsulation, NgModule } from '@angular/core';
|
7
7
|
import * as i1$4 from '@progress/kendo-angular-common';
|
8
|
-
import { isDocumentAvailable, isPresent as isPresent$1, hasClasses as hasClasses$1, Keys, anyChanged, isChanged as isChanged$1, ResizeSensorComponent, EventsOutsideAngularDirective, KendoInput, guid, DraggableDirective, TemplateContextDirective, hasObservers, ResizeBatchService } from '@progress/kendo-angular-common';
|
8
|
+
import { isDocumentAvailable, isPresent as isPresent$1, hasClasses as hasClasses$1, Keys, anyChanged, isChanged as isChanged$1, ResizeSensorComponent, EventsOutsideAngularDirective, KendoInput, replaceMessagePlaceholder, guid, DraggableDirective, TemplateContextDirective, hasObservers, ResizeBatchService } from '@progress/kendo-angular-common';
|
9
9
|
import * as i2 from '@progress/kendo-angular-icons';
|
10
10
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
11
11
|
import { DatePickerComponent, DatePickerCustomMessagesComponent, CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, YearViewService, NavigationService as NavigationService$1 } from '@progress/kendo-angular-dateinputs';
|
@@ -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: '19.3.0-develop.
|
52
|
+
publishDate: 1752079958,
|
53
|
+
version: '19.3.0-develop.6',
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
55
55
|
};
|
56
56
|
|
@@ -694,10 +694,6 @@ const cancelAnimationFrame = wnd.cancelAnimationFrame || wnd.msCancelRequestAnim
|
|
694
694
|
/** @hidden */
|
695
695
|
const isColumnEditable = (column, formGroup) => column.isEditable !== false &&
|
696
696
|
(column.editTemplate || (formGroup && column.field && formGroup.get(column.field)));
|
697
|
-
/**
|
698
|
-
* @hidden
|
699
|
-
*/
|
700
|
-
const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
701
697
|
|
702
698
|
/**
|
703
699
|
* Represents the filter-cell template for the TreeList.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
3
|
-
"version": "19.3.0-develop.
|
3
|
+
"version": "19.3.0-develop.6",
|
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",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"package": {
|
25
25
|
"productName": "Kendo UI for Angular",
|
26
26
|
"productCode": "KENDOUIANGULAR",
|
27
|
-
"publishDate":
|
27
|
+
"publishDate": 1752079958,
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
29
29
|
}
|
30
30
|
},
|
@@ -37,26 +37,26 @@
|
|
37
37
|
"@progress/kendo-data-query": "^1.0.0",
|
38
38
|
"@progress/kendo-drawing": "^1.21.0",
|
39
39
|
"@progress/kendo-licensing": "^1.5.0",
|
40
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
41
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
42
|
-
"@progress/kendo-angular-dateinputs": "19.3.0-develop.
|
43
|
-
"@progress/kendo-angular-dropdowns": "19.3.0-develop.
|
44
|
-
"@progress/kendo-angular-excel-export": "19.3.0-develop.
|
45
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
46
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
47
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
48
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
49
|
-
"@progress/kendo-angular-label": "19.3.0-develop.
|
50
|
-
"@progress/kendo-angular-pager": "19.3.0-develop.
|
51
|
-
"@progress/kendo-angular-pdf-export": "19.3.0-develop.
|
52
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
53
|
-
"@progress/kendo-angular-toolbar": "19.3.0-develop.
|
54
|
-
"@progress/kendo-angular-utils": "19.3.0-develop.
|
40
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.6",
|
41
|
+
"@progress/kendo-angular-common": "19.3.0-develop.6",
|
42
|
+
"@progress/kendo-angular-dateinputs": "19.3.0-develop.6",
|
43
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.6",
|
44
|
+
"@progress/kendo-angular-excel-export": "19.3.0-develop.6",
|
45
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.6",
|
46
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.6",
|
47
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.6",
|
48
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.6",
|
49
|
+
"@progress/kendo-angular-label": "19.3.0-develop.6",
|
50
|
+
"@progress/kendo-angular-pager": "19.3.0-develop.6",
|
51
|
+
"@progress/kendo-angular-pdf-export": "19.3.0-develop.6",
|
52
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.6",
|
53
|
+
"@progress/kendo-angular-toolbar": "19.3.0-develop.6",
|
54
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.6",
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
56
56
|
},
|
57
57
|
"dependencies": {
|
58
58
|
"tslib": "^2.3.1",
|
59
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
59
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.6",
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
62
62
|
},
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
6
6
|
// peer dep of the dropdowns
|
7
|
-
'@progress/kendo-angular-treeview': '19.3.0-develop.
|
7
|
+
'@progress/kendo-angular-treeview': '19.3.0-develop.6',
|
8
8
|
// peer dependency of kendo-angular-inputs
|
9
|
-
'@progress/kendo-angular-dialog': '19.3.0-develop.
|
9
|
+
'@progress/kendo-angular-dialog': '19.3.0-develop.6',
|
10
10
|
// peer dependency of kendo-angular-icons
|
11
11
|
'@progress/kendo-svg-icons': '^4.0.0',
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
13
|
-
'@progress/kendo-angular-navigation': '19.3.0-develop.
|
13
|
+
'@progress/kendo-angular-navigation': '19.3.0-develop.6',
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|
package/utils.d.ts
CHANGED
@@ -78,7 +78,3 @@ export declare const requestAnimationFrame: any;
|
|
78
78
|
export declare const cancelAnimationFrame: any;
|
79
79
|
/** @hidden */
|
80
80
|
export declare const isColumnEditable: (column: any, formGroup: any) => boolean;
|
81
|
-
/**
|
82
|
-
* @hidden
|
83
|
-
*/
|
84
|
-
export declare const replaceMessagePlaceholder: (message: string, name: string, value: string) => string;
|