igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
112 lines (111 loc) • 3.77 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 { WebDockManagerPaneDescription } from "./WebDockManagerPaneDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebTabGroupPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebTabGroupPaneDescription, _super);
function WebTabGroupPaneDescription() {
var _this = _super.call(this) || this;
_this.z = null;
_this.aa = null;
_this.n = null;
_this.v = 0;
_this.u = 0;
_this.q = false;
_this.r = false;
return _this;
}
WebTabGroupPaneDescription.prototype.get_type = function () {
return "WebTabGroupPane";
};
Object.defineProperty(WebTabGroupPaneDescription.prototype, "id", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTabGroupPaneDescription.prototype, "paneType", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("PaneType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTabGroupPaneDescription.prototype, "panes", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Panes");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTabGroupPaneDescription.prototype, "size", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("Size");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTabGroupPaneDescription.prototype, "selectedIndex", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("SelectedIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTabGroupPaneDescription.prototype, "allowEmpty", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("AllowEmpty");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTabGroupPaneDescription.prototype, "isMaximized", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("IsMaximized");
},
enumerable: false,
configurable: true
});
WebTabGroupPaneDescription.$t = markType(WebTabGroupPaneDescription, 'WebTabGroupPaneDescription', WebDockManagerPaneDescription.$);
WebTabGroupPaneDescription.__marshalByValue1 = true;
WebTabGroupPaneDescription.__marshalByValueAlias1 = "TabGroupPane";
return WebTabGroupPaneDescription;
}(WebDockManagerPaneDescription));
export { WebTabGroupPaneDescription };