12345678910111213141516171819 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.97
- */
- 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 };
|