From a7f0366b6a63bf027b68fca6a6baaecf4c86d875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 25 Jul 2023 12:11:38 +0300 Subject: [PATCH] Refactor #4190 - For PanelMenu --- components/lib/panelmenu/PanelMenu.d.ts | 4 ++++ components/lib/panelmenu/PanelMenuSub.vue | 1 + 2 files changed, 5 insertions(+) diff --git a/components/lib/panelmenu/PanelMenu.d.ts b/components/lib/panelmenu/PanelMenu.d.ts index 00629c012..bb77806a0 100755 --- a/components/lib/panelmenu/PanelMenu.d.ts +++ b/components/lib/panelmenu/PanelMenu.d.ts @@ -134,6 +134,10 @@ export interface PanelMenuState { * Defines current options in PanelMenu component. */ export interface PanelMenuContext { + /** + * Current menuitem + */ + item: any; /** * Index of the menuitem. */ diff --git a/components/lib/panelmenu/PanelMenuSub.vue b/components/lib/panelmenu/PanelMenuSub.vue index 8e9abff6c..36289091b 100755 --- a/components/lib/panelmenu/PanelMenuSub.vue +++ b/components/lib/panelmenu/PanelMenuSub.vue @@ -130,6 +130,7 @@ export default { getPTOptions(key, processedItem, index) { return this.ptm(key, { context: { + item: processedItem, index, active: this.isItemActive(processedItem), focused: this.isItemFocused(processedItem)