UNPKG

igniteui-react-core

Version:
40 lines (39 loc) 1.48 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 { ToolActionInfo } from "./ToolActionInfo"; import { DeviceUtils } from "./DeviceUtils"; import { markType } from "./type"; /** * @hidden */ export let ToolActionSeparatorInfo = /*@__PURE__*/ (() => { class ToolActionSeparatorInfo extends ToolActionInfo { get_d() { return 7; } get size() { return this._size; } set size(a) { this._size = a; } get isGroupHeaderSeparator() { return this._isGroupHeaderSeparator; } set isGroupHeaderSeparator(a) { this._isGroupHeaderSeparator = a; } constructor() { super(); this._size = 0; this._isGroupHeaderSeparator = false; this.size = DeviceUtils.g(2); } } ToolActionSeparatorInfo.$t = /*@__PURE__*/ markType(ToolActionSeparatorInfo, 'ToolActionSeparatorInfo', ToolActionInfo.$); return ToolActionSeparatorInfo; })();