igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
153 lines (152 loc) • 4.82 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebCheckboxBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebCheckboxBaseDescription, _super);
function WebCheckboxBaseDescription() {
var _this = _super.call(this) || this;
_this.y = null;
_this.k = false;
_this.x = null;
_this.m = false;
_this.o = false;
_this.l = false;
_this.n = false;
_this.v = null;
_this.w = null;
_this.u = null;
return _this;
}
WebCheckboxBaseDescription.prototype.get_type = function () {
return "WebCheckboxBase";
};
Object.defineProperty(WebCheckboxBaseDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "value", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "checked", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Checked");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "labelPosition", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("LabelPosition");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "disabled", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "required", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("Required");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "defaultChecked", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("DefaultChecked");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "invalid", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Invalid");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "changeRef", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "focusRef", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("FocusRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebCheckboxBaseDescription.prototype, "blurRef", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("BlurRef");
},
enumerable: false,
configurable: true
});
WebCheckboxBaseDescription.$t = markType(WebCheckboxBaseDescription, 'WebCheckboxBaseDescription', Description.$);
return WebCheckboxBaseDescription;
}(Description));
export { WebCheckboxBaseDescription };