From 169a9af8eb515047d1ba69cba6d8aa295d4f4321 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 19 Apr 2024 15:28:49 +0300 Subject: [PATCH] Fixed #5599 - Menu / Stepper: Pass Through Unstyled Mode --- components/lib/menu/Menu.vue | 15 ++++++++++++++- components/lib/stepper/Stepper.vue | 3 +++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/components/lib/menu/Menu.vue b/components/lib/menu/Menu.vue index a0efcd476..9f4c4f9ad 100644 --- a/components/lib/menu/Menu.vue +++ b/components/lib/menu/Menu.vue @@ -31,6 +31,7 @@ :item="child" :templates="$slots" :focusedOptionId="focusedOptionId" + :unstyled="unstyled" @item-click="itemClick" @item-mousemove="itemMouseMove" :pt="pt" @@ -39,7 +40,19 @@
  • - +
    diff --git a/components/lib/stepper/Stepper.vue b/components/lib/stepper/Stepper.vue index 7ba3d49cf..f4d760542 100644 --- a/components/lib/stepper/Stepper.vue +++ b/components/lib/stepper/Stepper.vue @@ -31,6 +31,7 @@ :clickCallback="(event) => onItemClick(event, index)" :getStepPT="getStepPT" :getStepProp="getStepProp" + :unstyled="unstyled" /> @@ -42,6 +43,7 @@ :active="isStepActive(index)" :highlighted="index < d_activeStep" :getStepPT="getStepPT(step, 'separator', index)" + :unstyled="unstyled" /> @@ -61,6 +63,7 @@ :nextCallback="(event) => nextCallback(event, index)" :getStepPT="getStepPT" :aria-labelledby="getStepHeaderActionId(index)" + :unstyled="unstyled" />