igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
67 lines (66 loc) • 1.98 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 WebStepDescription = /*@__PURE__*/ (() => {
class WebStepDescription extends Description {
constructor() {
super();
this.n = false;
this.k = false;
this.o = false;
this.m = false;
this.l = false;
}
get_type() {
return "WebStep";
}
get type() {
return this.get_type();
}
get invalid() {
return this.n;
}
set invalid(a) {
this.n = a;
this.j("Invalid");
}
get active() {
return this.k;
}
set active(a) {
this.k = a;
this.j("Active");
}
get optional() {
return this.o;
}
set optional(a) {
this.o = a;
this.j("Optional");
}
get disabled() {
return this.m;
}
set disabled(a) {
this.m = a;
this.j("Disabled");
}
get complete() {
return this.l;
}
set complete(a) {
this.l = a;
this.j("Complete");
}
}
WebStepDescription.$t = markType(WebStepDescription, 'WebStepDescription', Description.$);
return WebStepDescription;
})();