@progress/kendo-angular-listview 4.0.4-dev.202211290832 → 11.0.0-develop.100

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.
Files changed (85) hide show
  1. package/LICENSE.md +1 -1
  2. package/NOTICE.txt +4 -4
  3. package/README.md +1 -1
  4. package/data-binding/data-binding.directive.d.ts +1 -1
  5. package/editing/commands/add-command.directive.d.ts +2 -2
  6. package/editing/commands/cancel-command.directive.d.ts +2 -2
  7. package/editing/commands/edit-command.directive.d.ts +2 -2
  8. package/editing/commands/remove-command.directive.d.ts +2 -2
  9. package/editing/commands/save-command.directive.d.ts +2 -2
  10. package/editing/edit-template.directive.d.ts +1 -1
  11. package/editing/edit.service.d.ts +1 -1
  12. package/editing/events/add-event-args.interface.d.ts +1 -1
  13. package/editing/events/cancel-event-args.interface.d.ts +2 -3
  14. package/editing/events/edit-event-args.interface.d.ts +1 -1
  15. package/editing/events/remove-event-args.interface.d.ts +1 -1
  16. package/editing/events/save-event-args.interface.d.ts +1 -1
  17. package/{esm2015/data-binding/data-binding.directive.js → esm2020/data-binding/data-binding.directive.mjs} +5 -4
  18. package/{esm2015/editing/commands/add-command.directive.js → esm2020/editing/commands/add-command.directive.mjs} +34 -7
  19. package/{esm2015/editing/commands/cancel-command.directive.js → esm2020/editing/commands/cancel-command.directive.mjs} +34 -7
  20. package/{esm2015/editing/commands/edit-command.directive.js → esm2020/editing/commands/edit-command.directive.mjs} +34 -7
  21. package/{esm2015/editing/commands/remove-command.directive.js → esm2020/editing/commands/remove-command.directive.mjs} +34 -7
  22. package/{esm2015/editing/commands/save-command.directive.js → esm2020/editing/commands/save-command.directive.mjs} +34 -7
  23. package/{esm2015/editing/edit-template.directive.js → esm2020/editing/edit-template.directive.mjs} +5 -5
  24. package/{esm2015/editing/edit.service.js → esm2020/editing/edit.service.mjs} +5 -5
  25. package/{esm2015/editing/events/add-event-args.interface.js → esm2020/editing/events/add-event-args.interface.mjs} +1 -1
  26. package/{esm2015/editing/events/cancel-event-args.interface.js → esm2020/editing/events/cancel-event-args.interface.mjs} +1 -1
  27. package/{esm2015/editing/events/edit-event-args.interface.js → esm2020/editing/events/edit-event-args.interface.mjs} +1 -1
  28. package/{esm2015/editing/events/remove-event-args.interface.js → esm2020/editing/events/remove-event-args.interface.mjs} +1 -1
  29. package/esm2020/editing/events/save-event-args.interface.mjs +5 -0
  30. package/{esm2015/main.js → esm2020/index.mjs} +1 -1
  31. package/{esm2015/listview.component.js → esm2020/listview.component.mjs} +6 -9
  32. package/{esm2015/listview.module.js → esm2020/listview.module.mjs} +12 -8
  33. package/esm2020/models/listview-data-result.mjs +5 -0
  34. package/esm2020/models/page-change-event.mjs +5 -0
  35. package/{esm2015/models/page-size-change-event.js → esm2020/models/page-size-change-event.mjs} +1 -1
  36. package/esm2020/models/page-size-item.mjs +5 -0
  37. package/esm2020/models/pager-position.mjs +5 -0
  38. package/esm2020/models/pager-settings.mjs +5 -0
  39. package/esm2020/models/pager-type.mjs +5 -0
  40. package/esm2020/models/scroll-bottom-event.mjs +5 -0
  41. package/{esm2015/navigation/listview-navigable-item.directive.js → esm2020/navigation/listview-navigable-item.directive.mjs} +6 -5
  42. package/{esm2015/navigation/navigation.service.js → esm2020/navigation/navigation.service.mjs} +8 -6
  43. package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
  44. package/{esm2015/kendo-angular-listview.js → esm2020/progress-kendo-angular-listview.mjs} +2 -2
  45. package/{esm2015/templates/footer-template.directive.js → esm2020/templates/footer-template.directive.mjs} +5 -5
  46. package/{esm2015/templates/header-template.directive.js → esm2020/templates/header-template.directive.mjs} +5 -5
  47. package/{esm2015/templates/item-template.directive.js → esm2020/templates/item-template.directive.mjs} +5 -5
  48. package/{esm2015/templates/loader-template.directive.js → esm2020/templates/loader-template.directive.mjs} +5 -5
  49. package/{esm2015/templates/template-context.directive.js → esm2020/templates/template-context.directive.mjs} +5 -5
  50. package/{esm2015/utils.js → esm2020/utils.mjs} +1 -1
  51. package/fesm2015/progress-kendo-angular-listview.mjs +1801 -0
  52. package/{fesm2015/kendo-angular-listview.js → fesm2020/progress-kendo-angular-listview.mjs} +193 -74
  53. package/{main.d.ts → index.d.ts} +1 -1
  54. package/listview.component.d.ts +1 -1
  55. package/listview.module.d.ts +3 -2
  56. package/models/listview-data-result.d.ts +1 -1
  57. package/models/page-change-event.d.ts +2 -3
  58. package/models/page-size-change-event.d.ts +1 -1
  59. package/models/page-size-item.d.ts +1 -1
  60. package/models/pager-position.d.ts +1 -1
  61. package/models/pager-settings.d.ts +1 -1
  62. package/models/pager-type.d.ts +1 -1
  63. package/models/scroll-bottom-event.d.ts +1 -1
  64. package/navigation/listview-navigable-item.directive.d.ts +1 -1
  65. package/navigation/navigation.service.d.ts +1 -1
  66. package/package-metadata.d.ts +1 -1
  67. package/package.json +34 -60
  68. package/{kendo-angular-listview.d.ts → progress-kendo-angular-listview.d.ts} +2 -2
  69. package/schematics/ngAdd/index.js +4 -6
  70. package/templates/footer-template.directive.d.ts +1 -1
  71. package/templates/header-template.directive.d.ts +1 -1
  72. package/templates/item-template.directive.d.ts +1 -1
  73. package/templates/loader-template.directive.d.ts +1 -1
  74. package/templates/template-context.directive.d.ts +1 -1
  75. package/utils.d.ts +1 -1
  76. package/bundles/kendo-angular-listview.umd.js +0 -5
  77. package/esm2015/editing/events/save-event-args.interface.js +0 -5
  78. package/esm2015/models/listview-data-result.js +0 -5
  79. package/esm2015/models/page-change-event.js +0 -5
  80. package/esm2015/models/page-size-item.js +0 -5
  81. package/esm2015/models/pager-position.js +0 -5
  82. package/esm2015/models/pager-settings.js +0 -5
  83. package/esm2015/models/pager-type.js +0 -5
  84. package/esm2015/models/scroll-bottom-event.js +0 -5
  85. package/schematics/ngAdd/index.js.map +0 -1
package/LICENSE.md CHANGED
@@ -8,4 +8,4 @@ This is commercial software. To use it, you need to agree to the [**Telerik End
8
8
 
9
9
  All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui.
10
10
 
11
- *Copyright © 2022 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
11
+ *Copyright © 2023 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
package/NOTICE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Progress Kendo UI for Angular 2022
1
+ Progress Kendo UI for Angular 2023
2
2
 
3
3
  Copyright (c) 2016-2022 Progress Software Corporation and/or one of its
4
4
  subsidiaries or affiliates. All rights reserved.
@@ -37,7 +37,7 @@ DefinitelyTyped.org | @types/prosemirror-view | 1.11.4 - Open Source | MIT-style
37
37
  Isaac Z. Schlueter | glob | 7.1.3 - Open Source | ISC-style License
38
38
  Jorik Tangelder (Eight Media) | HammerJS | 2.0.8 - Open Source | MIT-style License
39
39
  Matt Mueller | cheerio | 0.22 - Open Source | MIT-style License
40
- Progress Software Corporation | Kendo UI Licensing CLI | 1.1 - Proprietary |
40
+ Progress Software Corporation | Kendo UI Licensing CLI | 1.1 - Proprietary |
41
41
  Progress Software Corporation | jszip-esm | 1.0.0 - Open Source | MIT-style License
42
42
  Progress Software Corporation | pako-esm | 1.0.0 - Open Source | MIT-style License
43
43
  ProseMirror | prosemiror-inputrules | 1.0.1 - Open Source | MIT-style License
@@ -433,7 +433,7 @@ subject to the following terms and conditions:
433
433
  @types/prosemirror-inputrules v1*, @types/prosemirror-keymap v1*, @types/prosemirror-model v1*,
434
434
  @types/prosemirror-schema-list v1*, @types/prosemirror-state v1*, @types/prosemirror-tables v0.9*,
435
435
  @types/prosemirror-transform v1*, and @types/prosemirror-view v1*. Such technologies are
436
- subject to the following terms and conditions:
436
+ subject to the following terms and conditions:
437
437
 
438
438
  This project is licensed under the MIT license.
439
439
  Copyrights are respective of each contributor listed at the beginning of each
@@ -640,7 +640,7 @@ Such technology is subject to the following terms and conditions:
640
640
  2. Special Notices Regarding Commercially Licensed Third-Party Components
641
641
  incorporated into the Product: NONE
642
642
 
643
- 3. Special Notices Regarding Progress Products incorporated into the Product:
643
+ 3. Special Notices Regarding Progress Products incorporated into the Product:
644
644
 
645
645
  (a) Progress Kendo UI for Angular 2022 incorporates Kendo UI Licensing CLI v1.1
646
646
  from Progress Software Corporation. See NOTICE.txt text file within product for
package/README.md CHANGED
@@ -28,6 +28,6 @@ Kendo UI for Angular is a commercial UI library designed and built for developin
28
28
  * [Feedback Portal](https://feedback.telerik.com/kendo-angular-ui)
29
29
  * [StackOverflow](https://stackoverflow.com/questions/tagged/kendo-ui-angular2)
30
30
 
31
- *Copyright © 2022 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
31
+ *Copyright © 2023 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
32
32
 
33
33
  *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ListViewComponent } from '../listview.component';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
@@ -31,5 +31,5 @@ export declare class AddCommandDirective extends Button {
31
31
  clickHandler(e: any): void;
32
32
  constructor(editService: EditService, element: ElementRef, renderer: Renderer, localization: LocalizationService, ngZone: NgZone);
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<AddCommandDirective, never>;
34
- static ɵdir: i0.ɵɵDirectiveDeclaration<AddCommandDirective, "[kendoListViewAddCommand]", never, {}, {}, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddCommandDirective, "[kendoListViewAddCommand]", never, {}, {}, never, ["*"]>;
35
35
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
@@ -43,5 +43,5 @@ export declare class CancelCommandDirective extends Button {
43
43
  clickHandler(e: any): void;
44
44
  constructor(editService: EditService, element: ElementRef, renderer: Renderer, localization: LocalizationService, ngZone: NgZone);
45
45
  static ɵfac: i0.ɵɵFactoryDeclaration<CancelCommandDirective, never>;
46
- static ɵdir: i0.ɵɵDirectiveDeclaration<CancelCommandDirective, "[kendoListViewCancelCommand]", never, {}, {}, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<CancelCommandDirective, "[kendoListViewCancelCommand]", never, {}, {}, never, ["*"]>;
47
47
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
@@ -33,5 +33,5 @@ export declare class EditCommandDirective extends Button {
33
33
  clickHandler(e: any): void;
34
34
  constructor(editService: EditService, element: ElementRef, renderer: Renderer, localization: LocalizationService, ngZone: NgZone);
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<EditCommandDirective, never>;
36
- static ɵdir: i0.ɵɵDirectiveDeclaration<EditCommandDirective, "[kendoListViewEditCommand]", never, {}, {}, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditCommandDirective, "[kendoListViewEditCommand]", never, {}, {}, never, ["*"]>;
37
37
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
@@ -32,5 +32,5 @@ export declare class RemoveCommandDirective extends Button {
32
32
  clickHandler(e: any): void;
33
33
  constructor(editService: EditService, element: ElementRef, renderer: Renderer, localization: LocalizationService, ngZone: NgZone);
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<RemoveCommandDirective, never>;
35
- static ɵdir: i0.ɵɵDirectiveDeclaration<RemoveCommandDirective, "[kendoListViewRemoveCommand]", never, {}, {}, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<RemoveCommandDirective, "[kendoListViewRemoveCommand]", never, {}, {}, never, ["*"]>;
36
36
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
@@ -43,5 +43,5 @@ export declare class SaveCommandDirective extends Button {
43
43
  clickHandler(e: any): void;
44
44
  constructor(editService: EditService, element: ElementRef, renderer: Renderer, localization: LocalizationService, ngZone: NgZone);
45
45
  static ɵfac: i0.ɵɵFactoryDeclaration<SaveCommandDirective, never>;
46
- static ɵdir: i0.ɵɵDirectiveDeclaration<SaveCommandDirective, "[kendoListViewSaveCommand]", never, {}, {}, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<SaveCommandDirective, "[kendoListViewSaveCommand]", never, {}, {}, never, ["*"]>;
47
47
  }
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { TemplateRef } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { EventEmitter, NgZone } from '@angular/core';
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { EditEvent } from "./edit-event-args.interface";
@@ -1,10 +1,9 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { SaveEvent } from "./save-event-args.interface";
6
6
  /**
7
7
  * Arguments for the `cancel` event.
8
8
  */
9
- export interface CancelEvent extends SaveEvent {
10
- }
9
+ export declare type CancelEvent = SaveEvent;
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { ListViewComponent } from "../../listview.component";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { EditEvent } from "./edit-event-args.interface";
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { EditEvent } from "./edit-event-args.interface";
@@ -1,9 +1,10 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  import { Directive, Input } from '@angular/core';
6
6
  import { Subscription } from 'rxjs';
7
+ import { ListViewComponent } from '../listview.component';
7
8
  import * as i0 from "@angular/core";
8
9
  import * as i1 from "../listview.component";
9
10
  /**
@@ -50,9 +51,9 @@ export class DataBindingDirective {
50
51
  };
51
52
  }
52
53
  }
53
- DataBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DataBindingDirective, deps: [{ token: i1.ListViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
54
- DataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: DataBindingDirective, selector: "[kendoListViewBinding]", inputs: { data: ["kendoListViewBinding", "data"] }, ngImport: i0 });
55
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: DataBindingDirective, decorators: [{
54
+ DataBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DataBindingDirective, deps: [{ token: i1.ListViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
55
+ DataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: DataBindingDirective, selector: "[kendoListViewBinding]", inputs: { data: ["kendoListViewBinding", "data"] }, ngImport: i0 });
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DataBindingDirective, decorators: [{
56
57
  type: Directive,
57
58
  args: [{
58
59
  selector: '[kendoListViewBinding]'
@@ -1,12 +1,16 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Directive, HostListener } from '@angular/core';
5
+ import { Component, HostListener, ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
6
6
  import { Button } from '@progress/kendo-angular-buttons';
7
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { EditService } from '../edit.service';
7
9
  import * as i0 from "@angular/core";
8
10
  import * as i1 from "../edit.service";
9
11
  import * as i2 from "@progress/kendo-angular-l10n";
12
+ import * as i3 from "@progress/kendo-angular-icons";
13
+ import * as i4 from "@angular/common";
10
14
  /**
11
15
  * Represents the command for adding a new item to the ListView. You can apply this directive to any
12
16
  * `button` element inside a [`HeaderTemplate`]({% slug api_listview_headertemplatedirective %}).
@@ -36,12 +40,35 @@ export class AddCommandDirective extends Button {
36
40
  this.editService.beginAdd();
37
41
  }
38
42
  }
39
- AddCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: AddCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
40
- AddCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: AddCommandDirective, selector: "[kendoListViewAddCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
41
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: AddCommandDirective, decorators: [{
42
- type: Directive,
43
+ AddCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AddCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
44
+ AddCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AddCommandDirective, selector: "[kendoListViewAddCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
45
+ <kendo-icon-wrapper
46
+ *ngIf="icon || svgIcon"
47
+ innerCssClass="k-button-icon"
48
+ [name]="icon"
49
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
50
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
51
+ <img [src]="imageUrl" class="k-image" role="presentation" />
52
+ </span>
53
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
54
+ <span class="k-button-text"><ng-content></ng-content></span>
55
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AddCommandDirective, decorators: [{
57
+ type: Component,
43
58
  args: [{
44
- selector: '[kendoListViewAddCommand]'
59
+ selector: '[kendoListViewAddCommand]',
60
+ template: `
61
+ <kendo-icon-wrapper
62
+ *ngIf="icon || svgIcon"
63
+ innerCssClass="k-button-icon"
64
+ [name]="icon"
65
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
66
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
67
+ <img [src]="imageUrl" class="k-image" role="presentation" />
68
+ </span>
69
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
70
+ <span class="k-button-text"><ng-content></ng-content></span>
71
+ `
45
72
  }]
46
73
  }], ctorParameters: function () { return [{ type: i1.EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
47
74
  type: HostListener,
@@ -1,13 +1,17 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Directive, HostListener } from '@angular/core';
5
+ import { Component, HostListener, ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
6
6
  import { Button } from '@progress/kendo-angular-buttons';
7
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { EditService } from '../edit.service';
7
9
  import { getClosestListItemIndex } from '../../utils';
8
10
  import * as i0 from "@angular/core";
9
11
  import * as i1 from "../edit.service";
10
12
  import * as i2 from "@progress/kendo-angular-l10n";
13
+ import * as i3 from "@progress/kendo-angular-icons";
14
+ import * as i4 from "@angular/common";
11
15
  /**
12
16
  * Represents the `cancel` command of the ListView. You can apply this directive to any `button`
13
17
  * element inside a [`EditTemplateDirective`]({% slug api_listview_edittemplatedirective %}) template.
@@ -52,12 +56,35 @@ export class CancelCommandDirective extends Button {
52
56
  }
53
57
  }
54
58
  }
55
- CancelCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CancelCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
56
- CancelCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: CancelCommandDirective, selector: "[kendoListViewCancelCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
57
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CancelCommandDirective, decorators: [{
58
- type: Directive,
59
+ CancelCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CancelCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
60
+ CancelCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CancelCommandDirective, selector: "[kendoListViewCancelCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
61
+ <kendo-icon-wrapper
62
+ *ngIf="icon || svgIcon"
63
+ innerCssClass="k-button-icon"
64
+ [name]="icon"
65
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
66
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
67
+ <img [src]="imageUrl" class="k-image" role="presentation" />
68
+ </span>
69
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
70
+ <span class="k-button-text"><ng-content></ng-content></span>
71
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
72
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CancelCommandDirective, decorators: [{
73
+ type: Component,
59
74
  args: [{
60
- selector: '[kendoListViewCancelCommand]'
75
+ selector: '[kendoListViewCancelCommand]',
76
+ template: `
77
+ <kendo-icon-wrapper
78
+ *ngIf="icon || svgIcon"
79
+ innerCssClass="k-button-icon"
80
+ [name]="icon"
81
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
82
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
83
+ <img [src]="imageUrl" class="k-image" role="presentation" />
84
+ </span>
85
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
86
+ <span class="k-button-text"><ng-content></ng-content></span>
87
+ `
61
88
  }]
62
89
  }], ctorParameters: function () { return [{ type: i1.EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
63
90
  type: HostListener,
@@ -1,13 +1,17 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Directive, HostListener } from '@angular/core';
5
+ import { Component, HostListener, ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
6
6
  import { Button } from '@progress/kendo-angular-buttons';
7
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { EditService } from '../edit.service';
7
9
  import { getClosestListItemIndex } from '../../utils';
8
10
  import * as i0 from "@angular/core";
9
11
  import * as i1 from "../edit.service";
10
12
  import * as i2 from "@progress/kendo-angular-l10n";
13
+ import * as i3 from "@progress/kendo-angular-icons";
14
+ import * as i4 from "@angular/common";
11
15
  /**
12
16
  * Represents the `edit` command of the ListView. You can apply this directive to any `button`
13
17
  * element inside a [`EditTemplateDirective`]({% slug api_listview_edittemplatedirective %}) template.
@@ -40,12 +44,35 @@ export class EditCommandDirective extends Button {
40
44
  this.editService.beginEdit(index);
41
45
  }
42
46
  }
43
- EditCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
44
- EditCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditCommandDirective, selector: "[kendoListViewEditCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
45
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditCommandDirective, decorators: [{
46
- type: Directive,
47
+ EditCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
48
+ EditCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: EditCommandDirective, selector: "[kendoListViewEditCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
49
+ <kendo-icon-wrapper
50
+ *ngIf="icon || svgIcon"
51
+ innerCssClass="k-button-icon"
52
+ [name]="icon"
53
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
54
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
55
+ <img [src]="imageUrl" class="k-image" role="presentation" />
56
+ </span>
57
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
58
+ <span class="k-button-text"><ng-content></ng-content></span>
59
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
60
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditCommandDirective, decorators: [{
61
+ type: Component,
47
62
  args: [{
48
- selector: '[kendoListViewEditCommand]'
63
+ selector: '[kendoListViewEditCommand]',
64
+ template: `
65
+ <kendo-icon-wrapper
66
+ *ngIf="icon || svgIcon"
67
+ innerCssClass="k-button-icon"
68
+ [name]="icon"
69
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
70
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
71
+ <img [src]="imageUrl" class="k-image" role="presentation" />
72
+ </span>
73
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
74
+ <span class="k-button-text"><ng-content></ng-content></span>
75
+ `
49
76
  }]
50
77
  }], ctorParameters: function () { return [{ type: i1.EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
51
78
  type: HostListener,
@@ -1,13 +1,17 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Directive, HostListener } from '@angular/core';
5
+ import { Component, HostListener, ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
6
6
  import { Button } from '@progress/kendo-angular-buttons';
7
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { EditService } from '../edit.service';
7
9
  import { getClosestListItemIndex } from '../../utils';
8
10
  import * as i0 from "@angular/core";
9
11
  import * as i1 from "../edit.service";
10
12
  import * as i2 from "@progress/kendo-angular-l10n";
13
+ import * as i3 from "@progress/kendo-angular-icons";
14
+ import * as i4 from "@angular/common";
11
15
  /**
12
16
  * Represents the `remove` command of the ListView. You can apply this directive to any `button` element
13
17
  * inside a [`EditTemplateDirective`]({% slug api_listview_edittemplatedirective %}) template.
@@ -39,12 +43,35 @@ export class RemoveCommandDirective extends Button {
39
43
  this.editService.remove(index);
40
44
  }
41
45
  }
42
- RemoveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: RemoveCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
43
- RemoveCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: RemoveCommandDirective, selector: "[kendoListViewRemoveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
44
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: RemoveCommandDirective, decorators: [{
45
- type: Directive,
46
+ RemoveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: RemoveCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
47
+ RemoveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: RemoveCommandDirective, selector: "[kendoListViewRemoveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
48
+ <kendo-icon-wrapper
49
+ *ngIf="icon || svgIcon"
50
+ innerCssClass="k-button-icon"
51
+ [name]="icon"
52
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
53
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
54
+ <img [src]="imageUrl" class="k-image" role="presentation" />
55
+ </span>
56
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
57
+ <span class="k-button-text"><ng-content></ng-content></span>
58
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
59
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: RemoveCommandDirective, decorators: [{
60
+ type: Component,
46
61
  args: [{
47
- selector: '[kendoListViewRemoveCommand]'
62
+ selector: '[kendoListViewRemoveCommand]',
63
+ template: `
64
+ <kendo-icon-wrapper
65
+ *ngIf="icon || svgIcon"
66
+ innerCssClass="k-button-icon"
67
+ [name]="icon"
68
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
69
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
70
+ <img [src]="imageUrl" class="k-image" role="presentation" />
71
+ </span>
72
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
73
+ <span class="k-button-text"><ng-content></ng-content></span>
74
+ `
48
75
  }]
49
76
  }], ctorParameters: function () { return [{ type: i1.EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
50
77
  type: HostListener,
@@ -1,13 +1,17 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Directive, HostListener } from '@angular/core';
5
+ import { Component, HostListener, ElementRef, Renderer2 as Renderer, NgZone } from '@angular/core';
6
6
  import { Button } from '@progress/kendo-angular-buttons';
7
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { EditService } from '../edit.service';
7
9
  import { getClosestListItemIndex } from '../../utils';
8
10
  import * as i0 from "@angular/core";
9
11
  import * as i1 from "../edit.service";
10
12
  import * as i2 from "@progress/kendo-angular-l10n";
13
+ import * as i3 from "@progress/kendo-angular-icons";
14
+ import * as i4 from "@angular/common";
11
15
  /**
12
16
  * Represents the `save` command of the ListView. You can apply this directive to any `button`
13
17
  * element inside a [`EditTemplateDirective`]({% slug api_listview_edittemplatedirective %}) template.
@@ -52,12 +56,35 @@ export class SaveCommandDirective extends Button {
52
56
  }
53
57
  }
54
58
  }
55
- SaveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SaveCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
56
- SaveCommandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: SaveCommandDirective, selector: "[kendoListViewSaveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
57
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SaveCommandDirective, decorators: [{
58
- type: Directive,
59
+ SaveCommandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SaveCommandDirective, deps: [{ token: i1.EditService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
60
+ SaveCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: SaveCommandDirective, selector: "[kendoListViewSaveCommand]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0, template: `
61
+ <kendo-icon-wrapper
62
+ *ngIf="icon || svgIcon"
63
+ innerCssClass="k-button-icon"
64
+ [name]="icon"
65
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
66
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
67
+ <img [src]="imageUrl" class="k-image" role="presentation" />
68
+ </span>
69
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
70
+ <span class="k-button-text"><ng-content></ng-content></span>
71
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
72
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SaveCommandDirective, decorators: [{
73
+ type: Component,
59
74
  args: [{
60
- selector: '[kendoListViewSaveCommand]'
75
+ selector: '[kendoListViewSaveCommand]',
76
+ template: `
77
+ <kendo-icon-wrapper
78
+ *ngIf="icon || svgIcon"
79
+ innerCssClass="k-button-icon"
80
+ [name]="icon"
81
+ [svgIcon]="svgIcon"></kendo-icon-wrapper>
82
+ <span *ngIf="imageUrl" class="k-button-icon k-icon">
83
+ <img [src]="imageUrl" class="k-image" role="presentation" />
84
+ </span>
85
+ <span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
86
+ <span class="k-button-text"><ng-content></ng-content></span>
87
+ `
61
88
  }]
62
89
  }], ctorParameters: function () { return [{ type: i1.EditService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i2.LocalizationService }, { type: i0.NgZone }]; }, propDecorators: { clickHandler: [{
63
90
  type: HostListener,
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Directive, Optional } from '@angular/core';
5
+ import { Directive, TemplateRef, Optional } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Represents the edit template of the ListView ([see example]({% slug editing_template_forms_listview %})).
@@ -21,9 +21,9 @@ export class EditTemplateDirective {
21
21
  this.templateRef = templateRef;
22
22
  }
23
23
  }
24
- EditTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
25
- EditTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditTemplateDirective, selector: "[kendoListViewEditTemplate]", ngImport: i0 });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditTemplateDirective, decorators: [{
24
+ EditTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
25
+ EditTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: EditTemplateDirective, selector: "[kendoListViewEditTemplate]", ngImport: i0 });
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditTemplateDirective, decorators: [{
27
27
  type: Directive,
28
28
  args: [{
29
29
  selector: '[kendoListViewEditTemplate]'
@@ -1,8 +1,8 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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 { Injectable, EventEmitter } from '@angular/core';
5
+ import { Injectable, EventEmitter, NgZone } from '@angular/core';
6
6
  import { FormGroup } from '@angular/forms';
7
7
  import { isPresent } from '../utils';
8
8
  import { Subject } from 'rxjs';
@@ -109,8 +109,8 @@ export class EditService {
109
109
  });
110
110
  }
111
111
  }
112
- EditService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
113
- EditService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditService });
114
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditService, decorators: [{
112
+ EditService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
113
+ EditService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditService });
114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EditService, decorators: [{
115
115
  type: Injectable
116
116
  }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
@@ -1,5 +1,5 @@
1
1
  /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
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
5
  export {};