baseui
Version:
A React Component library implementing the Base design language
31 lines (29 loc) • 794 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TILE_KIND = exports.TILE_GROUP_KIND = exports.ARTWORK_SIZES = exports.ALIGNMENT = 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 TILE_KIND = exports.TILE_KIND = {
selection: 'selection',
action: 'action'
};
const ALIGNMENT = exports.ALIGNMENT = {
left: 'left',
center: 'center',
right: 'right'
};
const TILE_GROUP_KIND = exports.TILE_GROUP_KIND = {
singleSelect: 'singleSelect',
multiSelectBatch: 'multiSelectBatch',
multiSelectLive: 'multiSelectLive',
none: 'none'
};
const ARTWORK_SIZES = exports.ARTWORK_SIZES = {
medium: 'medium',
large: 'large'
};