igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
105 lines (104 loc) • 3.52 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 ResponsiveStateDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ResponsiveStateDescription, _super);
function ResponsiveStateDescription() {
var _this = _super.call(this) || this;
_this.n = 0;
_this.m = 0;
_this.k = false;
_this.r = null;
_this.q = null;
_this.s = null;
return _this;
}
ResponsiveStateDescription.prototype.get_type = function () {
return "ResponsiveState";
};
Object.defineProperty(ResponsiveStateDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(ResponsiveStateDescription.prototype, "minimumWidth", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("MinimumWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ResponsiveStateDescription.prototype, "maximumWidth", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("MaximumWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ResponsiveStateDescription.prototype, "isManualState", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("IsManualState");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ResponsiveStateDescription.prototype, "stateEnteringRef", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("StateEnteringRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ResponsiveStateDescription.prototype, "stateEnteredRef", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("StateEnteredRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ResponsiveStateDescription.prototype, "stateExitedRef", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("StateExitedRef");
},
enumerable: false,
configurable: true
});
ResponsiveStateDescription.$t = markType(ResponsiveStateDescription, 'ResponsiveStateDescription', Description.$);
return ResponsiveStateDescription;
}(Description));
export { ResponsiveStateDescription };