igniteui-react-core
Version:
Ignite UI React Core.
30 lines (29 loc) • 1.22 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 "./type";
/**
* Describes available highlighting states
*/
export var HighlightingState = /*@__PURE__*/ (function (HighlightingState) {
/**
* Highlight is transitioning out.
*/
HighlightingState[HighlightingState["outward"] = 0] = "outward";
/**
* Highlight is transitioning in.
*/
HighlightingState[HighlightingState["inward"] = 1] = "inward";
/**
* Highlight is active and not transitioning in or out.
*/
HighlightingState[HighlightingState["Static"] = 2] = "Static";
return HighlightingState;
})({});
/**
* @hidden
*/
export let HighlightingState_$type = /*@__PURE__*/ markEnum('HighlightingState', 'Out:outward,0|In:inward,1|Static,2');