nativescript-iqkeyboardmanager
Advanced tools
Comparing version 1.4.0 to 1.5.0
declare class PreviousNextView { | ||
} | ||
declare class TextViewWithHint { | ||
} | ||
declare const enum IQAutoToolbarManageBehaviour { | ||
@@ -5,0 +8,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var content_view_1 = require("tns-core-modules/ui/content-view"); | ||
var text_view_1 = require("tns-core-modules/ui/text-view"); | ||
var PreviousNextView = (function (_super) { | ||
@@ -12,1 +13,9 @@ __extends(PreviousNextView, _super); | ||
exports.PreviousNextView = PreviousNextView; | ||
var TextViewWithHint = (function (_super) { | ||
__extends(TextViewWithHint, _super); | ||
function TextViewWithHint() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
return TextViewWithHint; | ||
}(text_view_1.TextView)); | ||
exports.TextViewWithHint = TextViewWithHint; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var content_view_1 = require("tns-core-modules/ui/content-view"); | ||
var text_view_1 = require("tns-core-modules/ui/text-view"); | ||
var PreviousNextView = (function (_super) { | ||
@@ -15,1 +16,14 @@ __extends(PreviousNextView, _super); | ||
exports.PreviousNextView = PreviousNextView; | ||
var TextViewWithHint = (function (_super) { | ||
__extends(TextViewWithHint, _super); | ||
function TextViewWithHint() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
TextViewWithHint.prototype.createNativeView = function () { | ||
var view = IQTextView.new(); | ||
view.placeholder = this.hint; | ||
return view; | ||
}; | ||
return TextViewWithHint; | ||
}(text_view_1.TextView)); | ||
exports.TextViewWithHint = TextViewWithHint; |
{ | ||
"name": "nativescript-iqkeyboardmanager", | ||
"version": "1.4.0", | ||
"version": "1.5.0", | ||
"description": "NativeScript wrapper of the popular IQKeyboardManager iOS library", | ||
@@ -5,0 +5,0 @@ "main": "iqkeyboardmanager", |
21613
207