We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6733946 commit 93a295cCopy full SHA for 93a295c
core/src/components/drawer/drawer.ts
@@ -222,6 +222,10 @@ export interface DrawerState extends DrawerCommonPropsAndState {
222
* Flag to show whether the drawer is fully hidden.
223
*/
224
hidden: boolean;
225
+ /**
226
+ * Flag to show whether the drawer is vertically positioned.
227
+ */
228
+ isVertical: boolean;
229
}
230
231
/**
@@ -569,6 +573,7 @@ export const createDrawer: WidgetFactory<DrawerWidget> = createWidgetFactory('dr
569
573
visible$,
570
574
backdropHidden$,
571
575
hidden$,
576
+ isVertical$,
572
577
}),
578
patch,
579
api: {
0 commit comments