UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

45 lines (44 loc) 1.5 kB
import { __extends } from "tslib"; import { IgrDefinitionBase } from "./igr-definition-base"; import { ColumnResizingSeparator } from "./ColumnResizingSeparator"; var IgrColumnResizingSeparator = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrColumnResizingSeparator, _super); function IgrColumnResizingSeparator(props) { return _super.call(this, props) || this; } IgrColumnResizingSeparator.prototype.createImplementation = function () { return new ColumnResizingSeparator(); }; Object.defineProperty(IgrColumnResizingSeparator.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrColumnResizingSeparator.prototype, "actualOpacity", { get: function () { return this.i.g0; }, set: function (v) { this.i.g0 = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrColumnResizingSeparator.prototype, "opacity", { get: function () { return this.i.g1; }, set: function (v) { this.i.g1 = +v; }, enumerable: false, configurable: true }); return IgrColumnResizingSeparator; }(IgrDefinitionBase)); export { IgrColumnResizingSeparator };