UNPKG

743 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.PLACEMENT = exports.TYPE = exports.KIND = void 0;
7
8/*
9Copyright (c) 2018-2020 Uber Technologies, Inc.
10
11This source code is licensed under the MIT license found in the
12LICENSE file in the root directory of this source tree.
13*/
14var KIND = Object.freeze({
15 info: 'info',
16 positive: 'positive',
17 warning: 'warning',
18 negative: 'negative'
19});
20exports.KIND = KIND;
21var TYPE = Object.freeze({
22 inline: 'inline',
23 toast: 'toast'
24});
25exports.TYPE = TYPE;
26var PLACEMENT = Object.freeze({
27 topLeft: 'topLeft',
28 top: 'top',
29 topRight: 'topRight',
30 bottomRight: 'bottomRight',
31 bottom: 'bottom',
32 bottomLeft: 'bottomLeft'
33});
34exports.PLACEMENT = PLACEMENT;
\No newline at end of file