@progress/kendo-angular-listview 16.5.0 → 16.6.0-develop.2
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/data-binding/data-binding.directive.d.ts +1 -1
- package/directives.d.ts +20 -0
- package/editing/commands/add-command.directive.d.ts +1 -1
- package/editing/commands/cancel-command.directive.d.ts +1 -1
- package/editing/commands/edit-command.directive.d.ts +1 -1
- package/editing/commands/remove-command.directive.d.ts +1 -1
- package/editing/commands/save-command.directive.d.ts +1 -1
- package/editing/edit-template.directive.d.ts +1 -1
- package/esm2020/data-binding/data-binding.directive.mjs +3 -2
- package/esm2020/directives.mjs +33 -0
- package/esm2020/editing/commands/add-command.directive.mjs +7 -5
- package/esm2020/editing/commands/cancel-command.directive.mjs +7 -5
- package/esm2020/editing/commands/edit-command.directive.mjs +7 -5
- package/esm2020/editing/commands/remove-command.directive.mjs +7 -5
- package/esm2020/editing/commands/save-command.directive.mjs +7 -5
- package/esm2020/editing/edit-template.directive.mjs +3 -2
- package/esm2020/index.mjs +1 -0
- package/esm2020/listview.component.mjs +8 -8
- package/esm2020/listview.module.mjs +29 -85
- package/esm2020/navigation/listview-navigable-item.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/templates/footer-template.directive.mjs +3 -2
- package/esm2020/templates/header-template.directive.mjs +3 -2
- package/esm2020/templates/item-template.directive.mjs +3 -2
- package/esm2020/templates/loader-template.directive.mjs +3 -2
- package/fesm2015/progress-kendo-angular-listview.mjs +78 -126
- package/fesm2020/progress-kendo-angular-listview.mjs +78 -126
- package/index.d.ts +1 -0
- package/listview.component.d.ts +1 -1
- package/listview.module.d.ts +13 -19
- package/navigation/listview-navigable-item.directive.d.ts +1 -1
- package/package.json +7 -7
- package/schematics/ngAdd/index.js +6 -6
- package/templates/footer-template.directive.d.ts +1 -1
- package/templates/header-template.directive.d.ts +1 -1
- package/templates/item-template.directive.d.ts +1 -1
- package/templates/loader-template.directive.d.ts +1 -1
- package/esm2020/templates/template-context.directive.mjs +0 -33
- package/templates/template-context.directive.d.ts +0 -17
|
@@ -15,10 +15,11 @@ export class FooterTemplateDirective {
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
FooterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
-
FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FooterTemplateDirective, selector: "[kendoListViewFooterTemplate]", ngImport: i0 });
|
|
18
|
+
FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FooterTemplateDirective, isStandalone: true, selector: "[kendoListViewFooterTemplate]", ngImport: i0 });
|
|
19
19
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterTemplateDirective, decorators: [{
|
|
20
20
|
type: Directive,
|
|
21
21
|
args: [{
|
|
22
|
-
selector: '[kendoListViewFooterTemplate]'
|
|
22
|
+
selector: '[kendoListViewFooterTemplate]',
|
|
23
|
+
standalone: true
|
|
23
24
|
}]
|
|
24
25
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -15,10 +15,11 @@ export class HeaderTemplateDirective {
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
HeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
-
HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTemplateDirective, selector: "[kendoListViewHeaderTemplate]", ngImport: i0 });
|
|
18
|
+
HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTemplateDirective, isStandalone: true, selector: "[kendoListViewHeaderTemplate]", ngImport: i0 });
|
|
19
19
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTemplateDirective, decorators: [{
|
|
20
20
|
type: Directive,
|
|
21
21
|
args: [{
|
|
22
|
-
selector: '[kendoListViewHeaderTemplate]'
|
|
22
|
+
selector: '[kendoListViewHeaderTemplate]',
|
|
23
|
+
standalone: true
|
|
23
24
|
}]
|
|
24
25
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -21,10 +21,11 @@ export class ItemTemplateDirective {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
ItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
24
|
-
ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ItemTemplateDirective, selector: "[kendoListViewItemTemplate]", ngImport: i0 });
|
|
24
|
+
ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ItemTemplateDirective, isStandalone: true, selector: "[kendoListViewItemTemplate]", ngImport: i0 });
|
|
25
25
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemTemplateDirective, decorators: [{
|
|
26
26
|
type: Directive,
|
|
27
27
|
args: [{
|
|
28
|
-
selector: '[kendoListViewItemTemplate]'
|
|
28
|
+
selector: '[kendoListViewItemTemplate]',
|
|
29
|
+
standalone: true
|
|
29
30
|
}]
|
|
30
31
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -15,10 +15,11 @@ export class LoaderTemplateDirective {
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
LoaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
-
LoaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoaderTemplateDirective, selector: "[kendoListViewLoaderTemplate]", ngImport: i0 });
|
|
18
|
+
LoaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoaderTemplateDirective, isStandalone: true, selector: "[kendoListViewLoaderTemplate]", ngImport: i0 });
|
|
19
19
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderTemplateDirective, decorators: [{
|
|
20
20
|
type: Directive,
|
|
21
21
|
args: [{
|
|
22
|
-
selector: '[kendoListViewLoaderTemplate]'
|
|
22
|
+
selector: '[kendoListViewLoaderTemplate]',
|
|
23
|
+
standalone: true
|
|
23
24
|
}]
|
|
24
25
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -4,21 +4,18 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { Injectable, Directive, Input, Optional, EventEmitter, Component, ChangeDetectionStrategy, HostBinding, ContentChild, ViewChild, ViewChildren, Output, HostListener, NgModule } from '@angular/core';
|
|
7
|
-
import
|
|
8
|
-
import { isDocumentAvailable, Keys, isChanged, hasObservers, EventsModule } from '@progress/kendo-angular-common';
|
|
7
|
+
import { isDocumentAvailable, Keys, isChanged, hasObservers, EventsOutsideAngularDirective, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
8
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
9
|
import * as i2 from '@progress/kendo-angular-l10n';
|
|
11
10
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
12
11
|
import { Subject, Subscription } from 'rxjs';
|
|
13
12
|
import { FormGroup, FormControl } from '@angular/forms';
|
|
14
13
|
import { switchMap, take } from 'rxjs/operators';
|
|
15
|
-
import
|
|
16
|
-
import {
|
|
17
|
-
import * as i4 from '@progress/kendo-angular-pager';
|
|
18
|
-
import { PageSizeChangeEvent as PageSizeChangeEvent$1, PagerModule } from '@progress/kendo-angular-pager';
|
|
14
|
+
import { NgIf, NgTemplateOutlet, NgClass, NgStyle, NgFor } from '@angular/common';
|
|
15
|
+
import { PagerComponent, PageSizeChangeEvent as PageSizeChangeEvent$1 } from '@progress/kendo-angular-pager';
|
|
19
16
|
import { Button } from '@progress/kendo-angular-buttons';
|
|
20
|
-
import
|
|
21
|
-
import {
|
|
17
|
+
import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
18
|
+
import { PopupService } from '@progress/kendo-angular-popup';
|
|
22
19
|
|
|
23
20
|
/**
|
|
24
21
|
* @hidden
|
|
@@ -27,8 +24,8 @@ const packageMetadata = {
|
|
|
27
24
|
name: '@progress/kendo-angular-listview',
|
|
28
25
|
productName: 'Kendo UI for Angular',
|
|
29
26
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
30
|
-
publishDate:
|
|
31
|
-
version: '16.
|
|
27
|
+
publishDate: 1721847115,
|
|
28
|
+
version: '16.6.0-develop.2',
|
|
32
29
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
33
30
|
};
|
|
34
31
|
|
|
@@ -332,11 +329,12 @@ class ListViewNavigableItemDirective {
|
|
|
332
329
|
}
|
|
333
330
|
}
|
|
334
331
|
ListViewNavigableItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewNavigableItemDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: NavigationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
335
|
-
ListViewNavigableItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ListViewNavigableItemDirective, selector: "[kendoListViewNavigableItem]", inputs: { index: "index" }, usesOnChanges: true, ngImport: i0 });
|
|
332
|
+
ListViewNavigableItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ListViewNavigableItemDirective, isStandalone: true, selector: "[kendoListViewNavigableItem]", inputs: { index: "index" }, usesOnChanges: true, ngImport: i0 });
|
|
336
333
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewNavigableItemDirective, decorators: [{
|
|
337
334
|
type: Directive,
|
|
338
335
|
args: [{
|
|
339
|
-
selector: '[kendoListViewNavigableItem]'
|
|
336
|
+
selector: '[kendoListViewNavigableItem]',
|
|
337
|
+
standalone: true
|
|
340
338
|
}]
|
|
341
339
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: NavigationService }]; }, propDecorators: { index: [{
|
|
342
340
|
type: Input
|
|
@@ -359,11 +357,12 @@ class ItemTemplateDirective {
|
|
|
359
357
|
}
|
|
360
358
|
}
|
|
361
359
|
ItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
362
|
-
ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ItemTemplateDirective, selector: "[kendoListViewItemTemplate]", ngImport: i0 });
|
|
360
|
+
ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ItemTemplateDirective, isStandalone: true, selector: "[kendoListViewItemTemplate]", ngImport: i0 });
|
|
363
361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ItemTemplateDirective, decorators: [{
|
|
364
362
|
type: Directive,
|
|
365
363
|
args: [{
|
|
366
|
-
selector: '[kendoListViewItemTemplate]'
|
|
364
|
+
selector: '[kendoListViewItemTemplate]',
|
|
365
|
+
standalone: true
|
|
367
366
|
}]
|
|
368
367
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
369
368
|
|
|
@@ -378,11 +377,12 @@ class HeaderTemplateDirective {
|
|
|
378
377
|
}
|
|
379
378
|
}
|
|
380
379
|
HeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
381
|
-
HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTemplateDirective, selector: "[kendoListViewHeaderTemplate]", ngImport: i0 });
|
|
380
|
+
HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTemplateDirective, isStandalone: true, selector: "[kendoListViewHeaderTemplate]", ngImport: i0 });
|
|
382
381
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTemplateDirective, decorators: [{
|
|
383
382
|
type: Directive,
|
|
384
383
|
args: [{
|
|
385
|
-
selector: '[kendoListViewHeaderTemplate]'
|
|
384
|
+
selector: '[kendoListViewHeaderTemplate]',
|
|
385
|
+
standalone: true
|
|
386
386
|
}]
|
|
387
387
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
388
388
|
|
|
@@ -397,11 +397,12 @@ class FooterTemplateDirective {
|
|
|
397
397
|
}
|
|
398
398
|
}
|
|
399
399
|
FooterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
400
|
-
FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FooterTemplateDirective, selector: "[kendoListViewFooterTemplate]", ngImport: i0 });
|
|
400
|
+
FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FooterTemplateDirective, isStandalone: true, selector: "[kendoListViewFooterTemplate]", ngImport: i0 });
|
|
401
401
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterTemplateDirective, decorators: [{
|
|
402
402
|
type: Directive,
|
|
403
403
|
args: [{
|
|
404
|
-
selector: '[kendoListViewFooterTemplate]'
|
|
404
|
+
selector: '[kendoListViewFooterTemplate]',
|
|
405
|
+
standalone: true
|
|
405
406
|
}]
|
|
406
407
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
407
408
|
|
|
@@ -416,11 +417,12 @@ class LoaderTemplateDirective {
|
|
|
416
417
|
}
|
|
417
418
|
}
|
|
418
419
|
LoaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
419
|
-
LoaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoaderTemplateDirective, selector: "[kendoListViewLoaderTemplate]", ngImport: i0 });
|
|
420
|
+
LoaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoaderTemplateDirective, isStandalone: true, selector: "[kendoListViewLoaderTemplate]", ngImport: i0 });
|
|
420
421
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderTemplateDirective, decorators: [{
|
|
421
422
|
type: Directive,
|
|
422
423
|
args: [{
|
|
423
|
-
selector: '[kendoListViewLoaderTemplate]'
|
|
424
|
+
selector: '[kendoListViewLoaderTemplate]',
|
|
425
|
+
standalone: true
|
|
424
426
|
}]
|
|
425
427
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
426
428
|
|
|
@@ -442,11 +444,12 @@ class EditTemplateDirective {
|
|
|
442
444
|
}
|
|
443
445
|
}
|
|
444
446
|
EditTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
445
|
-
EditTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditTemplateDirective, selector: "[kendoListViewEditTemplate]", ngImport: i0 });
|
|
447
|
+
EditTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditTemplateDirective, isStandalone: true, selector: "[kendoListViewEditTemplate]", ngImport: i0 });
|
|
446
448
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditTemplateDirective, decorators: [{
|
|
447
449
|
type: Directive,
|
|
448
450
|
args: [{
|
|
449
|
-
selector: '[kendoListViewEditTemplate]'
|
|
451
|
+
selector: '[kendoListViewEditTemplate]',
|
|
452
|
+
standalone: true
|
|
450
453
|
}]
|
|
451
454
|
}], ctorParameters: function () {
|
|
452
455
|
return [{ type: i0.TemplateRef, decorators: [{
|
|
@@ -909,7 +912,7 @@ class ListViewComponent {
|
|
|
909
912
|
}
|
|
910
913
|
}
|
|
911
914
|
ListViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", 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 });
|
|
912
|
-
ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ListViewComponent, selector: "kendo-listview", inputs: { bordered: "bordered", 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-d-flex": "this.className", "class.k-listview-bordered": "this.bordered" } }, providers: [
|
|
915
|
+
ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ListViewComponent, isStandalone: true, selector: "kendo-listview", inputs: { bordered: "bordered", 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-d-flex": "this.className", "class.k-listview-bordered": "this.bordered" } }, providers: [
|
|
913
916
|
EditService,
|
|
914
917
|
NavigationService,
|
|
915
918
|
LocalizationService,
|
|
@@ -1044,7 +1047,7 @@ ListViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
1044
1047
|
>
|
|
1045
1048
|
</kendo-datapager>
|
|
1046
1049
|
</ng-template>
|
|
1047
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
1050
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: ListViewNavigableItemDirective, selector: "[kendoListViewNavigableItem]", inputs: ["index"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PagerComponent, selector: "kendo-datapager", inputs: ["total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1048
1051
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewComponent, decorators: [{
|
|
1049
1052
|
type: Component,
|
|
1050
1053
|
args: [{
|
|
@@ -1187,7 +1190,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1187
1190
|
>
|
|
1188
1191
|
</kendo-datapager>
|
|
1189
1192
|
</ng-template>
|
|
1190
|
-
|
|
1193
|
+
`,
|
|
1194
|
+
standalone: true,
|
|
1195
|
+
imports: [NgIf, NgTemplateOutlet, NgClass, NgStyle, EventsOutsideAngularDirective, ListViewNavigableItemDirective, NgFor, PagerComponent]
|
|
1191
1196
|
}]
|
|
1192
1197
|
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: EditService }, { type: NavigationService }]; }, propDecorators: { className: [{
|
|
1193
1198
|
type: HostBinding,
|
|
@@ -1312,11 +1317,12 @@ class DataBindingDirective {
|
|
|
1312
1317
|
}
|
|
1313
1318
|
}
|
|
1314
1319
|
DataBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DataBindingDirective, deps: [{ token: ListViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1315
|
-
DataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DataBindingDirective, selector: "[kendoListViewBinding]", inputs: { data: ["kendoListViewBinding", "data"] }, ngImport: i0 });
|
|
1320
|
+
DataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DataBindingDirective, isStandalone: true, selector: "[kendoListViewBinding]", inputs: { data: ["kendoListViewBinding", "data"] }, ngImport: i0 });
|
|
1316
1321
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DataBindingDirective, decorators: [{
|
|
1317
1322
|
type: Directive,
|
|
1318
1323
|
args: [{
|
|
1319
|
-
selector: '[kendoListViewBinding]'
|
|
1324
|
+
selector: '[kendoListViewBinding]',
|
|
1325
|
+
standalone: true
|
|
1320
1326
|
}]
|
|
1321
1327
|
}], ctorParameters: function () { return [{ type: ListViewComponent }]; }, propDecorators: { data: [{
|
|
1322
1328
|
type: Input,
|
|
@@ -1363,7 +1369,7 @@ class EditCommandDirective extends Button {
|
|
|
1363
1369
|
}
|
|
1364
1370
|
}
|
|
1365
1371
|
EditCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1366
|
-
EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditCommandDirective, selector: "[kendoListViewEditCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1372
|
+
EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditCommandDirective, isStandalone: true, selector: "[kendoListViewEditCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1367
1373
|
<kendo-icon-wrapper
|
|
1368
1374
|
*ngIf="icon || svgIcon"
|
|
1369
1375
|
innerCssClass="k-button-icon"
|
|
@@ -1374,7 +1380,7 @@ EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
1374
1380
|
</span>
|
|
1375
1381
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1376
1382
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1377
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
1383
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1378
1384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditCommandDirective, decorators: [{
|
|
1379
1385
|
type: Component,
|
|
1380
1386
|
args: [{
|
|
@@ -1390,7 +1396,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1390
1396
|
</span>
|
|
1391
1397
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1392
1398
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1393
|
-
|
|
1399
|
+
`,
|
|
1400
|
+
standalone: true,
|
|
1401
|
+
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
1394
1402
|
}]
|
|
1395
1403
|
}], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
|
|
1396
1404
|
type: HostListener,
|
|
@@ -1427,7 +1435,7 @@ class AddCommandDirective extends Button {
|
|
|
1427
1435
|
}
|
|
1428
1436
|
}
|
|
1429
1437
|
AddCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AddCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1430
|
-
AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AddCommandDirective, selector: "[kendoListViewAddCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1438
|
+
AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AddCommandDirective, isStandalone: true, selector: "[kendoListViewAddCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1431
1439
|
<kendo-icon-wrapper
|
|
1432
1440
|
*ngIf="icon || svgIcon"
|
|
1433
1441
|
innerCssClass="k-button-icon"
|
|
@@ -1438,7 +1446,7 @@ AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
1438
1446
|
</span>
|
|
1439
1447
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1440
1448
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1441
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
1449
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1442
1450
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AddCommandDirective, decorators: [{
|
|
1443
1451
|
type: Component,
|
|
1444
1452
|
args: [{
|
|
@@ -1454,7 +1462,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1454
1462
|
</span>
|
|
1455
1463
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1456
1464
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1457
|
-
|
|
1465
|
+
`,
|
|
1466
|
+
standalone: true,
|
|
1467
|
+
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
1458
1468
|
}]
|
|
1459
1469
|
}], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
|
|
1460
1470
|
type: HostListener,
|
|
@@ -1506,7 +1516,7 @@ class SaveCommandDirective extends Button {
|
|
|
1506
1516
|
}
|
|
1507
1517
|
}
|
|
1508
1518
|
SaveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SaveCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1509
|
-
SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SaveCommandDirective, selector: "[kendoListViewSaveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1519
|
+
SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SaveCommandDirective, isStandalone: true, selector: "[kendoListViewSaveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1510
1520
|
<kendo-icon-wrapper
|
|
1511
1521
|
*ngIf="icon || svgIcon"
|
|
1512
1522
|
innerCssClass="k-button-icon"
|
|
@@ -1517,7 +1527,7 @@ SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
1517
1527
|
</span>
|
|
1518
1528
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1519
1529
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1520
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
1530
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1521
1531
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SaveCommandDirective, decorators: [{
|
|
1522
1532
|
type: Component,
|
|
1523
1533
|
args: [{
|
|
@@ -1533,7 +1543,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1533
1543
|
</span>
|
|
1534
1544
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1535
1545
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1536
|
-
|
|
1546
|
+
`,
|
|
1547
|
+
standalone: true,
|
|
1548
|
+
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
1537
1549
|
}]
|
|
1538
1550
|
}], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
|
|
1539
1551
|
type: HostListener,
|
|
@@ -1585,7 +1597,7 @@ class CancelCommandDirective extends Button {
|
|
|
1585
1597
|
}
|
|
1586
1598
|
}
|
|
1587
1599
|
CancelCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CancelCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1588
|
-
CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CancelCommandDirective, selector: "[kendoListViewCancelCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1600
|
+
CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CancelCommandDirective, isStandalone: true, selector: "[kendoListViewCancelCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1589
1601
|
<kendo-icon-wrapper
|
|
1590
1602
|
*ngIf="icon || svgIcon"
|
|
1591
1603
|
innerCssClass="k-button-icon"
|
|
@@ -1596,7 +1608,7 @@ CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
1596
1608
|
</span>
|
|
1597
1609
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1598
1610
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1599
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
1611
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1600
1612
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CancelCommandDirective, decorators: [{
|
|
1601
1613
|
type: Component,
|
|
1602
1614
|
args: [{
|
|
@@ -1612,7 +1624,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1612
1624
|
</span>
|
|
1613
1625
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1614
1626
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1615
|
-
|
|
1627
|
+
`,
|
|
1628
|
+
standalone: true,
|
|
1629
|
+
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
1616
1630
|
}]
|
|
1617
1631
|
}], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
|
|
1618
1632
|
type: HostListener,
|
|
@@ -1651,7 +1665,7 @@ class RemoveCommandDirective extends Button {
|
|
|
1651
1665
|
}
|
|
1652
1666
|
}
|
|
1653
1667
|
RemoveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RemoveCommandDirective, deps: [{ token: EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1654
|
-
RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RemoveCommandDirective, selector: "[kendoListViewRemoveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1668
|
+
RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: RemoveCommandDirective, isStandalone: true, selector: "[kendoListViewRemoveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
|
|
1655
1669
|
<kendo-icon-wrapper
|
|
1656
1670
|
*ngIf="icon || svgIcon"
|
|
1657
1671
|
innerCssClass="k-button-icon"
|
|
@@ -1662,7 +1676,7 @@ RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
1662
1676
|
</span>
|
|
1663
1677
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1664
1678
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1665
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
1679
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1666
1680
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RemoveCommandDirective, decorators: [{
|
|
1667
1681
|
type: Component,
|
|
1668
1682
|
args: [{
|
|
@@ -1678,7 +1692,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1678
1692
|
</span>
|
|
1679
1693
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
1680
1694
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
1681
|
-
|
|
1695
|
+
`,
|
|
1696
|
+
standalone: true,
|
|
1697
|
+
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
1682
1698
|
}]
|
|
1683
1699
|
}], ctorParameters: function () { return [{ type: EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
|
|
1684
1700
|
type: HostListener,
|
|
@@ -1686,43 +1702,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1686
1702
|
}] } });
|
|
1687
1703
|
|
|
1688
1704
|
/**
|
|
1689
|
-
*
|
|
1705
|
+
* Utility array that contains all `@progress/kendo-angular-listview` related components and directives
|
|
1690
1706
|
*/
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
this.viewContainerRef = viewContainerRef;
|
|
1694
|
-
}
|
|
1695
|
-
set templateContext(context) {
|
|
1696
|
-
if (this.insertedViewRef) {
|
|
1697
|
-
this.viewContainerRef.remove(this.viewContainerRef.indexOf(this.insertedViewRef));
|
|
1698
|
-
this.insertedViewRef = undefined;
|
|
1699
|
-
}
|
|
1700
|
-
if (context.templateRef) {
|
|
1701
|
-
this.insertedViewRef = this.viewContainerRef.createEmbeddedView(context.templateRef, context);
|
|
1702
|
-
}
|
|
1703
|
-
}
|
|
1704
|
-
}
|
|
1705
|
-
TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1706
|
-
TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TemplateContextDirective, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
|
|
1707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateContextDirective, decorators: [{
|
|
1708
|
-
type: Directive,
|
|
1709
|
-
args: [{
|
|
1710
|
-
selector: '[templateContext]' // eslint-disable-line
|
|
1711
|
-
}]
|
|
1712
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { templateContext: [{
|
|
1713
|
-
type: Input
|
|
1714
|
-
}] } });
|
|
1715
|
-
|
|
1716
|
-
const TEMPLATE_DIRECTIVES = [
|
|
1707
|
+
const KENDO_LISTVIEW = [
|
|
1708
|
+
ListViewComponent,
|
|
1717
1709
|
ItemTemplateDirective,
|
|
1718
1710
|
HeaderTemplateDirective,
|
|
1719
1711
|
FooterTemplateDirective,
|
|
1720
|
-
LoaderTemplateDirective
|
|
1721
|
-
|
|
1722
|
-
const BINDING_DIRECTIVES = [
|
|
1723
|
-
DataBindingDirective
|
|
1724
|
-
];
|
|
1725
|
-
const EDITING_DIRECTIVES = [
|
|
1712
|
+
LoaderTemplateDirective,
|
|
1713
|
+
DataBindingDirective,
|
|
1726
1714
|
EditTemplateDirective,
|
|
1727
1715
|
EditCommandDirective,
|
|
1728
1716
|
CancelCommandDirective,
|
|
@@ -1730,6 +1718,8 @@ const EDITING_DIRECTIVES = [
|
|
|
1730
1718
|
RemoveCommandDirective,
|
|
1731
1719
|
AddCommandDirective
|
|
1732
1720
|
];
|
|
1721
|
+
|
|
1722
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
1733
1723
|
/**
|
|
1734
1724
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1735
1725
|
* definition for the ListView component.
|
|
@@ -1753,59 +1743,21 @@ const EDITING_DIRECTIVES = [
|
|
|
1753
1743
|
class ListViewModule {
|
|
1754
1744
|
}
|
|
1755
1745
|
ListViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1756
|
-
ListViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ListViewModule,
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
SaveCommandDirective,
|
|
1763
|
-
RemoveCommandDirective,
|
|
1764
|
-
AddCommandDirective, ListViewComponent,
|
|
1765
|
-
TemplateContextDirective,
|
|
1766
|
-
ListViewNavigableItemDirective], imports: [CommonModule,
|
|
1767
|
-
PagerModule,
|
|
1768
|
-
EventsModule,
|
|
1769
|
-
IconsModule], exports: [ItemTemplateDirective,
|
|
1770
|
-
HeaderTemplateDirective,
|
|
1771
|
-
FooterTemplateDirective,
|
|
1772
|
-
LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective,
|
|
1773
|
-
EditCommandDirective,
|
|
1774
|
-
CancelCommandDirective,
|
|
1775
|
-
SaveCommandDirective,
|
|
1776
|
-
RemoveCommandDirective,
|
|
1777
|
-
AddCommandDirective, ListViewComponent,
|
|
1778
|
-
CommonModule,
|
|
1779
|
-
EventsModule] });
|
|
1780
|
-
ListViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewModule, imports: [CommonModule,
|
|
1781
|
-
PagerModule,
|
|
1782
|
-
EventsModule,
|
|
1783
|
-
IconsModule, CommonModule,
|
|
1784
|
-
EventsModule] });
|
|
1746
|
+
ListViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ListViewModule, imports: [ListViewComponent, ItemTemplateDirective, HeaderTemplateDirective, FooterTemplateDirective, LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective], exports: [ListViewComponent, ItemTemplateDirective, HeaderTemplateDirective, FooterTemplateDirective, LoaderTemplateDirective, DataBindingDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective] });
|
|
1747
|
+
ListViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewModule, providers: [
|
|
1748
|
+
IconsService,
|
|
1749
|
+
PopupService,
|
|
1750
|
+
ResizeBatchService
|
|
1751
|
+
], imports: [ListViewComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective] });
|
|
1785
1752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListViewModule, decorators: [{
|
|
1786
1753
|
type: NgModule,
|
|
1787
1754
|
args: [{
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
ListViewNavigableItemDirective
|
|
1795
|
-
],
|
|
1796
|
-
exports: [
|
|
1797
|
-
TEMPLATE_DIRECTIVES,
|
|
1798
|
-
BINDING_DIRECTIVES,
|
|
1799
|
-
EDITING_DIRECTIVES,
|
|
1800
|
-
ListViewComponent,
|
|
1801
|
-
CommonModule,
|
|
1802
|
-
EventsModule
|
|
1803
|
-
],
|
|
1804
|
-
imports: [
|
|
1805
|
-
CommonModule,
|
|
1806
|
-
PagerModule,
|
|
1807
|
-
EventsModule,
|
|
1808
|
-
IconsModule
|
|
1755
|
+
imports: [...KENDO_LISTVIEW],
|
|
1756
|
+
exports: [...KENDO_LISTVIEW],
|
|
1757
|
+
providers: [
|
|
1758
|
+
IconsService,
|
|
1759
|
+
PopupService,
|
|
1760
|
+
ResizeBatchService
|
|
1809
1761
|
]
|
|
1810
1762
|
}]
|
|
1811
1763
|
}] });
|
|
@@ -1814,5 +1766,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1814
1766
|
* Generated bundle index. Do not edit.
|
|
1815
1767
|
*/
|
|
1816
1768
|
|
|
1817
|
-
export { AddCommandDirective, CancelCommandDirective, DataBindingDirective, EditCommandDirective, EditTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, ListViewComponent, ListViewModule, LoaderTemplateDirective, PageSizeChangeEvent, RemoveCommandDirective, SaveCommandDirective };
|
|
1769
|
+
export { AddCommandDirective, CancelCommandDirective, DataBindingDirective, EditCommandDirective, EditTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, ItemTemplateDirective, KENDO_LISTVIEW, ListViewComponent, ListViewModule, LoaderTemplateDirective, PageSizeChangeEvent, RemoveCommandDirective, SaveCommandDirective };
|
|
1818
1770
|
|