igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
213 lines (212 loc) • 6.14 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 PropertyEditorDescriptionObjectDescription = /*@__PURE__*/ (() => {
class PropertyEditorDescriptionObjectDescription extends Description {
constructor() {
super();
this.h = null;
this.f = null;
}
get_type() {
return "PropertyEditorDescriptionObject";
}
get type() {
return this.get_type();
}
get descriptionType() {
return this.h;
}
set descriptionType(a) {
this.h = a;
this.e("DescriptionType");
}
get properties() {
return this.f;
}
set properties(a) {
this.f = a;
this.e("Properties");
}
}
PropertyEditorDescriptionObjectDescription.$t = markType(PropertyEditorDescriptionObjectDescription, 'PropertyEditorDescriptionObjectDescription', Description.$);
return PropertyEditorDescriptionObjectDescription;
})();
/**
* @hidden
*/
export let PropertyEditorPropertyDescriptionDescription = /*@__PURE__*/ (() => {
class PropertyEditorPropertyDescriptionDescription extends Description {
constructor() {
super();
this.ag = null;
this.ae = null;
this.ai = null;
this.af = null;
this.n = false;
this.ad = null;
this.g = null;
this.h = null;
this.z = null;
this.s = 0;
this.p = 0;
this.q = 0;
this.r = 0;
this.t = 0;
this.l = null;
this.f = null;
this.ab = null;
this.ac = null;
this.ah = null;
}
get_type() {
return "PropertyEditorPropertyDescription";
}
get type() {
return this.get_type();
}
get propertyPath() {
return this.ag;
}
set propertyPath(a) {
this.ag = a;
this.e("PropertyPath");
}
get label() {
return this.ae;
}
set label(a) {
this.ae = a;
this.e("Label");
}
get valueType() {
return this.ai;
}
set valueType(a) {
this.ai = a;
this.e("ValueType");
}
get propertyDescriptionType() {
return this.af;
}
set propertyDescriptionType(a) {
this.af = a;
this.e("PropertyDescriptionType");
}
get shouldOverrideDefaultEditor() {
return this.n;
}
set shouldOverrideDefaultEditor(a) {
this.n = a;
this.e("ShouldOverrideDefaultEditor");
}
get elementDescriptionType() {
return this.ad;
}
set elementDescriptionType(a) {
this.ad = a;
this.e("ElementDescriptionType");
}
get dropDownNames() {
return this.g;
}
set dropDownNames(a) {
this.g = a;
this.e("DropDownNames");
}
get dropDownValues() {
return this.h;
}
set dropDownValues(a) {
this.h = a;
this.e("DropDownValues");
}
get primitiveValue() {
return this.z;
}
set primitiveValue(a) {
this.z = a;
this.e("PrimitiveValue");
}
get min() {
return this.s;
}
set min(a) {
this.s = a;
this.e("Min");
}
get editorWidth() {
return this.p;
}
set editorWidth(a) {
this.p = a;
this.e("EditorWidth");
}
get labelWidth() {
return this.q;
}
set labelWidth(a) {
this.q = a;
this.e("LabelWidth");
}
get max() {
return this.r;
}
set max(a) {
this.r = a;
this.e("Max");
}
get step() {
return this.t;
}
set step(a) {
this.t = a;
this.e("Step");
}
get complexValue() {
return this.l;
}
set complexValue(a) {
this.l = a;
this.e("ComplexValue");
}
get complexValues() {
return this.f;
}
set complexValues(a) {
this.f = a;
this.e("ComplexValues");
}
get buttonClickedRef() {
return this.ab;
}
set buttonClickedRef(a) {
this.ab = a;
this.e("ButtonClickedRef");
}
get changedRef() {
return this.ac;
}
set changedRef(a) {
this.ac = a;
this.e("ChangedRef");
}
get targetPropertyUpdatingRef() {
return this.ah;
}
set targetPropertyUpdatingRef(a) {
this.ah = a;
this.e("TargetPropertyUpdatingRef");
}
}
PropertyEditorPropertyDescriptionDescription.$t = markType(PropertyEditorPropertyDescriptionDescription, 'PropertyEditorPropertyDescriptionDescription', Description.$);
return PropertyEditorPropertyDescriptionDescription;
})();