Merge in v5 code

This commit is contained in:
Ibby Hadeed
2017-12-28 07:28:44 -05:00
parent d43fe72f7b
commit 0f9c21ab42
255 changed files with 11473 additions and 6501 deletions
@@ -1,4 +1,4 @@
import { Plugin, IonicNativePlugin, Cordova } from '@ionic-native/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
import { Injectable } from '@angular/core';
export interface NativeKeyboardOptions {
@@ -210,33 +210,41 @@ export class NativeKeyboard extends IonicNativePlugin {
* @param options {NativeKeyboardOptions}
*/
@Cordova({ sync: true })
showMessenger(options: NativeKeyboardOptions): void {}
showMessenger(options: NativeKeyboardOptions): void {
}
/**
* Hide messenger
* @param options {NativeKeyboardOptions}
*/
@Cordova({ sync: true })
hideMessenger(options: NativeKeyboardOptions): void {}
hideMessenger(options: NativeKeyboardOptions): void {
}
/**
* Programmatically pop up the keyboard again if the user dismissed it.
* @return {Promise<any>}
*/
@Cordova()
showMessengerKeyboard(): Promise<any> { return; }
showMessengerKeyboard(): Promise<any> {
return;
}
/**
* Programmatically hide the keyboard (but not the messenger bar)
*/
@Cordova()
hideMessengerKeyboard(): Promise<any> { return; }
hideMessengerKeyboard(): Promise<any> {
return;
}
/**
* Manipulate the messenger while it's open. For instance if you want to update the text programmatically based on what the user typed.
* @param options
*/
@Cordova()
updateMessenger(options: NativeKeyboardUpdateMessengerOptions): Promise<any> { return; }
updateMessenger(options: NativeKeyboardUpdateMessengerOptions): Promise<any> {
return;
}
}