igniteui-react-grids
Version:
Ignite UI React grid components.
21 lines (20 loc) • 1.36 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";
/**
* Indicates what type of operation is taking place when the selected row, value, or text in the combo box changes.
*/
export var MultiColumnComboBoxSelectedItemChangeType = /*@__PURE__*/ (function (MultiColumnComboBoxSelectedItemChangeType) {
MultiColumnComboBoxSelectedItemChangeType[MultiColumnComboBoxSelectedItemChangeType["Value"] = 0] = "Value";
MultiColumnComboBoxSelectedItemChangeType[MultiColumnComboBoxSelectedItemChangeType["Text"] = 1] = "Text";
MultiColumnComboBoxSelectedItemChangeType[MultiColumnComboBoxSelectedItemChangeType["Row"] = 2] = "Row";
return MultiColumnComboBoxSelectedItemChangeType;
})({});
/**
* @hidden
*/
export let MultiColumnComboBoxSelectedItemChangeType_$type = /*@__PURE__*/ markEnum('MultiColumnComboBoxSelectedItemChangeType', 'Value,0|Text,1|Row,2');