UNPKG

igniteui-react-core

Version:
232 lines (231 loc) 7.53 kB
/* 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionButtonPairInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionButtonPairInfoDescription, _super); function ToolActionButtonPairInfoDescription() { var _this = _super.call(this) || this; _this.b9 = null; _this.b6 = null; _this.b8 = null; _this.b7 = null; _this.bn = false; _this.bq = 0; _this.br = 0; _this.bs = 0; _this.bp = 0; _this.cd = null; _this.ca = null; _this.cc = null; _this.cb = null; _this.bu = 0; _this.bv = 0; _this.bw = 0; _this.bt = 0; return _this; } ToolActionButtonPairInfoDescription.prototype.get_type = function () { return "ToolActionButtonPairInfo"; }; Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftTitle", { get: function () { return this.b9; }, set: function (a) { this.b9 = a; this.g("LeftTitle"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftCommandArgument", { get: function () { return this.b6; }, set: function (a) { this.b6 = a; this.g("LeftCommandArgument"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconName", { get: function () { return this.b8; }, set: function (a) { this.b8 = a; this.g("LeftIconName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconCollectionName", { get: function () { return this.b7; }, set: function (a) { this.b7 = a; this.g("LeftIconCollectionName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "isToggleDisabled", { get: function () { return this.bn; }, set: function (a) { this.bn = a; this.g("IsToggleDisabled"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxLeft", { get: function () { return this.bq; }, set: function (a) { this.bq = a; this.g("LeftIconViewBoxLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxTop", { get: function () { return this.br; }, set: function (a) { this.br = a; this.g("LeftIconViewBoxTop"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxWidth", { get: function () { return this.bs; }, set: function (a) { this.bs = a; this.g("LeftIconViewBoxWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxHeight", { get: function () { return this.bp; }, set: function (a) { this.bp = a; this.g("LeftIconViewBoxHeight"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightTitle", { get: function () { return this.cd; }, set: function (a) { this.cd = a; this.g("RightTitle"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightCommandArgument", { get: function () { return this.ca; }, set: function (a) { this.ca = a; this.g("RightCommandArgument"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconName", { get: function () { return this.cc; }, set: function (a) { this.cc = a; this.g("RightIconName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconCollectionName", { get: function () { return this.cb; }, set: function (a) { this.cb = a; this.g("RightIconCollectionName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxLeft", { get: function () { return this.bu; }, set: function (a) { this.bu = a; this.g("RightIconViewBoxLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxTop", { get: function () { return this.bv; }, set: function (a) { this.bv = a; this.g("RightIconViewBoxTop"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxWidth", { get: function () { return this.bw; }, set: function (a) { this.bw = a; this.g("RightIconViewBoxWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxHeight", { get: function () { return this.bt; }, set: function (a) { this.bt = a; this.g("RightIconViewBoxHeight"); }, enumerable: false, configurable: true }); ToolActionButtonPairInfoDescription.$t = markType(ToolActionButtonPairInfoDescription, 'ToolActionButtonPairInfoDescription', ToolActionInfoDescription.$); ToolActionButtonPairInfoDescription.__marshalByValue1 = true; ToolActionButtonPairInfoDescription.__marshalByValueAlias1 = "ToolActionButtonPairInfo"; return ToolActionButtonPairInfoDescription; }(ToolActionInfoDescription)); export { ToolActionButtonPairInfoDescription };