@progress/kendo-angular-editor 16.8.0-develop.1 → 16.8.0-develop.3
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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +2 -2
- package/esm2020/tools/fontsize/editor-fontsize.component.mjs +2 -2
- package/esm2020/tools/format/editor-format.component.mjs +2 -2
- package/fesm2015/progress-kendo-angular-editor.mjs +11 -8
- package/fesm2020/progress-kendo-angular-editor.mjs +8 -8
- package/package.json +14 -14
- package/schematics/ngAdd/index.js +4 -4
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-editor',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.8.0-develop.
|
|
12
|
+
publishDate: 1724395672,
|
|
13
|
+
version: '16.8.0-develop.3',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -144,10 +144,10 @@ export class EditorFontFamilyComponent extends ToolBarToolComponent {
|
|
|
144
144
|
focus() {
|
|
145
145
|
this.tabindex = 0;
|
|
146
146
|
if (this.overflows) {
|
|
147
|
-
this.fontFamilyButton
|
|
147
|
+
this.fontFamilyButton?.nativeElement.focus();
|
|
148
148
|
}
|
|
149
149
|
else {
|
|
150
|
-
this.fontFamilyDropDownList
|
|
150
|
+
this.fontFamilyDropDownList?.focus();
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
/**
|
|
@@ -150,10 +150,10 @@ export class EditorFontSizeComponent extends ToolBarToolComponent {
|
|
|
150
150
|
focus() {
|
|
151
151
|
this.tabindex = 0;
|
|
152
152
|
if (this.overflows) {
|
|
153
|
-
this.fontSizeButton
|
|
153
|
+
this.fontSizeButton?.nativeElement.focus();
|
|
154
154
|
}
|
|
155
155
|
else {
|
|
156
|
-
this.fontSizeDropDownList
|
|
156
|
+
this.fontSizeDropDownList?.focus();
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
/**
|
|
@@ -140,10 +140,10 @@ export class EditorFormatComponent extends ToolBarToolComponent {
|
|
|
140
140
|
focus() {
|
|
141
141
|
this.tabindex = 0;
|
|
142
142
|
if (this.overflows) {
|
|
143
|
-
this.formatButton
|
|
143
|
+
this.formatButton?.nativeElement.focus();
|
|
144
144
|
}
|
|
145
145
|
else {
|
|
146
|
-
this.formatDropDownList
|
|
146
|
+
this.formatDropDownList?.focus();
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
/**
|
|
@@ -35,8 +35,8 @@ const packageMetadata = {
|
|
|
35
35
|
name: '@progress/kendo-angular-editor',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
38
|
-
publishDate:
|
|
39
|
-
version: '16.8.0-develop.
|
|
38
|
+
publishDate: 1724395672,
|
|
39
|
+
version: '16.8.0-develop.3',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -2465,12 +2465,13 @@ class EditorFormatComponent extends ToolBarToolComponent {
|
|
|
2465
2465
|
* @hidden
|
|
2466
2466
|
*/
|
|
2467
2467
|
focus() {
|
|
2468
|
+
var _a, _b;
|
|
2468
2469
|
this.tabindex = 0;
|
|
2469
2470
|
if (this.overflows) {
|
|
2470
|
-
this.formatButton.nativeElement.focus();
|
|
2471
|
+
(_a = this.formatButton) === null || _a === void 0 ? void 0 : _a.nativeElement.focus();
|
|
2471
2472
|
}
|
|
2472
2473
|
else {
|
|
2473
|
-
this.formatDropDownList.focus();
|
|
2474
|
+
(_b = this.formatDropDownList) === null || _b === void 0 ? void 0 : _b.focus();
|
|
2474
2475
|
}
|
|
2475
2476
|
}
|
|
2476
2477
|
/**
|
|
@@ -4787,12 +4788,13 @@ class EditorFontSizeComponent extends ToolBarToolComponent {
|
|
|
4787
4788
|
* @hidden
|
|
4788
4789
|
*/
|
|
4789
4790
|
focus() {
|
|
4791
|
+
var _a, _b;
|
|
4790
4792
|
this.tabindex = 0;
|
|
4791
4793
|
if (this.overflows) {
|
|
4792
|
-
this.fontSizeButton.nativeElement.focus();
|
|
4794
|
+
(_a = this.fontSizeButton) === null || _a === void 0 ? void 0 : _a.nativeElement.focus();
|
|
4793
4795
|
}
|
|
4794
4796
|
else {
|
|
4795
|
-
this.fontSizeDropDownList.focus();
|
|
4797
|
+
(_b = this.fontSizeDropDownList) === null || _b === void 0 ? void 0 : _b.focus();
|
|
4796
4798
|
}
|
|
4797
4799
|
}
|
|
4798
4800
|
/**
|
|
@@ -5018,12 +5020,13 @@ class EditorFontFamilyComponent extends ToolBarToolComponent {
|
|
|
5018
5020
|
* @hidden
|
|
5019
5021
|
*/
|
|
5020
5022
|
focus() {
|
|
5023
|
+
var _a, _b;
|
|
5021
5024
|
this.tabindex = 0;
|
|
5022
5025
|
if (this.overflows) {
|
|
5023
|
-
this.fontFamilyButton.nativeElement.focus();
|
|
5026
|
+
(_a = this.fontFamilyButton) === null || _a === void 0 ? void 0 : _a.nativeElement.focus();
|
|
5024
5027
|
}
|
|
5025
5028
|
else {
|
|
5026
|
-
this.fontFamilyDropDownList.focus();
|
|
5029
|
+
(_b = this.fontFamilyDropDownList) === null || _b === void 0 ? void 0 : _b.focus();
|
|
5027
5030
|
}
|
|
5028
5031
|
}
|
|
5029
5032
|
/**
|
|
@@ -35,8 +35,8 @@ const packageMetadata = {
|
|
|
35
35
|
name: '@progress/kendo-angular-editor',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
38
|
-
publishDate:
|
|
39
|
-
version: '16.8.0-develop.
|
|
38
|
+
publishDate: 1724395672,
|
|
39
|
+
version: '16.8.0-develop.3',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -2469,10 +2469,10 @@ class EditorFormatComponent extends ToolBarToolComponent {
|
|
|
2469
2469
|
focus() {
|
|
2470
2470
|
this.tabindex = 0;
|
|
2471
2471
|
if (this.overflows) {
|
|
2472
|
-
this.formatButton
|
|
2472
|
+
this.formatButton?.nativeElement.focus();
|
|
2473
2473
|
}
|
|
2474
2474
|
else {
|
|
2475
|
-
this.formatDropDownList
|
|
2475
|
+
this.formatDropDownList?.focus();
|
|
2476
2476
|
}
|
|
2477
2477
|
}
|
|
2478
2478
|
/**
|
|
@@ -4791,10 +4791,10 @@ class EditorFontSizeComponent extends ToolBarToolComponent {
|
|
|
4791
4791
|
focus() {
|
|
4792
4792
|
this.tabindex = 0;
|
|
4793
4793
|
if (this.overflows) {
|
|
4794
|
-
this.fontSizeButton
|
|
4794
|
+
this.fontSizeButton?.nativeElement.focus();
|
|
4795
4795
|
}
|
|
4796
4796
|
else {
|
|
4797
|
-
this.fontSizeDropDownList
|
|
4797
|
+
this.fontSizeDropDownList?.focus();
|
|
4798
4798
|
}
|
|
4799
4799
|
}
|
|
4800
4800
|
/**
|
|
@@ -5022,10 +5022,10 @@ class EditorFontFamilyComponent extends ToolBarToolComponent {
|
|
|
5022
5022
|
focus() {
|
|
5023
5023
|
this.tabindex = 0;
|
|
5024
5024
|
if (this.overflows) {
|
|
5025
|
-
this.fontFamilyButton
|
|
5025
|
+
this.fontFamilyButton?.nativeElement.focus();
|
|
5026
5026
|
}
|
|
5027
5027
|
else {
|
|
5028
|
-
this.fontFamilyDropDownList
|
|
5028
|
+
this.fontFamilyDropDownList?.focus();
|
|
5029
5029
|
}
|
|
5030
5030
|
}
|
|
5031
5031
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-editor",
|
|
3
|
-
"version": "16.8.0-develop.
|
|
3
|
+
"version": "16.8.0-develop.3",
|
|
4
4
|
"description": "Kendo UI Editor for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,23 +23,23 @@
|
|
|
23
23
|
"@angular/platform-browser": "15 - 18",
|
|
24
24
|
"@progress/kendo-drawing": "^1.19.0",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-buttons": "16.8.0-develop.
|
|
27
|
-
"@progress/kendo-angular-common": "16.8.0-develop.
|
|
28
|
-
"@progress/kendo-angular-dialog": "16.8.0-develop.
|
|
29
|
-
"@progress/kendo-angular-dropdowns": "16.8.0-develop.
|
|
30
|
-
"@progress/kendo-angular-inputs": "16.8.0-develop.
|
|
31
|
-
"@progress/kendo-angular-intl": "16.8.0-develop.
|
|
32
|
-
"@progress/kendo-angular-l10n": "16.8.0-develop.
|
|
33
|
-
"@progress/kendo-angular-label": "16.8.0-develop.
|
|
34
|
-
"@progress/kendo-angular-layout": "16.8.0-develop.
|
|
35
|
-
"@progress/kendo-angular-icons": "16.8.0-develop.
|
|
36
|
-
"@progress/kendo-angular-popup": "16.8.0-develop.
|
|
37
|
-
"@progress/kendo-angular-toolbar": "16.8.0-develop.
|
|
26
|
+
"@progress/kendo-angular-buttons": "16.8.0-develop.3",
|
|
27
|
+
"@progress/kendo-angular-common": "16.8.0-develop.3",
|
|
28
|
+
"@progress/kendo-angular-dialog": "16.8.0-develop.3",
|
|
29
|
+
"@progress/kendo-angular-dropdowns": "16.8.0-develop.3",
|
|
30
|
+
"@progress/kendo-angular-inputs": "16.8.0-develop.3",
|
|
31
|
+
"@progress/kendo-angular-intl": "16.8.0-develop.3",
|
|
32
|
+
"@progress/kendo-angular-l10n": "16.8.0-develop.3",
|
|
33
|
+
"@progress/kendo-angular-label": "16.8.0-develop.3",
|
|
34
|
+
"@progress/kendo-angular-layout": "16.8.0-develop.3",
|
|
35
|
+
"@progress/kendo-angular-icons": "16.8.0-develop.3",
|
|
36
|
+
"@progress/kendo-angular-popup": "16.8.0-develop.3",
|
|
37
|
+
"@progress/kendo-angular-toolbar": "16.8.0-develop.3",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "16.8.0-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "16.8.0-develop.3",
|
|
43
43
|
"@progress/kendo-editor-common": "1.11.6"
|
|
44
44
|
},
|
|
45
45
|
"schematics": "./schematics/collection.json",
|
|
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'EditorModule', package: 'editor', peerDependencies: {
|
|
6
6
|
// peer dependencies of kendo-angular-dropdowns
|
|
7
|
-
'@progress/kendo-angular-navigation': '16.8.0-develop.
|
|
8
|
-
'@progress/kendo-angular-treeview': '16.8.0-develop.
|
|
7
|
+
'@progress/kendo-angular-navigation': '16.8.0-develop.3',
|
|
8
|
+
'@progress/kendo-angular-treeview': '16.8.0-develop.3',
|
|
9
9
|
// peer dependency of kendo-angular-layout
|
|
10
|
-
'@progress/kendo-angular-progressbar': '16.8.0-develop.
|
|
10
|
+
'@progress/kendo-angular-progressbar': '16.8.0-develop.3',
|
|
11
11
|
// peer dependency of kendo-angular-inputs
|
|
12
|
-
'@progress/kendo-angular-dialog': '16.8.0-develop.
|
|
12
|
+
'@progress/kendo-angular-dialog': '16.8.0-develop.3',
|
|
13
13
|
// Peer dependency of icons
|
|
14
14
|
'@progress/kendo-svg-icons': '^3.0.0'
|
|
15
15
|
} });
|