resources.js 512 B

12345678910111213141516171819
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.97
  5. */
  6. const CSS = {
  7. sticky: "sticky-pos"
  8. };
  9. var ICON_TYPES;
  10. (function (ICON_TYPES) {
  11. ICON_TYPES["circle"] = "circle";
  12. ICON_TYPES["square"] = "square";
  13. ICON_TYPES["grip"] = "grip";
  14. })(ICON_TYPES || (ICON_TYPES = {}));
  15. const SLOTS = {
  16. menuActions: "menu-actions"
  17. };
  18. export { CSS as C, ICON_TYPES as I, SLOTS as S };