@progress/kendo-angular-menu 4.1.1 → 11.0.0-develop.101
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/LICENSE.md +1 -1
- package/NOTICE.txt +4 -4
- package/constants.d.ts +1 -1
- package/context-menu/context-menu-event.d.ts +1 -1
- package/context-menu/context-menu-items.service.d.ts +1 -1
- package/context-menu/context-menu-popup-event.d.ts +1 -1
- package/context-menu/context-menu-select-event.d.ts +1 -1
- 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-target.service.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 +1 -1
- package/context-menu/context-menu.service.d.ts +1 -1
- package/data-binding/binding-directive-base.d.ts +1 -1
- package/data-binding/flat-binding.directive.d.ts +1 -1
- package/data-binding/hierachy-binding.directive.d.ts +1 -1
- package/data-binding/utils.d.ts +1 -1
- package/dom-queries.d.ts +1 -1
- package/{esm2015/constants.js → esm2020/constants.mjs} +1 -1
- package/{esm2015/context-menu/context-menu-event.js → esm2020/context-menu/context-menu-event.mjs} +1 -1
- package/{esm2015/context-menu/context-menu-items.service.js → esm2020/context-menu/context-menu-items.service.mjs} +5 -4
- package/{esm2015/context-menu/context-menu-popup-event.js → esm2020/context-menu/context-menu-popup-event.mjs} +1 -1
- package/{esm2015/context-menu/context-menu-select-event.js → esm2020/context-menu/context-menu-select-event.mjs} +1 -1
- package/{esm2015/context-menu/context-menu-target-container.directive.js → esm2020/context-menu/context-menu-target-container.directive.mjs} +5 -5
- package/{esm2015/context-menu/context-menu-target.directive.js → esm2020/context-menu/context-menu-target.directive.mjs} +6 -5
- package/{esm2015/context-menu/context-menu-target.service.js → esm2020/context-menu/context-menu-target.service.mjs} +4 -4
- package/{esm2015/context-menu/context-menu-template.directive.js → esm2020/context-menu/context-menu-template.directive.mjs} +5 -5
- package/{esm2015/context-menu/context-menu.component.js → esm2020/context-menu/context-menu.component.mjs} +5 -5
- package/{esm2015/context-menu/context-menu.module.js → esm2020/context-menu/context-menu.module.mjs} +5 -5
- package/{esm2015/context-menu/context-menu.service.js → esm2020/context-menu/context-menu.service.mjs} +4 -4
- package/{esm2015/data-binding/binding-directive-base.js → esm2020/data-binding/binding-directive-base.mjs} +5 -4
- package/{esm2015/data-binding/flat-binding.directive.js → esm2020/data-binding/flat-binding.directive.mjs} +5 -4
- package/{esm2015/data-binding/hierachy-binding.directive.js → esm2020/data-binding/hierachy-binding.directive.mjs} +5 -4
- package/{esm2015/data-binding/utils.js → esm2020/data-binding/utils.mjs} +1 -1
- package/{esm2015/dom-queries.js → esm2020/dom-queries.mjs} +1 -1
- package/{esm2015/main.js → esm2020/index.mjs} +2 -2
- package/{esm2015/size.js → esm2020/menu-animation.interface.mjs} +1 -1
- package/{esm2015/menu-base.js → esm2020/menu-base.mjs} +5 -5
- package/{esm2015/menu-event.js → esm2020/menu-event.mjs} +1 -1
- package/{esm2015/menu-item.component.js → esm2020/menu-item.component.mjs} +5 -5
- package/{esm2015/menu-item.interface.js → esm2020/menu-item.interface.mjs} +1 -1
- package/{esm2015/menu-select-event.js → esm2020/menu-select-event.mjs} +1 -1
- package/{esm2015/menu.component.js → esm2020/menu.component.mjs} +6 -5
- package/{esm2015/menu.module.js → esm2020/menu.module.mjs} +12 -11
- package/{esm2015/menus.module.js → esm2020/menus.module.mjs} +5 -5
- package/{esm2015/open-on-click-settings.js → esm2020/open-on-click-settings.mjs} +1 -1
- package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
- package/{esm2015/preventable-event.js → esm2020/preventable-event.mjs} +1 -1
- package/{esm2015/kendo-angular-menu.js → esm2020/progress-kendo-angular-menu.mjs} +2 -2
- package/esm2020/rendering/arrow.component.mjs +47 -0
- package/{esm2015/rendering/link.directive.js → esm2020/rendering/link.directive.mjs} +5 -4
- package/{esm2015/rendering/list.component.js → esm2020/rendering/list.component.mjs} +27 -27
- package/{esm2015/rendering/popup-settings.js → esm2020/rendering/popup-settings.mjs} +1 -1
- package/{esm2015/services/actions.service.js → esm2020/services/actions.service.mjs} +5 -4
- package/{esm2015/services/hover.service.js → esm2020/services/hover.service.mjs} +6 -4
- package/{esm2015/services/items.service.js → esm2020/services/items.service.mjs} +6 -6
- package/{esm2015/services/navigation.service.js → esm2020/services/navigation.service.mjs} +8 -5
- package/{esm2015/menu-animation.interface.js → esm2020/size.mjs} +1 -1
- package/{esm2015/templates/item-content-template.directive.js → esm2020/templates/item-content-template.directive.mjs} +5 -5
- package/{esm2015/templates/item-link-template.directive.js → esm2020/templates/item-link-template.directive.mjs} +5 -5
- package/{esm2015/templates/item-template.directive.js → esm2020/templates/item-template.directive.mjs} +5 -5
- package/{esm2015/utils.js → esm2020/utils.mjs} +24 -1
- package/fesm2015/progress-kendo-angular-menu.mjs +3143 -0
- package/{fesm2015/kendo-angular-menu.js → fesm2020/progress-kendo-angular-menu.mjs} +159 -151
- package/{main.d.ts → index.d.ts} +3 -2
- package/menu-animation.interface.d.ts +1 -1
- package/menu-base.d.ts +1 -1
- package/menu-event.d.ts +1 -1
- package/menu-item.component.d.ts +1 -1
- package/menu-item.interface.d.ts +1 -1
- package/menu-select-event.d.ts +1 -1
- package/menu.component.d.ts +1 -1
- package/menu.module.d.ts +4 -3
- package/menus.module.d.ts +1 -1
- package/open-on-click-settings.d.ts +1 -1
- package/package-metadata.d.ts +1 -1
- package/package.json +29 -54
- package/preventable-event.d.ts +1 -1
- package/{kendo-angular-menu.d.ts → progress-kendo-angular-menu.d.ts} +2 -2
- package/rendering/{arrow.directive.d.ts → arrow.component.d.ts} +16 -10
- package/rendering/link.directive.d.ts +1 -1
- package/rendering/list.component.d.ts +10 -1
- package/rendering/popup-settings.d.ts +1 -1
- package/schematics/ngAdd/index.js +5 -7
- package/services/actions.service.d.ts +1 -1
- package/services/hover.service.d.ts +1 -1
- package/services/items.service.d.ts +1 -1
- package/services/navigation.service.d.ts +1 -1
- package/size.d.ts +1 -1
- 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/utils.d.ts +10 -1
- package/bundles/kendo-angular-menu.umd.js +0 -5
- package/esm2015/rendering/arrow.directive.js +0 -55
- package/schematics/ngAdd/index.js.map +0 -1
package/{main.d.ts → index.d.ts}
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export { MenuComponent } from './menu.component';
|
|
6
6
|
export { ListComponent, ItemComponent } from './rendering/list.component';
|
|
7
7
|
export { LinkDirective } from './rendering/link.directive';
|
|
8
|
-
export {
|
|
8
|
+
export { ExpandArrowComponent } from './rendering/arrow.component';
|
|
9
9
|
export { MenuItemComponent } from './menu-item.component';
|
|
10
10
|
export { MenuAnimation } from './menu-animation.interface';
|
|
11
11
|
export { MenuItem } from './menu-item.interface';
|
|
@@ -28,4 +28,5 @@ export { ContextMenuService } from './context-menu/context-menu.service';
|
|
|
28
28
|
export { ItemsService } from './services/items.service';
|
|
29
29
|
export { ContextMenuTargetContainerDirective } from './context-menu/context-menu-target-container.directive';
|
|
30
30
|
export { ContextMenuTargetDirective } from './context-menu/context-menu-target.directive';
|
|
31
|
+
export { MenuSize } from './size';
|
|
31
32
|
export { MenusModule } from './menus.module';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
package/menu-base.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { QueryList } from '@angular/core';
|
package/menu-event.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { MenuComponent } from './menu.component';
|
package/menu-item.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { QueryList, TemplateRef } from '@angular/core';
|
package/menu-item.interface.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
package/menu-select-event.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { MenuEvent } from './menu-event';
|
package/menu.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { EventEmitter, OnChanges, AfterViewChecked, NgZone, Renderer2, TemplateRef } from '@angular/core';
|
package/menu.module.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
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";
|
|
@@ -11,10 +11,11 @@ import * as i5 from "./templates/item-content-template.directive";
|
|
|
11
11
|
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
|
-
import * as i9 from "./rendering/arrow.
|
|
14
|
+
import * as i9 from "./rendering/arrow.component";
|
|
15
15
|
import * as i10 from "./rendering/list.component";
|
|
16
16
|
import * as i11 from "@progress/kendo-angular-popup";
|
|
17
17
|
import * as i12 from "@angular/common";
|
|
18
|
+
import * as i13 from "@progress/kendo-angular-icons";
|
|
18
19
|
/**
|
|
19
20
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
20
21
|
* definition for the Menu component.
|
|
@@ -49,6 +50,6 @@ import * as i12 from "@angular/common";
|
|
|
49
50
|
*/
|
|
50
51
|
export declare class MenuModule {
|
|
51
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuModule, never>;
|
|
52
|
-
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.
|
|
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, typeof i10.ListComponent, typeof i10.ItemComponent], [typeof i11.PopupModule, typeof i12.CommonModule, typeof i13.IconsModule], [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]>;
|
|
53
54
|
static ɵinj: i0.ɵɵInjectorDeclaration<MenuModule>;
|
|
54
55
|
}
|
package/menus.module.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
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";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
package/package-metadata.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { PackageMetadata } from '@progress/kendo-licensing';
|
package/package.json
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-menu",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0-develop.101",
|
|
4
4
|
"description": "Kendo UI Angular Menu component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
7
7
|
"homepage": "https://www.telerik.com/kendo-angular-ui/components/",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/telerik/kendo-angular-menu.git"
|
|
11
|
-
},
|
|
12
8
|
"bugs": {
|
|
13
9
|
"url": "https://github.com/telerik/kendo-angular"
|
|
14
10
|
},
|
|
@@ -21,62 +17,41 @@
|
|
|
21
17
|
"@progress": {
|
|
22
18
|
"friendlyName": "Menu"
|
|
23
19
|
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@progress/kendo-schematics": "^3.0.0",
|
|
26
|
-
"tslib": "^2.3.1"
|
|
27
|
-
},
|
|
28
20
|
"peerDependencies": {
|
|
29
|
-
"@angular/
|
|
30
|
-
"@angular/
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"@progress/kendo-angular-popup": "^5.0.0",
|
|
21
|
+
"@angular/animations": "13 - 15",
|
|
22
|
+
"@angular/common": "13 - 15",
|
|
23
|
+
"@angular/core": "13 - 15",
|
|
24
|
+
"@angular/platform-browser": "13 - 15",
|
|
34
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
+
"@progress/kendo-angular-common": "11.0.0-develop.101",
|
|
27
|
+
"@progress/kendo-angular-l10n": "11.0.0-develop.101",
|
|
28
|
+
"@progress/kendo-angular-icons": "11.0.0-develop.101",
|
|
29
|
+
"@progress/kendo-angular-popup": "11.0.0-develop.101",
|
|
30
|
+
"@progress/kendo-angular-schematics": "11.0.0-develop.101",
|
|
35
31
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
32
|
},
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"path": "./node_modules/cz-conventional-changelog"
|
|
40
|
-
},
|
|
41
|
-
"ghooks": {
|
|
42
|
-
"commit-msg": "validate-commit-msg"
|
|
43
|
-
},
|
|
44
|
-
"validate-commit-msg": {
|
|
45
|
-
"types": [
|
|
46
|
-
"feat",
|
|
47
|
-
"fix",
|
|
48
|
-
"docs",
|
|
49
|
-
"style",
|
|
50
|
-
"refactor",
|
|
51
|
-
"perf",
|
|
52
|
-
"test",
|
|
53
|
-
"chore",
|
|
54
|
-
"revert"
|
|
55
|
-
],
|
|
56
|
-
"warnOnFail": false,
|
|
57
|
-
"maxSubjectLength": 100
|
|
58
|
-
}
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"tslib": "^2.3.1"
|
|
59
35
|
},
|
|
60
36
|
"schematics": "./schematics/collection.json",
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
37
|
+
"module": "fesm2015/progress-kendo-angular-menu.mjs",
|
|
38
|
+
"es2020": "fesm2020/progress-kendo-angular-menu.mjs",
|
|
39
|
+
"esm2020": "esm2020/progress-kendo-angular-menu.mjs",
|
|
40
|
+
"fesm2020": "fesm2020/progress-kendo-angular-menu.mjs",
|
|
41
|
+
"fesm2015": "fesm2015/progress-kendo-angular-menu.mjs",
|
|
42
|
+
"typings": "progress-kendo-angular-menu.d.ts",
|
|
43
|
+
"exports": {
|
|
44
|
+
"./package.json": {
|
|
45
|
+
"default": "./package.json"
|
|
65
46
|
},
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
47
|
+
".": {
|
|
48
|
+
"types": "./progress-kendo-angular-menu.d.ts",
|
|
49
|
+
"esm2020": "./esm2020/progress-kendo-angular-menu.mjs",
|
|
50
|
+
"es2020": "./fesm2020/progress-kendo-angular-menu.mjs",
|
|
51
|
+
"es2015": "./fesm2015/progress-kendo-angular-menu.mjs",
|
|
52
|
+
"node": "./fesm2015/progress-kendo-angular-menu.mjs",
|
|
53
|
+
"default": "./fesm2020/progress-kendo-angular-menu.mjs"
|
|
54
|
+
}
|
|
74
55
|
},
|
|
75
|
-
"main": "bundles/kendo-angular-menu.umd.js",
|
|
76
|
-
"module": "fesm2015/kendo-angular-menu.js",
|
|
77
|
-
"es2015": "fesm2015/kendo-angular-menu.js",
|
|
78
|
-
"esm2015": "esm2015/kendo-angular-menu.js",
|
|
79
|
-
"fesm2015": "fesm2015/kendo-angular-menu.js",
|
|
80
|
-
"typings": "kendo-angular-menu.d.ts",
|
|
81
56
|
"sideEffects": false
|
|
82
57
|
}
|
package/preventable-event.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
8
|
/// <amd-module name="@progress/kendo-angular-menu" />
|
|
9
|
-
export * from './
|
|
9
|
+
export * from './index';
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { OnInit
|
|
5
|
+
import { OnInit } from '@angular/core';
|
|
6
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
6
7
|
import { ItemsService } from '../services/items.service';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
/**
|
|
9
|
-
* Represents a
|
|
10
|
+
* Represents a component that can be used in the [`linkTemplate`]({% slug api_menu_itemlinktemplatedirective %})
|
|
10
11
|
* of the items to render the default expand arrow.
|
|
11
12
|
*/
|
|
12
|
-
export declare class
|
|
13
|
+
export declare class ExpandArrowComponent implements OnInit {
|
|
13
14
|
private itemsService;
|
|
14
|
-
private element;
|
|
15
|
-
private renderer;
|
|
16
15
|
/**
|
|
17
16
|
* The index of the Menu item. The input is mandatory.
|
|
18
17
|
*/
|
|
@@ -20,9 +19,16 @@ export declare class ExpandArrowDirective implements OnInit {
|
|
|
20
19
|
hostClasses: boolean;
|
|
21
20
|
role: string;
|
|
22
21
|
private item;
|
|
23
|
-
|
|
22
|
+
/**
|
|
23
|
+
* @hidden
|
|
24
|
+
*/
|
|
25
|
+
fontIcon: string;
|
|
26
|
+
/**
|
|
27
|
+
* @hidden
|
|
28
|
+
*/
|
|
29
|
+
SVGIcon: SVGIcon;
|
|
30
|
+
constructor(itemsService: ItemsService);
|
|
24
31
|
ngOnInit(): void;
|
|
25
|
-
|
|
26
|
-
static
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandArrowDirective, "[kendoMenuExpandArrow]", never, { "index": "kendoMenuExpandArrow"; }, {}, never>;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandArrowComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandArrowComponent, "[kendoMenuExpandArrow]", never, { "index": "kendoMenuExpandArrow"; }, {}, never, never>;
|
|
28
34
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { OnInit } from '@angular/core';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ElementRef, NgZone, OnDestroy, OnInit, Renderer2, TemplateRef } from '@angular/core';
|
|
@@ -12,6 +12,7 @@ import { ActionsService } from '../services/actions.service';
|
|
|
12
12
|
import { HoverService } from '../services/hover.service';
|
|
13
13
|
import { ItemsService } from '../services/items.service';
|
|
14
14
|
import { NavigationService } from '../services/navigation.service';
|
|
15
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
15
16
|
import * as i0 from "@angular/core";
|
|
16
17
|
/**
|
|
17
18
|
* @hidden
|
|
@@ -88,6 +89,14 @@ export declare class ItemComponent {
|
|
|
88
89
|
get menuListClasses(): string;
|
|
89
90
|
get children(): any[];
|
|
90
91
|
get template(): TemplateRef<any>;
|
|
92
|
+
/**
|
|
93
|
+
* @hidden
|
|
94
|
+
*/
|
|
95
|
+
fontIcon: (horizontal: boolean, rtl: boolean) => string;
|
|
96
|
+
/**
|
|
97
|
+
* @hidden
|
|
98
|
+
*/
|
|
99
|
+
SVGIcon: (horizontal: boolean, rtl: boolean) => SVGIcon;
|
|
91
100
|
opened: boolean;
|
|
92
101
|
navigating: boolean;
|
|
93
102
|
childId: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
1
|
"use strict";
|
|
6
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
3
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
8
4
|
function default_1(options) {
|
|
9
|
-
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'MenuModule', package: 'menu'
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'MenuModule', package: 'menu', peerDependencies: {
|
|
6
|
+
// Peer dependency of icons
|
|
7
|
+
"@progress/kendo-svg-icons": "^1.0.0"
|
|
8
|
+
} });
|
|
9
|
+
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
12
10
|
}
|
|
13
11
|
exports.default = default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgZone } from '@angular/core';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ItemsService } from './items.service';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
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";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgZone } from '@angular/core';
|
package/size.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
package/utils.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ElementRef } from '@angular/core';
|
|
6
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
6
7
|
import { MenuSize } from './size';
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
@@ -16,3 +17,11 @@ export declare const bodyFactory: () => ElementRef;
|
|
|
16
17
|
* @hidden
|
|
17
18
|
*/
|
|
18
19
|
export declare const getSizeClass: (size: MenuSize) => string;
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export declare const getFontIcon: (horizontal: boolean, rtl: boolean) => string;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
export declare const getSVGIcon: (horizontal: boolean, rtl: boolean) => SVGIcon;
|