igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
104 lines (103 loc) • 3.02 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 { WebBaseComboBoxLikeDescription } from "./WebBaseComboBoxLikeDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebDropdownDescription = /*@__PURE__*/ (() => {
class WebDropdownDescription extends WebBaseComboBoxLikeDescription {
constructor() {
super();
this.ae = null;
this.af = null;
this.t = false;
this.x = 0;
this.u = false;
this.ad = null;
this.ac = null;
this.ab = null;
this.aa = null;
this.z = null;
}
get_type() {
return "WebDropdown";
}
get placement() {
return this.ae;
}
set placement(a) {
this.ae = a;
this.j("Placement");
}
get scrollStrategy() {
return this.af;
}
set scrollStrategy(a) {
this.af = a;
this.j("ScrollStrategy");
}
get flip() {
return this.t;
}
set flip(a) {
this.t = a;
this.j("Flip");
}
get distance() {
return this.x;
}
set distance(a) {
this.x = a;
this.j("Distance");
}
get sameWidth() {
return this.u;
}
set sameWidth(a) {
this.u = a;
this.j("SameWidth");
}
get openingRef() {
return this.ad;
}
set openingRef(a) {
this.ad = a;
this.j("OpeningRef");
}
get openedRef() {
return this.ac;
}
set openedRef(a) {
this.ac = a;
this.j("OpenedRef");
}
get closingRef() {
return this.ab;
}
set closingRef(a) {
this.ab = a;
this.j("ClosingRef");
}
get closedRef() {
return this.aa;
}
set closedRef(a) {
this.aa = a;
this.j("ClosedRef");
}
get changeRef() {
return this.z;
}
set changeRef(a) {
this.z = a;
this.j("ChangeRef");
}
}
WebDropdownDescription.$t = markType(WebDropdownDescription, 'WebDropdownDescription', WebBaseComboBoxLikeDescription.$);
return WebDropdownDescription;
})();