UNPKG

@itwin/appui-abstract

Version:
22 lines 1.16 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** @packageDocumentation * @module Notification */ /** Describes the type and behavior of a display message. * @public */ export var DisplayMessageType; (function (DisplayMessageType) { /** Temporary message that displays at the bottom of the screen. */ DisplayMessageType[DisplayMessageType["Toast"] = 0] = "Toast"; /** Message with a close button that displays at the bottom of the screen. */ DisplayMessageType[DisplayMessageType["Sticky"] = 2] = "Sticky"; /** Message that displays near a specified HTML element. */ DisplayMessageType[DisplayMessageType["InputField"] = 3] = "InputField"; /** Modal message box. */ DisplayMessageType[DisplayMessageType["Alert"] = 4] = "Alert"; })(DisplayMessageType || (DisplayMessageType = {})); //# sourceMappingURL=MessagePresenter.js.map