Skip to content

Commit

Permalink
Mssing datepticker orientation options: (#24827)
Browse files Browse the repository at this point in the history
  • Loading branch information
dafik authored and mhegazy committed Apr 9, 2018
1 parent c63b81d commit 467b78e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion types/bootstrap-datepicker/index.d.ts
Expand Up @@ -10,7 +10,20 @@ type DatepickerEvents = "show"|"hide"|"clearDate"|"changeDate"|"changeMonth"|"ch

type DatepickerViewModes = 0|"days"|1|"months"|2|"years"|3|"decades"|4|"centuries"|"millenium";

type DatepickerOrientations = "auto"|"left top"|"left bottom"|"right top"|"right bottom";
type DatepickerOrientations =
"auto"
| "left top"
| "left bottom"
| "right top"
| "right bottom"
| "top auto"
| "bottom auto"
| "auto left"
| "top left"
| "bottom left"
| "auto right"
| "top right"
| "bottom right"

/**
* All options that take a “Date” can handle a Date object; a String
Expand Down

0 comments on commit 467b78e

Please sign in to comment.