@progress/kendo-angular-menu 16.3.1-develop.2 → 16.4.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.
|
@@ -38,7 +38,8 @@ export declare class ContextMenuComponent extends MenuBase implements OnInit, On
|
|
|
38
38
|
private renderer;
|
|
39
39
|
/**
|
|
40
40
|
* Specifies the event on which the ContextMenu will open ([see example]({% slug showon_contextmenu %})).
|
|
41
|
-
* Accepts the name of a native DOM event.
|
|
41
|
+
* Accepts the name of a native DOM event. For example, `click`, `dblclick`, `mouseover`, etc.
|
|
42
|
+
* @default 'contextmenu'
|
|
42
43
|
*/
|
|
43
44
|
showOn: string;
|
|
44
45
|
/**
|
|
@@ -52,6 +53,7 @@ export declare class ContextMenuComponent extends MenuBase implements OnInit, On
|
|
|
52
53
|
filter: string;
|
|
53
54
|
/**
|
|
54
55
|
* Indicates that the ContextMenu will be aligned to the target or to the `filter` element (if specified).
|
|
56
|
+
* @default false
|
|
55
57
|
*/
|
|
56
58
|
alignToAnchor: boolean;
|
|
57
59
|
/**
|
|
@@ -61,18 +63,28 @@ export declare class ContextMenuComponent extends MenuBase implements OnInit, On
|
|
|
61
63
|
vertical: boolean;
|
|
62
64
|
/**
|
|
63
65
|
* Specifies the popup animation.
|
|
66
|
+
* @default true
|
|
64
67
|
*/
|
|
65
68
|
popupAnimate: boolean | PopupAnimation;
|
|
66
69
|
/**
|
|
67
70
|
* Specifies the pivot point of the popup.
|
|
71
|
+
* @default { horizontal: 'left', vertical: 'top' }
|
|
72
|
+
* The possible values are:
|
|
73
|
+
* - `horizontal`—`left`, `center`, `right`
|
|
74
|
+
* - `vertical`—`top`, `center`, `bottom`
|
|
68
75
|
*/
|
|
69
76
|
popupAlign: Align;
|
|
70
77
|
/**
|
|
71
78
|
* Specifies the pivot point of the anchor. Applicable if `alignToAnchor` is `true`.
|
|
79
|
+
* @default { horizontal: 'left', vertical: 'bottom' }
|
|
80
|
+
* The possible values are:
|
|
81
|
+
* - `horizontal`—`left`, `center`, `right`
|
|
82
|
+
* - `vertical`—`top`, `center`, `bottom`
|
|
72
83
|
*/
|
|
73
84
|
anchorAlign: Align;
|
|
74
85
|
/**
|
|
75
86
|
* Configures the collision behavior of the popup.
|
|
87
|
+
* @default { horizontal: 'fit', vertical: 'flip' }
|
|
76
88
|
*/
|
|
77
89
|
collision: Collision;
|
|
78
90
|
/**
|
|
@@ -54,11 +54,13 @@ export class ContextMenuComponent extends MenuBase {
|
|
|
54
54
|
this.renderer = renderer;
|
|
55
55
|
/**
|
|
56
56
|
* Specifies the event on which the ContextMenu will open ([see example]({% slug showon_contextmenu %})).
|
|
57
|
-
* Accepts the name of a native DOM event.
|
|
57
|
+
* Accepts the name of a native DOM event. For example, `click`, `dblclick`, `mouseover`, etc.
|
|
58
|
+
* @default 'contextmenu'
|
|
58
59
|
*/
|
|
59
60
|
this.showOn = CONTEXT_MENU;
|
|
60
61
|
/**
|
|
61
62
|
* Indicates that the ContextMenu will be aligned to the target or to the `filter` element (if specified).
|
|
63
|
+
* @default false
|
|
62
64
|
*/
|
|
63
65
|
this.alignToAnchor = false;
|
|
64
66
|
/**
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-menu',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1719845926,
|
|
13
|
+
version: '16.4.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -23,8 +23,8 @@ const packageMetadata = {
|
|
|
23
23
|
name: '@progress/kendo-angular-menu',
|
|
24
24
|
productName: 'Kendo UI for Angular',
|
|
25
25
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
26
|
-
publishDate:
|
|
27
|
-
version: '16.
|
|
26
|
+
publishDate: 1719845926,
|
|
27
|
+
version: '16.4.0-develop.1',
|
|
28
28
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
29
29
|
};
|
|
30
30
|
|
|
@@ -2691,11 +2691,13 @@ class ContextMenuComponent extends MenuBase {
|
|
|
2691
2691
|
this.renderer = renderer;
|
|
2692
2692
|
/**
|
|
2693
2693
|
* Specifies the event on which the ContextMenu will open ([see example]({% slug showon_contextmenu %})).
|
|
2694
|
-
* Accepts the name of a native DOM event.
|
|
2694
|
+
* Accepts the name of a native DOM event. For example, `click`, `dblclick`, `mouseover`, etc.
|
|
2695
|
+
* @default 'contextmenu'
|
|
2695
2696
|
*/
|
|
2696
2697
|
this.showOn = CONTEXT_MENU;
|
|
2697
2698
|
/**
|
|
2698
2699
|
* Indicates that the ContextMenu will be aligned to the target or to the `filter` element (if specified).
|
|
2700
|
+
* @default false
|
|
2699
2701
|
*/
|
|
2700
2702
|
this.alignToAnchor = false;
|
|
2701
2703
|
/**
|
|
@@ -23,8 +23,8 @@ const packageMetadata = {
|
|
|
23
23
|
name: '@progress/kendo-angular-menu',
|
|
24
24
|
productName: 'Kendo UI for Angular',
|
|
25
25
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
26
|
-
publishDate:
|
|
27
|
-
version: '16.
|
|
26
|
+
publishDate: 1719845926,
|
|
27
|
+
version: '16.4.0-develop.1',
|
|
28
28
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
29
29
|
};
|
|
30
30
|
|
|
@@ -2679,11 +2679,13 @@ class ContextMenuComponent extends MenuBase {
|
|
|
2679
2679
|
this.renderer = renderer;
|
|
2680
2680
|
/**
|
|
2681
2681
|
* Specifies the event on which the ContextMenu will open ([see example]({% slug showon_contextmenu %})).
|
|
2682
|
-
* Accepts the name of a native DOM event.
|
|
2682
|
+
* Accepts the name of a native DOM event. For example, `click`, `dblclick`, `mouseover`, etc.
|
|
2683
|
+
* @default 'contextmenu'
|
|
2683
2684
|
*/
|
|
2684
2685
|
this.showOn = CONTEXT_MENU;
|
|
2685
2686
|
/**
|
|
2686
2687
|
* Indicates that the ContextMenu will be aligned to the target or to the `filter` element (if specified).
|
|
2688
|
+
* @default false
|
|
2687
2689
|
*/
|
|
2688
2690
|
this.alignToAnchor = false;
|
|
2689
2691
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-menu",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.4.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.4.0-develop.1",
|
|
27
|
+
"@progress/kendo-angular-l10n": "16.4.0-develop.1",
|
|
28
|
+
"@progress/kendo-angular-icons": "16.4.0-develop.1",
|
|
29
|
+
"@progress/kendo-angular-popup": "16.4.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.4.0-develop.1"
|
|
35
35
|
},
|
|
36
36
|
"schematics": "./schematics/collection.json",
|
|
37
37
|
"module": "fesm2015/progress-kendo-angular-menu.mjs",
|