@progress/kendo-angular-editor 17.0.0-develop.8 → 17.0.0

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 (127) hide show
  1. package/common/commands.d.ts +5 -5
  2. package/common/direction.d.ts +1 -1
  3. package/common/plugins-function.d.ts +1 -1
  4. package/common/predicate.d.ts +1 -1
  5. package/config/utils.d.ts +2 -2
  6. package/dialogs/colorpicker-dialog.component.d.ts +1 -1
  7. package/dialogs/file-link-dialog.component.d.ts +1 -1
  8. package/dialogs/font-family-dialog.component.d.ts +1 -1
  9. package/dialogs/font-size-dialog.component.d.ts +1 -1
  10. package/dialogs/format-dialog.component.d.ts +1 -1
  11. package/dialogs/image-dialog.component.d.ts +1 -1
  12. package/dialogs/insert-table-dialog.component.d.ts +1 -1
  13. package/dialogs/source-dialog.component.d.ts +1 -1
  14. package/editor.component.d.ts +1 -1
  15. package/editor.module.d.ts +2 -3
  16. package/{esm2020 → esm2022}/common/provider.service.mjs +4 -3
  17. package/{esm2020 → esm2022}/dialogs/colorpicker-dialog.component.mjs +16 -4
  18. package/{esm2020 → esm2022}/dialogs/file-link-dialog.component.mjs +14 -9
  19. package/{esm2020 → esm2022}/dialogs/font-family-dialog.component.mjs +12 -5
  20. package/{esm2020 → esm2022}/dialogs/font-size-dialog.component.mjs +12 -5
  21. package/{esm2020 → esm2022}/dialogs/format-dialog.component.mjs +12 -5
  22. package/{esm2020 → esm2022}/dialogs/image-dialog.component.mjs +28 -20
  23. package/{esm2020 → esm2022}/dialogs/insert-table-dialog.component.mjs +7 -4
  24. package/{esm2020 → esm2022}/dialogs/source-dialog.component.mjs +9 -5
  25. package/{esm2020 → esm2022}/editor.component.mjs +222 -180
  26. package/esm2022/editor.module.mjs +88 -0
  27. package/{esm2020 → esm2022}/index.mjs +1 -1
  28. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  29. package/{esm2020 → esm2022}/localization/editor-localization.service.mjs +3 -3
  30. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +7 -6
  31. package/esm2022/localization/messages.mjs +364 -0
  32. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  33. package/{esm2020 → esm2022}/preventable-events/paste-event.mjs +12 -0
  34. package/{esm2020 → esm2022}/preventable-events/preventable-event.mjs +1 -3
  35. package/{esm2020 → esm2022}/tools/alignment/editor-align-center-button.directive.mjs +3 -3
  36. package/{esm2020 → esm2022}/tools/alignment/editor-align-justify-button.directive.mjs +3 -3
  37. package/{esm2020 → esm2022}/tools/alignment/editor-align-left-button.directive.mjs +3 -3
  38. package/{esm2020 → esm2022}/tools/alignment/editor-align-right-button.directive.mjs +3 -3
  39. package/{esm2020 → esm2022}/tools/blockquote/editor-blockquote-button.directive.mjs +3 -3
  40. package/{esm2020 → esm2022}/tools/colorpicker/editor-back-color.directive.mjs +4 -3
  41. package/{esm2020 → esm2022}/tools/colorpicker/editor-colorpicker.component.mjs +59 -33
  42. package/{esm2020 → esm2022}/tools/colorpicker/editor-fore-color.directive.mjs +4 -3
  43. package/{esm2020 → esm2022}/tools/editor-clean-formatting-button.directive.mjs +3 -3
  44. package/{esm2020 → esm2022}/tools/fontfamily/editor-fontfamily-dropdownlist.component.mjs +14 -7
  45. package/{esm2020 → esm2022}/tools/fontfamily/editor-fontfamily.component.mjs +53 -41
  46. package/{esm2020 → esm2022}/tools/fontsize/editor-fontsize-dropdownlist.component.mjs +14 -7
  47. package/{esm2020 → esm2022}/tools/fontsize/editor-fontsize.component.mjs +48 -36
  48. package/{esm2020 → esm2022}/tools/format/editor-format-dropdownlist.component.mjs +14 -7
  49. package/{esm2020 → esm2022}/tools/format/editor-format.component.mjs +41 -36
  50. package/{esm2020 → esm2022}/tools/history/editor-redo-button.directive.mjs +3 -3
  51. package/{esm2020 → esm2022}/tools/history/editor-undo-button.directive.mjs +3 -3
  52. package/{esm2020 → esm2022}/tools/image/editor-insert-image-button.directive.mjs +3 -3
  53. package/{esm2020 → esm2022}/tools/indentation/editor-indent-button.directive.mjs +3 -3
  54. package/{esm2020 → esm2022}/tools/indentation/editor-outdent-button.directive.mjs +3 -3
  55. package/{esm2020 → esm2022}/tools/link/editor-create-link-button.directive.mjs +3 -3
  56. package/{esm2020 → esm2022}/tools/link/editor-insert-file-button.directive.mjs +3 -3
  57. package/{esm2020 → esm2022}/tools/link/editor-unlink-button.directive.mjs +3 -3
  58. package/{esm2020 → esm2022}/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -3
  59. package/{esm2020 → esm2022}/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -3
  60. package/{esm2020 → esm2022}/tools/print/editor-print-button.directive.mjs +3 -3
  61. package/{esm2020 → esm2022}/tools/select-all/select-all-button.directive.mjs +3 -3
  62. package/{esm2020 → esm2022}/tools/shared/dropdown-tool.directive.mjs +11 -9
  63. package/{esm2020 → esm2022}/tools/shared/editor-command-base.mjs +9 -3
  64. package/{esm2020 → esm2022}/tools/shared/editor-command-button.mjs +5 -0
  65. package/{esm2020 → esm2022}/tools/shared/editor-command-dialog.mjs +5 -0
  66. package/{esm2020 → esm2022}/tools/source/editor-view-source-button.directive.mjs +3 -3
  67. package/{esm2020 → esm2022}/tools/tables/editor-add-column-after-button.directive.mjs +3 -3
  68. package/{esm2020 → esm2022}/tools/tables/editor-add-column-before-button.directive.mjs +3 -3
  69. package/{esm2020 → esm2022}/tools/tables/editor-add-row-after-button.directive.mjs +3 -3
  70. package/{esm2020 → esm2022}/tools/tables/editor-add-row-before-button.directive.mjs +3 -3
  71. package/{esm2020 → esm2022}/tools/tables/editor-delete-column-button.directive.mjs +3 -3
  72. package/{esm2020 → esm2022}/tools/tables/editor-delete-row-button.directive.mjs +3 -3
  73. package/{esm2020 → esm2022}/tools/tables/editor-delete-table-button.directive.mjs +3 -3
  74. package/{esm2020 → esm2022}/tools/tables/editor-insert-table-button.component.mjs +26 -15
  75. package/{esm2020 → esm2022}/tools/tables/editor-merge-cells-button.directive.mjs +3 -3
  76. package/{esm2020 → esm2022}/tools/tables/editor-split-cell-button.directive.mjs +3 -3
  77. package/{esm2020 → esm2022}/tools/tables/popup-table-grid.component.mjs +11 -10
  78. package/{esm2020 → esm2022}/tools/tools.service.mjs +5 -4
  79. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -3
  80. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -3
  81. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -3
  82. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -3
  83. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -3
  84. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -3
  85. package/{fesm2020 → fesm2022}/progress-kendo-angular-editor.mjs +1602 -1168
  86. package/index.d.ts +1 -1
  87. package/localization/messages.d.ts +1 -1
  88. package/package.json +25 -31
  89. package/schematics/ngAdd/index.js +5 -5
  90. package/tools/colorpicker/editor-colorpicker.component.d.ts +2 -4
  91. package/tools/fontfamily/editor-fontfamily-dropdownlist.component.d.ts +1 -1
  92. package/tools/fontfamily/editor-fontfamily.component.d.ts +2 -4
  93. package/tools/fontsize/editor-fontsize-dropdownlist.component.d.ts +1 -1
  94. package/tools/fontsize/editor-fontsize.component.d.ts +2 -4
  95. package/tools/format/editor-format-dropdownlist.component.d.ts +1 -1
  96. package/tools/format/editor-format.component.d.ts +2 -4
  97. package/tools/tables/editor-insert-table-button.component.d.ts +0 -2
  98. package/esm2020/editor.module.mjs +0 -111
  99. package/esm2020/localization/messages.mjs +0 -132
  100. package/fesm2015/progress-kendo-angular-editor.mjs +0 -6403
  101. /package/{esm2020 → esm2022}/common/active-marks.mjs +0 -0
  102. /package/{esm2020 → esm2022}/common/apply-to-word-options.mjs +0 -0
  103. /package/{esm2020 → esm2022}/common/commands.mjs +0 -0
  104. /package/{esm2020 → esm2022}/common/css-settings.interface.mjs +0 -0
  105. /package/{esm2020 → esm2022}/common/direction.mjs +0 -0
  106. /package/{esm2020 → esm2022}/common/error-messages.mjs +0 -0
  107. /package/{esm2020 → esm2022}/common/font-family-item.interface.mjs +0 -0
  108. /package/{esm2020 → esm2022}/common/font-size-item.interface.mjs +0 -0
  109. /package/{esm2020 → esm2022}/common/format-item.interface.mjs +0 -0
  110. /package/{esm2020 → esm2022}/common/image-data.interface.mjs +0 -0
  111. /package/{esm2020 → esm2022}/common/link-data.interface.mjs +0 -0
  112. /package/{esm2020 → esm2022}/common/paste-cleanup-settings.mjs +0 -0
  113. /package/{esm2020 → esm2022}/common/plugins-function.mjs +0 -0
  114. /package/{esm2020 → esm2022}/common/predicate.mjs +0 -0
  115. /package/{esm2020 → esm2022}/common/resizable-options.interface.mjs +0 -0
  116. /package/{esm2020 → esm2022}/common/styles.mjs +0 -0
  117. /package/{esm2020 → esm2022}/common/table-data.interface.mjs +0 -0
  118. /package/{esm2020 → esm2022}/config/command-icons.mjs +0 -0
  119. /package/{esm2020 → esm2022}/config/commands.mjs +0 -0
  120. /package/{esm2020 → esm2022}/config/schema.mjs +0 -0
  121. /package/{esm2020 → esm2022}/config/semantic-nodes.mjs +0 -0
  122. /package/{esm2020 → esm2022}/config/table-commands.mjs +0 -0
  123. /package/{esm2020 → esm2022}/config/utils.mjs +0 -0
  124. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  125. /package/{esm2020 → esm2022}/editor-toolbar-state.mjs +0 -0
  126. /package/{esm2020 → esm2022}/progress-kendo-angular-editor.mjs +0 -0
  127. /package/{esm2020 → esm2022}/util.mjs +0 -0
@@ -34,16 +34,33 @@ const popupWrapperHeight = '164px'; // Set to '192px' when TableWizard button is
34
34
  * ```
35
35
  */
36
36
  export class EditorInsertTableButtonComponent extends ToolBarToolComponent {
37
+ localization;
38
+ popupService;
39
+ dialogService;
40
+ renderer;
41
+ element;
42
+ overflowElement;
43
+ popupGridTemplate;
44
+ /**
45
+ * @hidden
46
+ */
47
+ popupRef;
48
+ /**
49
+ * @hidden
50
+ */
51
+ disabled;
52
+ addTableSVGIcon = tableAddIcon;
53
+ open = false;
54
+ buttonBlurred = new EventEmitter();
55
+ cellClicked = new EventEmitter();
56
+ subs;
57
+ editor;
37
58
  constructor(localization, popupService, dialogService, providerService, renderer) {
38
59
  super();
39
60
  this.localization = localization;
40
61
  this.popupService = popupService;
41
62
  this.dialogService = dialogService;
42
63
  this.renderer = renderer;
43
- this.addTableSVGIcon = tableAddIcon;
44
- this.open = false;
45
- this.buttonBlurred = new EventEmitter();
46
- this.cellClicked = new EventEmitter();
47
64
  this.editor = providerService.editor;
48
65
  this.subs = this.editor.stateChange.subscribe(({ insertTable }) => {
49
66
  this.disabled = insertTable.disabled;
@@ -168,9 +185,8 @@ export class EditorInsertTableButtonComponent extends ToolBarToolComponent {
168
185
  getButton() {
169
186
  return (this.overflows ? this.overflowElement : this.element)?.nativeElement;
170
187
  }
171
- }
172
- EditorInsertTableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertTableButtonComponent, deps: [{ token: i1.EditorLocalizationService }, { token: i2.PopupService }, { token: i3.DialogService }, { token: i4.ProviderService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
173
- EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertTableButtonComponent, isStandalone: true, selector: "kendo-editor-insert-table-button", providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorInsertTableButtonComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true }, { propertyName: "element", first: true, predicate: ["element"], descendants: true, read: ElementRef }, { propertyName: "overflowElement", first: true, predicate: ["overflowElement"], descendants: true, read: ElementRef }, { propertyName: "popupGridTemplate", first: true, predicate: ["popupGridTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
188
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorInsertTableButtonComponent, deps: [{ token: i1.EditorLocalizationService }, { token: i2.PopupService }, { token: i3.DialogService }, { token: i4.ProviderService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
189
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EditorInsertTableButtonComponent, isStandalone: true, selector: "kendo-editor-insert-table-button", providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorInsertTableButtonComponent) }], viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, read: ElementRef }, { propertyName: "overflowElement", first: true, predicate: ["overflowElement"], descendants: true, read: ElementRef }, { propertyName: "popupGridTemplate", first: true, predicate: ["popupGridTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
174
190
  <ng-template #toolbarTemplate>
175
191
  <button
176
192
  type="button"
@@ -204,7 +220,8 @@ EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
204
220
  <kendo-popup-table-grid (cellClick)="onCellClick($event)" (tableWizardClick)="onTableWizardClick()"></kendo-popup-table-grid>
205
221
  </ng-template>
206
222
  `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }] });
207
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertTableButtonComponent, decorators: [{
223
+ }
224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorInsertTableButtonComponent, decorators: [{
208
225
  type: Component,
209
226
  args: [{
210
227
  providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorInsertTableButtonComponent) }],
@@ -246,13 +263,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
246
263
  standalone: true,
247
264
  imports: [ButtonComponent, IconWrapperComponent, NgIf, PopupTableGridComponent]
248
265
  }]
249
- }], ctorParameters: function () { return [{ type: i1.EditorLocalizationService }, { type: i2.PopupService }, { type: i3.DialogService }, { type: i4.ProviderService }, { type: i0.Renderer2 }]; }, propDecorators: { toolbarTemplate: [{
250
- type: ViewChild,
251
- args: ['toolbarTemplate', { static: true }]
252
- }], popupTemplate: [{
253
- type: ViewChild,
254
- args: ['popupTemplate']
255
- }], element: [{
266
+ }], ctorParameters: function () { return [{ type: i1.EditorLocalizationService }, { type: i2.PopupService }, { type: i3.DialogService }, { type: i4.ProviderService }, { type: i0.Renderer2 }]; }, propDecorators: { element: [{
256
267
  type: ViewChild,
257
268
  args: ['element', { read: ElementRef }]
258
269
  }], overflowElement: [{
@@ -30,10 +30,10 @@ export class EditorMergeCellsButtonDirective extends EditorCommandButton {
30
30
  constructor(button, localization, providerService, toolsService) {
31
31
  super('mergeCells', button, localization, providerService, toolsService);
32
32
  }
33
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorMergeCellsButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
34
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorMergeCellsButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorMergeCellsButton]", usesInheritance: true, ngImport: i0 });
33
35
  }
34
- EditorMergeCellsButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorMergeCellsButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
35
- EditorMergeCellsButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorMergeCellsButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorMergeCellsButton]", usesInheritance: true, ngImport: i0 });
36
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorMergeCellsButtonDirective, decorators: [{
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorMergeCellsButtonDirective, decorators: [{
37
37
  type: Directive,
38
38
  args: [{
39
39
  selector: 'kendo-toolbar-button[kendoEditorMergeCellsButton]',
@@ -30,10 +30,10 @@ export class EditorSplitCellButtonDirective extends EditorCommandButton {
30
30
  constructor(button, localization, providerService, toolsService) {
31
31
  super('splitCell', button, localization, providerService, toolsService);
32
32
  }
33
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorSplitCellButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
34
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorSplitCellButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSplitCellButton]", usesInheritance: true, ngImport: i0 });
33
35
  }
34
- EditorSplitCellButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSplitCellButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
35
- EditorSplitCellButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSplitCellButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSplitCellButton]", usesInheritance: true, ngImport: i0 });
36
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSplitCellButtonDirective, decorators: [{
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorSplitCellButtonDirective, decorators: [{
37
37
  type: Directive,
38
38
  args: [{
39
39
  selector: 'kendo-toolbar-button[kendoEditorSplitCellButton]',
@@ -13,14 +13,15 @@ import * as i1 from "../../localization/editor-localization.service";
13
13
  * @hidden
14
14
  */
15
15
  export class PopupTableGridComponent {
16
+ localization;
17
+ cellClick = new EventEmitter();
18
+ tableWizardClick = new EventEmitter();
19
+ tableWizardIcon = tableWizardIcon;
20
+ state = { rows: -1, cols: -1 };
21
+ rows = 6;
22
+ cols = 8;
16
23
  constructor(localization) {
17
24
  this.localization = localization;
18
- this.cellClick = new EventEmitter();
19
- this.tableWizardClick = new EventEmitter();
20
- this.tableWizardIcon = tableWizardIcon;
21
- this.state = { rows: -1, cols: -1 };
22
- this.rows = 6;
23
- this.cols = 8;
24
25
  }
25
26
  get message() {
26
27
  const { rows, cols } = this.state;
@@ -57,9 +58,8 @@ export class PopupTableGridComponent {
57
58
  openTableWizard() {
58
59
  this.tableWizardClick.emit();
59
60
  }
60
- }
61
- PopupTableGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupTableGridComponent, deps: [{ token: i1.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
62
- PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupTableGridComponent, isStandalone: true, selector: "kendo-popup-table-grid", outputs: { cellClick: "cellClick", tableWizardClick: "tableWizardClick" }, ngImport: i0, template: `
61
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PopupTableGridComponent, deps: [{ token: i1.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
62
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PopupTableGridComponent, isStandalone: true, selector: "kendo-popup-table-grid", outputs: { cellClick: "cellClick", tableWizardClick: "tableWizardClick" }, ngImport: i0, template: `
63
63
  <div
64
64
  [style.border-color]="'inherit'"
65
65
  class="k-ct-popup"
@@ -79,7 +79,8 @@ PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
79
79
  </div>
80
80
  -->
81
81
  `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
82
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupTableGridComponent, decorators: [{
82
+ }
83
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PopupTableGridComponent, decorators: [{
83
84
  type: Component,
84
85
  args: [{
85
86
  selector: 'kendo-popup-table-grid',
@@ -9,13 +9,14 @@ import * as i0 from "@angular/core";
9
9
  * @hidden
10
10
  */
11
11
  export class EditorToolsService {
12
+ zone;
13
+ needsCheck = new Subject();
12
14
  constructor(zone) {
13
15
  this.zone = zone;
14
- this.needsCheck = new Subject();
15
16
  }
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorToolsService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
18
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorToolsService });
16
19
  }
17
- EditorToolsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorToolsService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
18
- EditorToolsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorToolsService });
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorToolsService, decorators: [{
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorToolsService, decorators: [{
20
21
  type: Injectable
21
22
  }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
@@ -28,10 +28,10 @@ export class EditorBoldButtonDirective extends EditorCommandButton {
28
28
  constructor(button, localization, providerService, toolsService) {
29
29
  super('bold', button, localization, providerService, toolsService);
30
30
  }
31
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorBoldButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
32
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorBoldButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorBoldButton]", usesInheritance: true, ngImport: i0 });
31
33
  }
32
- EditorBoldButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBoldButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
33
- EditorBoldButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorBoldButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorBoldButton]", usesInheritance: true, ngImport: i0 });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBoldButtonDirective, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorBoldButtonDirective, decorators: [{
35
35
  type: Directive,
36
36
  args: [{
37
37
  selector: 'kendo-toolbar-button[kendoEditorBoldButton]',
@@ -28,10 +28,10 @@ export class EditorItalicButtonDirective extends EditorCommandButton {
28
28
  constructor(button, localization, providerService, toolsService) {
29
29
  super('italic', button, localization, providerService, toolsService);
30
30
  }
31
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorItalicButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
32
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorItalicButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorItalicButton]", usesInheritance: true, ngImport: i0 });
31
33
  }
32
- EditorItalicButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorItalicButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
33
- EditorItalicButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorItalicButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorItalicButton]", usesInheritance: true, ngImport: i0 });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorItalicButtonDirective, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorItalicButtonDirective, decorators: [{
35
35
  type: Directive,
36
36
  args: [{
37
37
  selector: 'kendo-toolbar-button[kendoEditorItalicButton]',
@@ -28,10 +28,10 @@ export class EditorStrikethroughButtonDirective extends EditorCommandButton {
28
28
  constructor(button, localization, providerService, toolsService) {
29
29
  super('strikethrough', button, localization, providerService, toolsService);
30
30
  }
31
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorStrikethroughButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
32
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorStrikethroughButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorStrikethroughButton]", usesInheritance: true, ngImport: i0 });
31
33
  }
32
- EditorStrikethroughButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorStrikethroughButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
33
- EditorStrikethroughButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorStrikethroughButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorStrikethroughButton]", usesInheritance: true, ngImport: i0 });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorStrikethroughButtonDirective, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorStrikethroughButtonDirective, decorators: [{
35
35
  type: Directive,
36
36
  args: [{
37
37
  selector: 'kendo-toolbar-button[kendoEditorStrikethroughButton]',
@@ -28,10 +28,10 @@ export class EditorSubscriptButtonDirective extends EditorCommandButton {
28
28
  constructor(button, localization, providerService, toolsService) {
29
29
  super('subscript', button, localization, providerService, toolsService);
30
30
  }
31
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorSubscriptButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
32
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorSubscriptButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSubscriptButton]", usesInheritance: true, ngImport: i0 });
31
33
  }
32
- EditorSubscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSubscriptButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
33
- EditorSubscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSubscriptButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSubscriptButton]", usesInheritance: true, ngImport: i0 });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSubscriptButtonDirective, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorSubscriptButtonDirective, decorators: [{
35
35
  type: Directive,
36
36
  args: [{
37
37
  selector: 'kendo-toolbar-button[kendoEditorSubscriptButton]',
@@ -28,10 +28,10 @@ export class EditorSuperscriptButtonDirective extends EditorCommandButton {
28
28
  constructor(button, localization, providerService, toolsService) {
29
29
  super('superscript', button, localization, providerService, toolsService);
30
30
  }
31
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorSuperscriptButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
32
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorSuperscriptButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSuperscriptButton]", usesInheritance: true, ngImport: i0 });
31
33
  }
32
- EditorSuperscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSuperscriptButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
33
- EditorSuperscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSuperscriptButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSuperscriptButton]", usesInheritance: true, ngImport: i0 });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSuperscriptButtonDirective, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorSuperscriptButtonDirective, decorators: [{
35
35
  type: Directive,
36
36
  args: [{
37
37
  selector: 'kendo-toolbar-button[kendoEditorSuperscriptButton]',
@@ -28,10 +28,10 @@ export class EditorUnderlineButtonDirective extends EditorCommandButton {
28
28
  constructor(button, localization, providerService, toolsService) {
29
29
  super('underline', button, localization, providerService, toolsService);
30
30
  }
31
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorUnderlineButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
32
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: EditorUnderlineButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorUnderlineButton]", usesInheritance: true, ngImport: i0 });
31
33
  }
32
- EditorUnderlineButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUnderlineButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
33
- EditorUnderlineButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorUnderlineButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorUnderlineButton]", usesInheritance: true, ngImport: i0 });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUnderlineButtonDirective, decorators: [{
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EditorUnderlineButtonDirective, decorators: [{
35
35
  type: Directive,
36
36
  args: [{
37
37
  selector: 'kendo-toolbar-button[kendoEditorUnderlineButton]',