UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

62 lines (61 loc) 2.38 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 { DefinitionBaseDescription } from "./DefinitionBaseDescription"; import { markType } from "./type"; /** * @hidden */ var ColumnMovingSeparatorDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ColumnMovingSeparatorDescription, _super); function ColumnMovingSeparatorDescription() { var _this = _super.call(this) || this; _this.b6 = 0; _this.b2 = 0; _this.b3 = 0; return _this; } ColumnMovingSeparatorDescription.prototype.get_type = function () { return "ColumnMovingSeparator"; }; Object.defineProperty(ColumnMovingSeparatorDescription.prototype, "separatorWidth", { get: function () { return this.b6; }, set: function (a) { this.b6 = a; this.e("SeparatorWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnMovingSeparatorDescription.prototype, "actualOpacity", { get: function () { return this.b2; }, set: function (a) { this.b2 = a; this.e("ActualOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnMovingSeparatorDescription.prototype, "opacity", { get: function () { return this.b3; }, set: function (a) { this.b3 = a; this.e("Opacity"); }, enumerable: false, configurable: true }); ColumnMovingSeparatorDescription.$t = markType(ColumnMovingSeparatorDescription, 'ColumnMovingSeparatorDescription', DefinitionBaseDescription.$); return ColumnMovingSeparatorDescription; }(DefinitionBaseDescription)); export { ColumnMovingSeparatorDescription };