igniteui-react-grids
Version:
Ignite UI React grid components.
50 lines (49 loc) • 1.55 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 { markEnum } from "igniteui-react-core";
/**
* The Different LayoutActions
*/
export var LayoutAction = /*@__PURE__*/ (function (LayoutAction) {
/**
* Sorted
*/
LayoutAction[LayoutAction["Sorted"] = 0] = "Sorted";
/**
* Resized
*/
LayoutAction[LayoutAction["Resized"] = 1] = "Resized";
/**
* Hidden
*/
LayoutAction[LayoutAction["Hidden"] = 2] = "Hidden";
/**
* Pinned
*/
LayoutAction[LayoutAction["Pinned"] = 3] = "Pinned";
/**
* Moved
*/
LayoutAction[LayoutAction["Moved"] = 4] = "Moved";
/**
* Filtered
*/
LayoutAction[LayoutAction["Filtered"] = 5] = "Filtered";
/**
* Grouped
*/
LayoutAction[LayoutAction["Grouped"] = 6] = "Grouped";
/**
* Summed
*/
LayoutAction[LayoutAction["Summed"] = 7] = "Summed";
return LayoutAction;
})({});
/**
* @hidden
*/
export var LayoutAction_$type = /*@__PURE__*/ markEnum('LayoutAction', 'Sorted,0|Resized,1|Hidden,2|Pinned,3|Moved,4|Filtered,5|Grouped,6|Summed,7');