igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
115 lines (114 loc) • 3.23 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 WebDropdownDescription = /*@__PURE__*/ (() => {
class WebDropdownDescription extends Description {
constructor() {
super();
this.h = false;
this.i = false;
this.s = null;
this.t = null;
this.u = null;
this.f = false;
this.p = 0;
this.g = false;
this.j = false;
this.v = null;
this.r = null;
}
get_type() {
return "WebDropdown";
}
get type() {
return this.get_type();
}
get keepOpenOnSelect() {
return this.h;
}
set keepOpenOnSelect(a) {
this.h = a;
this.e("KeepOpenOnSelect");
}
get open() {
return this.i;
}
set open(a) {
this.i = a;
this.e("Open");
}
get placement() {
return this.s;
}
set placement(a) {
this.s = a;
this.e("Placement");
}
get positionStrategy() {
return this.t;
}
set positionStrategy(a) {
this.t = a;
this.e("PositionStrategy");
}
get scrollStrategy() {
return this.u;
}
set scrollStrategy(a) {
this.u = a;
this.e("ScrollStrategy");
}
get flip() {
return this.f;
}
set flip(a) {
this.f = a;
this.e("Flip");
}
get distance() {
return this.p;
}
set distance(a) {
this.p = a;
this.e("Distance");
}
get keepOpenOnOutsideClick() {
return this.g;
}
set keepOpenOnOutsideClick(a) {
this.g = a;
this.e("KeepOpenOnOutsideClick");
}
get sameWidth() {
return this.j;
}
set sameWidth(a) {
this.j = a;
this.e("SameWidth");
}
get size() {
return this.v;
}
set size(a) {
this.v = a;
this.e("Size");
}
get changeRef() {
return this.r;
}
set changeRef(a) {
this.r = a;
this.e("ChangeRef");
}
}
WebDropdownDescription.$t = markType(WebDropdownDescription, 'WebDropdownDescription', Description.$);
return WebDropdownDescription;
})();