igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
203 lines (202 loc) • 6.09 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 ExpansionPanelDescription = /*@__PURE__*/ (() => {
class ExpansionPanelDescription extends Description {
constructor() {
super();
this.w = null;
this.z = null;
this.r = null;
this.x = null;
this.y = null;
this.ac = null;
this.ad = null;
this.s = null;
this.aa = null;
this.ab = null;
this.n = 0;
this.m = 0;
this.k = false;
this.ae = null;
this.t = null;
this.af = null;
this.ag = null;
this.v = null;
this.u = null;
this.q = null;
this.ah = null;
this.ai = null;
}
get_type() {
return "ExpansionPanel";
}
get type() {
return this.get_type();
}
get caption() {
return this.w;
}
set caption(a) {
this.w = a;
this.j("Caption");
}
get captionTextColor() {
return this.z;
}
set captionTextColor(a) {
this.z = a;
this.j("CaptionTextColor");
}
get actualCaptionTextColor() {
return this.r;
}
set actualCaptionTextColor(a) {
this.r = a;
this.j("ActualCaptionTextColor");
}
get captionCollapsedTextColor() {
return this.x;
}
set captionCollapsedTextColor(a) {
this.x = a;
this.j("CaptionCollapsedTextColor");
}
get captionExpandedTextColor() {
return this.y;
}
set captionExpandedTextColor(a) {
this.y = a;
this.j("CaptionExpandedTextColor");
}
get descriptionText() {
return this.ac;
}
set descriptionText(a) {
this.ac = a;
this.j("DescriptionText");
}
get descriptionTextColor() {
return this.ad;
}
set descriptionTextColor(a) {
this.ad = a;
this.j("DescriptionTextColor");
}
get actualDescriptionTextColor() {
return this.s;
}
set actualDescriptionTextColor(a) {
this.s = a;
this.j("ActualDescriptionTextColor");
}
get descriptionCollapsedTextColor() {
return this.aa;
}
set descriptionCollapsedTextColor(a) {
this.aa = a;
this.j("DescriptionCollapsedTextColor");
}
get descriptionExpandedTextColor() {
return this.ab;
}
set descriptionExpandedTextColor(a) {
this.ab = a;
this.j("DescriptionExpandedTextColor");
}
get elevation() {
return this.n;
}
set elevation(a) {
this.n = a;
this.j("Elevation");
}
get actualElevation() {
return this.m;
}
set actualElevation(a) {
this.m = a;
this.j("ActualElevation");
}
get expanded() {
return this.k;
}
set expanded(a) {
this.k = a;
this.j("Expanded");
}
get headerBackgroundColor() {
return this.ae;
}
set headerBackgroundColor(a) {
this.ae = a;
this.j("HeaderBackgroundColor");
}
get actualHeaderBackgroundColor() {
return this.t;
}
set actualHeaderBackgroundColor(a) {
this.t = a;
this.j("ActualHeaderBackgroundColor");
}
get headerCollapsedBackgroundColor() {
return this.af;
}
set headerCollapsedBackgroundColor(a) {
this.af = a;
this.j("HeaderCollapsedBackgroundColor");
}
get headerExpandedBackgroundColor() {
return this.ag;
}
set headerExpandedBackgroundColor(a) {
this.ag = a;
this.j("HeaderExpandedBackgroundColor");
}
get actualUmbraShadowColor() {
return this.v;
}
set actualUmbraShadowColor(a) {
this.v = a;
this.j("ActualUmbraShadowColor");
}
get actualPenumbraShadowColor() {
return this.u;
}
set actualPenumbraShadowColor(a) {
this.u = a;
this.j("ActualPenumbraShadowColor");
}
get actualAmbientShadowColor() {
return this.q;
}
set actualAmbientShadowColor(a) {
this.q = a;
this.j("ActualAmbientShadowColor");
}
get onCollapsedRef() {
return this.ah;
}
set onCollapsedRef(a) {
this.ah = a;
this.j("OnCollapsedRef");
}
get onExpandedRef() {
return this.ai;
}
set onExpandedRef(a) {
this.ai = a;
this.j("OnExpandedRef");
}
}
ExpansionPanelDescription.$t = markType(ExpansionPanelDescription, 'ExpansionPanelDescription', Description.$);
return ExpansionPanelDescription;
})();