igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
115 lines (114 loc) • 3.15 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebInputBaseDescription = /*@__PURE__*/ (() => {
class WebInputBaseDescription extends Description {
constructor() {
super();
this.r = null;
this.g = false;
this.i = false;
this.f = false;
this.h = false;
this.s = null;
this.q = null;
this.t = null;
this.p = null;
this.o = null;
this.n = null;
}
get_type() {
return "WebInputBase";
}
get type() {
return this.get_type();
}
get name() {
return this.r;
}
set name(a) {
this.r = a;
this.e("Name");
}
get outlined() {
return this.g;
}
set outlined(a) {
this.g = a;
this.e("Outlined");
}
get required() {
return this.i;
}
set required(a) {
this.i = a;
this.e("Required");
}
get disabled() {
return this.f;
}
set disabled(a) {
this.f = a;
this.e("Disabled");
}
get readonly() {
return this.h;
}
set readonly(a) {
this.h = a;
this.e("Readonly");
}
get placeholder() {
return this.s;
}
set placeholder(a) {
this.s = a;
this.e("Placeholder");
}
get label() {
return this.q;
}
set label(a) {
this.q = a;
this.e("Label");
}
get size() {
return this.t;
}
set size(a) {
this.t = a;
this.e("Size");
}
get inputOcurredRef() {
return this.p;
}
set inputOcurredRef(a) {
this.p = a;
this.e("InputOcurredRef");
}
get focusRef() {
return this.o;
}
set focusRef(a) {
this.o = a;
this.e("FocusRef");
}
get blurRef() {
return this.n;
}
set blurRef(a) {
this.n = a;
this.e("BlurRef");
}
}
WebInputBaseDescription.$t = markType(WebInputBaseDescription, 'WebInputBaseDescription', Description.$);
return WebInputBaseDescription;
})();