igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
71 lines (70 loc) • 2.62 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebGroupingStateDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGroupingStateDescription, _super);
function WebGroupingStateDescription() {
var _this = _super.call(this) || this;
_this.i = null;
_this.h = null;
_this.m = false;
return _this;
}
WebGroupingStateDescription.prototype.get_type = function () {
return "WebGroupingState";
};
Object.defineProperty(WebGroupingStateDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupingStateDescription.prototype, "expressions", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.g("Expressions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupingStateDescription.prototype, "expansion", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("Expansion");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupingStateDescription.prototype, "defaultExpanded", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("DefaultExpanded");
},
enumerable: false,
configurable: true
});
WebGroupingStateDescription.$t = markType(WebGroupingStateDescription, 'WebGroupingStateDescription', Description.$);
WebGroupingStateDescription.__marshalByValue = true;
WebGroupingStateDescription.__marshalByValueAlias = "GroupingState";
return WebGroupingStateDescription;
}(Description));
export { WebGroupingStateDescription };