@progress/kendo-angular-editor 2.5.0-dev.202111111129 → 2.5.0-dev.202111161123
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/dist/cdn/js/kendo-angular-editor.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tools/tables/editor-insert-table-button.component.js +5 -8
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/es2015/tools/tables/editor-insert-table-button.component.d.ts +2 -3
- package/dist/es2015/tools/tables/editor-insert-table-button.component.js +13 -8
- package/dist/fesm2015/index.js +14 -9
- package/dist/fesm5/index.js +6 -9
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tools/tables/editor-insert-table-button.component.js +5 -8
- package/dist/systemjs/kendo-angular-editor.js +1 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export var packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-editor',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1637061495,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -45,9 +45,6 @@ var EditorInsertTableButtonComponent = /** @class */ (function (_super) {
|
|
|
45
45
|
return _this;
|
|
46
46
|
}
|
|
47
47
|
EditorInsertTableButtonComponent_1 = EditorInsertTableButtonComponent;
|
|
48
|
-
EditorInsertTableButtonComponent.prototype.ngAfterViewInit = function () {
|
|
49
|
-
this.getButton().tabIndex = -1;
|
|
50
|
-
};
|
|
51
48
|
EditorInsertTableButtonComponent.prototype.ngOnDestroy = function () {
|
|
52
49
|
this.destroyPopup();
|
|
53
50
|
if (this.subs) {
|
|
@@ -98,7 +95,7 @@ var EditorInsertTableButtonComponent = /** @class */ (function (_super) {
|
|
|
98
95
|
* @hidden
|
|
99
96
|
*/
|
|
100
97
|
EditorInsertTableButtonComponent.prototype.onBlur = function () {
|
|
101
|
-
this.
|
|
98
|
+
this.tabIndex = -1;
|
|
102
99
|
this.buttonBlurred.emit();
|
|
103
100
|
};
|
|
104
101
|
/**
|
|
@@ -119,8 +116,8 @@ var EditorInsertTableButtonComponent = /** @class */ (function (_super) {
|
|
|
119
116
|
* @hidden
|
|
120
117
|
*/
|
|
121
118
|
EditorInsertTableButtonComponent.prototype.focus = function () {
|
|
119
|
+
this.tabIndex = 0;
|
|
122
120
|
this.getButton().focus();
|
|
123
|
-
this.getButton().tabIndex = 0;
|
|
124
121
|
};
|
|
125
122
|
/**
|
|
126
123
|
* @hidden
|
|
@@ -129,7 +126,7 @@ var EditorInsertTableButtonComponent = /** @class */ (function (_super) {
|
|
|
129
126
|
if (ev.keyCode === Keys.Space || ev.keyCode === Keys.Enter) {
|
|
130
127
|
return true;
|
|
131
128
|
}
|
|
132
|
-
this.
|
|
129
|
+
this.tabIndex = -1;
|
|
133
130
|
return false;
|
|
134
131
|
};
|
|
135
132
|
/**
|
|
@@ -172,7 +169,7 @@ var EditorInsertTableButtonComponent = /** @class */ (function (_super) {
|
|
|
172
169
|
tslib_1.__metadata("design:type", TemplateRef)
|
|
173
170
|
], EditorInsertTableButtonComponent.prototype, "toolbarTemplate", void 0);
|
|
174
171
|
tslib_1.__decorate([
|
|
175
|
-
ViewChild('popupTemplate', { static:
|
|
172
|
+
ViewChild('popupTemplate', { static: false }),
|
|
176
173
|
tslib_1.__metadata("design:type", TemplateRef)
|
|
177
174
|
], EditorInsertTableButtonComponent.prototype, "popupTemplate", void 0);
|
|
178
175
|
tslib_1.__decorate([
|
|
@@ -192,7 +189,7 @@ var EditorInsertTableButtonComponent = /** @class */ (function (_super) {
|
|
|
192
189
|
// tslint:disable-next-line:no-forward-ref
|
|
193
190
|
providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(function () { return EditorInsertTableButtonComponent_1; }) }],
|
|
194
191
|
selector: 'kendo-editor-insert-table-button',
|
|
195
|
-
template: "\n <ng-template #toolbarTemplate>\n <button\n type=\"button\"\n kendoButton\n #element\n [attr.title]=\"title\"\n [icon]=\"'table-insert'\"\n [disabled]=\"disabled\"\n (click)=\"toggle()\"\n (blur)=\"onBlur()\"\n ></button>\n </ng-template>\n <ng-template #popupTemplate>\n <button
|
|
192
|
+
template: "\n <ng-template #toolbarTemplate>\n <button\n type=\"button\"\n kendoButton\n #element\n [attr.title]=\"title\"\n [attr.tabindex]=\"tabIndex\"\n [icon]=\"'table-insert'\"\n [disabled]=\"disabled\"\n (click)=\"toggle()\"\n (blur)=\"onBlur()\"\n ></button>\n </ng-template>\n <ng-template #popupTemplate>\n <button\n kendoButton\n #overflowElement\n [attr.title]=\"title\"\n [attr.tabindex]=\"tabIndex\"\n [icon]=\"'table-insert'\"\n [disabled]=\"disabled\"\n (click)=\"openDialog()\">\n {{ title }}\n </button>\n </ng-template>\n <ng-template #popupGridTemplate>\n <kendo-popup-table-grid (cellClick)=\"onCellClick($event)\" (tableWizardClick)=\"onTableWizardClick()\"></kendo-popup-table-grid>\n </ng-template>\n "
|
|
196
193
|
}),
|
|
197
194
|
tslib_1.__param(0, Host()),
|
|
198
195
|
tslib_1.__metadata("design:paramtypes", [EditorComponent,
|