baseui
Version:
A React Component library implementing the Base design language
37 lines (35 loc) • 897 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TYPE = exports.TOAST_ROLE = exports.PLACEMENT = exports.KIND = void 0;
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
const KIND = exports.KIND = Object.freeze({
info: 'info',
positive: 'positive',
warning: 'warning',
negative: 'negative'
});
const TYPE = exports.TYPE = Object.freeze({
inline: 'inline',
toast: 'toast'
});
const PLACEMENT = exports.PLACEMENT = Object.freeze({
topLeft: 'topLeft',
top: 'top',
topRight: 'topRight',
bottomRight: 'bottomRight',
bottom: 'bottom',
bottomLeft: 'bottomLeft'
});
const TOAST_ROLE = exports.TOAST_ROLE = Object.freeze({
alert: 'alert',
alertdialog: 'alertdialog',
dialog: 'dialog',
status: 'status',
log: 'log'
});