@itwin/appui-abstract
Version:
iTwin.js UI abstractions
20 lines • 867 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Item
*/
/** Specifies type of badge, if any, that should be overlaid on UI component.
* @public
*/
export var BadgeType;
(function (BadgeType) {
/** No badge. */
BadgeType[BadgeType["None"] = 0] = "None";
/** Standard Technical Preview badge. */
BadgeType[BadgeType["TechnicalPreview"] = 1] = "TechnicalPreview";
/** Standard New Feature badge. */
BadgeType[BadgeType["New"] = 2] = "New";
})(BadgeType || (BadgeType = {}));
//# sourceMappingURL=BadgeType.js.map