igniteui-react-grids
Version:
Ignite UI React grid components.
21 lines (20 loc) • 1.38 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";
export var GridKeydownTargetType = /*@__PURE__*/ (function (GridKeydownTargetType) {
GridKeydownTargetType[GridKeydownTargetType["DataCell"] = 0] = "DataCell";
GridKeydownTargetType[GridKeydownTargetType["SummaryCell"] = 1] = "SummaryCell";
GridKeydownTargetType[GridKeydownTargetType["GroupRow"] = 2] = "GroupRow";
GridKeydownTargetType[GridKeydownTargetType["HierarchicalRow"] = 3] = "HierarchicalRow";
GridKeydownTargetType[GridKeydownTargetType["HeaderCell"] = 4] = "HeaderCell";
GridKeydownTargetType[GridKeydownTargetType["MasterDetailRow"] = 5] = "MasterDetailRow";
return GridKeydownTargetType;
})({});
/**
* @hidden
*/
export var GridKeydownTargetType_$type = /*@__PURE__*/ markEnum('GridKeydownTargetType', 'DataCell,0|SummaryCell,1|GroupRow,2|HierarchicalRow,3|HeaderCell,4|MasterDetailRow,5');