@progress/kendo-angular-listview 13.2.0 → 13.2.1-develop.10
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/esm2020/listview.component.mjs +7 -4
- package/esm2020/listview.module.mjs +17 -9
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-listview.mjs +25 -14
- package/fesm2020/progress-kendo-angular-listview.mjs +25 -14
- package/listview.component.d.ts +3 -2
- package/listview.module.d.ts +17 -9
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +6 -6
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Component, HostBinding, Input, Output, ContentChild, ChangeDetectionStrategy, EventEmitter, NgZone, Renderer2, ElementRef, ViewChild, ViewChildren, QueryList } from '@angular/core';
|
|
5
|
+
import { Component, HostBinding, Input, Output, ContentChild, ChangeDetectionStrategy, EventEmitter, NgZone, Renderer2, ElementRef, ViewChild, ViewChildren, QueryList, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { hasObservers, isChanged } from '@progress/kendo-angular-common';
|
|
7
7
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
8
8
|
import { packageMetadata } from './package-metadata';
|
|
@@ -40,10 +40,11 @@ const createControl = (source) => (acc, key) => {
|
|
|
40
40
|
* Represents the Kendo UI ListView component for Angular.
|
|
41
41
|
*/
|
|
42
42
|
export class ListViewComponent {
|
|
43
|
-
constructor(ngZone, element, renderer, editService, navigationService) {
|
|
43
|
+
constructor(ngZone, element, renderer, changeDetectorRef, editService, navigationService) {
|
|
44
44
|
this.ngZone = ngZone;
|
|
45
45
|
this.element = element;
|
|
46
46
|
this.renderer = renderer;
|
|
47
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
47
48
|
this.editService = editService;
|
|
48
49
|
this.navigationService = navigationService;
|
|
49
50
|
/**
|
|
@@ -273,6 +274,7 @@ export class ListViewComponent {
|
|
|
273
274
|
*/
|
|
274
275
|
editItem(index, group) {
|
|
275
276
|
this.editService.editItem(index, group);
|
|
277
|
+
this.changeDetectorRef.markForCheck();
|
|
276
278
|
}
|
|
277
279
|
/**
|
|
278
280
|
* Closes the editor for a given item ([see example]({% slug editing_template_forms_listview %}#toc-cancelling-editing)).
|
|
@@ -282,6 +284,7 @@ export class ListViewComponent {
|
|
|
282
284
|
*/
|
|
283
285
|
closeItem(index) {
|
|
284
286
|
this.editService.close(index);
|
|
287
|
+
this.changeDetectorRef.markForCheck();
|
|
285
288
|
}
|
|
286
289
|
/**
|
|
287
290
|
* @hidden
|
|
@@ -362,7 +365,7 @@ export class ListViewComponent {
|
|
|
362
365
|
this[action].emit(args);
|
|
363
366
|
}
|
|
364
367
|
}
|
|
365
|
-
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.EditService }, { token: i2.NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
368
|
+
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.EditService }, { token: i2.NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
366
369
|
ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ListViewComponent, selector: "kendo-listview", inputs: { data: "data", loading: "loading", containerStyle: "containerStyle", itemStyle: "itemStyle", containerClass: "containerClass", itemClass: "itemClass", containerLabel: "containerLabel", containerRole: "containerRole", listItemRole: "listItemRole", navigable: "navigable", pageSize: "pageSize", skip: "skip", pageable: "pageable", height: "height" }, outputs: { scrollBottom: "scrollBottom", pageChange: "pageChange", pageSizeChange: "pageSizeChange", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add" }, host: { properties: { "class.k-listview": "this.className", "class.k-listview-bordered": "this.className", "class.k-d-flex": "this.className" } }, providers: [
|
|
367
370
|
EditService,
|
|
368
371
|
NavigationService,
|
|
@@ -643,7 +646,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
643
646
|
</ng-template>
|
|
644
647
|
`
|
|
645
648
|
}]
|
|
646
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.EditService }, { type: i2.NavigationService }]; }, propDecorators: { className: [{
|
|
649
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: i1.EditService }, { type: i2.NavigationService }]; }, propDecorators: { className: [{
|
|
647
650
|
type: HostBinding,
|
|
648
651
|
args: ['class.k-listview']
|
|
649
652
|
}, {
|
|
@@ -40,16 +40,24 @@ const EDITING_DIRECTIVES = [
|
|
|
40
40
|
AddCommandDirective
|
|
41
41
|
];
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
44
|
+
* definition for the ListView component.
|
|
45
|
+
* @example
|
|
44
46
|
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
47
|
+
* ```ts
|
|
48
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
49
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
50
|
+
* import { NgModule } from '@angular/core';
|
|
51
|
+
* import { ListViewModule } from '@progress/kendo-angular-listview';
|
|
52
|
+
* import { AppComponent } from './app.component';
|
|
53
|
+
*
|
|
54
|
+
* @NgModule({
|
|
55
|
+
* declarations: [AppComponent],
|
|
56
|
+
* imports: [BrowserModule, BrowserAnimationsModule, ListViewModule],
|
|
57
|
+
* bootstrap: [AppComponent]
|
|
58
|
+
* })
|
|
59
|
+
* export class AppModule {}
|
|
60
|
+
*```
|
|
53
61
|
*/
|
|
54
62
|
export class ListViewModule {
|
|
55
63
|
}
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-listview',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.2.
|
|
12
|
+
publishDate: 1690460593,
|
|
13
|
+
version: '13.2.1-develop.10',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -27,8 +27,8 @@ const packageMetadata = {
|
|
|
27
27
|
name: '@progress/kendo-angular-listview',
|
|
28
28
|
productName: 'Kendo UI for Angular',
|
|
29
29
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
30
|
-
publishDate:
|
|
31
|
-
version: '13.2.
|
|
30
|
+
publishDate: 1690460593,
|
|
31
|
+
version: '13.2.1-develop.10',
|
|
32
32
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
33
33
|
};
|
|
34
34
|
|
|
@@ -577,10 +577,11 @@ const createControl = (source) => (acc, key) => {
|
|
|
577
577
|
* Represents the Kendo UI ListView component for Angular.
|
|
578
578
|
*/
|
|
579
579
|
class ListViewComponent {
|
|
580
|
-
constructor(ngZone, element, renderer, editService, navigationService) {
|
|
580
|
+
constructor(ngZone, element, renderer, changeDetectorRef, editService, navigationService) {
|
|
581
581
|
this.ngZone = ngZone;
|
|
582
582
|
this.element = element;
|
|
583
583
|
this.renderer = renderer;
|
|
584
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
584
585
|
this.editService = editService;
|
|
585
586
|
this.navigationService = navigationService;
|
|
586
587
|
/**
|
|
@@ -810,6 +811,7 @@ class ListViewComponent {
|
|
|
810
811
|
*/
|
|
811
812
|
editItem(index, group) {
|
|
812
813
|
this.editService.editItem(index, group);
|
|
814
|
+
this.changeDetectorRef.markForCheck();
|
|
813
815
|
}
|
|
814
816
|
/**
|
|
815
817
|
* Closes the editor for a given item ([see example]({% slug editing_template_forms_listview %}#toc-cancelling-editing)).
|
|
@@ -819,6 +821,7 @@ class ListViewComponent {
|
|
|
819
821
|
*/
|
|
820
822
|
closeItem(index) {
|
|
821
823
|
this.editService.close(index);
|
|
824
|
+
this.changeDetectorRef.markForCheck();
|
|
822
825
|
}
|
|
823
826
|
/**
|
|
824
827
|
* @hidden
|
|
@@ -899,7 +902,7 @@ class ListViewComponent {
|
|
|
899
902
|
this[action].emit(args);
|
|
900
903
|
}
|
|
901
904
|
}
|
|
902
|
-
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: EditService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
905
|
+
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: EditService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
903
906
|
ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ListViewComponent, selector: "kendo-listview", inputs: { data: "data", loading: "loading", containerStyle: "containerStyle", itemStyle: "itemStyle", containerClass: "containerClass", itemClass: "itemClass", containerLabel: "containerLabel", containerRole: "containerRole", listItemRole: "listItemRole", navigable: "navigable", pageSize: "pageSize", skip: "skip", pageable: "pageable", height: "height" }, outputs: { scrollBottom: "scrollBottom", pageChange: "pageChange", pageSizeChange: "pageSizeChange", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add" }, host: { properties: { "class.k-listview": "this.className", "class.k-listview-bordered": "this.className", "class.k-d-flex": "this.className" } }, providers: [
|
|
904
907
|
EditService,
|
|
905
908
|
NavigationService,
|
|
@@ -1180,7 +1183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1180
1183
|
</ng-template>
|
|
1181
1184
|
`
|
|
1182
1185
|
}]
|
|
1183
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: EditService }, { type: NavigationService }]; }, propDecorators: { className: [{
|
|
1186
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: EditService }, { type: NavigationService }]; }, propDecorators: { className: [{
|
|
1184
1187
|
type: HostBinding,
|
|
1185
1188
|
args: ['class.k-listview']
|
|
1186
1189
|
}, {
|
|
@@ -1720,16 +1723,24 @@ const EDITING_DIRECTIVES = [
|
|
|
1720
1723
|
AddCommandDirective
|
|
1721
1724
|
];
|
|
1722
1725
|
/**
|
|
1723
|
-
*
|
|
1726
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1727
|
+
* definition for the ListView component.
|
|
1728
|
+
* @example
|
|
1729
|
+
*
|
|
1730
|
+
* ```ts
|
|
1731
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
1732
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1733
|
+
* import { NgModule } from '@angular/core';
|
|
1734
|
+
* import { ListViewModule } from '@progress/kendo-angular-listview';
|
|
1735
|
+
* import { AppComponent } from './app.component';
|
|
1724
1736
|
*
|
|
1725
|
-
*
|
|
1726
|
-
*
|
|
1727
|
-
*
|
|
1728
|
-
*
|
|
1729
|
-
*
|
|
1730
|
-
*
|
|
1731
|
-
|
|
1732
|
-
* - [`EditTemplateDirective`]({% slug api_listview_editingdirective %})—The editing template directive.
|
|
1737
|
+
* @NgModule({
|
|
1738
|
+
* declarations: [AppComponent],
|
|
1739
|
+
* imports: [BrowserModule, BrowserAnimationsModule, ListViewModule],
|
|
1740
|
+
* bootstrap: [AppComponent]
|
|
1741
|
+
* })
|
|
1742
|
+
* export class AppModule {}
|
|
1743
|
+
*```
|
|
1733
1744
|
*/
|
|
1734
1745
|
class ListViewModule {
|
|
1735
1746
|
}
|
|
@@ -27,8 +27,8 @@ const packageMetadata = {
|
|
|
27
27
|
name: '@progress/kendo-angular-listview',
|
|
28
28
|
productName: 'Kendo UI for Angular',
|
|
29
29
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
30
|
-
publishDate:
|
|
31
|
-
version: '13.2.
|
|
30
|
+
publishDate: 1690460593,
|
|
31
|
+
version: '13.2.1-develop.10',
|
|
32
32
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
33
33
|
};
|
|
34
34
|
|
|
@@ -575,10 +575,11 @@ const createControl = (source) => (acc, key) => {
|
|
|
575
575
|
* Represents the Kendo UI ListView component for Angular.
|
|
576
576
|
*/
|
|
577
577
|
class ListViewComponent {
|
|
578
|
-
constructor(ngZone, element, renderer, editService, navigationService) {
|
|
578
|
+
constructor(ngZone, element, renderer, changeDetectorRef, editService, navigationService) {
|
|
579
579
|
this.ngZone = ngZone;
|
|
580
580
|
this.element = element;
|
|
581
581
|
this.renderer = renderer;
|
|
582
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
582
583
|
this.editService = editService;
|
|
583
584
|
this.navigationService = navigationService;
|
|
584
585
|
/**
|
|
@@ -808,6 +809,7 @@ class ListViewComponent {
|
|
|
808
809
|
*/
|
|
809
810
|
editItem(index, group) {
|
|
810
811
|
this.editService.editItem(index, group);
|
|
812
|
+
this.changeDetectorRef.markForCheck();
|
|
811
813
|
}
|
|
812
814
|
/**
|
|
813
815
|
* Closes the editor for a given item ([see example]({% slug editing_template_forms_listview %}#toc-cancelling-editing)).
|
|
@@ -817,6 +819,7 @@ class ListViewComponent {
|
|
|
817
819
|
*/
|
|
818
820
|
closeItem(index) {
|
|
819
821
|
this.editService.close(index);
|
|
822
|
+
this.changeDetectorRef.markForCheck();
|
|
820
823
|
}
|
|
821
824
|
/**
|
|
822
825
|
* @hidden
|
|
@@ -897,7 +900,7 @@ class ListViewComponent {
|
|
|
897
900
|
this[action].emit(args);
|
|
898
901
|
}
|
|
899
902
|
}
|
|
900
|
-
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: EditService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
903
|
+
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ListViewComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: EditService }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
901
904
|
ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ListViewComponent, selector: "kendo-listview", inputs: { data: "data", loading: "loading", containerStyle: "containerStyle", itemStyle: "itemStyle", containerClass: "containerClass", itemClass: "itemClass", containerLabel: "containerLabel", containerRole: "containerRole", listItemRole: "listItemRole", navigable: "navigable", pageSize: "pageSize", skip: "skip", pageable: "pageable", height: "height" }, outputs: { scrollBottom: "scrollBottom", pageChange: "pageChange", pageSizeChange: "pageSizeChange", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add" }, host: { properties: { "class.k-listview": "this.className", "class.k-listview-bordered": "this.className", "class.k-d-flex": "this.className" } }, providers: [
|
|
902
905
|
EditService,
|
|
903
906
|
NavigationService,
|
|
@@ -1178,7 +1181,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1178
1181
|
</ng-template>
|
|
1179
1182
|
`
|
|
1180
1183
|
}]
|
|
1181
|
-
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: EditService }, { type: NavigationService }]; }, propDecorators: { className: [{
|
|
1184
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: EditService }, { type: NavigationService }]; }, propDecorators: { className: [{
|
|
1182
1185
|
type: HostBinding,
|
|
1183
1186
|
args: ['class.k-listview']
|
|
1184
1187
|
}, {
|
|
@@ -1718,16 +1721,24 @@ const EDITING_DIRECTIVES = [
|
|
|
1718
1721
|
AddCommandDirective
|
|
1719
1722
|
];
|
|
1720
1723
|
/**
|
|
1721
|
-
*
|
|
1724
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1725
|
+
* definition for the ListView component.
|
|
1726
|
+
* @example
|
|
1727
|
+
*
|
|
1728
|
+
* ```ts
|
|
1729
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
1730
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1731
|
+
* import { NgModule } from '@angular/core';
|
|
1732
|
+
* import { ListViewModule } from '@progress/kendo-angular-listview';
|
|
1733
|
+
* import { AppComponent } from './app.component';
|
|
1722
1734
|
*
|
|
1723
|
-
*
|
|
1724
|
-
*
|
|
1725
|
-
*
|
|
1726
|
-
*
|
|
1727
|
-
*
|
|
1728
|
-
*
|
|
1729
|
-
|
|
1730
|
-
* - [`EditTemplateDirective`]({% slug api_listview_editingdirective %})—The editing template directive.
|
|
1735
|
+
* @NgModule({
|
|
1736
|
+
* declarations: [AppComponent],
|
|
1737
|
+
* imports: [BrowserModule, BrowserAnimationsModule, ListViewModule],
|
|
1738
|
+
* bootstrap: [AppComponent]
|
|
1739
|
+
* })
|
|
1740
|
+
* export class AppModule {}
|
|
1741
|
+
*```
|
|
1731
1742
|
*/
|
|
1732
1743
|
class ListViewModule {
|
|
1733
1744
|
}
|
package/listview.component.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { EventEmitter, NgZone, Renderer2, ElementRef, SimpleChanges, QueryList } from '@angular/core';
|
|
5
|
+
import { EventEmitter, NgZone, Renderer2, ElementRef, SimpleChanges, QueryList, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { NavigationService } from './navigation/navigation.service';
|
|
7
7
|
import { ListViewNavigableItemDirective } from './navigation/listview-navigable-item.directive';
|
|
8
8
|
import { ItemTemplateDirective } from './templates/item-template.directive';
|
|
@@ -29,6 +29,7 @@ export declare class ListViewComponent {
|
|
|
29
29
|
ngZone: NgZone;
|
|
30
30
|
element: ElementRef;
|
|
31
31
|
renderer: Renderer2;
|
|
32
|
+
private changeDetectorRef;
|
|
32
33
|
editService: EditService;
|
|
33
34
|
private navigationService;
|
|
34
35
|
/**
|
|
@@ -224,7 +225,7 @@ export declare class ListViewComponent {
|
|
|
224
225
|
private _navigable;
|
|
225
226
|
private _pageable;
|
|
226
227
|
private editServiceSubscription;
|
|
227
|
-
constructor(ngZone: NgZone, element: ElementRef, renderer: Renderer2, editService: EditService, navigationService: NavigationService);
|
|
228
|
+
constructor(ngZone: NgZone, element: ElementRef, renderer: Renderer2, changeDetectorRef: ChangeDetectorRef, editService: EditService, navigationService: NavigationService);
|
|
228
229
|
ngOnChanges(changes: SimpleChanges): void;
|
|
229
230
|
ngOnDestroy(): void;
|
|
230
231
|
/**
|
package/listview.module.d.ts
CHANGED
|
@@ -22,16 +22,24 @@ import * as i16 from "@progress/kendo-angular-pager";
|
|
|
22
22
|
import * as i17 from "@progress/kendo-angular-common";
|
|
23
23
|
import * as i18 from "@progress/kendo-angular-icons";
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
26
|
+
* definition for the ListView component.
|
|
27
|
+
* @example
|
|
26
28
|
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
29
|
+
* ```ts
|
|
30
|
+
* import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
31
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
32
|
+
* import { NgModule } from '@angular/core';
|
|
33
|
+
* import { ListViewModule } from '@progress/kendo-angular-listview';
|
|
34
|
+
* import { AppComponent } from './app.component';
|
|
35
|
+
*
|
|
36
|
+
* @NgModule({
|
|
37
|
+
* declarations: [AppComponent],
|
|
38
|
+
* imports: [BrowserModule, BrowserAnimationsModule, ListViewModule],
|
|
39
|
+
* bootstrap: [AppComponent]
|
|
40
|
+
* })
|
|
41
|
+
* export class AppModule {}
|
|
42
|
+
*```
|
|
35
43
|
*/
|
|
36
44
|
export declare class ListViewModule {
|
|
37
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewModule, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-listview",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.1-develop.10",
|
|
4
4
|
"description": "Kendo UI Angular listview component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"@angular/core": "13 - 16",
|
|
24
24
|
"@angular/platform-browser": "13 - 16",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "13.2.
|
|
27
|
-
"@progress/kendo-angular-icons": "13.2.
|
|
28
|
-
"@progress/kendo-angular-l10n": "13.2.
|
|
26
|
+
"@progress/kendo-angular-common": "13.2.1-develop.10",
|
|
27
|
+
"@progress/kendo-angular-icons": "13.2.1-develop.10",
|
|
28
|
+
"@progress/kendo-angular-l10n": "13.2.1-develop.10",
|
|
29
29
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
30
|
-
"@progress/kendo-angular-buttons": "13.2.
|
|
31
|
-
"@progress/kendo-angular-pager": "13.2.
|
|
30
|
+
"@progress/kendo-angular-buttons": "13.2.1-develop.10",
|
|
31
|
+
"@progress/kendo-angular-pager": "13.2.1-develop.10"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.3.1",
|
|
35
|
-
"@progress/kendo-angular-schematics": "13.2.
|
|
35
|
+
"@progress/kendo-angular-schematics": "13.2.1-develop.10"
|
|
36
36
|
},
|
|
37
37
|
"schematics": "./schematics/collection.json",
|
|
38
38
|
"module": "fesm2015/progress-kendo-angular-listview.mjs",
|
|
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ListViewModule', package: 'listview', peerDependencies: {
|
|
6
6
|
// Peers of pager
|
|
7
|
-
'@progress/kendo-angular-dropdowns': '13.2.
|
|
8
|
-
'@progress/kendo-angular-treeview': '13.2.
|
|
9
|
-
'@progress/kendo-angular-inputs': '13.2.
|
|
10
|
-
'@progress/kendo-angular-intl': '13.2.
|
|
11
|
-
'@progress/kendo-angular-l10n': '13.2.
|
|
12
|
-
'@progress/kendo-angular-popup': '13.2.
|
|
7
|
+
'@progress/kendo-angular-dropdowns': '13.2.1-develop.10',
|
|
8
|
+
'@progress/kendo-angular-treeview': '13.2.1-develop.10',
|
|
9
|
+
'@progress/kendo-angular-inputs': '13.2.1-develop.10',
|
|
10
|
+
'@progress/kendo-angular-intl': '13.2.1-develop.10',
|
|
11
|
+
'@progress/kendo-angular-l10n': '13.2.1-develop.10',
|
|
12
|
+
'@progress/kendo-angular-popup': '13.2.1-develop.10',
|
|
13
13
|
'@progress/kendo-drawing': '^1.17.2',
|
|
14
14
|
// Peer of icons
|
|
15
15
|
'@progress/kendo-svg-icons': '^1.0.0'
|