@progress/kendo-angular-menu 16.5.0 → 16.6.0-develop.1
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/context-menu/context-menu-target-container.directive.d.ts +1 -1
- package/context-menu/context-menu-target.directive.d.ts +1 -1
- package/context-menu/context-menu-template.directive.d.ts +1 -1
- package/context-menu/context-menu.component.d.ts +1 -1
- package/context-menu/context-menu.module.d.ts +10 -4
- package/data-binding/flat-binding.directive.d.ts +1 -1
- package/data-binding/hierachy-binding.directive.d.ts +1 -1
- package/directives.d.ts +29 -0
- package/esm2020/context-menu/context-menu-target-container.directive.mjs +3 -2
- package/esm2020/context-menu/context-menu-target.directive.mjs +3 -2
- package/esm2020/context-menu/context-menu-template.directive.mjs +3 -2
- package/esm2020/context-menu/context-menu.component.mjs +8 -6
- package/esm2020/context-menu/context-menu.module.mjs +22 -24
- package/esm2020/data-binding/flat-binding.directive.mjs +3 -2
- package/esm2020/data-binding/hierachy-binding.directive.mjs +3 -2
- package/esm2020/directives.mjs +48 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/menu-item.component.mjs +3 -2
- package/esm2020/menu.component.mjs +7 -5
- package/esm2020/menu.module.mjs +18 -51
- package/esm2020/menus.module.mjs +22 -5
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/arrow.component.mjs +5 -3
- package/esm2020/rendering/link.directive.mjs +3 -2
- package/esm2020/rendering/list.component.mjs +16 -12
- package/esm2020/templates/item-content-template.directive.mjs +3 -2
- package/esm2020/templates/item-link-template.directive.mjs +3 -2
- package/esm2020/templates/item-template.directive.mjs +3 -2
- package/fesm2015/progress-kendo-angular-menu.mjs +205 -195
- package/fesm2020/progress-kendo-angular-menu.mjs +182 -172
- package/index.d.ts +1 -0
- package/menu-item.component.d.ts +1 -1
- package/menu.component.d.ts +1 -1
- package/menu.module.d.ts +1 -5
- package/menus.module.d.ts +14 -3
- package/package.json +6 -6
- package/rendering/arrow.component.d.ts +1 -1
- package/rendering/link.directive.d.ts +1 -1
- package/rendering/list.component.d.ts +3 -3
- package/templates/item-content-template.directive.d.ts +1 -1
- package/templates/item-link-template.directive.d.ts +1 -1
- package/templates/item-template.directive.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -30,3 +30,4 @@ export { ContextMenuTargetContainerDirective } from './context-menu/context-menu
|
|
|
30
30
|
export { ContextMenuTargetDirective } from './context-menu/context-menu-target.directive';
|
|
31
31
|
export { MenuSize } from './size';
|
|
32
32
|
export { MenusModule } from './menus.module';
|
|
33
|
+
export * from './directives';
|
package/menu-item.component.d.ts
CHANGED
|
@@ -97,5 +97,5 @@ export declare class MenuItemComponent implements MenuItem {
|
|
|
97
97
|
*/
|
|
98
98
|
get items(): any[];
|
|
99
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "kendo-menu-item", never, { "text": "text"; "url": "url"; "disabled": "disabled"; "cssClass": "cssClass"; "cssStyle": "cssStyle"; "icon": "icon"; "svgIcon": "svgIcon"; "data": "data"; "separator": "separator"; }, {}, ["itemTemplate", "itemLinkTemplate", "itemContentTemplate", "children"], never,
|
|
100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemComponent, "kendo-menu-item", never, { "text": "text"; "url": "url"; "disabled": "disabled"; "cssClass": "cssClass"; "cssStyle": "cssStyle"; "icon": "icon"; "svgIcon": "svgIcon"; "data": "data"; "separator": "separator"; }, {}, ["itemTemplate", "itemLinkTemplate", "itemContentTemplate", "children"], never, true, never>;
|
|
101
101
|
}
|
package/menu.component.d.ts
CHANGED
|
@@ -102,5 +102,5 @@ export declare class MenuComponent extends MenuBase implements OnChanges, AfterV
|
|
|
102
102
|
private unsubscribeClick;
|
|
103
103
|
private contextKeyDown;
|
|
104
104
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, [null, null, null, null, null, null, null, { optional: true; }]>;
|
|
105
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "kendo-menu", ["kendoMenu"], { "appendTo": "appendTo"; "menuItemTemplate": "menuItemTemplate"; "ariaRole": "ariaRole"; "menuItemLinkTemplate": "menuItemLinkTemplate"; }, { "select": "select"; "open": "open"; "close": "close"; }, never, never,
|
|
105
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "kendo-menu", ["kendoMenu"], { "appendTo": "appendTo"; "menuItemTemplate": "menuItemTemplate"; "ariaRole": "ariaRole"; "menuItemLinkTemplate": "menuItemLinkTemplate"; }, { "select": "select"; "open": "open"; "close": "close"; }, never, never, true, never>;
|
|
106
106
|
}
|
package/menu.module.d.ts
CHANGED
|
@@ -12,10 +12,6 @@ import * as i6 from "./data-binding/hierachy-binding.directive";
|
|
|
12
12
|
import * as i7 from "./data-binding/flat-binding.directive";
|
|
13
13
|
import * as i8 from "./rendering/link.directive";
|
|
14
14
|
import * as i9 from "./rendering/arrow.component";
|
|
15
|
-
import * as i10 from "./rendering/list.component";
|
|
16
|
-
import * as i11 from "@progress/kendo-angular-popup";
|
|
17
|
-
import * as i12 from "@angular/common";
|
|
18
|
-
import * as i13 from "@progress/kendo-angular-icons";
|
|
19
15
|
/**
|
|
20
16
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
21
17
|
* definition for the Menu component.
|
|
@@ -50,6 +46,6 @@ import * as i13 from "@progress/kendo-angular-icons";
|
|
|
50
46
|
*/
|
|
51
47
|
export declare class MenuModule {
|
|
52
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuModule, never>;
|
|
53
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, [typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent
|
|
49
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, never, [typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent], [typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent]>;
|
|
54
50
|
static ɵinj: i0.ɵɵInjectorDeclaration<MenuModule>;
|
|
55
51
|
}
|
package/menus.module.d.ts
CHANGED
|
@@ -3,8 +3,19 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./menu.
|
|
7
|
-
import * as i2 from "./
|
|
6
|
+
import * as i1 from "./menu.component";
|
|
7
|
+
import * as i2 from "./menu-item.component";
|
|
8
|
+
import * as i3 from "./templates/item-template.directive";
|
|
9
|
+
import * as i4 from "./templates/item-link-template.directive";
|
|
10
|
+
import * as i5 from "./templates/item-content-template.directive";
|
|
11
|
+
import * as i6 from "./data-binding/hierachy-binding.directive";
|
|
12
|
+
import * as i7 from "./data-binding/flat-binding.directive";
|
|
13
|
+
import * as i8 from "./rendering/link.directive";
|
|
14
|
+
import * as i9 from "./rendering/arrow.component";
|
|
15
|
+
import * as i10 from "./context-menu/context-menu.component";
|
|
16
|
+
import * as i11 from "./context-menu/context-menu-template.directive";
|
|
17
|
+
import * as i12 from "./context-menu/context-menu-target.directive";
|
|
18
|
+
import * as i13 from "./context-menu/context-menu-target-container.directive";
|
|
8
19
|
/**
|
|
9
20
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Menu and ContextMenu components and directives.
|
|
10
21
|
* Imports the MenusModule into your application [root module](link:site.data.urls.angular['ngmodules']#angular-modularity)
|
|
@@ -29,6 +40,6 @@ import * as i2 from "./context-menu/context-menu.module";
|
|
|
29
40
|
*/
|
|
30
41
|
export declare class MenusModule {
|
|
31
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenusModule, never>;
|
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MenusModule, never,
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MenusModule, never, [typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent, typeof i10.ContextMenuComponent, typeof i11.ContextMenuTemplateDirective, typeof i12.ContextMenuTargetDirective, typeof i13.ContextMenuTargetContainerDirective, typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent], [typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent, typeof i10.ContextMenuComponent, typeof i11.ContextMenuTemplateDirective, typeof i12.ContextMenuTargetDirective, typeof i13.ContextMenuTargetContainerDirective, typeof i1.MenuComponent, typeof i2.MenuItemComponent, typeof i3.ItemTemplateDirective, typeof i4.ItemLinkTemplateDirective, typeof i5.ItemContentTemplateDirective, typeof i6.HierarchyBindingDirective, typeof i7.FlatBindingDirective, typeof i8.LinkDirective, typeof i9.ExpandArrowComponent]>;
|
|
33
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<MenusModule>;
|
|
34
45
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-menu",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Angular Menu component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
"@angular/core": "15 - 18",
|
|
24
24
|
"@angular/platform-browser": "15 - 18",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "16.
|
|
27
|
-
"@progress/kendo-angular-l10n": "16.
|
|
28
|
-
"@progress/kendo-angular-icons": "16.
|
|
29
|
-
"@progress/kendo-angular-popup": "16.
|
|
26
|
+
"@progress/kendo-angular-common": "16.6.0-develop.1",
|
|
27
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.1",
|
|
28
|
+
"@progress/kendo-angular-icons": "16.6.0-develop.1",
|
|
29
|
+
"@progress/kendo-angular-popup": "16.6.0-develop.1",
|
|
30
30
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"tslib": "^2.3.1",
|
|
34
|
-
"@progress/kendo-angular-schematics": "16.
|
|
34
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.1"
|
|
35
35
|
},
|
|
36
36
|
"schematics": "./schematics/collection.json",
|
|
37
37
|
"module": "fesm2015/progress-kendo-angular-menu.mjs",
|
|
@@ -30,5 +30,5 @@ export declare class ExpandArrowComponent implements OnInit {
|
|
|
30
30
|
constructor(itemsService: ItemsService);
|
|
31
31
|
ngOnInit(): void;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandArrowComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandArrowComponent, "[kendoMenuExpandArrow]", never, { "index": "kendoMenuExpandArrow"; }, {}, never, never,
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandArrowComponent, "[kendoMenuExpandArrow]", never, { "index": "kendoMenuExpandArrow"; }, {}, never, never, true, never>;
|
|
34
34
|
}
|
|
@@ -23,5 +23,5 @@ export declare class LinkDirective implements OnInit {
|
|
|
23
23
|
constructor(itemsService: ItemsService);
|
|
24
24
|
ngOnInit(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkDirective, never>;
|
|
26
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LinkDirective, "[kendoMenuItemLink]", never, { "index": "kendoMenuItemLink"; }, {}, never, never,
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LinkDirective, "[kendoMenuItemLink]", never, { "index": "kendoMenuItemLink"; }, {}, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -46,7 +46,7 @@ export declare class ListComponent implements OnInit, OnDestroy {
|
|
|
46
46
|
private nodeItem;
|
|
47
47
|
private clickHandler;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "[kendoMenuList]", never, { "appendTo": "appendTo"; "items": "items"; "level": "level"; "index": "index"; "animate": "animate"; "size": "size"; "vertical": "vertical"; "rtl": "rtl"; "openOnClick": "openOnClick"; "itemTemplate": "itemTemplate"; "itemLinkTemplate": "itemLinkTemplate"; }, {}, never, never,
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "[kendoMenuList]", never, { "appendTo": "appendTo"; "items": "items"; "level": "level"; "index": "index"; "animate": "animate"; "size": "size"; "vertical": "vertical"; "rtl": "rtl"; "openOnClick": "openOnClick"; "itemTemplate": "itemTemplate"; "itemLinkTemplate": "itemLinkTemplate"; }, {}, never, never, true, never>;
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
52
|
* @hidden
|
|
@@ -96,7 +96,7 @@ export declare class ItemComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
96
96
|
/**
|
|
97
97
|
* @hidden
|
|
98
98
|
*/
|
|
99
|
-
SVGIcon: (horizontal: boolean, rtl: boolean) => import("@progress/kendo-
|
|
99
|
+
SVGIcon: (horizontal: boolean, rtl: boolean) => import("@progress/kendo-angular-icons").SVGIcon;
|
|
100
100
|
opened: boolean;
|
|
101
101
|
navigating: boolean;
|
|
102
102
|
childId: string;
|
|
@@ -117,5 +117,5 @@ export declare class ItemComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
117
117
|
navigate(): void;
|
|
118
118
|
private setAttribute;
|
|
119
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItemComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ItemComponent, "[kendoMenuItem]", never, { "appendTo": "appendTo"; "item": "item"; "level": "level"; "index": "index"; "siblingIndex": "siblingIndex"; "animate": "animate"; "size": "size"; "vertical": "vertical"; "rtl": "rtl"; "openOnClick": "openOnClick"; "itemTemplate": "itemTemplate"; "itemLinkTemplate": "itemLinkTemplate"; }, {}, never, never,
|
|
120
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ItemComponent, "[kendoMenuItem]", never, { "appendTo": "appendTo"; "item": "item"; "level": "level"; "index": "index"; "siblingIndex": "siblingIndex"; "animate": "animate"; "size": "size"; "vertical": "vertical"; "rtl": "rtl"; "openOnClick": "openOnClick"; "itemTemplate": "itemTemplate"; "itemLinkTemplate": "itemLinkTemplate"; }, {}, never, never, true, never>;
|
|
121
121
|
}
|
|
@@ -38,5 +38,5 @@ export declare class ItemContentTemplateDirective {
|
|
|
38
38
|
templateRef: TemplateRef<any>;
|
|
39
39
|
constructor(templateRef: TemplateRef<any>);
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItemContentTemplateDirective, [{ optional: true; }]>;
|
|
41
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemContentTemplateDirective, "[kendoMenuItemContentTemplate]", never, {}, {}, never, never,
|
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemContentTemplateDirective, "[kendoMenuItemContentTemplate]", never, {}, {}, never, never, true, never>;
|
|
42
42
|
}
|
|
@@ -40,5 +40,5 @@ export declare class ItemLinkTemplateDirective {
|
|
|
40
40
|
templateRef: TemplateRef<any>;
|
|
41
41
|
constructor(templateRef: TemplateRef<any>);
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItemLinkTemplateDirective, [{ optional: true; }]>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemLinkTemplateDirective, "[kendoMenuItemLinkTemplate]", never, {}, {}, never, never,
|
|
43
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemLinkTemplateDirective, "[kendoMenuItemLinkTemplate]", never, {}, {}, never, never, true, never>;
|
|
44
44
|
}
|
|
@@ -39,5 +39,5 @@ export declare class ItemTemplateDirective {
|
|
|
39
39
|
templateRef: TemplateRef<any>;
|
|
40
40
|
constructor(templateRef: TemplateRef<any>);
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItemTemplateDirective, [{ optional: true; }]>;
|
|
42
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemTemplateDirective, "[kendoMenuItemTemplate]", never, {}, {}, never, never,
|
|
42
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemTemplateDirective, "[kendoMenuItemTemplate]", never, {}, {}, never, never, true, never>;
|
|
43
43
|
}
|