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 @@
-
+
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
diff --git a/components/lib/stepper/StepperHeader.vue b/components/lib/stepper/StepperHeader.vue
index 0986ed081..76d6b9b8c 100644
--- a/components/lib/stepper/StepperHeader.vue
+++ b/components/lib/stepper/StepperHeader.vue
@@ -1,5 +1,16 @@
-
+