@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
34 lines (31 loc) • 620 B
JavaScript
;
const CSS = {
actions: "actions",
actionsEnd: "actions--end",
actionsStart: "actions--start",
description: "description",
handle: "handle",
handleActivated: "handle--activated",
highlight: "highlight",
icon: "icon",
iconDot: "icon-dot",
label: "label",
remove: "remove",
title: "title",
textContainer: "text-container"
};
const ICONS = {
checked: "check",
remove: "x"
};
const SLOTS = {
actionsEnd: "actions-end",
actionsStart: "actions-start"
};
const TEXT = {
remove: "remove"
};
exports.CSS = CSS;
exports.ICONS = ICONS;
exports.SLOTS = SLOTS;
exports.TEXT = TEXT;