Skip to content

Commit 33bd7f6

Browse files
Merge pull request #52 from webdevnerdstuff/dev
fixing types
2 parents bf66f6e + c4e6100 commit 33bd7f6

File tree

1 file changed

+24
-26
lines changed

1 file changed

+24
-26
lines changed

src/plugin/types/index.ts

Lines changed: 24 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -81,31 +81,6 @@ export type GlobalChips = boolean;
8181
export type GlobalMultiple = boolean;
8282

8383

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-
10984
interface VStepperWindowItemProps {
11085
transition?: VStepperWindowItem['transition'];
11186
}
@@ -167,7 +142,30 @@ export interface Page {
167142

168143

169144
// -------------------------------------------------- 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+
171169
// Required //
172170
pages: Page[];
173171
validationSchema?: Schema<any> | ZodSchema;

0 commit comments

Comments
 (0)