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