igniteui-react-core
Version:
Ignite UI React Core.
123 lines (122 loc) • 3.26 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 {
get_type() {
return "WebInputBase";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.j = false;
this.k = false;
this.y = null;
this.w = null;
this.h = false;
this.l = false;
this.r = null;
this.x = null;
this.i = false;
this.v = null;
this.u = null;
this.t = null;
}
get outlined() {
return this.j;
}
set outlined(a) {
this.j = a;
this.g("Outlined");
}
get readOnly() {
return this.k;
}
set readOnly(a) {
this.k = a;
this.g("ReadOnly");
}
get placeholder() {
return this.y;
}
set placeholder(a) {
this.y = a;
this.g("Placeholder");
}
get label() {
return this.w;
}
set label(a) {
this.w = a;
this.g("Label");
}
get disabled() {
return this.h;
}
set disabled(a) {
this.h = a;
this.g("Disabled");
}
get required() {
return this.l;
}
set required(a) {
this.l = a;
this.g("Required");
}
get defaultValue() {
return this.r;
}
set defaultValue(a) {
this.r = a;
this.g("DefaultValue");
}
get name() {
return this.x;
}
set name(a) {
this.x = a;
this.g("Name");
}
get invalid() {
return this.i;
}
set invalid(a) {
this.i = a;
this.g("Invalid");
}
get inputOcurredRef() {
return this.v;
}
set inputOcurredRef(a) {
this.v = a;
this.g("InputOcurredRef");
}
get focusRef() {
return this.u;
}
set focusRef(a) {
this.u = a;
this.g("FocusRef");
}
get blurRef() {
return this.t;
}
set blurRef(a) {
this.t = a;
this.g("BlurRef");
}
}
WebInputBaseDescription.$t = /*@__PURE__*/ markType(WebInputBaseDescription, 'WebInputBaseDescription', Description.$);
return WebInputBaseDescription;
})();