Skip to content

Commit

Permalink
fix(plugin): fix options properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Mar 8, 2016
1 parent 1a778e7 commit 44365f4
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions src/plugins/datepicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,47 +20,47 @@ export interface datePickerOptions {
* Type: Date | empty String
* Default: empty String
*/
minDate?: Date,
minDate: Date,

/**
* Platforms: iOS, Android, Windows
* Maximum date
* Type: Date | empty String
* Default: empty String
*/
maxDate?: Date,
maxDate: Date,

/**
* Platforms: Android
* Label for the dialog title. If empty, uses android default (Set date/Set time).
* Type: String
* Default: empty String
*/
titleText?: string,
titleText: string,

/**
* Platforms: Android
* Label of BUTTON_POSITIVE (done button) on Android
*/
okText?: string,
okText: string,

// TODO complete documentation here, and copy params & docs to main plugin docs
cancelText?: string,
todayText?: string,
nowText?: string,
is24Hour?: boolean,
androidTheme?: number,
allowOldDate?: boolean,
allowFutureDates?: boolean,
doneButtonLabel?: string,
doneButtonColor?: string,
cancelButtonLabel?: string,
cancelButtonColor?: string,
x?: number,
y?: number,
minuteInterval?: number,
popoverArrowDirection?: string,
locale?: string
cancelText: string,
todayText: string,
nowText: string,
is24Hour: boolean,
androidTheme: number,
allowOldDate: boolean,
allowFutureDates: boolean,
doneButtonLabel: string,
doneButtonColor: string,
cancelButtonLabel: string,
cancelButtonColor: string,
x: number,
y: number,
minuteInterval: number,
popoverArrowDirection: string,
locale: string
}

/**
Expand Down

0 comments on commit 44365f4

Please sign in to comment.