@progress/kendo-angular-listview 3.0.2 → 4.0.0-next.202204010900
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/bundles/kendo-angular-listview.umd.js +5 -0
- package/{dist/es2015/data-binding → data-binding}/data-binding.directive.d.ts +5 -1
- package/{dist/es2015/editing → editing}/commands/add-command.directive.d.ts +3 -0
- package/{dist/es2015/editing → editing}/commands/cancel-command.directive.d.ts +3 -0
- package/{dist/es2015/editing → editing}/commands/edit-command.directive.d.ts +3 -0
- package/{dist/es2015/editing → editing}/commands/remove-command.directive.d.ts +3 -0
- package/{dist/es2015/editing → editing}/commands/save-command.directive.d.ts +3 -0
- package/{dist/es2015/editing → editing}/edit-template.directive.d.ts +3 -0
- package/{dist/es2015/editing → editing}/edit.service.d.ts +6 -3
- package/{dist/es2015/editing → editing}/events/add-event-args.interface.d.ts +0 -0
- package/{dist/es2015/editing → editing}/events/cancel-event-args.interface.d.ts +0 -0
- package/{dist/es2015/editing → editing}/events/edit-event-args.interface.d.ts +0 -0
- package/{dist/es2015/editing → editing}/events/remove-event-args.interface.d.ts +0 -0
- package/{dist/es2015/editing → editing}/events/save-event-args.interface.d.ts +0 -0
- package/{dist/es2015 → esm2015}/data-binding/data-binding.directive.js +15 -16
- package/esm2015/editing/commands/add-command.directive.js +49 -0
- package/{dist/es2015 → esm2015}/editing/commands/cancel-command.directive.js +17 -23
- package/{dist/es2015 → esm2015}/editing/commands/edit-command.directive.js +17 -23
- package/{dist/es2015 → esm2015}/editing/commands/remove-command.directive.js +17 -23
- package/{dist/es2015 → esm2015}/editing/commands/save-command.directive.js +17 -23
- package/{dist/es2015 → esm2015}/editing/edit-template.directive.js +14 -12
- package/{dist/es2015 → esm2015}/editing/edit.service.js +9 -13
- package/{dist/es → esm2015}/editing/events/add-event-args.interface.js +1 -0
- package/{dist/es2015 → esm2015}/editing/events/cancel-event-args.interface.js +1 -0
- package/{dist/es2015 → esm2015}/editing/events/edit-event-args.interface.js +1 -0
- package/{dist/es2015 → esm2015}/editing/events/remove-event-args.interface.js +1 -0
- package/{dist/es → esm2015}/editing/events/save-event-args.interface.js +1 -0
- package/{dist/es/editing/events/remove-event-args.interface.js → esm2015/kendo-angular-listview.js} +4 -0
- package/{dist/es2015 → esm2015}/listview.component.js +242 -155
- package/{dist/es2015 → esm2015}/listview.module.js +56 -26
- package/{dist/es → esm2015}/main.js +5 -0
- package/{dist/es → esm2015}/models/listview-data-result.js +1 -0
- package/{dist/es → esm2015}/models/page-change-event.js +1 -0
- package/{dist/es2015 → esm2015}/models/page-size-change-event.js +0 -0
- package/{dist/es → esm2015}/models/page-size-item.js +1 -0
- package/{dist/es → esm2015}/models/pager-position.js +1 -0
- package/{dist/es → esm2015}/models/pager-settings.js +1 -0
- package/{dist/es → esm2015}/models/pager-type.js +1 -0
- package/{dist/es → esm2015}/models/scroll-bottom-event.js +1 -0
- package/{dist/es2015 → esm2015}/navigation/listview-navigable-item.directive.js +15 -18
- package/{dist/es2015 → esm2015}/navigation/navigation.service.js +8 -13
- package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
- package/esm2015/templates/footer-template.directive.js +24 -0
- package/esm2015/templates/header-template.directive.js +24 -0
- package/{dist/es2015 → esm2015}/templates/item-template.directive.js +12 -11
- package/esm2015/templates/loader-template.directive.js +24 -0
- package/esm2015/templates/template-context.directive.js +33 -0
- package/{dist/es2015 → esm2015}/utils.js +0 -0
- package/{dist/fesm2015/index.js → fesm2015/kendo-angular-listview.js} +521 -417
- package/{dist/es/editing/events/cancel-event-args.interface.js → kendo-angular-listview.d.ts} +5 -0
- package/{dist/es2015/listview.component.d.ts → listview.component.d.ts} +13 -7
- package/listview.module.d.ts +39 -0
- package/{dist/es2015/main.d.ts → main.d.ts} +5 -0
- package/{dist/es2015/models → models}/listview-data-result.d.ts +0 -0
- package/{dist/es2015/models → models}/page-change-event.d.ts +0 -0
- package/{dist/es2015/models → models}/page-size-change-event.d.ts +0 -0
- package/{dist/es2015/models → models}/page-size-item.d.ts +0 -0
- package/{dist/es2015/models → models}/pager-position.d.ts +0 -0
- package/{dist/es2015/models → models}/pager-settings.d.ts +0 -0
- package/{dist/es2015/models → models}/pager-type.d.ts +0 -0
- package/{dist/es2015/models → models}/scroll-bottom-event.d.ts +0 -0
- package/{dist/es2015/navigation → navigation}/listview-navigable-item.directive.d.ts +3 -0
- package/{dist/es2015/navigation → navigation}/navigation.service.d.ts +5 -1
- package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
- package/package.json +36 -108
- package/schematics/ngAdd/index.js +5 -2
- package/schematics/ngAdd/index.js.map +1 -1
- package/{dist/es2015/templates → templates}/footer-template.directive.d.ts +3 -0
- package/{dist/es2015/templates → templates}/header-template.directive.d.ts +3 -0
- package/{dist/es2015/templates → templates}/item-template.directive.d.ts +3 -0
- package/{dist/es2015/templates → templates}/loader-template.directive.d.ts +3 -0
- package/{dist/es2015/templates → templates}/template-context.directive.d.ts +4 -1
- package/{dist/es2015/utils.d.ts → utils.d.ts} +0 -0
- package/dist/cdn/js/kendo-angular-listview.js +0 -20
- package/dist/cdn/main.js +0 -5
- package/dist/es/data-binding/data-binding.directive.js +0 -69
- package/dist/es/editing/commands/add-command.directive.js +0 -58
- package/dist/es/editing/commands/cancel-command.directive.js +0 -74
- package/dist/es/editing/commands/edit-command.directive.js +0 -62
- package/dist/es/editing/commands/remove-command.directive.js +0 -61
- package/dist/es/editing/commands/save-command.directive.js +0 -74
- package/dist/es/editing/edit-template.directive.js +0 -32
- package/dist/es/editing/edit.service.js +0 -136
- package/dist/es/editing/events/edit-event-args.interface.js +0 -4
- package/dist/es/index.js +0 -17
- package/dist/es/listview.component.js +0 -534
- package/dist/es/listview.module.js +0 -83
- package/dist/es/models/page-size-change-event.js +0 -18
- package/dist/es/navigation/listview-navigable-item.directive.js +0 -70
- package/dist/es/navigation/navigation.service.js +0 -162
- package/dist/es/package-metadata.js +0 -15
- package/dist/es/templates/footer-template.directive.js +0 -24
- package/dist/es/templates/header-template.directive.js +0 -24
- package/dist/es/templates/item-template.directive.js +0 -30
- package/dist/es/templates/loader-template.directive.js +0 -24
- package/dist/es/templates/template-context.directive.js +0 -40
- package/dist/es/utils.js +0 -103
- package/dist/es2015/editing/commands/add-command.directive.js +0 -55
- package/dist/es2015/editing/events/add-event-args.interface.js +0 -4
- package/dist/es2015/editing/events/save-event-args.interface.js +0 -4
- package/dist/es2015/index.d.ts +0 -17
- package/dist/es2015/index.js +0 -17
- package/dist/es2015/index.metadata.json +0 -1
- package/dist/es2015/listview.module.d.ts +0 -18
- package/dist/es2015/main.js +0 -13
- package/dist/es2015/models/listview-data-result.js +0 -4
- package/dist/es2015/models/page-change-event.js +0 -4
- package/dist/es2015/models/page-size-item.js +0 -4
- package/dist/es2015/models/pager-position.js +0 -4
- package/dist/es2015/models/pager-settings.js +0 -4
- package/dist/es2015/models/pager-type.js +0 -4
- package/dist/es2015/models/scroll-bottom-event.js +0 -4
- package/dist/es2015/templates/footer-template.directive.js +0 -23
- package/dist/es2015/templates/header-template.directive.js +0 -23
- package/dist/es2015/templates/loader-template.directive.js +0 -23
- package/dist/es2015/templates/template-context.directive.js +0 -35
- package/dist/fesm5/index.js +0 -1528
- package/dist/npm/data-binding/data-binding.directive.js +0 -71
- package/dist/npm/editing/commands/add-command.directive.js +0 -60
- package/dist/npm/editing/commands/cancel-command.directive.js +0 -76
- package/dist/npm/editing/commands/edit-command.directive.js +0 -64
- package/dist/npm/editing/commands/remove-command.directive.js +0 -63
- package/dist/npm/editing/commands/save-command.directive.js +0 -76
- package/dist/npm/editing/edit-template.directive.js +0 -34
- package/dist/npm/editing/edit.service.js +0 -140
- package/dist/npm/editing/events/add-event-args.interface.js +0 -6
- package/dist/npm/editing/events/cancel-event-args.interface.js +0 -6
- package/dist/npm/editing/events/edit-event-args.interface.js +0 -6
- package/dist/npm/editing/events/remove-event-args.interface.js +0 -6
- package/dist/npm/editing/events/save-event-args.interface.js +0 -6
- package/dist/npm/index.js +0 -29
- package/dist/npm/listview.component.js +0 -536
- package/dist/npm/listview.module.js +0 -85
- package/dist/npm/main.js +0 -24
- package/dist/npm/models/listview-data-result.js +0 -6
- package/dist/npm/models/page-change-event.js +0 -6
- package/dist/npm/models/page-size-change-event.js +0 -20
- package/dist/npm/models/page-size-item.js +0 -6
- package/dist/npm/models/pager-position.js +0 -6
- package/dist/npm/models/pager-settings.js +0 -6
- package/dist/npm/models/pager-type.js +0 -6
- package/dist/npm/models/scroll-bottom-event.js +0 -6
- package/dist/npm/navigation/listview-navigable-item.directive.js +0 -72
- package/dist/npm/navigation/navigation.service.js +0 -164
- package/dist/npm/package-metadata.js +0 -17
- package/dist/npm/templates/footer-template.directive.js +0 -26
- package/dist/npm/templates/header-template.directive.js +0 -26
- package/dist/npm/templates/item-template.directive.js +0 -32
- package/dist/npm/templates/loader-template.directive.js +0 -26
- package/dist/npm/templates/template-context.directive.js +0 -42
- package/dist/npm/utils.js +0 -105
- package/dist/systemjs/kendo-angular-listview.js +0 -5
package/{dist/es/editing/events/cancel-event-args.interface.js → kendo-angular-listview.d.ts}
RENAMED
|
@@ -2,3 +2,8 @@
|
|
|
2
2
|
* Copyright © 2021 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
|
+
/**
|
|
6
|
+
* Generated bundle index. Do not edit.
|
|
7
|
+
*/
|
|
8
|
+
/// <amd-module name="@progress/kendo-angular-listview" />
|
|
9
|
+
export * from './main';
|
|
@@ -21,6 +21,7 @@ import { RemoveEvent } from "./editing/events/remove-event-args.interface";
|
|
|
21
21
|
import { SaveEvent } from "./editing/events/save-event-args.interface";
|
|
22
22
|
import { CancelEvent } from "./editing/events/cancel-event-args.interface";
|
|
23
23
|
import { AddEvent } from "./editing/events/add-event-args.interface";
|
|
24
|
+
import * as i0 from "@angular/core";
|
|
24
25
|
/**
|
|
25
26
|
* Represents the Kendo UI ListView component for Angular.
|
|
26
27
|
*/
|
|
@@ -122,7 +123,8 @@ export declare class ListViewComponent {
|
|
|
122
123
|
* ([see example]({% slug keyboard_navigation_listview %})).
|
|
123
124
|
* By default, the navigation is disabled.
|
|
124
125
|
*/
|
|
125
|
-
navigable: boolean;
|
|
126
|
+
set navigable(navigable: boolean);
|
|
127
|
+
get navigable(): boolean;
|
|
126
128
|
/**
|
|
127
129
|
* Defines the page size used by the ListView pager
|
|
128
130
|
* ([more details]({% slug paging_listview %})).
|
|
@@ -132,13 +134,15 @@ export declare class ListViewComponent {
|
|
|
132
134
|
* Defines the number of records to be skipped by the pager
|
|
133
135
|
* ([more details]({% slug paging_listview %})).
|
|
134
136
|
*/
|
|
135
|
-
skip: number;
|
|
137
|
+
set skip(skip: number);
|
|
138
|
+
get skip(): number;
|
|
136
139
|
/**
|
|
137
140
|
* Configures whether the ListView will render a pager
|
|
138
141
|
* ([more details]({% slug paging_listview %})).
|
|
139
142
|
* Providing a boolean value will render a pager with the default settings.
|
|
140
143
|
*/
|
|
141
|
-
pageable: boolean | PagerSettings;
|
|
144
|
+
set pageable(pageable: boolean | PagerSettings);
|
|
145
|
+
get pageable(): boolean | PagerSettings;
|
|
142
146
|
/**
|
|
143
147
|
* Defines the height (in pixels) of the ListView component.
|
|
144
148
|
* If the content height exceeds the component height, a vertical scrollbar will be rendered.
|
|
@@ -197,24 +201,24 @@ export declare class ListViewComponent {
|
|
|
197
201
|
* Gets the data items passed to the ListView.
|
|
198
202
|
* If a ListViewDataResult is passed, the data value is used. If an array is passed - it's directly used.
|
|
199
203
|
*/
|
|
200
|
-
|
|
204
|
+
get items(): any[];
|
|
201
205
|
/**
|
|
202
206
|
* @hidden
|
|
203
207
|
*
|
|
204
208
|
* Gets the total number of records passed to the ListView.
|
|
205
209
|
* If a ListViewDataResult is passed, the total value is used. If an array is passed - its length is used.
|
|
206
210
|
*/
|
|
207
|
-
|
|
211
|
+
get total(): number;
|
|
208
212
|
/**
|
|
209
213
|
* @hidden
|
|
210
214
|
*/
|
|
211
|
-
|
|
215
|
+
get containerTabindex(): number;
|
|
212
216
|
/**
|
|
213
217
|
* Gets the current active item index
|
|
214
218
|
* ([see example]({% slug keyboard_navigation_listview %}#toc-controlling-the-focus)).
|
|
215
219
|
* Returns `null` when the keyboard navigation is disabled.
|
|
216
220
|
*/
|
|
217
|
-
|
|
221
|
+
get activeIndex(): number;
|
|
218
222
|
private removeNavigationListeners;
|
|
219
223
|
private _skip;
|
|
220
224
|
private _navigable;
|
|
@@ -284,4 +288,6 @@ export declare class ListViewComponent {
|
|
|
284
288
|
private addNavigationListeners;
|
|
285
289
|
private attachEditHandlers;
|
|
286
290
|
private emitCRUDEvent;
|
|
291
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
|
|
292
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "kendo-listview", ["kendoListView"], { "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"; }, { "scrollBottom": "scrollBottom"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; }, ["itemTemplate", "headerTemplate", "footerTemplate", "loaderTemplate", "editTemplate"], never>;
|
|
287
293
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "./templates/item-template.directive";
|
|
7
|
+
import * as i2 from "./templates/header-template.directive";
|
|
8
|
+
import * as i3 from "./templates/footer-template.directive";
|
|
9
|
+
import * as i4 from "./templates/loader-template.directive";
|
|
10
|
+
import * as i5 from "./data-binding/data-binding.directive";
|
|
11
|
+
import * as i6 from "./editing/edit-template.directive";
|
|
12
|
+
import * as i7 from "./editing/commands/edit-command.directive";
|
|
13
|
+
import * as i8 from "./editing/commands/cancel-command.directive";
|
|
14
|
+
import * as i9 from "./editing/commands/save-command.directive";
|
|
15
|
+
import * as i10 from "./editing/commands/remove-command.directive";
|
|
16
|
+
import * as i11 from "./editing/commands/add-command.directive";
|
|
17
|
+
import * as i12 from "./listview.component";
|
|
18
|
+
import * as i13 from "./templates/template-context.directive";
|
|
19
|
+
import * as i14 from "./navigation/listview-navigable-item.directive";
|
|
20
|
+
import * as i15 from "@angular/common";
|
|
21
|
+
import * as i16 from "@progress/kendo-angular-pager";
|
|
22
|
+
import * as i17 from "@progress/kendo-angular-common";
|
|
23
|
+
/**
|
|
24
|
+
* The exported package module.
|
|
25
|
+
*
|
|
26
|
+
* The package exports:
|
|
27
|
+
* - [`ListViewComponent`]({% slug api_listview_listviewcomponent %})—The ListView component class.
|
|
28
|
+
* - [`ItemTemplateDirective`]({% slug api_listview_itemtemplatedirective %})—The item template directive.
|
|
29
|
+
* - [`HeaderTemplateDirective`]({% slug api_listview_headertemplatedirective %})—The header template directive.
|
|
30
|
+
* - [`FooterTemplateDirective`]({% slug api_listview_footertemplatedirective %})—The footer template directive.
|
|
31
|
+
* - [`LoaderTemplateDirective`]({% slug api_listview_loadertemplatedirective %})—The loeader template directive.
|
|
32
|
+
* - [`DataBindingDirective`]({% slug api_listview_databindingdirective %})—The data binding directive.
|
|
33
|
+
* - [`EditTemplateDirective`]({% slug api_listview_editingdirective %}—The editing template directive.
|
|
34
|
+
*/
|
|
35
|
+
export declare class ListViewModule {
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewModule, never>;
|
|
37
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewModule, [typeof i1.ItemTemplateDirective, typeof i2.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.LoaderTemplateDirective, typeof i5.DataBindingDirective, typeof i6.EditTemplateDirective, typeof i7.EditCommandDirective, typeof i8.CancelCommandDirective, typeof i9.SaveCommandDirective, typeof i10.RemoveCommandDirective, typeof i11.AddCommandDirective, typeof i12.ListViewComponent, typeof i13.TemplateContextDirective, typeof i14.ListViewNavigableItemDirective], [typeof i15.CommonModule, typeof i16.PagerModule, typeof i17.EventsModule], [typeof i1.ItemTemplateDirective, typeof i2.HeaderTemplateDirective, typeof i3.FooterTemplateDirective, typeof i4.LoaderTemplateDirective, typeof i5.DataBindingDirective, typeof i6.EditTemplateDirective, typeof i7.EditCommandDirective, typeof i8.CancelCommandDirective, typeof i9.SaveCommandDirective, typeof i10.RemoveCommandDirective, typeof i11.AddCommandDirective, typeof i12.ListViewComponent, typeof i15.CommonModule, typeof i17.EventsModule]>;
|
|
38
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ListViewModule>;
|
|
39
|
+
}
|
|
@@ -21,4 +21,9 @@ export { PageSizeItem } from './models/page-size-item';
|
|
|
21
21
|
export { PagerType } from './models/pager-type';
|
|
22
22
|
export { PagerPosition } from './models/pager-position';
|
|
23
23
|
export { ListViewDataResult } from './models/listview-data-result';
|
|
24
|
+
export { EditCommandDirective } from './editing/commands/edit-command.directive';
|
|
25
|
+
export { AddCommandDirective } from './editing/commands/add-command.directive';
|
|
26
|
+
export { SaveCommandDirective } from './editing/commands/save-command.directive';
|
|
27
|
+
export { CancelCommandDirective } from './editing/commands/cancel-command.directive';
|
|
28
|
+
export { RemoveCommandDirective } from './editing/commands/remove-command.directive';
|
|
24
29
|
export { ListViewModule } from './listview.module';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ElementRef, Renderer2, OnChanges } from '@angular/core';
|
|
6
6
|
import { NavigationService } from './navigation.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
@@ -23,4 +24,6 @@ export declare class ListViewNavigableItemDirective implements OnChanges {
|
|
|
23
24
|
private updateNavigationState;
|
|
24
25
|
private updateFocusedState;
|
|
25
26
|
private updateTabIndex;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewNavigableItemDirective, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ListViewNavigableItemDirective, "[kendoListViewNavigableItem]", never, { "index": "index"; }, {}, never>;
|
|
26
29
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Subject } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* @hidden
|
|
8
9
|
*
|
|
@@ -19,7 +20,8 @@ export declare class NavigationService {
|
|
|
19
20
|
* When no activeIndex is present, the navigation is inferred as disabled.
|
|
20
21
|
* Toggling the service availability clears the current active index or activates the first one.
|
|
21
22
|
*/
|
|
22
|
-
isEnabled: boolean;
|
|
23
|
+
get isEnabled(): boolean;
|
|
24
|
+
set isEnabled(enabled: boolean);
|
|
23
25
|
/**
|
|
24
26
|
* Specifies if a ListView item currently holds focus.
|
|
25
27
|
*/
|
|
@@ -48,4 +50,6 @@ export declare class NavigationService {
|
|
|
48
50
|
private navigateTo;
|
|
49
51
|
private navigateToPrevious;
|
|
50
52
|
private navigateToNext;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationService, never>;
|
|
54
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NavigationService>;
|
|
51
55
|
}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,103 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-listview",
|
|
3
|
+
"version": "4.0.0-next.202204010900",
|
|
3
4
|
"description": "Kendo UI ListView component for Angular",
|
|
4
|
-
"author": "Progress",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"jsdelivr": "dist/cdn/main.js",
|
|
15
|
-
"unpkg": "dist/cdn/main.js",
|
|
16
|
-
"sideEffects": false,
|
|
17
|
-
"scripts": {
|
|
18
|
-
"test": "jest",
|
|
19
|
-
"test:watch": "jest --watch",
|
|
20
|
-
"test:ci": "ci-angular-test",
|
|
21
|
-
"e2e:ci": "ci-angular-e2e",
|
|
22
|
-
"start": "gulp start",
|
|
23
|
-
"lint": "gulp lint && gulp lint-docs",
|
|
24
|
-
"api-check": "gulp api-check",
|
|
25
|
-
"build-package": "gulp build-package",
|
|
26
|
-
"semantic-release": "semantic-release pre && semantic-prerelease publish --public && semantic-release post"
|
|
6
|
+
"author": "Progress",
|
|
7
|
+
"homepage": "https://www.telerik.com/kendo-angular-ui/components/",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/telerik/kendo-angular-listview.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/telerik/kendo-angular"
|
|
27
14
|
},
|
|
28
15
|
"keywords": [
|
|
16
|
+
"Angular",
|
|
29
17
|
"Kendo UI",
|
|
30
|
-
"Progress",
|
|
31
18
|
"ListView",
|
|
32
|
-
"
|
|
19
|
+
"Progress"
|
|
33
20
|
],
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"@angular/core": "8 - 13",
|
|
37
|
-
"@angular/forms": "8 - 13",
|
|
38
|
-
"@progress/kendo-angular-buttons": "^7.0.0",
|
|
39
|
-
"@progress/kendo-angular-common": "^2.0.0",
|
|
40
|
-
"@progress/kendo-angular-l10n": "^3.0.0",
|
|
41
|
-
"@progress/kendo-angular-pager": "^3.0.0",
|
|
42
|
-
"@progress/kendo-licensing": "^1.0.2",
|
|
43
|
-
"rxjs": "^6.4.0 || ^7.0.0"
|
|
21
|
+
"@progress": {
|
|
22
|
+
"friendlyName": "ListView"
|
|
44
23
|
},
|
|
45
24
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-schematics": "
|
|
47
|
-
"tslib": "^
|
|
25
|
+
"@progress/kendo-schematics": "next",
|
|
26
|
+
"tslib": "^2.3.1"
|
|
48
27
|
},
|
|
49
|
-
"
|
|
50
|
-
"@angular
|
|
51
|
-
"@angular
|
|
52
|
-
"@angular/
|
|
53
|
-
"@angular
|
|
54
|
-
"@angular
|
|
55
|
-
"@
|
|
56
|
-
"@angular
|
|
57
|
-
"@angular/forms": "^8.2.0",
|
|
58
|
-
"@angular/platform-browser": "^8.2.0",
|
|
59
|
-
"@angular/platform-browser-dynamic": "^8.2.0",
|
|
60
|
-
"@angular/platform-server": "^8.2.0",
|
|
61
|
-
"@angular/router": "^8.2.0",
|
|
62
|
-
"@progress/kendo-angular-buttons": "^6.0.0",
|
|
63
|
-
"@progress/kendo-angular-common": "^2.0.0",
|
|
64
|
-
"@progress/kendo-angular-dropdowns": "^5.0.0",
|
|
65
|
-
"@progress/kendo-angular-e2e": "^2.2.0",
|
|
66
|
-
"@progress/kendo-angular-indicators": "^1.0.0",
|
|
67
|
-
"@progress/kendo-angular-inputs": "^7.0.0",
|
|
68
|
-
"@progress/kendo-angular-intl": "^3.0.0",
|
|
69
|
-
"@progress/kendo-angular-jest-preset": "^2.0.0",
|
|
70
|
-
"@progress/kendo-angular-l10n": "^3.0.0",
|
|
71
|
-
"@progress/kendo-angular-layout": "^6.0.0",
|
|
72
|
-
"@progress/kendo-angular-pager": "^2.0.0",
|
|
73
|
-
"@progress/kendo-angular-popup": "^4.0.0",
|
|
74
|
-
"@progress/kendo-angular-progressbar": "^2.0.0",
|
|
75
|
-
"@progress/kendo-angular-tasks": "cdn-bundle-v18",
|
|
76
|
-
"@progress/kendo-angular-treeview": "^5.0.0",
|
|
77
|
-
"@progress/kendo-data-query": "^1.5.2",
|
|
78
|
-
"@progress/kendo-drawing": "^1.9.0",
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@angular/common": "^12.0.0 || ^13.0.0",
|
|
30
|
+
"@angular/core": "^12.0.0 || ^13.0.0",
|
|
31
|
+
"@angular/forms": "^12.0.0 || ^13.0.0",
|
|
32
|
+
"@progress/kendo-angular-buttons": "next",
|
|
33
|
+
"@progress/kendo-angular-common": "next",
|
|
34
|
+
"@progress/kendo-angular-l10n": "next",
|
|
35
|
+
"@progress/kendo-angular-pager": "next",
|
|
79
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
80
|
-
"
|
|
81
|
-
"@progress/kendo-theme-default": "^5.0.0",
|
|
82
|
-
"@progress/kendo-theme-material": "^5.0.0",
|
|
83
|
-
"@telerik/semantic-prerelease": "^1.0.0",
|
|
84
|
-
"@types/jest": "^21.1.8",
|
|
85
|
-
"@types/node": "ts3.4",
|
|
86
|
-
"@types/zone.js": "0.0.27",
|
|
87
|
-
"codelyzer": "^5.0.0",
|
|
88
|
-
"core-js": "^2.2.2",
|
|
89
|
-
"cz-conventional-changelog": "^1.1.5",
|
|
90
|
-
"ghooks": "^1.0.3",
|
|
91
|
-
"gulp": "^4.0.0",
|
|
92
|
-
"jest-cli": "^21.2.1",
|
|
93
|
-
"jest-junit": "^8.0.0",
|
|
94
|
-
"rxjs": "~6.4.0",
|
|
95
|
-
"rxjs-tslint-rules": "^4.23.1",
|
|
96
|
-
"semantic-release": "^6.3.6",
|
|
97
|
-
"tslint": "^5.20.1",
|
|
98
|
-
"typescript": "~3.4.5",
|
|
99
|
-
"validate-commit-msg": "^1.1.1",
|
|
100
|
-
"zone.js": "~0.9.1"
|
|
37
|
+
"rxjs": "^7.0.0"
|
|
101
38
|
},
|
|
102
39
|
"config": {
|
|
103
40
|
"commitizen": {
|
|
@@ -122,27 +59,16 @@
|
|
|
122
59
|
"maxSubjectLength": 100
|
|
123
60
|
}
|
|
124
61
|
},
|
|
125
|
-
"
|
|
126
|
-
"preset": "@progress/kendo-angular-jest-preset"
|
|
127
|
-
},
|
|
128
|
-
"repository": {
|
|
129
|
-
"type": "git",
|
|
130
|
-
"url": "https://github.com/telerik/kendo-angular-listview.git"
|
|
131
|
-
},
|
|
132
|
-
"bugs": {
|
|
133
|
-
"url": "https://github.com/telerik/kendo-angular"
|
|
134
|
-
},
|
|
135
|
-
"@progress": {
|
|
136
|
-
"friendlyName": "ListView"
|
|
137
|
-
},
|
|
138
|
-
"homepage": "https://www.telerik.com/kendo-angular-ui/components/",
|
|
62
|
+
"schematics": "./schematics/collection.json",
|
|
139
63
|
"release": {
|
|
140
64
|
"debug": false,
|
|
141
65
|
"branchTags": {
|
|
142
|
-
"develop": "dev"
|
|
66
|
+
"develop": "dev",
|
|
67
|
+
"ng12-update": "next"
|
|
143
68
|
},
|
|
144
69
|
"fallbackTags": {
|
|
145
|
-
"dev": "latest"
|
|
70
|
+
"dev": "latest",
|
|
71
|
+
"next": "latest"
|
|
146
72
|
},
|
|
147
73
|
"analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
|
|
148
74
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|
|
@@ -150,9 +76,11 @@
|
|
|
150
76
|
"verifyConditions": "@telerik/semantic-prerelease/verifyConditions",
|
|
151
77
|
"verifyRelease": "@telerik/semantic-prerelease/verifyRelease"
|
|
152
78
|
},
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
79
|
+
"main": "bundles/kendo-angular-listview.umd.js",
|
|
80
|
+
"module": "fesm2015/kendo-angular-listview.js",
|
|
81
|
+
"es2015": "fesm2015/kendo-angular-listview.js",
|
|
82
|
+
"esm2015": "esm2015/kendo-angular-listview.js",
|
|
83
|
+
"fesm2015": "fesm2015/kendo-angular-listview.js",
|
|
84
|
+
"typings": "kendo-angular-listview.d.ts",
|
|
85
|
+
"sideEffects": false
|
|
158
86
|
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
"use strict";
|
|
2
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
7
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
4
8
|
function default_1(options) {
|
|
5
|
-
const finalOptions = Object.assign({}, options, { mainNgModule: 'ListViewModule', package: 'listview', peerDependencies: {
|
|
9
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ListViewModule', package: 'listview', peerDependencies: {
|
|
6
10
|
// Peers of pager
|
|
7
11
|
"@progress/kendo-angular-dropdowns": "^6.0.0",
|
|
8
12
|
"@progress/kendo-angular-treeview": "^6.0.0",
|
|
@@ -15,4 +19,3 @@ function default_1(options) {
|
|
|
15
19
|
return schematics_1.externalSchematic('@progress/kendo-schematics', 'ng-add', finalOptions);
|
|
16
20
|
}
|
|
17
21
|
exports.default = default_1;
|
|
18
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKoC;AAEpC,mBAAyB,OAAY;IACjC,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKoC;AAEpC,mBAAyB,OAAY;IACjC,MAAM,YAAY,mCACX,OAAO,KACV,YAAY,EAAE,gBAAgB,EAC9B,OAAO,EAAE,UAAU,EACnB,gBAAgB,EAAE;YACd,iBAAiB;YACjB,mCAAmC,EAAE,QAAQ;YAC7C,kCAAkC,EAAE,QAAQ;YAC5C,gCAAgC,EAAE,QAAQ;YAC1C,8BAA8B,EAAE,QAAQ;YACxC,8BAA8B,EAAE,QAAQ;YACxC,+BAA+B,EAAE,QAAQ;YACzC,yBAAyB,EAAE,SAAS;SACvC,GACJ,CAAC;IAEF,OAAO,8BAAiB,CAAC,4BAA4B,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;AACnF,CAAC;AAlBD,4BAkBC"}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Renders the footer content of the ListView. To define a footer template, nest an `<ng-template>` tag
|
|
8
9
|
* with the `kendoListViewFooterTemplate` directive inside the `<kendo-listview>` tag
|
|
@@ -11,4 +12,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
11
12
|
export declare class FooterTemplateDirective {
|
|
12
13
|
templateRef: TemplateRef<any>;
|
|
13
14
|
constructor(templateRef: TemplateRef<any>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterTemplateDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FooterTemplateDirective, "[kendoListViewFooterTemplate]", never, {}, {}, never>;
|
|
14
17
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Renders the header content of the ListView. To define a header template, nest an `<ng-template>` tag
|
|
8
9
|
* with the `kendoListViewHeaderTemplate` directive inside the `<kendo-listview>` tag
|
|
@@ -11,4 +12,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
11
12
|
export declare class HeaderTemplateDirective {
|
|
12
13
|
templateRef: TemplateRef<any>;
|
|
13
14
|
constructor(templateRef: TemplateRef<any>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderTemplateDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderTemplateDirective, "[kendoListViewHeaderTemplate]", never, {}, {}, never>;
|
|
14
17
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Renders the list item content. To define an item template, nest an `<ng-template>` tag
|
|
8
9
|
* with the `kendoListViewItemTemplate` directive inside the `<kendo-listview>` tag
|
|
@@ -17,4 +18,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
17
18
|
export declare class ItemTemplateDirective {
|
|
18
19
|
templateRef: TemplateRef<any>;
|
|
19
20
|
constructor(templateRef: TemplateRef<any>);
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ItemTemplateDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemTemplateDirective, "[kendoListViewItemTemplate]", never, {}, {}, never>;
|
|
20
23
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Overrides the default loader content of the ListView. To define a loader template, nest an `<ng-template>` tag
|
|
8
9
|
* with the `kendoListViewLoaderTemplate` directive inside the `<kendo-listview>` tag
|
|
@@ -11,4 +12,6 @@ import { TemplateRef } from '@angular/core';
|
|
|
11
12
|
export declare class LoaderTemplateDirective {
|
|
12
13
|
templateRef: TemplateRef<any>;
|
|
13
14
|
constructor(templateRef: TemplateRef<any>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderTemplateDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LoaderTemplateDirective, "[kendoListViewLoaderTemplate]", never, {}, {}, never>;
|
|
14
17
|
}
|
|
@@ -3,12 +3,15 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ViewContainerRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* @hidden
|
|
8
9
|
*/
|
|
9
10
|
export declare class TemplateContextDirective {
|
|
10
11
|
private viewContainerRef;
|
|
11
12
|
private insertedViewRef;
|
|
12
|
-
templateContext: any;
|
|
13
|
+
set templateContext(context: any);
|
|
13
14
|
constructor(viewContainerRef: ViewContainerRef);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateContextDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateContextDirective, "[templateContext]", never, { "templateContext": "templateContext"; }, {}, never>;
|
|
14
17
|
}
|
|
File without changes
|