Skip to content

Commit 1b66e6d

Browse files
committed
fix: Mark all aria-labels properties optional (fixes #1085)
1 parent cd37f7f commit 1b66e6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,9 @@ export interface VueDatePickerProps {
272272
clearInput?: string;
273273
calendarIcon?: string;
274274
timePicker?: string;
275-
monthPicker: (overlay: boolean) => string;
276-
yearPicker: (overlay: boolean) => string;
277-
timeOverlay: (type: TimeType) => string;
275+
monthPicker?: (overlay: boolean) => string;
276+
yearPicker?: (overlay: boolean) => string;
277+
timeOverlay?: (type: TimeType) => string;
278278
};
279279
arrowNavigation?: boolean;
280280
yearPicker?: boolean;

0 commit comments

Comments
 (0)