@progress/kendo-angular-menu 22.1.0-develop.17 → 22.1.0-develop.19

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.
@@ -23,7 +23,7 @@ const packageMetadata = {
23
23
  productCode: 'KENDOUIANGULAR',
24
24
  productCodes: ['KENDOUIANGULAR'],
25
25
  publishDate: 0,
26
- version: '22.1.0-develop.17',
26
+ version: '22.1.0-develop.19',
27
27
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
28
28
  };
29
29
 
@@ -1165,12 +1165,11 @@ class MenuBase {
1165
1165
  *
1166
1166
  * The possible values are:
1167
1167
  * * `small`
1168
- * * `medium` (default)
1168
+ * * `medium`
1169
1169
  * * `large`
1170
- * * `none`
1171
1170
  *
1172
1171
  */
1173
- size = 'medium';
1172
+ size = undefined;
1174
1173
  /**
1175
1174
  * Configures the popup settings for the Menu items.
1176
1175
  * Allows customization of the popup class and margin.
@@ -2083,7 +2082,7 @@ class MenuComponent extends MenuBase {
2083
2082
  const sizeClass = getSizeClass(this.size);
2084
2083
  const staticClasses = 'k-reset k-header k-menu';
2085
2084
  if (this.isContextMenu) {
2086
- return `k-context-menu k-menu-group ${sizeClass}`;
2085
+ return `k-context-menu k-menu-group ${sizeClass || ''}`;
2087
2086
  }
2088
2087
  return `${staticClasses} k-menu-${this.vertical ? 'vertical' : 'horizontal'}`;
2089
2088
  }
package/menu-base.d.ts CHANGED
@@ -43,9 +43,8 @@ export declare class MenuBase {
43
43
  *
44
44
  * The possible values are:
45
45
  * * `small`
46
- * * `medium` (default)
46
+ * * `medium`
47
47
  * * `large`
48
- * * `none`
49
48
  *
50
49
  */
51
50
  size: MenuSize;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1770055204,
11
- "version": "22.1.0-develop.17",
10
+ "publishDate": 1770219726,
11
+ "version": "22.1.0-develop.19",
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": "22.1.0-develop.17",
3
+ "version": "22.1.0-develop.19",
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": 1770055204,
22
+ "publishDate": 1770219726,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -29,15 +29,15 @@
29
29
  "@angular/core": "19 - 21",
30
30
  "@angular/platform-browser": "19 - 21",
31
31
  "@progress/kendo-licensing": "^1.10.0",
32
- "@progress/kendo-angular-common": "22.1.0-develop.17",
33
- "@progress/kendo-angular-l10n": "22.1.0-develop.17",
34
- "@progress/kendo-angular-icons": "22.1.0-develop.17",
35
- "@progress/kendo-angular-popup": "22.1.0-develop.17",
32
+ "@progress/kendo-angular-common": "22.1.0-develop.19",
33
+ "@progress/kendo-angular-l10n": "22.1.0-develop.19",
34
+ "@progress/kendo-angular-icons": "22.1.0-develop.19",
35
+ "@progress/kendo-angular-popup": "22.1.0-develop.19",
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": "22.1.0-develop.17"
40
+ "@progress/kendo-angular-schematics": "22.1.0-develop.19"
41
41
  },
42
42
  "schematics": "./schematics/collection.json",
43
43
  "module": "fesm2022/progress-kendo-angular-menu.mjs",
package/size.d.ts CHANGED
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Represents the possible size options of the menu.
7
7
  */
8
- export type MenuSize = 'small' | 'medium' | 'large' | 'none';
8
+ export type MenuSize = 'small' | 'medium' | 'large';