@carto/meridian-ds 1.4.3-alpha-tag.1 → 1.4.3-alpha-tag.2

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 (47) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/dist/Alert--QYebQp3.js +134 -0
  3. package/dist/Alert-DFaAeTZf.cjs +133 -0
  4. package/dist/ArrowDown-8fLj23Ge.cjs +31 -0
  5. package/dist/ArrowDown-CY_wMVJT.js +32 -0
  6. package/dist/MenuItem-Br2jY2lt.cjs +164 -0
  7. package/dist/MenuItem-CXnnE5lK.js +165 -0
  8. package/dist/SwatchSquare-DDi0beUM.js +51 -0
  9. package/dist/SwatchSquare-w-U8-O-P.cjs +50 -0
  10. package/dist/TablePaginationActions-BG2gWq0M.cjs +5643 -0
  11. package/dist/{TablePaginationActions-WZ3P4O35.js → TablePaginationActions-Dit3VW-A.js} +1065 -653
  12. package/dist/components/index.cjs +3540 -1
  13. package/dist/components/index.js +2324 -1965
  14. package/dist/custom-icons/index.cjs +5908 -1
  15. package/dist/custom-icons/index.js +2681 -2298
  16. package/dist/paletteUtils-B9ybmwiI.cjs +304 -0
  17. package/dist/paletteUtils-BHqJlHm9.js +288 -0
  18. package/dist/theme/index.cjs +3135 -1
  19. package/dist/theme/index.js +1050 -1011
  20. package/dist/types/utils/chartConstants.d.ts +3 -3
  21. package/dist/types/utils/chartConstants.d.ts.map +1 -1
  22. package/dist/types/widgets/CategoryWidgetUI/CategoryWidgetUI.d.ts +2 -2
  23. package/dist/types/widgets/CategoryWidgetUI/CategoryWidgetUI.d.ts.map +1 -1
  24. package/dist/types/widgets/PieWidgetUI/PieWidgetUI.d.ts +2 -2
  25. package/dist/types/widgets/PieWidgetUI/PieWidgetUI.d.ts.map +1 -1
  26. package/dist/types/widgets/PieWidgetUI/usePieCategories.d.ts +2 -2
  27. package/dist/types/widgets/PieWidgetUI/usePieCategories.d.ts.map +1 -1
  28. package/dist/types/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.d.ts +2 -2
  29. package/dist/types/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.d.ts.map +1 -1
  30. package/dist/types/widgets/comparative/ComparativeCategoryWidgetUI/transposeCategoryData.d.ts +2 -2
  31. package/dist/types/widgets/comparative/ComparativeCategoryWidgetUI/transposeCategoryData.d.ts.map +1 -1
  32. package/dist/types/widgets/index.d.ts +1 -0
  33. package/dist/types/widgets/index.d.ts.map +1 -1
  34. package/dist/widgets/index.cjs +7180 -21
  35. package/dist/widgets/index.js +5159 -3791
  36. package/package.json +1 -1
  37. package/dist/Alert-BAvr1f31.js +0 -130
  38. package/dist/Alert-DPGMxifE.cjs +0 -4
  39. package/dist/ArrowDown-BD0WmQR3.cjs +0 -1
  40. package/dist/ArrowDown-CMhYkZ2p.js +0 -31
  41. package/dist/MenuItem-Cd34y6F3.js +0 -165
  42. package/dist/MenuItem-Dbss-WG1.cjs +0 -1
  43. package/dist/SwatchSquare-C34ayL4L.cjs +0 -1
  44. package/dist/SwatchSquare-CVpwEFFV.js +0 -48
  45. package/dist/TablePaginationActions-Bp1DCaIE.cjs +0 -9
  46. package/dist/paletteUtils-BEwZhrLg.js +0 -262
  47. package/dist/paletteUtils-DLQVT9qo.cjs +0 -1
@@ -0,0 +1,51 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ import { createSvgIcon } from "@mui/material/utils";
4
+ const Icon$1 = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx(
5
+ "path",
6
+ {
7
+ fill: "currentColor",
8
+ fillRule: "evenodd",
9
+ d: "M11 4a7 7 0 0 1 5.386 11.472l3.089 3.089-1.414 1.414-3.161-3.161A7 7 0 1 1 11 4m0 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10",
10
+ clipRule: "evenodd"
11
+ }
12
+ ) });
13
+ const BaseSvgIcon$1 = createSvgIcon(Icon$1(), "Search");
14
+ function Search({ width, height, sx, ...props }, ref) {
15
+ return /* @__PURE__ */ jsx(
16
+ BaseSvgIcon$1,
17
+ {
18
+ ref,
19
+ viewBox: "0 0 24 24",
20
+ sx: {
21
+ width,
22
+ height: height || width,
23
+ ...sx
24
+ },
25
+ ...props
26
+ }
27
+ );
28
+ }
29
+ const Search$1 = forwardRef(Search);
30
+ const Icon = () => /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsx("rect", { x: 4, y: 4, fill: "currentColor", rx: 2 }) });
31
+ const BaseSvgIcon = createSvgIcon(Icon(), "SwatchSquare");
32
+ function SwatchSquare({ width, height, sx, ...props }, ref) {
33
+ return /* @__PURE__ */ jsx(
34
+ BaseSvgIcon,
35
+ {
36
+ ref,
37
+ viewBox: "0 0 24 24",
38
+ sx: {
39
+ width,
40
+ height: height || width,
41
+ ...sx
42
+ },
43
+ ...props
44
+ }
45
+ );
46
+ }
47
+ const SwatchSquare$1 = forwardRef(SwatchSquare);
48
+ export {
49
+ Search$1 as S,
50
+ SwatchSquare$1 as a
51
+ };
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ const jsxRuntime = require("react/jsx-runtime");
3
+ const React = require("react");
4
+ const utils = require("@mui/material/utils");
5
+ const Icon$1 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
6
+ "path",
7
+ {
8
+ fill: "currentColor",
9
+ fillRule: "evenodd",
10
+ d: "M11 4a7 7 0 0 1 5.386 11.472l3.089 3.089-1.414 1.414-3.161-3.161A7 7 0 1 1 11 4m0 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10",
11
+ clipRule: "evenodd"
12
+ }
13
+ ) });
14
+ const BaseSvgIcon$1 = utils.createSvgIcon(Icon$1(), "Search");
15
+ function Search({ width, height, sx, ...props }, ref) {
16
+ return /* @__PURE__ */ jsxRuntime.jsx(
17
+ BaseSvgIcon$1,
18
+ {
19
+ ref,
20
+ viewBox: "0 0 24 24",
21
+ sx: {
22
+ width,
23
+ height: height || width,
24
+ ...sx
25
+ },
26
+ ...props
27
+ }
28
+ );
29
+ }
30
+ const Search$1 = React.forwardRef(Search);
31
+ const Icon = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { x: 4, y: 4, fill: "currentColor", rx: 2 }) });
32
+ const BaseSvgIcon = utils.createSvgIcon(Icon(), "SwatchSquare");
33
+ function SwatchSquare({ width, height, sx, ...props }, ref) {
34
+ return /* @__PURE__ */ jsxRuntime.jsx(
35
+ BaseSvgIcon,
36
+ {
37
+ ref,
38
+ viewBox: "0 0 24 24",
39
+ sx: {
40
+ width,
41
+ height: height || width,
42
+ ...sx
43
+ },
44
+ ...props
45
+ }
46
+ );
47
+ }
48
+ const SwatchSquare$1 = React.forwardRef(SwatchSquare);
49
+ exports.Search = Search$1;
50
+ exports.SwatchSquare = SwatchSquare$1;