forked from bradleygore/nativescript-textinputlayout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextInputLayout.common.js
More file actions
25 lines (25 loc) · 897 Bytes
/
textInputLayout.common.js
File metadata and controls
25 lines (25 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var color_1 = require("tns-core-modules/color");
exports.Color = color_1.Color;
var view_1 = require("tns-core-modules/ui/core/view");
var properties_1 = require("tns-core-modules/ui/core/properties");
exports.Property = properties_1.Property;
var TextInputLayout = (function (_super) {
__extends(TextInputLayout, _super);
function TextInputLayout() {
return _super !== null && _super.apply(this, arguments) || this;
}
return TextInputLayout;
}(view_1.View));
exports.TextInputLayout = TextInputLayout;
exports.errorProperty = new properties_1.Property({
name: "error",
affectsLayout: true
});
exports.errorProperty.register(TextInputLayout);
exports.hintProperty = new properties_1.Property({
name: "hint",
affectsLayout: true
});
exports.hintProperty.register(TextInputLayout);