@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
19 lines (17 loc) • 494 B
JavaScript
/*!
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
* See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
*/
const CSS = {
sticky: "sticky-pos"
};
var ICON_TYPES;
(function (ICON_TYPES) {
ICON_TYPES["circle"] = "circle";
ICON_TYPES["square"] = "square";
ICON_TYPES["grip"] = "grip";
})(ICON_TYPES || (ICON_TYPES = {}));
const SLOTS = {
menuActions: "menu-actions"
};
export { CSS as C, ICON_TYPES as I, SLOTS as S };