igniteui-react-core
Version:
Ignite UI React Core.
146 lines (145 loc) • 4.73 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 { WebGridToolbarBaseActionDescription } from "./WebGridToolbarBaseActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebBaseToolbarDirectiveDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebBaseToolbarDirectiveDescription, _super);
function WebBaseToolbarDirectiveDescription() {
var _this = _super.call(this) || this;
_this.o = null;
_this.u = null;
_this.t = null;
_this.k = null;
_this.q = null;
_this.s = null;
_this.r = null;
_this.n = null;
_this.m = null;
_this.p = null;
return _this;
}
WebBaseToolbarDirectiveDescription.prototype.get_type = function () {
return "WebBaseToolbarDirective";
};
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "columnListHeight", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("ColumnListHeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "title", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.g("Title");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "prompt", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.g("Prompt");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "overlaySettings", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("OverlaySettings");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "name", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.g("Name");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "openingRef", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.g("OpeningRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "openedRef", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.g("OpenedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "closingRef", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("ClosingRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "closedRef", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("ClosedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebBaseToolbarDirectiveDescription.prototype, "columnToggleRef", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("ColumnToggleRef");
},
enumerable: false,
configurable: true
});
WebBaseToolbarDirectiveDescription.$t = markType(WebBaseToolbarDirectiveDescription, 'WebBaseToolbarDirectiveDescription', WebGridToolbarBaseActionDescription.$);
return WebBaseToolbarDirectiveDescription;
}(WebGridToolbarBaseActionDescription));
export { WebBaseToolbarDirectiveDescription };