igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
30 lines (29 loc) • 1.17 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 states for a feature.
*/
export var FeatureState = /*@__PURE__*/ (function (FeatureState) {
/**
* Defines a value for unset property.
*/
FeatureState[FeatureState["Unset"] = 0] = "Unset";
/**
* Defines a value for enabled property.
*/
FeatureState[FeatureState["Enabled"] = 1] = "Enabled";
/**
* Defines a value for disabled property.
*/
FeatureState[FeatureState["Disabled"] = 2] = "Disabled";
return FeatureState;
})({});
/**
* @hidden
*/
export let FeatureState_$type = markEnum('FeatureState', 'Unset,0|Enabled,1|Disabled,2');