diff --git a/android/build.gradle b/android/build.gradle index 40f4f265c..08acbe618 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,8 +1,8 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 27 - buildToolsVersion "23.0.1" + compileSdkVersion 28 + buildToolsVersion "28.0.3" defaultConfig { minSdkVersion 16 diff --git a/index.d.ts b/index.d.ts index 7c7093856..f8f272bb2 100644 --- a/index.d.ts +++ b/index.d.ts @@ -204,6 +204,14 @@ interface PickerOptions { * @memberof PickerOptions */ onPickerSelect?(item: any[]): void + + /** + * Ellipsis lenght of picker items. + * + * @type {number} + * @memberof PickerOptions + */ + pickerTextEllipsisLen?: number }