UNPKG

@itwin/appui-abstract

Version:
23 lines 985 B
"use strict"; /*--------------------------------------------------------------------------------------------- * 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 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.BadgeType = void 0; /** Specifies type of badge, if any, that should be overlaid on UI component. * @public */ 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 || (exports.BadgeType = BadgeType = {})); //# sourceMappingURL=BadgeType.js.map