@@ -81,31 +81,6 @@ export type GlobalChips = boolean;
81
81
export type GlobalMultiple = boolean ;
82
82
83
83
84
- export interface VStepperProps extends Partial < Pick < VStepper ,
85
- 'altLabels' |
86
- 'bgColor' |
87
- 'border' |
88
- 'disabled' |
89
- 'editIcon' |
90
- 'editable' |
91
- 'elevation' |
92
- 'flat' |
93
- 'height' |
94
- 'hideActions' |
95
- 'maxHeight' |
96
- 'maxWidth' |
97
- 'minHeight' |
98
- 'minWidth' |
99
- 'nextText' |
100
- 'prevText' |
101
- 'rounded' |
102
- 'selectedClass' |
103
- 'tag' |
104
- 'theme' |
105
- 'tile' |
106
- 'width'
107
- > > { }
108
-
109
84
interface VStepperWindowItemProps {
110
85
transition ?: VStepperWindowItem [ 'transition' ] ;
111
86
}
@@ -167,7 +142,30 @@ export interface Page {
167
142
168
143
169
144
// -------------------------------------------------- Props //
170
- export interface Props extends /* @vue -ignore */ VStepperProps , VStepperWindowItemProps {
145
+ export interface Props extends VStepperWindowItemProps {
146
+ // Extended Props from VStepper //
147
+ altLabels ?: VStepper [ 'altLabels' ] ;
148
+ bgColor ?: VStepper [ 'bgColor' ] ;
149
+ border ?: VStepper [ 'border' ] ;
150
+ disabled ?: VStepper [ 'disabled' ] ;
151
+ editIcon ?: VStepper [ 'editIcon' ] ;
152
+ elevation ?: VStepper [ 'elevation' ] ;
153
+ flat ?: VStepper [ 'flat' ] ;
154
+ height ?: VStepper [ 'height' ] ;
155
+ hideActions ?: VStepper [ 'hideActions' ] ;
156
+ maxHeight ?: VStepper [ 'maxHeight' ] ;
157
+ maxWidth ?: VStepper [ 'maxWidth' ] ;
158
+ minHeight ?: VStepper [ 'minHeight' ] ;
159
+ minWidth ?: VStepper [ 'minWidth' ] ;
160
+ nextText ?: VStepper [ 'nextText' ] ;
161
+ prevText ?: VStepper [ 'prevText' ] ;
162
+ rounded ?: VStepper [ 'rounded' ] ;
163
+ selectedClass ?: VStepper [ 'selectedClass' ] ;
164
+ tag ?: VStepper [ 'tag' ] ;
165
+ theme ?: VStepper [ 'theme' ] ;
166
+ tile ?: VStepper [ 'tile' ] ;
167
+
168
+
171
169
// Required //
172
170
pages : Page [ ] ;
173
171
validationSchema ?: Schema < any > | ZodSchema ;
0 commit comments