update demo
This commit is contained in:
@@ -2683,6 +2683,10 @@ var Input = /** @class */ (function (_super) {
|
||||
Property,
|
||||
__metadata$a("design:type", String)
|
||||
], Input.prototype, "hintText", void 0);
|
||||
__decorate$a([
|
||||
Property,
|
||||
__metadata$a("design:type", Number)
|
||||
], Input.prototype, "inputType", void 0);
|
||||
__decorate$a([
|
||||
Property,
|
||||
__metadata$a("design:type", Color)
|
||||
@@ -2709,6 +2713,13 @@ var Input = /** @class */ (function (_super) {
|
||||
], Input.prototype, "maxLength", void 0);
|
||||
return Input;
|
||||
}(View));
|
||||
(function (InputType) {
|
||||
InputType[InputType["Default"] = 0] = "Default";
|
||||
InputType[InputType["Number"] = 1] = "Number";
|
||||
InputType[InputType["Decimal"] = 2] = "Decimal";
|
||||
InputType[InputType["Alphabet"] = 3] = "Alphabet";
|
||||
InputType[InputType["Phone"] = 4] = "Phone";
|
||||
})(exports.InputType || (exports.InputType = {}));
|
||||
function input(config) {
|
||||
var ret = new Input;
|
||||
ret.layoutConfig = layoutConfig().just();
|
||||
|
@@ -2101,6 +2101,10 @@ let Input = /** @class */ (() => {
|
||||
Property,
|
||||
__metadata$a("design:type", String)
|
||||
], Input.prototype, "hintText", void 0);
|
||||
__decorate$a([
|
||||
Property,
|
||||
__metadata$a("design:type", Number)
|
||||
], Input.prototype, "inputType", void 0);
|
||||
__decorate$a([
|
||||
Property,
|
||||
__metadata$a("design:type", Color)
|
||||
@@ -2127,6 +2131,13 @@ let Input = /** @class */ (() => {
|
||||
], Input.prototype, "maxLength", void 0);
|
||||
return Input;
|
||||
})();
|
||||
(function (InputType) {
|
||||
InputType[InputType["Default"] = 0] = "Default";
|
||||
InputType[InputType["Number"] = 1] = "Number";
|
||||
InputType[InputType["Decimal"] = 2] = "Decimal";
|
||||
InputType[InputType["Alphabet"] = 3] = "Alphabet";
|
||||
InputType[InputType["Phone"] = 4] = "Phone";
|
||||
})(exports.InputType || (exports.InputType = {}));
|
||||
function input(config) {
|
||||
const ret = new Input;
|
||||
ret.layoutConfig = layoutConfig().just();
|
||||
|
@@ -3560,6 +3560,10 @@ let Input = /** @class */ (() => {
|
||||
Property,
|
||||
__metadata$a("design:type", String)
|
||||
], Input.prototype, "hintText", void 0);
|
||||
__decorate$a([
|
||||
Property,
|
||||
__metadata$a("design:type", Number)
|
||||
], Input.prototype, "inputType", void 0);
|
||||
__decorate$a([
|
||||
Property,
|
||||
__metadata$a("design:type", Color)
|
||||
@@ -3586,6 +3590,13 @@ let Input = /** @class */ (() => {
|
||||
], Input.prototype, "maxLength", void 0);
|
||||
return Input;
|
||||
})();
|
||||
(function (InputType) {
|
||||
InputType[InputType["Default"] = 0] = "Default";
|
||||
InputType[InputType["Number"] = 1] = "Number";
|
||||
InputType[InputType["Decimal"] = 2] = "Decimal";
|
||||
InputType[InputType["Alphabet"] = 3] = "Alphabet";
|
||||
InputType[InputType["Phone"] = 4] = "Phone";
|
||||
})(exports.InputType || (exports.InputType = {}));
|
||||
function input(config) {
|
||||
const ret = new Input;
|
||||
ret.layoutConfig = layoutConfig().just();
|
||||
|
Reference in New Issue
Block a user