igniteui-react-core
Version:
Ignite UI React Core.
38 lines (37 loc) • 1.65 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 behaviors for setting direction of linear gradient brush or a radial gradient brush
*/
export var GradientDirection = /*@__PURE__*/ (function (GradientDirection) {
/**
* Specifies from top to bottom direction of gradient brush
*/
GradientDirection[GradientDirection["TopBottom"] = 0] = "TopBottom";
/**
* Specifies from bottom to top direction of gradient brush
*/
GradientDirection[GradientDirection["BottomTop"] = 1] = "BottomTop";
/**
* Specifies from left to right direction of gradient brush
*/
GradientDirection[GradientDirection["LeftRight"] = 2] = "LeftRight";
/**
* Specifies from right to left direction of gradient brush
*/
GradientDirection[GradientDirection["RightLeft"] = 3] = "RightLeft";
/**
* Specifies radial gradient brush
*/
GradientDirection[GradientDirection["Radial"] = 4] = "Radial";
return GradientDirection;
})({});
/**
* @hidden
*/
export let GradientDirection_$type = /*@__PURE__*/ markEnum('GradientDirection', 'TopBottom,0|BottomTop,1|LeftRight,2|RightLeft,3|Radial,4');