igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
272 lines (271 loc) • 7.11 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 { InputGroupItemDescription } from "./InputGroupItemDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let InputDescription = /*@__PURE__*/ (() => {
class InputDescription extends InputGroupItemDescription {
constructor() {
super();
this.af = null;
this.y = null;
this.aq = null;
this.as = null;
this.j = false;
this.aa = null;
this.z = null;
this.at = null;
this.ag = null;
this.q = 0;
this.ah = null;
this.ai = null;
this.am = null;
this.ar = null;
this.ak = null;
this.al = null;
this.u = 0;
this.aj = null;
this.ab = null;
this.k = false;
this.au = null;
this.i = false;
this.l = false;
this.t = 0;
this.s = 0;
this.an = null;
this.ap = null;
this.ao = null;
this.ac = null;
this.ad = null;
this.ae = null;
}
get_type() {
return "Input";
}
get density() {
return this.af;
}
set density(a) {
this.af = a;
this.e("Density");
}
get actualDensity() {
return this.y;
}
set actualDensity(a) {
this.y = a;
this.e("ActualDensity");
}
get mask() {
return this.aq;
}
set mask(a) {
this.aq = a;
this.e("Mask");
}
get promptChar() {
return this.as;
}
set promptChar(a) {
this.as = a;
this.e("PromptChar");
}
get includeLiterals() {
return this.j;
}
set includeLiterals(a) {
this.j = a;
this.e("IncludeLiterals");
}
get actualTextColor() {
return this.aa;
}
set actualTextColor(a) {
this.aa = a;
this.e("ActualTextColor");
}
get actualHoverTextColor() {
return this.z;
}
set actualHoverTextColor(a) {
this.z = a;
this.e("ActualHoverTextColor");
}
get textColor() {
return this.at;
}
set textColor(a) {
this.at = a;
this.e("TextColor");
}
get fontFamily() {
return this.ag;
}
set fontFamily(a) {
this.ag = a;
this.e("FontFamily");
}
get fontSize() {
return this.q;
}
set fontSize(a) {
this.q = a;
this.e("FontSize");
}
get fontStyle() {
return this.ah;
}
set fontStyle(a) {
this.ah = a;
this.e("FontStyle");
}
get fontWeight() {
return this.ai;
}
set fontWeight(a) {
this.ai = a;
this.e("FontWeight");
}
get inputType() {
return this.am;
}
set inputType(a) {
this.am = a;
this.e("InputType");
}
get placeholder() {
return this.ar;
}
set placeholder(a) {
this.ar = a;
this.e("Placeholder");
}
get hoverTextColor() {
return this.ak;
}
set hoverTextColor(a) {
this.ak = a;
this.e("HoverTextColor");
}
get id() {
return this.al;
}
set id(a) {
this.al = a;
this.e("Id");
}
get tabIndex() {
return this.u;
}
set tabIndex(a) {
this.u = a;
this.e("TabIndex");
}
get $for() {
return this.aj;
}
set $for(a) {
this.aj = a;
this.e("For");
}
get ariaLabel() {
return this.ab;
}
set ariaLabel(a) {
this.ab = a;
this.e("AriaLabel");
}
get isHover() {
return this.k;
}
set isHover(a) {
this.k = a;
this.e("IsHover");
}
get value() {
return this.au;
}
set value(a) {
this.au = a;
this.e("Value");
}
get disabled() {
return this.i;
}
set disabled(a) {
this.i = a;
this.e("Disabled");
}
get readonly() {
return this.l;
}
set readonly(a) {
this.l = a;
this.e("Readonly");
}
get selectionStart() {
return this.t;
}
set selectionStart(a) {
this.t = a;
this.e("SelectionStart");
}
get selectionEnd() {
return this.s;
}
set selectionEnd(a) {
this.s = a;
this.e("SelectionEnd");
}
get keyDownRef() {
return this.an;
}
set keyDownRef(a) {
this.an = a;
this.e("KeyDownRef");
}
get keyUpRef() {
return this.ap;
}
set keyUpRef(a) {
this.ap = a;
this.e("KeyUpRef");
}
get keyPressRef() {
return this.ao;
}
set keyPressRef(a) {
this.ao = a;
this.e("KeyPressRef");
}
get changeRef() {
return this.ac;
}
set changeRef(a) {
this.ac = a;
this.e("ChangeRef");
}
get changingRef() {
return this.ad;
}
set changingRef(a) {
this.ad = a;
this.e("ChangingRef");
}
get compositionEndRef() {
return this.ae;
}
set compositionEndRef(a) {
this.ae = a;
this.e("CompositionEndRef");
}
}
InputDescription.$t = markType(InputDescription, 'InputDescription', InputGroupItemDescription.$);
return InputDescription;
})();