@limetech/lime-elements 33.14.0-next.10 → 33.14.0-next.11
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.
|
@@ -211,7 +211,7 @@ export class Menu {
|
|
|
211
211
|
"mutable": false,
|
|
212
212
|
"complexType": {
|
|
213
213
|
"original": "Array<MenuItem | ListSeparator>",
|
|
214
|
-
"resolved": "(ListSeparator | MenuItem)[]",
|
|
214
|
+
"resolved": "(ListSeparator | MenuItem<any>)[]",
|
|
215
215
|
"references": {
|
|
216
216
|
"Array": {
|
|
217
217
|
"location": "global"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ListItem } from '../list/list-item.types';
|
|
2
2
|
export declare type OpenDirection = 'left' | 'right';
|
|
3
|
-
export interface MenuItem extends ListItem {
|
|
3
|
+
export interface MenuItem<T = any> extends ListItem<T> {
|
|
4
4
|
/**
|
|
5
5
|
* The additional supporting text is used for shortcut commands and displayed in the list item.
|
|
6
6
|
*/
|