@progress/kendo-angular-menu 25.0.0-develop.16 → 25.0.0-develop.18
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.
|
@@ -8,7 +8,7 @@ import { NgClass, NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
|
8
8
|
import * as i3 from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
10
10
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
11
|
-
import { PreventableEvent as PreventableEvent$1, hasObservers, Keys, normalizeKeys, isDocumentAvailable, isPresent, parseCSSClassNames, KENDO_WEBMCP_HOST, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
11
|
+
import { PreventableEvent as PreventableEvent$1, hasObservers, Keys, normalizeKeys, isDocumentAvailable, isPresent, parseCSSClassNames, KENDO_WEBMCP_HOST, provideComponentName, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
12
12
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
13
13
|
import { chevronDownIcon, chevronLeftIcon, chevronRightIcon } from '@progress/kendo-svg-icons';
|
|
14
14
|
import * as i5 from '@progress/kendo-angular-popup';
|
|
@@ -23,8 +23,8 @@ const packageMetadata = {
|
|
|
23
23
|
productName: 'Kendo UI for Angular',
|
|
24
24
|
productCode: 'KENDOUIANGULAR',
|
|
25
25
|
productCodes: ['KENDOUIANGULAR'],
|
|
26
|
-
publishDate:
|
|
27
|
-
version: '25.0.0-develop.
|
|
26
|
+
publishDate: 1785502120,
|
|
27
|
+
version: '25.0.0-develop.18',
|
|
28
28
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
29
29
|
};
|
|
30
30
|
|
|
@@ -2538,7 +2538,8 @@ class MenuComponent extends MenuBase {
|
|
|
2538
2538
|
{
|
|
2539
2539
|
provide: KENDO_WEBMCP_HOST,
|
|
2540
2540
|
useExisting: forwardRef(() => MenuComponent)
|
|
2541
|
-
}
|
|
2541
|
+
},
|
|
2542
|
+
provideComponentName('menu')
|
|
2542
2543
|
], exportAs: ["kendoMenu"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
2543
2544
|
<ul
|
|
2544
2545
|
[attr.role]="ariaRole"
|
|
@@ -2574,7 +2575,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
|
|
|
2574
2575
|
{
|
|
2575
2576
|
provide: KENDO_WEBMCP_HOST,
|
|
2576
2577
|
useExisting: forwardRef(() => MenuComponent)
|
|
2577
|
-
}
|
|
2578
|
+
},
|
|
2579
|
+
provideComponentName('menu')
|
|
2578
2580
|
],
|
|
2579
2581
|
selector: 'kendo-menu',
|
|
2580
2582
|
template: `
|
|
@@ -3918,7 +3920,8 @@ class ContextMenuComponent extends MenuBase {
|
|
|
3918
3920
|
{
|
|
3919
3921
|
provide: POPUP_CONTAINER,
|
|
3920
3922
|
useFactory: bodyFactory
|
|
3921
|
-
}
|
|
3923
|
+
},
|
|
3924
|
+
provideComponentName('contextmenu')
|
|
3922
3925
|
], queries: [{ propertyName: "contentTemplate", first: true, predicate: ContextMenuTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "defaultContentTemplate", first: true, predicate: ["default"], descendants: true }], exportAs: ["kendoContextMenu"], usesInheritance: true, ngImport: i0, template: `
|
|
3923
3926
|
<ng-template #default>
|
|
3924
3927
|
<kendo-menu [items]="rootItems"
|
|
@@ -3960,7 +3963,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.26", ngImpo
|
|
|
3960
3963
|
{
|
|
3961
3964
|
provide: POPUP_CONTAINER,
|
|
3962
3965
|
useFactory: bodyFactory
|
|
3963
|
-
}
|
|
3966
|
+
},
|
|
3967
|
+
provideComponentName('contextmenu')
|
|
3964
3968
|
],
|
|
3965
3969
|
selector: 'kendo-contextmenu',
|
|
3966
3970
|
template: `
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1785502120,
|
|
11
|
+
"version": "25.0.0-develop.18",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-menu",
|
|
3
|
-
"version": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.18",
|
|
4
4
|
"description": "Kendo UI Angular Menu component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1785502120,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
"@angular/core": "20 - 22",
|
|
30
30
|
"@angular/platform-browser": "20 - 22",
|
|
31
31
|
"@progress/kendo-licensing": "^1.11.0",
|
|
32
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-popup": "25.0.0-develop.
|
|
32
|
+
"@progress/kendo-angular-common": "25.0.0-develop.18",
|
|
33
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.18",
|
|
34
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.18",
|
|
35
|
+
"@progress/kendo-angular-popup": "25.0.0-develop.18",
|
|
36
36
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"tslib": "^2.3.1",
|
|
40
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
40
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.18"
|
|
41
41
|
},
|
|
42
42
|
"schematics": "./schematics/collection.json",
|
|
43
43
|
"module": "fesm2022/progress-kendo-angular-menu.mjs",
|