We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dpWrapMenuRef
1 parent 672b575 commit f2db556Copy full SHA for f2db556
index.d.ts
@@ -7,6 +7,7 @@ import type {
7
ComputedRef,
8
DefineComponent,
9
MethodOptions,
10
+ Ref,
11
} from 'vue';
12
import type { Locale } from 'date-fns';
13
@@ -319,6 +320,7 @@ export interface PublicMethods extends MethodOptions {
319
320
switchView: (view: MenuView, instance?: number) => void;
321
toggleMenu: () => void;
322
handleFlow: (step?: number) => void;
323
+ dpWrapMenuRef: Ref<HTMLElement | null>;
324
}
325
326
type InternalModelValue = Date | Date[] | null;
src/VueDatePicker/VueDatePicker.vue
@@ -542,5 +542,6 @@
542
switchView,
543
toggleMenu,
544
handleFlow,
545
+ dpWrapMenuRef,
546
});
547
</script>
0 commit comments