igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 1.93 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 { __extends } from "tslib";
import { WebProgressBaseDescription } from "./WebProgressBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebLinearProgressDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebLinearProgressDescription, _super);
function WebLinearProgressDescription() {
var _this = _super.call(this) || this;
_this.w = false;
_this.y = null;
return _this;
}
WebLinearProgressDescription.prototype.get_type = function () {
return "WebLinearProgress";
};
Object.defineProperty(WebLinearProgressDescription.prototype, "striped", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.g("Striped");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebLinearProgressDescription.prototype, "labelAlign", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.g("LabelAlign");
},
enumerable: false,
configurable: true
});
WebLinearProgressDescription.$t = markType(WebLinearProgressDescription, 'WebLinearProgressDescription', WebProgressBaseDescription.$);
return WebLinearProgressDescription;
}(WebProgressBaseDescription));
export { WebLinearProgressDescription };