From 5cc61a351c1749a47af46f113357d09c95a7fe27 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Tue, 20 Feb 2024 17:47:55 +0300 Subject: [PATCH] Refactor #5266 --- components/lib/stepper/Stepper.d.ts | 16 ++- components/lib/stepper/Stepper.vue | 123 +++++++++--------- components/lib/stepper/StepperHeader.vue | 13 +- components/lib/stepper/style/StepperStyle.js | 1 - components/lib/stepperpanel/StepperPanel.d.ts | 12 ++ public/themes/arya-blue/theme.css | 2 +- public/themes/arya-green/theme.css | 2 +- public/themes/arya-orange/theme.css | 2 +- public/themes/arya-purple/theme.css | 2 +- public/themes/aura-dark-amber/theme.css | 5 +- public/themes/aura-dark-blue/theme.css | 5 +- public/themes/aura-dark-cyan/theme.css | 5 +- public/themes/aura-dark-green/theme.css | 5 +- public/themes/aura-dark-indigo/theme.css | 5 +- public/themes/aura-dark-lime/theme.css | 5 +- public/themes/aura-dark-noir/theme.css | 5 +- public/themes/aura-dark-pink/theme.css | 5 +- public/themes/aura-dark-purple/theme.css | 5 +- public/themes/aura-dark-teal/theme.css | 5 +- public/themes/aura-light-amber/theme.css | 5 +- public/themes/aura-light-blue/theme.css | 5 +- public/themes/aura-light-cyan/theme.css | 5 +- public/themes/aura-light-green/theme.css | 5 +- public/themes/aura-light-indigo/theme.css | 5 +- public/themes/aura-light-lime/theme.css | 5 +- public/themes/aura-light-noir/theme.css | 5 +- public/themes/aura-light-pink/theme.css | 5 +- public/themes/aura-light-purple/theme.css | 5 +- public/themes/aura-light-teal/theme.css | 5 +- public/themes/bootstrap4-dark-blue/theme.css | 2 +- .../themes/bootstrap4-dark-purple/theme.css | 2 +- public/themes/bootstrap4-light-blue/theme.css | 2 +- .../themes/bootstrap4-light-purple/theme.css | 2 +- public/themes/fluent-light/theme.css | 2 +- public/themes/lara-dark-amber/theme.css | 2 +- public/themes/lara-dark-blue/theme.css | 2 +- public/themes/lara-dark-cyan/theme.css | 2 +- public/themes/lara-dark-green/theme.css | 2 +- public/themes/lara-dark-indigo/theme.css | 2 +- public/themes/lara-dark-pink/theme.css | 2 +- public/themes/lara-dark-purple/theme.css | 2 +- public/themes/lara-dark-teal/theme.css | 2 +- public/themes/lara-light-amber/theme.css | 2 +- public/themes/lara-light-blue/theme.css | 2 +- public/themes/lara-light-cyan/theme.css | 2 +- public/themes/lara-light-green/theme.css | 2 +- public/themes/lara-light-indigo/theme.css | 2 +- public/themes/lara-light-pink/theme.css | 2 +- public/themes/lara-light-purple/theme.css | 2 +- public/themes/lara-light-teal/theme.css | 2 +- public/themes/luna-amber/theme.css | 2 +- public/themes/luna-blue/theme.css | 2 +- public/themes/luna-green/theme.css | 2 +- public/themes/luna-pink/theme.css | 2 +- public/themes/md-dark-deeppurple/theme.css | 2 +- public/themes/md-dark-indigo/theme.css | 2 +- public/themes/md-light-deeppurple/theme.css | 2 +- public/themes/md-light-indigo/theme.css | 2 +- public/themes/mdc-dark-deeppurple/theme.css | 2 +- public/themes/mdc-dark-indigo/theme.css | 2 +- public/themes/mdc-light-deeppurple/theme.css | 2 +- public/themes/mdc-light-indigo/theme.css | 2 +- public/themes/mira/theme.css | 2 +- public/themes/nano/theme.css | 2 +- public/themes/nova-accent/theme.css | 2 +- public/themes/nova-alt/theme.css | 2 +- public/themes/nova-vue/theme.css | 2 +- public/themes/nova/theme.css | 2 +- public/themes/rhea/theme.css | 2 +- public/themes/saga-blue/theme.css | 2 +- public/themes/saga-green/theme.css | 2 +- public/themes/saga-orange/theme.css | 2 +- public/themes/saga-purple/theme.css | 2 +- public/themes/soho-dark/theme.css | 2 +- public/themes/soho-light/theme.css | 2 +- public/themes/tailwind-light/theme.css | 2 +- public/themes/vela-blue/theme.css | 2 +- public/themes/vela-green/theme.css | 2 +- public/themes/vela-orange/theme.css | 2 +- public/themes/vela-purple/theme.css | 2 +- public/themes/viva-dark/theme.css | 2 +- public/themes/viva-light/theme.css | 2 +- 82 files changed, 233 insertions(+), 146 deletions(-) diff --git a/components/lib/stepper/Stepper.d.ts b/components/lib/stepper/Stepper.d.ts index a94ec129b..92294cf35 100644 --- a/components/lib/stepper/Stepper.d.ts +++ b/components/lib/stepper/Stepper.d.ts @@ -7,6 +7,7 @@ * @module stepper * */ +import { VNode } from 'vue'; import { ComponentHooks } from '../basecomponent'; import { PassThroughOptions } from '../passthrough'; import { StepperPanelPassThroughOptionType } from '../stepperpanel'; @@ -53,10 +54,6 @@ export interface StepperPassThroughOptions { * Used to pass attributes to the root's DOM element. */ root?: StepperPassThroughOptionType; - /** - * Used to pass attributes to the nav container's DOM element. - */ - navContainer?: StepperPassThroughOptionType; /** * Used to pass attributes to the nav's DOM element. */ @@ -151,7 +148,16 @@ export interface StepperProps { /** * Defines valid slots in Stepper component. */ -export interface StepperSlots {} +export interface StepperSlots { + /** + * Custom start template. + */ + start(): VNode[]; + /** + * Custom end template. + */ + end(): VNode[]; +} /** * Defines valid emits in Stepper component. diff --git a/components/lib/stepper/Stepper.vue b/components/lib/stepper/Stepper.vue index 56e81e49c..88afc97cd 100644 --- a/components/lib/stepper/Stepper.vue +++ b/components/lib/stepper/Stepper.vue @@ -3,52 +3,50 @@