@carto/ps-react-ui 5.0.0-widgets.12 → 5.0.0-widgets.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/{cjs-D9ro6BXv.js → cjs-D4KH3azB.js} +2 -2
  2. package/dist/{cjs-D9ro6BXv.js.map → cjs-D4KH3azB.js.map} +1 -1
  3. package/dist/components.js +26 -26
  4. package/dist/components.js.map +1 -1
  5. package/dist/{lasso-tool-CYn3ivf-.js → lasso-tool-BwRzEW7k.js} +10 -10
  6. package/dist/{lasso-tool-CYn3ivf-.js.map → lasso-tool-BwRzEW7k.js.map} +1 -1
  7. package/dist/{note-Clng2ej6.js → note-t51drNe0.js} +3 -3
  8. package/dist/{note-Clng2ej6.js.map → note-t51drNe0.js.map} +1 -1
  9. package/dist/{series-Do02NQUF.js → series-D3Pc-kYX.js} +2 -2
  10. package/dist/{series-Do02NQUF.js.map → series-D3Pc-kYX.js.map} +1 -1
  11. package/dist/{utils-Dv5Z47UQ.js → utils-D3-eQyDR.js} +2 -2
  12. package/dist/{utils-Dv5Z47UQ.js.map → utils-D3-eQyDR.js.map} +1 -1
  13. package/dist/widgets/actions.js +19 -17
  14. package/dist/widgets/actions.js.map +1 -1
  15. package/dist/widgets/bar.js +5 -5
  16. package/dist/widgets/bar.js.map +1 -1
  17. package/dist/widgets/category.js +6 -6
  18. package/dist/widgets/category.js.map +1 -1
  19. package/dist/widgets/echart.js +3 -3
  20. package/dist/widgets/echart.js.map +1 -1
  21. package/dist/widgets/formula.js +4 -4
  22. package/dist/widgets/formula.js.map +1 -1
  23. package/dist/widgets/histogram.js +5 -5
  24. package/dist/widgets/histogram.js.map +1 -1
  25. package/dist/widgets/loader.js +1 -1
  26. package/dist/widgets/markdown.js +5 -5
  27. package/dist/widgets/markdown.js.map +1 -1
  28. package/dist/widgets/note.js +1 -1
  29. package/dist/widgets/pie.js +7 -7
  30. package/dist/widgets/pie.js.map +1 -1
  31. package/dist/widgets/range.js +6 -6
  32. package/dist/widgets/range.js.map +1 -1
  33. package/dist/widgets/scatterplot.js +5 -5
  34. package/dist/widgets/scatterplot.js.map +1 -1
  35. package/dist/widgets/spread.js +4 -4
  36. package/dist/widgets/spread.js.map +1 -1
  37. package/dist/widgets/table.js +8 -8
  38. package/dist/widgets/table.js.map +1 -1
  39. package/dist/widgets/timeseries.js +5 -5
  40. package/dist/widgets/timeseries.js.map +1 -1
  41. package/dist/widgets/toolbar-actions.js +1866 -1465
  42. package/dist/widgets/toolbar-actions.js.map +1 -1
  43. package/dist/widgets/wrapper.js +7 -7
  44. package/dist/widgets/wrapper.js.map +1 -1
  45. package/dist/widgets.js +1 -1
  46. package/package.json +4 -4
@@ -15,7 +15,7 @@ function v() {
15
15
  var r = Object.prototype.toString.call(e);
16
16
  return r === "[object RegExp]" || r === "[object Date]" || m(e);
17
17
  }
18
- var j = typeof Symbol == "function" && Symbol.for, O = j ? Symbol.for("react.element") : 60103;
18
+ var j = typeof Symbol == "function" && Symbol.for, O = j ? /* @__PURE__ */ Symbol.for("react.element") : 60103;
19
19
  function m(e) {
20
20
  return e.$$typeof === O;
21
21
  }
@@ -82,4 +82,4 @@ const P = /* @__PURE__ */ w(I);
82
82
  export {
83
83
  P as d
84
84
  };
85
- //# sourceMappingURL=cjs-D9ro6BXv.js.map
85
+ //# sourceMappingURL=cjs-D4KH3azB.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cjs-D9ro6BXv.js","sources":["../../../node_modules/.pnpm/deepmerge@4.3.1/node_modules/deepmerge/dist/cjs.js"],"sourcesContent":["'use strict';\n\nvar isMergeableObject = function isMergeableObject(value) {\n\treturn isNonNullObject(value)\n\t\t&& !isSpecial(value)\n};\n\nfunction isNonNullObject(value) {\n\treturn !!value && typeof value === 'object'\n}\n\nfunction isSpecial(value) {\n\tvar stringValue = Object.prototype.toString.call(value);\n\n\treturn stringValue === '[object RegExp]'\n\t\t|| stringValue === '[object Date]'\n\t\t|| isReactElement(value)\n}\n\n// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25\nvar canUseSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;\n\nfunction isReactElement(value) {\n\treturn value.$$typeof === REACT_ELEMENT_TYPE\n}\n\nfunction emptyTarget(val) {\n\treturn Array.isArray(val) ? [] : {}\n}\n\nfunction cloneUnlessOtherwiseSpecified(value, options) {\n\treturn (options.clone !== false && options.isMergeableObject(value))\n\t\t? deepmerge(emptyTarget(value), value, options)\n\t\t: value\n}\n\nfunction defaultArrayMerge(target, source, options) {\n\treturn target.concat(source).map(function(element) {\n\t\treturn cloneUnlessOtherwiseSpecified(element, options)\n\t})\n}\n\nfunction getMergeFunction(key, options) {\n\tif (!options.customMerge) {\n\t\treturn deepmerge\n\t}\n\tvar customMerge = options.customMerge(key);\n\treturn typeof customMerge === 'function' ? customMerge : deepmerge\n}\n\nfunction getEnumerableOwnPropertySymbols(target) {\n\treturn Object.getOwnPropertySymbols\n\t\t? Object.getOwnPropertySymbols(target).filter(function(symbol) {\n\t\t\treturn Object.propertyIsEnumerable.call(target, symbol)\n\t\t})\n\t\t: []\n}\n\nfunction getKeys(target) {\n\treturn Object.keys(target).concat(getEnumerableOwnPropertySymbols(target))\n}\n\nfunction propertyIsOnObject(object, property) {\n\ttry {\n\t\treturn property in object\n\t} catch(_) {\n\t\treturn false\n\t}\n}\n\n// Protects from prototype poisoning and unexpected merging up the prototype chain.\nfunction propertyIsUnsafe(target, key) {\n\treturn propertyIsOnObject(target, key) // Properties are safe to merge if they don't exist in the target yet,\n\t\t&& !(Object.hasOwnProperty.call(target, key) // unsafe if they exist up the prototype chain,\n\t\t\t&& Object.propertyIsEnumerable.call(target, key)) // and also unsafe if they're nonenumerable.\n}\n\nfunction mergeObject(target, source, options) {\n\tvar destination = {};\n\tif (options.isMergeableObject(target)) {\n\t\tgetKeys(target).forEach(function(key) {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(target[key], options);\n\t\t});\n\t}\n\tgetKeys(source).forEach(function(key) {\n\t\tif (propertyIsUnsafe(target, key)) {\n\t\t\treturn\n\t\t}\n\n\t\tif (propertyIsOnObject(target, key) && options.isMergeableObject(source[key])) {\n\t\t\tdestination[key] = getMergeFunction(key, options)(target[key], source[key], options);\n\t\t} else {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(source[key], options);\n\t\t}\n\t});\n\treturn destination\n}\n\nfunction deepmerge(target, source, options) {\n\toptions = options || {};\n\toptions.arrayMerge = options.arrayMerge || defaultArrayMerge;\n\toptions.isMergeableObject = options.isMergeableObject || isMergeableObject;\n\t// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()\n\t// implementations can use it. The caller may not replace it.\n\toptions.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;\n\n\tvar sourceIsArray = Array.isArray(source);\n\tvar targetIsArray = Array.isArray(target);\n\tvar sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;\n\n\tif (!sourceAndTargetTypesMatch) {\n\t\treturn cloneUnlessOtherwiseSpecified(source, options)\n\t} else if (sourceIsArray) {\n\t\treturn options.arrayMerge(target, source, options)\n\t} else {\n\t\treturn mergeObject(target, source, options)\n\t}\n}\n\ndeepmerge.all = function deepmergeAll(array, options) {\n\tif (!Array.isArray(array)) {\n\t\tthrow new Error('first argument should be an array')\n\t}\n\n\treturn array.reduce(function(prev, next) {\n\t\treturn deepmerge(prev, next, options)\n\t}, {})\n};\n\nvar deepmerge_1 = deepmerge;\n\nmodule.exports = deepmerge_1;\n"],"names":["isMergeableObject","value","isNonNullObject","isSpecial","stringValue","isReactElement","canUseSymbol","REACT_ELEMENT_TYPE","emptyTarget","val","cloneUnlessOtherwiseSpecified","options","deepmerge","defaultArrayMerge","target","source","element","getMergeFunction","key","customMerge","getEnumerableOwnPropertySymbols","symbol","getKeys","propertyIsOnObject","object","property","propertyIsUnsafe","mergeObject","destination","sourceIsArray","targetIsArray","sourceAndTargetTypesMatch","array","prev","next","deepmerge_1","cjs"],"mappings":"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","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"cjs-D4KH3azB.js","sources":["../../../node_modules/.pnpm/deepmerge@4.3.1/node_modules/deepmerge/dist/cjs.js"],"sourcesContent":["'use strict';\n\nvar isMergeableObject = function isMergeableObject(value) {\n\treturn isNonNullObject(value)\n\t\t&& !isSpecial(value)\n};\n\nfunction isNonNullObject(value) {\n\treturn !!value && typeof value === 'object'\n}\n\nfunction isSpecial(value) {\n\tvar stringValue = Object.prototype.toString.call(value);\n\n\treturn stringValue === '[object RegExp]'\n\t\t|| stringValue === '[object Date]'\n\t\t|| isReactElement(value)\n}\n\n// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25\nvar canUseSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;\n\nfunction isReactElement(value) {\n\treturn value.$$typeof === REACT_ELEMENT_TYPE\n}\n\nfunction emptyTarget(val) {\n\treturn Array.isArray(val) ? [] : {}\n}\n\nfunction cloneUnlessOtherwiseSpecified(value, options) {\n\treturn (options.clone !== false && options.isMergeableObject(value))\n\t\t? deepmerge(emptyTarget(value), value, options)\n\t\t: value\n}\n\nfunction defaultArrayMerge(target, source, options) {\n\treturn target.concat(source).map(function(element) {\n\t\treturn cloneUnlessOtherwiseSpecified(element, options)\n\t})\n}\n\nfunction getMergeFunction(key, options) {\n\tif (!options.customMerge) {\n\t\treturn deepmerge\n\t}\n\tvar customMerge = options.customMerge(key);\n\treturn typeof customMerge === 'function' ? customMerge : deepmerge\n}\n\nfunction getEnumerableOwnPropertySymbols(target) {\n\treturn Object.getOwnPropertySymbols\n\t\t? Object.getOwnPropertySymbols(target).filter(function(symbol) {\n\t\t\treturn Object.propertyIsEnumerable.call(target, symbol)\n\t\t})\n\t\t: []\n}\n\nfunction getKeys(target) {\n\treturn Object.keys(target).concat(getEnumerableOwnPropertySymbols(target))\n}\n\nfunction propertyIsOnObject(object, property) {\n\ttry {\n\t\treturn property in object\n\t} catch(_) {\n\t\treturn false\n\t}\n}\n\n// Protects from prototype poisoning and unexpected merging up the prototype chain.\nfunction propertyIsUnsafe(target, key) {\n\treturn propertyIsOnObject(target, key) // Properties are safe to merge if they don't exist in the target yet,\n\t\t&& !(Object.hasOwnProperty.call(target, key) // unsafe if they exist up the prototype chain,\n\t\t\t&& Object.propertyIsEnumerable.call(target, key)) // and also unsafe if they're nonenumerable.\n}\n\nfunction mergeObject(target, source, options) {\n\tvar destination = {};\n\tif (options.isMergeableObject(target)) {\n\t\tgetKeys(target).forEach(function(key) {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(target[key], options);\n\t\t});\n\t}\n\tgetKeys(source).forEach(function(key) {\n\t\tif (propertyIsUnsafe(target, key)) {\n\t\t\treturn\n\t\t}\n\n\t\tif (propertyIsOnObject(target, key) && options.isMergeableObject(source[key])) {\n\t\t\tdestination[key] = getMergeFunction(key, options)(target[key], source[key], options);\n\t\t} else {\n\t\t\tdestination[key] = cloneUnlessOtherwiseSpecified(source[key], options);\n\t\t}\n\t});\n\treturn destination\n}\n\nfunction deepmerge(target, source, options) {\n\toptions = options || {};\n\toptions.arrayMerge = options.arrayMerge || defaultArrayMerge;\n\toptions.isMergeableObject = options.isMergeableObject || isMergeableObject;\n\t// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()\n\t// implementations can use it. The caller may not replace it.\n\toptions.cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified;\n\n\tvar sourceIsArray = Array.isArray(source);\n\tvar targetIsArray = Array.isArray(target);\n\tvar sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;\n\n\tif (!sourceAndTargetTypesMatch) {\n\t\treturn cloneUnlessOtherwiseSpecified(source, options)\n\t} else if (sourceIsArray) {\n\t\treturn options.arrayMerge(target, source, options)\n\t} else {\n\t\treturn mergeObject(target, source, options)\n\t}\n}\n\ndeepmerge.all = function deepmergeAll(array, options) {\n\tif (!Array.isArray(array)) {\n\t\tthrow new Error('first argument should be an array')\n\t}\n\n\treturn array.reduce(function(prev, next) {\n\t\treturn deepmerge(prev, next, options)\n\t}, {})\n};\n\nvar deepmerge_1 = deepmerge;\n\nmodule.exports = deepmerge_1;\n"],"names":["isMergeableObject","value","isNonNullObject","isSpecial","stringValue","isReactElement","canUseSymbol","REACT_ELEMENT_TYPE","emptyTarget","val","cloneUnlessOtherwiseSpecified","options","deepmerge","defaultArrayMerge","target","source","element","getMergeFunction","key","customMerge","getEnumerableOwnPropertySymbols","symbol","getKeys","propertyIsOnObject","object","property","propertyIsUnsafe","mergeObject","destination","sourceIsArray","targetIsArray","sourceAndTargetTypesMatch","array","prev","next","deepmerge_1","cjs"],"mappings":"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","x_google_ignoreList":[0]}
@@ -1,10 +1,10 @@
1
- import { s as ve, L as Be, a as ae } from "./lasso-tool-CYn3ivf-.js";
2
- import { D as ol, c as nl, d as il, e as sl, f as rl, b as al, S as cl } from "./lasso-tool-CYn3ivf-.js";
1
+ import { s as ve, L as Be, a as ae } from "./lasso-tool-BwRzEW7k.js";
2
+ import { D as ol, c as nl, d as il, e as sl, f as rl, b as al, S as cl } from "./lasso-tool-BwRzEW7k.js";
3
3
  import { jsxs as $, Fragment as ee, jsx as l } from "react/jsx-runtime";
4
4
  import { c as F } from "react/compiler-runtime";
5
5
  import { Divider as fe, Box as q, ToggleButton as ye, SvgIcon as Ie, ToggleButtonGroup as Le, Typography as Q, Button as xe, alpha as Ue, Paper as Ce, MenuItem as Te, ListItemIcon as Ve, ListItemText as Se, IconButton as re, Menu as Ze, DialogTitle as We, FormControlLabel as je, Radio as Fe, RadioGroup as Ge, FormControl as Ne, DialogContent as ze, DialogActions as He, Dialog as Xe, CircularProgress as qe, Grid as pe, Skeleton as we, Alert as Ke, ListItem as Ye, List as Qe, Drawer as Je, Popover as et, useTheme as tt, useMediaQuery as lt } from "@mui/material";
6
6
  import { useState as ne, useRef as Pe, useEffect as Oe } from "react";
7
- import { d as Me } from "./cjs-D9ro6BXv.js";
7
+ import { d as Me } from "./cjs-D4KH3azB.js";
8
8
  import { T as he } from "./tooltip-BDnrRKrp.js";
9
9
  import { s as ml } from "./tooltip-BDnrRKrp.js";
10
10
  import { ArrowDropDown as ot, Close as Re, MyLocationOutlined as nt, LocationDisabledOutlined as it, CropFreeOutlined as st, AddOutlined as rt, RemoveOutlined as at } from "@mui/icons-material";
@@ -78,7 +78,7 @@ function qt(t) {
78
78
  let j;
79
79
  e[33] !== L || e[34] !== V || e[35] !== G ? (j = /* @__PURE__ */ l(dt, { data: L, labels: V, children: G }), e[33] = L, e[34] = V, e[35] = G, e[36] = j) : j = e[36];
80
80
  let N;
81
- e[37] === Symbol.for("react.memo_cache_sentinel") ? (N = /* @__PURE__ */ l(fe, { flexItem: !0 }), e[37] = N) : N = e[37];
81
+ e[37] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (N = /* @__PURE__ */ l(fe, { flexItem: !0 }), e[37] = N) : N = e[37];
82
82
  const z = !!p.length, B = r?.noData;
83
83
  let H;
84
84
  e[38] !== z || e[39] !== B ? (H = /* @__PURE__ */ l(mt, { hasValues: z, labels: B }), e[38] = z, e[39] = B, e[40] = H) : H = e[40];
@@ -170,21 +170,21 @@ function ft(t) {
170
170
  function pt(t) {
171
171
  const e = F(3);
172
172
  let s;
173
- e[0] === Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ l("path", { fill: "currentColor", d: "M3 13.5c-.413 0-.766-.147-1.06-.44A1.445 1.445 0 0 1 1.5 12V6c0-.412.147-.766.44-1.06.294-.293.647-.44 1.06-.44h12c.412 0 .766.147 1.06.44.293.294.44.647.44 1.06v6c0 .412-.147.766-.44 1.06-.294.293-.647.44-1.06.44H3ZM3 12h12V6h-2.25v3h-1.5V6h-1.5v3h-1.5V6h-1.5v3h-1.5V6H3v6Z" }), e[0] = s) : s = e[0];
173
+ e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ l("path", { fill: "currentColor", d: "M3 13.5c-.413 0-.766-.147-1.06-.44A1.445 1.445 0 0 1 1.5 12V6c0-.412.147-.766.44-1.06.294-.293.647-.44 1.06-.44h12c.412 0 .766.147 1.06.44.293.294.44.647.44 1.06v6c0 .412-.147.766-.44 1.06-.294.293-.647.44-1.06.44H3ZM3 12h12V6h-2.25v3h-1.5V6h-1.5v3h-1.5V6h-1.5v3h-1.5V6H3v6Z" }), e[0] = s) : s = e[0];
174
174
  let o;
175
175
  return e[1] !== t ? (o = /* @__PURE__ */ l("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18 18", fill: "currentColor", ...t, children: s }), e[1] = t, e[2] = o) : o = e[2], o;
176
176
  }
177
177
  function ht(t) {
178
178
  const e = F(3);
179
179
  let s;
180
- e[0] === Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ l("path", { fill: "currentColor", fillRule: "evenodd", d: "M9 1.5a7.5 7.5 0 1 1 0 15 7.5 7.5 0 0 1 0-15ZM9 3a6 6 0 1 0 0 12A6 6 0 0 0 9 3Zm0 4.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z", clipRule: "evenodd" }), e[0] = s) : s = e[0];
180
+ e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ l("path", { fill: "currentColor", fillRule: "evenodd", d: "M9 1.5a7.5 7.5 0 1 1 0 15 7.5 7.5 0 0 1 0-15ZM9 3a6 6 0 1 0 0 12A6 6 0 0 0 9 3Zm0 4.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z", clipRule: "evenodd" }), e[0] = s) : s = e[0];
181
181
  let o;
182
182
  return e[1] !== t ? (o = /* @__PURE__ */ l("svg", { fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18 18", ...t, children: s }), e[1] = t, e[2] = o) : o = e[2], o;
183
183
  }
184
184
  function gt(t) {
185
185
  const e = F(4);
186
186
  let s, o;
187
- e[0] === Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ l("path", { fill: "currentColor", fillRule: "evenodd", d: "M4.5 13.5v-9h9v9h-9Zm.75-8.25h7.5v7.5h-7.5v-7.5Z", clipRule: "evenodd" }), o = /* @__PURE__ */ l("path", { fill: "#2C3032", fillRule: "evenodd", d: "M1.5 3A1.5 1.5 0 0 1 3 1.5h12A1.5 1.5 0 0 1 16.5 3v12a1.5 1.5 0 0 1-1.5 1.5H3A1.5 1.5 0 0 1 1.5 15V3ZM3 3h12v12H3V3Z", clipRule: "evenodd" }), e[0] = s, e[1] = o) : (s = e[0], o = e[1]);
187
+ e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ l("path", { fill: "currentColor", fillRule: "evenodd", d: "M4.5 13.5v-9h9v9h-9Zm.75-8.25h7.5v7.5h-7.5v-7.5Z", clipRule: "evenodd" }), o = /* @__PURE__ */ l("path", { fill: "#2C3032", fillRule: "evenodd", d: "M1.5 3A1.5 1.5 0 0 1 3 1.5h12A1.5 1.5 0 0 1 16.5 3v12a1.5 1.5 0 0 1-1.5 1.5H3A1.5 1.5 0 0 1 1.5 15V3ZM3 3h12v12H3V3Z", clipRule: "evenodd" }), e[0] = s, e[1] = o) : (s = e[0], o = e[1]);
188
188
  let n;
189
189
  return e[2] !== t ? (n = /* @__PURE__ */ $("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18 18", ...t, children: [
190
190
  s,
@@ -514,12 +514,12 @@ function xt(t) {
514
514
  return null;
515
515
  const S = !!d;
516
516
  let A;
517
- e[4] === Symbol.for("react.memo_cache_sentinel") ? (A = (B) => {
517
+ e[4] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (A = (B) => {
518
518
  m(B.currentTarget);
519
519
  }, e[4] = A) : A = e[4];
520
520
  const _ = A;
521
521
  let C;
522
- e[5] === Symbol.for("react.memo_cache_sentinel") ? (C = () => {
522
+ e[5] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (C = () => {
523
523
  m(null);
524
524
  }, e[5] = C) : C = e[5];
525
525
  const D = C;
@@ -529,12 +529,12 @@ function xt(t) {
529
529
  }, e[6] = a, e[7] = M) : M = e[7];
530
530
  const h = M;
531
531
  let T;
532
- e[8] === Symbol.for("react.memo_cache_sentinel") ? (T = () => {
532
+ e[8] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (T = () => {
533
533
  f(!0);
534
534
  }, e[8] = T) : T = e[8];
535
535
  const y = T;
536
536
  let b;
537
- e[9] === Symbol.for("react.memo_cache_sentinel") ? (b = () => {
537
+ e[9] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (b = () => {
538
538
  f(!1);
539
539
  }, e[9] = b) : b = e[9];
540
540
  const w = b;
@@ -547,9 +547,9 @@ function xt(t) {
547
547
  e[12] !== r || e[13] !== n ? (V = n.find((B) => B.value === r) ?? n[0], e[12] = r, e[13] = n, e[14] = V) : V = e[14];
548
548
  const E = V;
549
549
  let R;
550
- e[15] === Symbol.for("react.memo_cache_sentinel") ? (R = /* @__PURE__ */ l(re, { sx: Y.options.icon, onClick: _, children: /* @__PURE__ */ l(ot, {}) }), e[15] = R) : R = e[15];
550
+ e[15] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (R = /* @__PURE__ */ l(re, { sx: Y.options.icon, onClick: _, children: /* @__PURE__ */ l(ot, {}) }), e[15] = R) : R = e[15];
551
551
  let O;
552
- e[16] === Symbol.for("react.memo_cache_sentinel") ? (O = {
552
+ e[16] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (O = {
553
553
  "aria-labelledby": "basic-button",
554
554
  sx: Y.options.menu
555
555
  }, e[16] = O) : O = e[16];
@@ -603,7 +603,7 @@ function St(t) {
603
603
  m = e[2];
604
604
  const u = m;
605
605
  let f;
606
- e[5] === Symbol.for("react.memo_cache_sentinel") ? (f = (R, O) => {
606
+ e[5] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (f = (R, O) => {
607
607
  d(O);
608
608
  }, e[5] = f) : f = e[5];
609
609
  const I = f, v = o?.units?.modal?.options ?? oe.options.units.modal.options, k = v[c].options, p = o?.units?.modal?.title ?? oe.options.units.modal.title, g = o?.units?.modal?.subtitle ?? oe.options.units.modal.subtitle, S = o?.units?.modal?.apply ?? oe.options.units.modal.apply, A = r.system === c ? r : u[0];
@@ -617,7 +617,7 @@ function St(t) {
617
617
  }
618
618
  }, e[6] = a, e[7] = _) : _ = e[7];
619
619
  let C;
620
- e[8] === Symbol.for("react.memo_cache_sentinel") ? (C = /* @__PURE__ */ l(Re, {}), e[8] = C) : C = e[8];
620
+ e[8] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (C = /* @__PURE__ */ l(Re, {}), e[8] = C) : C = e[8];
621
621
  let D;
622
622
  e[9] !== i ? (D = /* @__PURE__ */ l(re, { onClick: i, children: C }), e[9] = i, e[10] = D) : D = e[10];
623
623
  let M;
@@ -796,7 +796,7 @@ function Qt(t) {
796
796
  /* @__PURE__ */ l(fe, { orientation: y, flexItem: !0 })
797
797
  ] }), e[12] = A, e[13] = o, e[14] = y, e[15] = I, e[16] = x) : x = e[16];
798
798
  let Z;
799
- e[17] === Symbol.for("react.memo_cache_sentinel") ? (Z = /* @__PURE__ */ l(rt, {}), e[17] = Z) : Z = e[17];
799
+ e[17] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (Z = /* @__PURE__ */ l(rt, {}), e[17] = Z) : Z = e[17];
800
800
  let U;
801
801
  e[18] !== o || e[19] !== D ? (U = /* @__PURE__ */ l(re, { onClick: D, "aria-label": "Increase zoom", disabled: o, children: Z }), e[18] = o, e[19] = D, e[20] = U) : U = e[20];
802
802
  let L;
@@ -810,7 +810,7 @@ function Qt(t) {
810
810
  /* @__PURE__ */ l(fe, { orientation: y, flexItem: !0 })
811
811
  ] }), e[23] = T, e[24] = y, e[25] = i, e[26] = _, e[27] = P) : P = e[27];
812
812
  let V;
813
- e[28] === Symbol.for("react.memo_cache_sentinel") ? (V = /* @__PURE__ */ l(at, {}), e[28] = V) : V = e[28];
813
+ e[28] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (V = /* @__PURE__ */ l(at, {}), e[28] = V) : V = e[28];
814
814
  let E;
815
815
  e[29] !== h || e[30] !== o ? (E = /* @__PURE__ */ l(re, { onClick: h, "aria-label": "Decrease zoom", disabled: o, children: V }), e[29] = h, e[30] = o, e[31] = E) : E = e[31];
816
816
  let R;
@@ -896,14 +896,14 @@ function ke(t) {
896
896
  if (o) {
897
897
  const r = s ?? "inherit";
898
898
  let i;
899
- e[0] === Symbol.for("react.memo_cache_sentinel") ? (i = {
899
+ e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (i = {
900
900
  fontWeight: "normal"
901
901
  }, e[0] = i) : i = e[0];
902
902
  let a;
903
903
  return e[1] !== o || e[2] !== r ? (a = /* @__PURE__ */ l(q, { mt: 0.5, children: /* @__PURE__ */ l(Q, { component: "div", variant: "caption", color: r, style: i, children: o }) }), e[1] = o, e[2] = r, e[3] = a) : a = e[3], a;
904
904
  }
905
905
  let n;
906
- return e[4] === Symbol.for("react.memo_cache_sentinel") ? (n = /* @__PURE__ */ l(q, { mt: -1 }), e[4] = n) : n = e[4], n;
906
+ return e[4] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (n = /* @__PURE__ */ l(q, { mt: -1 }), e[4] = n) : n = e[4], n;
907
907
  }
908
908
  function Lt(t) {
909
909
  const e = F(2);
@@ -983,7 +983,7 @@ function Jt(t) {
983
983
  }
984
984
  if (C.length === 0) {
985
985
  let w;
986
- return e[11] === Symbol.for("react.memo_cache_sentinel") ? (w = /* @__PURE__ */ l(It, {}), e[11] = w) : w = e[11], w;
986
+ return e[11] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (w = /* @__PURE__ */ l(It, {}), e[11] = w) : w = e[11], w;
987
987
  }
988
988
  let h;
989
989
  if (e[12] !== C || e[13] !== m || e[14] !== a || e[15] !== p || e[16] !== c) {
@@ -1249,7 +1249,7 @@ function el(t) {
1249
1249
  e[15] !== w ? (x = Object.keys(w), e[15] = w, e[16] = x) : x = e[16];
1250
1250
  const Z = x.length;
1251
1251
  let U;
1252
- e[17] === Symbol.for("react.memo_cache_sentinel") ? (U = () => {
1252
+ e[17] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (U = () => {
1253
1253
  I(null), k(!1);
1254
1254
  }, e[17] = U) : U = e[17];
1255
1255
  const L = U;
@@ -1263,17 +1263,17 @@ function el(t) {
1263
1263
  };
1264
1264
  }, V = [g], e[18] = g, e[19] = P, e[20] = V) : (P = e[19], V = e[20]), Oe(P, V);
1265
1265
  let E;
1266
- e[21] === Symbol.for("react.memo_cache_sentinel") ? (E = () => {
1266
+ e[21] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (E = () => {
1267
1267
  S(null);
1268
1268
  }, e[21] = E) : E = e[21];
1269
1269
  const R = E;
1270
1270
  let O;
1271
- e[22] === Symbol.for("react.memo_cache_sentinel") ? (O = () => {
1271
+ e[22] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (O = () => {
1272
1272
  S(400);
1273
1273
  }, e[22] = O) : O = e[22];
1274
1274
  const W = O;
1275
1275
  let G;
1276
- e[23] === Symbol.for("react.memo_cache_sentinel") ? (G = (se) => {
1276
+ e[23] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (G = (se) => {
1277
1277
  I(se.currentTarget), k(!0);
1278
1278
  }, e[23] = G) : G = e[23];
1279
1279
  const j = y?.icon, N = y?.label ?? "Basemap";
@@ -1295,9 +1295,9 @@ function el(t) {
1295
1295
  }, e[31] = H, e[32] = X) : X = e[32];
1296
1296
  const te = !v;
1297
1297
  let J;
1298
- e[33] === Symbol.for("react.memo_cache_sentinel") ? (J = () => L(), e[33] = J) : J = e[33];
1298
+ e[33] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (J = () => L(), e[33] = J) : J = e[33];
1299
1299
  let le;
1300
- e[34] === Symbol.for("react.memo_cache_sentinel") ? (le = () => L(), e[34] = le) : le = e[34];
1300
+ e[34] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (le = () => L(), e[34] = le) : le = e[34];
1301
1301
  let K;
1302
1302
  e[35] !== C || e[36] !== h.header ? (K = /* @__PURE__ */ l(Et, { isMobile: C, labels: h.header, onChangeCollapsed: le }), e[35] = C, e[36] = h.header, e[37] = K) : K = e[37];
1303
1303
  let ie;