@carto/meridian-ds 2.0.0-alpha-external-link.7 → 2.0.0-alpha-autocomplete-console.1

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 (33) hide show
  1. package/CHANGELOG.md +0 -2
  2. package/dist/{Alert-C-rl1sPM.cjs → Alert-BzEgeyQJ.cjs} +1 -97
  3. package/dist/{Alert-DmbdMf46.js → Alert-CnaTtNJd.js} +3 -99
  4. package/dist/{MenuItem-C8x-GasJ.js → MenuItem-C1DvWMry.js} +1 -1
  5. package/dist/{MenuItem-CyIdh2wX.cjs → MenuItem-C4bG5WHw.cjs} +1 -1
  6. package/dist/{TablePaginationActions-BWer8cmX.js → TablePaginationActions-Cz5Hbi6N.js} +3 -6
  7. package/dist/{TablePaginationActions-MwqZJoRm.cjs → TablePaginationActions-mbbjzV6Y.cjs} +3 -6
  8. package/dist/components/index.cjs +17 -37
  9. package/dist/components/index.js +18 -39
  10. package/dist/theme/index.cjs +2 -2
  11. package/dist/theme/index.js +3 -3
  12. package/dist/types/components/atoms/Button.d.ts +0 -10
  13. package/dist/types/components/atoms/Button.d.ts.map +1 -1
  14. package/dist/types/components/atoms/index.d.ts +0 -3
  15. package/dist/types/components/atoms/index.d.ts.map +1 -1
  16. package/dist/types/components/molecules/Autocomplete/utils.d.ts +1 -1
  17. package/dist/types/components/molecules/Autocomplete/utils.d.ts.map +1 -1
  18. package/dist/types/localization/en.d.ts +0 -1
  19. package/dist/types/localization/en.d.ts.map +1 -1
  20. package/dist/types/localization/es.d.ts +0 -1
  21. package/dist/types/localization/es.d.ts.map +1 -1
  22. package/dist/types/localization/id.d.ts +0 -1
  23. package/dist/types/localization/id.d.ts.map +1 -1
  24. package/dist/types/localization/index.d.ts +0 -3
  25. package/dist/types/localization/index.d.ts.map +1 -1
  26. package/dist/types/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.d.ts.map +1 -1
  27. package/dist/widgets/index.cjs +5 -5
  28. package/dist/widgets/index.js +5 -5
  29. package/package.json +1 -1
  30. package/dist/types/components/atoms/Link.d.ts +0 -16
  31. package/dist/types/components/atoms/Link.d.ts.map +0 -1
  32. package/dist/types/components/atoms/ScreenReaderOnly.d.ts +0 -3
  33. package/dist/types/components/atoms/ScreenReaderOnly.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
- - New Link components and Button with externalLink behavior [#202](https://github.com/CartoDB/meridian-ds/pull/202)
6
-
7
5
  ## 2.0
8
6
 
9
7
  ### 2.0.0
@@ -2,21 +2,7 @@
2
2
  const jsxRuntime = require("react/jsx-runtime");
3
3
  const React = require("react");
4
4
  const material = require("@mui/material");
5
- const reactIntl = require("react-intl");
6
- const iconsMaterial = require("@mui/icons-material");
7
- const TablePaginationActions = require("./TablePaginationActions-MwqZJoRm.cjs");
8
- require("cartocolor");
9
- const ScreenReaderOnly = material.styled("span")(() => ({
10
- position: "absolute",
11
- width: 1,
12
- height: 1,
13
- padding: 0,
14
- margin: -1,
15
- overflow: "hidden",
16
- clip: "rect(0, 0, 0, 0)",
17
- whiteSpace: "nowrap",
18
- border: 0
19
- }));
5
+ const TablePaginationActions = require("./TablePaginationActions-mbbjzV6Y.cjs");
20
6
  const Option = material.styled("div")(({ theme }) => ({
21
7
  position: "relative",
22
8
  display: "inline-flex",
@@ -75,86 +61,6 @@ function _IconButton({
75
61
  ) });
76
62
  }
77
63
  const IconButton = React.forwardRef(_IconButton);
78
- const StyledLink = material.styled(material.Link)(() => ({
79
- display: "inline"
80
- }));
81
- const Icon = material.styled(material.Box, {
82
- shouldForwardProp: (prop) => prop !== "variant" && prop !== "iconPosition"
83
- })(
84
- ({ variant, iconPosition }) => ({
85
- display: "inline-flex",
86
- position: "relative",
87
- top: "calc(1em * 5.0/32)",
88
- // heuristic to align icon with true perceived baseline
89
- ...iconPosition === "right" && {
90
- marginLeft: "0.25em"
91
- },
92
- ...iconPosition === "left" && {
93
- marginRight: "0.25em"
94
- },
95
- svg: {
96
- // Size adapts to the text size, but make sure the icon size is at least 12px
97
- fontSize: `max(1em, ${TablePaginationActions.ICON_SIZE_SMALL})`,
98
- color: "inherit !important",
99
- "> path": {
100
- color: "inherit !important"
101
- },
102
- // Defined sizes in design specs
103
- ...variant === "caption" && {
104
- fontSize: TablePaginationActions.ICON_SIZE_SMALL
105
- },
106
- ...variant === "button" && {
107
- fontSize: TablePaginationActions.ICON_SIZE_MEDIUM
108
- },
109
- ...variant === "body2" && {
110
- fontSize: TablePaginationActions.ICON_SIZE_MEDIUM
111
- },
112
- ...variant === "body1" && {
113
- fontSize: TablePaginationActions.ICON_SIZE_LARGE
114
- }
115
- }
116
- })
117
- );
118
- function _Link({
119
- children,
120
- variant,
121
- startIcon,
122
- endIcon,
123
- color,
124
- external,
125
- showExternalIcon = true,
126
- fontWeight = 500,
127
- ...otherProps
128
- }, ref) {
129
- const intl = reactIntl.useIntl();
130
- const intlConfig = TablePaginationActions.useImperativeIntl(intl);
131
- const isButtonLink = otherProps.component === "button";
132
- return /* @__PURE__ */ jsxRuntime.jsxs(
133
- StyledLink,
134
- {
135
- ...otherProps,
136
- variant,
137
- fontWeight,
138
- "data-color": color,
139
- "data-name": isButtonLink ? "button-link" : "link",
140
- role: isButtonLink ? "button" : "link",
141
- color,
142
- ref,
143
- target: external ? "_blank" : void 0,
144
- rel: external ? "noopener noreferrer" : void 0,
145
- "aria-describedby": external ? "external-hint" : void 0,
146
- children: [
147
- startIcon && /* @__PURE__ */ jsxRuntime.jsx(Icon, { variant, iconPosition: "left", children: startIcon }),
148
- children,
149
- (endIcon || external && showExternalIcon) && /* @__PURE__ */ jsxRuntime.jsx(Icon, { variant, iconPosition: "right", children: endIcon || /* @__PURE__ */ jsxRuntime.jsx(iconsMaterial.OpenInNewOutlined, {}) }),
150
- external && /* @__PURE__ */ jsxRuntime.jsx(ScreenReaderOnly, { id: "external-hint", children: `(${intlConfig.formatMessage({
151
- id: "c4r.button.opensInNewTab"
152
- })})` })
153
- ]
154
- }
155
- );
156
- }
157
- const Link = React.forwardRef(_Link);
158
64
  const StyledAlert = material.styled(material.Alert, {
159
65
  shouldForwardProp: (prop) => ![
160
66
  "isNeutral",
@@ -284,5 +190,3 @@ function _Alert({
284
190
  const Alert = React.forwardRef(_Alert);
285
191
  exports.Alert = Alert;
286
192
  exports.IconButton = IconButton;
287
- exports.Link = Link;
288
- exports.ScreenReaderOnly = ScreenReaderOnly;
@@ -1,21 +1,7 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { forwardRef, useState } from "react";
3
- import { styled, IconButton as IconButton$1, Tooltip, CircularProgress, Link as Link$1, Box, Alert as Alert$1, Fade, AlertTitle } from "@mui/material";
4
- import { useIntl } from "react-intl";
5
- import { OpenInNewOutlined } from "@mui/icons-material";
6
- import { c as ICON_SIZE_SMALL, b as ICON_SIZE_MEDIUM, I as ICON_SIZE_LARGE, u as useImperativeIntl, T as Typography } from "./TablePaginationActions-BWer8cmX.js";
7
- import "cartocolor";
8
- const ScreenReaderOnly = styled("span")(() => ({
9
- position: "absolute",
10
- width: 1,
11
- height: 1,
12
- padding: 0,
13
- margin: -1,
14
- overflow: "hidden",
15
- clip: "rect(0, 0, 0, 0)",
16
- whiteSpace: "nowrap",
17
- border: 0
18
- }));
3
+ import { styled, IconButton as IconButton$1, Tooltip, CircularProgress, Alert as Alert$1, Fade, AlertTitle } from "@mui/material";
4
+ import { b as ICON_SIZE_MEDIUM, T as Typography } from "./TablePaginationActions-Cz5Hbi6N.js";
19
5
  const Option = styled("div")(({ theme }) => ({
20
6
  position: "relative",
21
7
  display: "inline-flex",
@@ -74,86 +60,6 @@ function _IconButton({
74
60
  ) });
75
61
  }
76
62
  const IconButton = forwardRef(_IconButton);
77
- const StyledLink = styled(Link$1)(() => ({
78
- display: "inline"
79
- }));
80
- const Icon = styled(Box, {
81
- shouldForwardProp: (prop) => prop !== "variant" && prop !== "iconPosition"
82
- })(
83
- ({ variant, iconPosition }) => ({
84
- display: "inline-flex",
85
- position: "relative",
86
- top: "calc(1em * 5.0/32)",
87
- // heuristic to align icon with true perceived baseline
88
- ...iconPosition === "right" && {
89
- marginLeft: "0.25em"
90
- },
91
- ...iconPosition === "left" && {
92
- marginRight: "0.25em"
93
- },
94
- svg: {
95
- // Size adapts to the text size, but make sure the icon size is at least 12px
96
- fontSize: `max(1em, ${ICON_SIZE_SMALL})`,
97
- color: "inherit !important",
98
- "> path": {
99
- color: "inherit !important"
100
- },
101
- // Defined sizes in design specs
102
- ...variant === "caption" && {
103
- fontSize: ICON_SIZE_SMALL
104
- },
105
- ...variant === "button" && {
106
- fontSize: ICON_SIZE_MEDIUM
107
- },
108
- ...variant === "body2" && {
109
- fontSize: ICON_SIZE_MEDIUM
110
- },
111
- ...variant === "body1" && {
112
- fontSize: ICON_SIZE_LARGE
113
- }
114
- }
115
- })
116
- );
117
- function _Link({
118
- children,
119
- variant,
120
- startIcon,
121
- endIcon,
122
- color,
123
- external,
124
- showExternalIcon = true,
125
- fontWeight = 500,
126
- ...otherProps
127
- }, ref) {
128
- const intl = useIntl();
129
- const intlConfig = useImperativeIntl(intl);
130
- const isButtonLink = otherProps.component === "button";
131
- return /* @__PURE__ */ jsxs(
132
- StyledLink,
133
- {
134
- ...otherProps,
135
- variant,
136
- fontWeight,
137
- "data-color": color,
138
- "data-name": isButtonLink ? "button-link" : "link",
139
- role: isButtonLink ? "button" : "link",
140
- color,
141
- ref,
142
- target: external ? "_blank" : void 0,
143
- rel: external ? "noopener noreferrer" : void 0,
144
- "aria-describedby": external ? "external-hint" : void 0,
145
- children: [
146
- startIcon && /* @__PURE__ */ jsx(Icon, { variant, iconPosition: "left", children: startIcon }),
147
- children,
148
- (endIcon || external && showExternalIcon) && /* @__PURE__ */ jsx(Icon, { variant, iconPosition: "right", children: endIcon || /* @__PURE__ */ jsx(OpenInNewOutlined, {}) }),
149
- external && /* @__PURE__ */ jsx(ScreenReaderOnly, { id: "external-hint", children: `(${intlConfig.formatMessage({
150
- id: "c4r.button.opensInNewTab"
151
- })})` })
152
- ]
153
- }
154
- );
155
- }
156
- const Link = forwardRef(_Link);
157
63
  const StyledAlert = styled(Alert$1, {
158
64
  shouldForwardProp: (prop) => ![
159
65
  "isNeutral",
@@ -283,7 +189,5 @@ function _Alert({
283
189
  const Alert = forwardRef(_Alert);
284
190
  export {
285
191
  Alert as A,
286
- IconButton as I,
287
- Link as L,
288
- ScreenReaderOnly as S
192
+ IconButton as I
289
193
  };
@@ -1,7 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from "react";
3
3
  import { styled, MenuItem as MenuItem$1 } from "@mui/material";
4
- import { e as MENU_ITEM_SIZE_DENSE, f as MENU_ITEM_SIZE_EXTENDED } from "./TablePaginationActions-BWer8cmX.js";
4
+ import { e as MENU_ITEM_SIZE_DENSE, f as MENU_ITEM_SIZE_EXTENDED } from "./TablePaginationActions-Cz5Hbi6N.js";
5
5
  const StyledMenuItem = styled(MenuItem$1, {
6
6
  shouldForwardProp: (prop) => !["subtitle", "destructive", "extended", "fixed", "iconColor"].includes(
7
7
  prop
@@ -2,7 +2,7 @@
2
2
  const jsxRuntime = require("react/jsx-runtime");
3
3
  const React = require("react");
4
4
  const material = require("@mui/material");
5
- const TablePaginationActions = require("./TablePaginationActions-MwqZJoRm.cjs");
5
+ const TablePaginationActions = require("./TablePaginationActions-mbbjzV6Y.cjs");
6
6
  const StyledMenuItem = material.styled(material.MenuItem, {
7
7
  shouldForwardProp: (prop) => !["subtitle", "destructive", "extended", "fixed", "iconColor"].includes(
8
8
  prop
@@ -817,8 +817,7 @@ const en = {
817
817
  copy: "Copy",
818
818
  save: "Save",
819
819
  add: "Add",
820
- showOptions: "Show options",
821
- opensInNewTab: "Opens in new tab"
820
+ showOptions: "Show options"
822
821
  },
823
822
  form: {
824
823
  selectAll: "Select all",
@@ -966,8 +965,7 @@ const es = {
966
965
  copy: "Copiar",
967
966
  save: "Guardar",
968
967
  add: "Añadir",
969
- showOptions: "Mostrar opciones",
970
- opensInNewTab: "Abre en una nueva pestaña"
968
+ showOptions: "Mostrar opciones"
971
969
  },
972
970
  form: {
973
971
  selectAll: "Seleccionar todos",
@@ -1113,8 +1111,7 @@ const id = {
1113
1111
  copy: "Salin",
1114
1112
  save: "Simpan",
1115
1113
  add: "Tambah",
1116
- showOptions: "Tampilkan opsi",
1117
- opensInNewTab: "Buka di tab baru"
1114
+ showOptions: "Tampilkan opsi"
1118
1115
  },
1119
1116
  form: {
1120
1117
  selectAll: "Select all",
@@ -818,8 +818,7 @@ const en = {
818
818
  copy: "Copy",
819
819
  save: "Save",
820
820
  add: "Add",
821
- showOptions: "Show options",
822
- opensInNewTab: "Opens in new tab"
821
+ showOptions: "Show options"
823
822
  },
824
823
  form: {
825
824
  selectAll: "Select all",
@@ -967,8 +966,7 @@ const es = {
967
966
  copy: "Copiar",
968
967
  save: "Guardar",
969
968
  add: "Añadir",
970
- showOptions: "Mostrar opciones",
971
- opensInNewTab: "Abre en una nueva pestaña"
969
+ showOptions: "Mostrar opciones"
972
970
  },
973
971
  form: {
974
972
  selectAll: "Seleccionar todos",
@@ -1114,8 +1112,7 @@ const id = {
1114
1112
  copy: "Salin",
1115
1113
  save: "Simpan",
1116
1114
  add: "Tambah",
1117
- showOptions: "Tampilkan opsi",
1118
- opensInNewTab: "Buka di tab baru"
1115
+ showOptions: "Tampilkan opsi"
1119
1116
  },
1120
1117
  form: {
1121
1118
  selectAll: "Select all",
@@ -2,15 +2,15 @@
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const jsxRuntime = require("react/jsx-runtime");
4
4
  const React = require("react");
5
- const reactIntl = require("react-intl");
6
5
  const material = require("@mui/material");
7
- const iconsMaterial = require("@mui/icons-material");
8
- const TablePaginationActions = require("../TablePaginationActions-MwqZJoRm.cjs");
9
- const Alert$1 = require("../Alert-C-rl1sPM.cjs");
6
+ const TablePaginationActions = require("../TablePaginationActions-mbbjzV6Y.cjs");
10
7
  const ArrowDown = require("../ArrowDown-DJ0vhbsw.cjs");
11
8
  const OpenDiagonallyRight = require("../OpenDiagonallyRight-CpL4ROwg.cjs");
9
+ const reactIntl = require("react-intl");
10
+ const iconsMaterial = require("@mui/icons-material");
11
+ const Alert$1 = require("../Alert-BzEgeyQJ.cjs");
12
12
  require("cartocolor");
13
- const MenuItem = require("../MenuItem-CyIdh2wX.cjs");
13
+ const MenuItem = require("../MenuItem-C4bG5WHw.cjs");
14
14
  const reactWindow = require("react-window");
15
15
  const DatePicker$1 = require("@mui/x-date-pickers/DatePicker");
16
16
  const xDatePickers = require("@mui/x-date-pickers");
@@ -62,15 +62,10 @@ function _Button({
62
62
  startIcon,
63
63
  endIcon,
64
64
  loadingPosition,
65
- external,
66
- showExternalIcon = true,
67
65
  ...otherProps
68
66
  }, ref) {
69
- const intl = reactIntl.useIntl();
70
- const intlConfig = TablePaginationActions.useImperativeIntl(intl);
71
67
  const defaultIconLoader = /* @__PURE__ */ jsxRuntime.jsx(material.CircularProgress, { size: 18, color: "inherit" });
72
68
  const isDefaultLoading = loading && loadingPosition === void 0;
73
- const isExternalLink = otherProps.href && external;
74
69
  const renderContent = () => {
75
70
  if (isDefaultLoading) {
76
71
  return /* @__PURE__ */ jsxRuntime.jsxs(material.Box, { sx: { position: "relative" }, children: [
@@ -78,14 +73,6 @@ function _Button({
78
73
  /* @__PURE__ */ jsxRuntime.jsx(HiddenText, { children })
79
74
  ] });
80
75
  }
81
- if (isExternalLink) {
82
- return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
83
- children,
84
- /* @__PURE__ */ jsxRuntime.jsx(Alert$1.ScreenReaderOnly, { id: "external-hint", children: `(${intlConfig.formatMessage({
85
- id: "c4r.button.opensInNewTab"
86
- })})` })
87
- ] });
88
- }
89
76
  return children;
90
77
  };
91
78
  const getIconForPosition = (position) => {
@@ -98,11 +85,7 @@ function _Button({
98
85
  }
99
86
  return void 0;
100
87
  }
101
- if (position === "start") {
102
- return startIcon;
103
- } else {
104
- return endIcon || (isExternalLink && showExternalIcon ? /* @__PURE__ */ jsxRuntime.jsx(iconsMaterial.OpenInNewOutlined, {}) : void 0);
105
- }
88
+ return position === "start" ? startIcon : endIcon;
106
89
  };
107
90
  return /* @__PURE__ */ jsxRuntime.jsx(
108
91
  material.Button,
@@ -112,12 +95,7 @@ function _Button({
112
95
  endIcon: getIconForPosition("end"),
113
96
  ...otherProps,
114
97
  role: otherProps.href ? "link" : "button",
115
- ...isExternalLink && {
116
- target: "_blank",
117
- rel: "noopener noreferrer"
118
- },
119
98
  ref,
120
- "aria-describedby": isExternalLink ? "external-hint" : void 0,
121
99
  children: /* @__PURE__ */ jsxRuntime.jsx(TablePaginationActions.Typography, { variant: "inherit", color: "inherit", noWrap: true, component: "span", children: renderContent() })
122
100
  }
123
101
  );
@@ -1237,10 +1215,13 @@ function createAutocompleteGroupByList({
1237
1215
  });
1238
1216
  return result;
1239
1217
  }
1240
- function warnDeprecatedGroupBy(componentName) {
1241
- if (process.env.NODE_ENV !== "production") {
1242
- console.error(
1243
- `${componentName}: The \`groupBy\` prop is deprecated and breaks virtualization. Use \`createAutocompleteGroupByList\` instead:
1218
+ const warnDeprecatedGroupBy = /* @__PURE__ */ (() => {
1219
+ const shownWarnings = /* @__PURE__ */ new Set();
1220
+ return (componentName) => {
1221
+ if (process.env.NODE_ENV !== "production" && !shownWarnings.has(componentName)) {
1222
+ shownWarnings.add(componentName);
1223
+ console.error(
1224
+ `${componentName}: The \`groupBy\` prop is deprecated and breaks virtualization. Use \`createAutocompleteGroupByList\` instead:
1244
1225
 
1245
1226
  \`\`\`
1246
1227
  import { createAutocompleteGroupByList, ${componentName} } from "@carto/meridian-ds/components"
@@ -1253,9 +1234,10 @@ const groupedOptions = createAutocompleteGroupByList({
1253
1234
  <${componentName} options={groupedOptions} />
1254
1235
  \`\`\`
1255
1236
  `
1256
- );
1257
- }
1258
- }
1237
+ );
1238
+ }
1239
+ };
1240
+ })();
1259
1241
  function _Autocomplete({
1260
1242
  disabled,
1261
1243
  loading,
@@ -5089,8 +5071,6 @@ exports.TablePaginationActions = TablePaginationActions.TablePaginationActions;
5089
5071
  exports.Typography = TablePaginationActions.Typography;
5090
5072
  exports.Alert = Alert$1.Alert;
5091
5073
  exports.IconButton = Alert$1.IconButton;
5092
- exports.Link = Alert$1.Link;
5093
- exports.ScreenReaderOnly = Alert$1.ScreenReaderOnly;
5094
5074
  exports.MenuItem = MenuItem.MenuItem;
5095
5075
  exports.AUTOCOMPLETE_GROUP_HEADER_PROPERTY = AUTOCOMPLETE_GROUP_HEADER_PROPERTY;
5096
5076
  exports.AccordionGroup = AccordionGroup;
@@ -1,16 +1,15 @@
1
1
  import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
2
  import React, { forwardRef, useState, useRef, useEffect, useMemo, createElement, Fragment as Fragment$1, useCallback, useImperativeHandle } from "react";
3
- import { useIntl } from "react-intl";
4
3
  import { styled, Box, Button as Button$1, CircularProgress, Popper, Grow, Paper, ClickAwayListener, MenuList as MenuList$1, MenuItem, ButtonGroup as ButtonGroup$1, TextField, InputAdornment, IconButton, Tooltip, Select, FormControl, InputLabel, FormHelperText, ToggleButtonGroup as ToggleButtonGroup$1, Menu as Menu$2, Link, Checkbox, ListItemText, Autocomplete as Autocomplete$1, Divider, ListItemIcon, createFilterOptions, Accordion, AccordionSummary, AccordionDetails, Avatar as Avatar$1, Snackbar as Snackbar$1, Portal, Fade, Slide, alpha, useTheme, Toolbar, AppBar as AppBar$1, Dialog as Dialog$1, DialogTitle as DialogTitle$1, Chip, DialogContent as DialogContent$1, DialogActions as DialogActions$1 } from "@mui/material";
5
- import { OpenInNewOutlined, VisibilityOffOutlined, VisibilityOutlined, Cancel, AddCircleOutlineOutlined, ContentCopyOutlined, CloseOutlined, MenuOutlined, HelpOutline, TodayOutlined, MoreVertOutlined, ErrorOutline, Check } from "@mui/icons-material";
6
- import { u as useImperativeIntl, T as Typography, c as ICON_SIZE_SMALL, f as MENU_ITEM_SIZE_EXTENDED, e as MENU_ITEM_SIZE_DENSE, d as MENU_LIST_MAX_SIZE, M as MENU_ITEM_SIZE_DEFAULT, N as NOTIFICATION_DURATION_IN_MS, A as APPBAR_SIZE } from "../TablePaginationActions-BWer8cmX.js";
7
- import { a } from "../TablePaginationActions-BWer8cmX.js";
8
- import { S as ScreenReaderOnly, I as IconButton$1, A as Alert$1 } from "../Alert-DmbdMf46.js";
9
- import { L } from "../Alert-DmbdMf46.js";
4
+ import { T as Typography, c as ICON_SIZE_SMALL, u as useImperativeIntl, f as MENU_ITEM_SIZE_EXTENDED, e as MENU_ITEM_SIZE_DENSE, d as MENU_LIST_MAX_SIZE, M as MENU_ITEM_SIZE_DEFAULT, N as NOTIFICATION_DURATION_IN_MS, A as APPBAR_SIZE } from "../TablePaginationActions-Cz5Hbi6N.js";
5
+ import { a } from "../TablePaginationActions-Cz5Hbi6N.js";
10
6
  import { A as ArrowDown } from "../ArrowDown-d6bxUL0F.js";
11
7
  import { A as ArrowUp, O as OpenDiagonallyRight, C as CloseDiagonallyRight } from "../OpenDiagonallyRight-CGdCEXlF.js";
8
+ import { useIntl } from "react-intl";
9
+ import { VisibilityOffOutlined, VisibilityOutlined, Cancel, AddCircleOutlineOutlined, ContentCopyOutlined, CloseOutlined, MenuOutlined, HelpOutline, TodayOutlined, MoreVertOutlined, ErrorOutline, Check } from "@mui/icons-material";
10
+ import { I as IconButton$1, A as Alert$1 } from "../Alert-CnaTtNJd.js";
12
11
  import "cartocolor";
13
- import { M as MenuItem$1 } from "../MenuItem-C8x-GasJ.js";
12
+ import { M as MenuItem$1 } from "../MenuItem-C1DvWMry.js";
14
13
  import { FixedSizeList } from "react-window";
15
14
  import { DatePicker as DatePicker$1 } from "@mui/x-date-pickers/DatePicker";
16
15
  import { PickersDay as PickersDay$1 } from "@mui/x-date-pickers";
@@ -62,15 +61,10 @@ function _Button({
62
61
  startIcon,
63
62
  endIcon,
64
63
  loadingPosition,
65
- external,
66
- showExternalIcon = true,
67
64
  ...otherProps
68
65
  }, ref) {
69
- const intl = useIntl();
70
- const intlConfig = useImperativeIntl(intl);
71
66
  const defaultIconLoader = /* @__PURE__ */ jsx(CircularProgress, { size: 18, color: "inherit" });
72
67
  const isDefaultLoading = loading && loadingPosition === void 0;
73
- const isExternalLink = otherProps.href && external;
74
68
  const renderContent = () => {
75
69
  if (isDefaultLoading) {
76
70
  return /* @__PURE__ */ jsxs(Box, { sx: { position: "relative" }, children: [
@@ -78,14 +72,6 @@ function _Button({
78
72
  /* @__PURE__ */ jsx(HiddenText, { children })
79
73
  ] });
80
74
  }
81
- if (isExternalLink) {
82
- return /* @__PURE__ */ jsxs(Fragment, { children: [
83
- children,
84
- /* @__PURE__ */ jsx(ScreenReaderOnly, { id: "external-hint", children: `(${intlConfig.formatMessage({
85
- id: "c4r.button.opensInNewTab"
86
- })})` })
87
- ] });
88
- }
89
75
  return children;
90
76
  };
91
77
  const getIconForPosition = (position) => {
@@ -98,11 +84,7 @@ function _Button({
98
84
  }
99
85
  return void 0;
100
86
  }
101
- if (position === "start") {
102
- return startIcon;
103
- } else {
104
- return endIcon || (isExternalLink && showExternalIcon ? /* @__PURE__ */ jsx(OpenInNewOutlined, {}) : void 0);
105
- }
87
+ return position === "start" ? startIcon : endIcon;
106
88
  };
107
89
  return /* @__PURE__ */ jsx(
108
90
  Button$1,
@@ -112,12 +94,7 @@ function _Button({
112
94
  endIcon: getIconForPosition("end"),
113
95
  ...otherProps,
114
96
  role: otherProps.href ? "link" : "button",
115
- ...isExternalLink && {
116
- target: "_blank",
117
- rel: "noopener noreferrer"
118
- },
119
97
  ref,
120
- "aria-describedby": isExternalLink ? "external-hint" : void 0,
121
98
  children: /* @__PURE__ */ jsx(Typography, { variant: "inherit", color: "inherit", noWrap: true, component: "span", children: renderContent() })
122
99
  }
123
100
  );
@@ -1237,10 +1214,13 @@ function createAutocompleteGroupByList({
1237
1214
  });
1238
1215
  return result;
1239
1216
  }
1240
- function warnDeprecatedGroupBy(componentName) {
1241
- if (process.env.NODE_ENV !== "production") {
1242
- console.error(
1243
- `${componentName}: The \`groupBy\` prop is deprecated and breaks virtualization. Use \`createAutocompleteGroupByList\` instead:
1217
+ const warnDeprecatedGroupBy = /* @__PURE__ */ (() => {
1218
+ const shownWarnings = /* @__PURE__ */ new Set();
1219
+ return (componentName) => {
1220
+ if (process.env.NODE_ENV !== "production" && !shownWarnings.has(componentName)) {
1221
+ shownWarnings.add(componentName);
1222
+ console.error(
1223
+ `${componentName}: The \`groupBy\` prop is deprecated and breaks virtualization. Use \`createAutocompleteGroupByList\` instead:
1244
1224
 
1245
1225
  \`\`\`
1246
1226
  import { createAutocompleteGroupByList, ${componentName} } from "@carto/meridian-ds/components"
@@ -1253,9 +1233,10 @@ const groupedOptions = createAutocompleteGroupByList({
1253
1233
  <${componentName} options={groupedOptions} />
1254
1234
  \`\`\`
1255
1235
  `
1256
- );
1257
- }
1258
- }
1236
+ );
1237
+ }
1238
+ };
1239
+ })();
1259
1240
  function _Autocomplete({
1260
1241
  disabled,
1261
1242
  loading,
@@ -5120,7 +5101,6 @@ export {
5120
5101
  DialogStepper,
5121
5102
  IconButton$1 as IconButton,
5122
5103
  LabelWithIndicator,
5123
- L as Link,
5124
5104
  Menu$1 as Menu,
5125
5105
  MenuItem$1 as MenuItem,
5126
5106
  MenuItemFilter,
@@ -5128,7 +5108,6 @@ export {
5128
5108
  MultipleAutocomplete,
5129
5109
  MultipleSelectField,
5130
5110
  PasswordField,
5131
- ScreenReaderOnly,
5132
5111
  SelectField,
5133
5112
  Snackbar,
5134
5113
  SplitButton,
@@ -3,11 +3,11 @@ var _a, _b, _c, _d, _e, _f, _g, _h;
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
4
4
  const material = require("@mui/material");
5
5
  const jsxRuntime = require("react/jsx-runtime");
6
- const TablePaginationActions = require("../TablePaginationActions-MwqZJoRm.cjs");
6
+ const TablePaginationActions = require("../TablePaginationActions-mbbjzV6Y.cjs");
7
7
  const iconsMaterial = require("@mui/icons-material");
8
8
  const ArrowDown = require("../ArrowDown-DJ0vhbsw.cjs");
9
9
  const xDatePickers = require("@mui/x-date-pickers");
10
- const MenuItem = require("../MenuItem-CyIdh2wX.cjs");
10
+ const MenuItem = require("../MenuItem-C4bG5WHw.cjs");
11
11
  const paletteUtils = require("../paletteUtils-B9ybmwiI.cjs");
12
12
  const tooltipArrowSize = 1;
13
13
  const tooltipSeparation = 0.5;
@@ -1,12 +1,12 @@
1
1
  var _a, _b, _c, _d, _e, _f, _g, _h;
2
2
  import { alpha, Tooltip, responsiveFontSizes, createTheme } from "@mui/material";
3
3
  import { jsxs, Fragment, jsx } from "react/jsx-runtime";
4
- import { T as Typography, a as TablePaginationActions, I as ICON_SIZE_LARGE, b as ICON_SIZE_MEDIUM, c as ICON_SIZE_SMALL, g as getSpacing, M as MENU_ITEM_SIZE_DEFAULT, d as MENU_LIST_MAX_SIZE, e as MENU_ITEM_SIZE_DENSE, A as APPBAR_SIZE, B as BREAKPOINTS, S as SPACING } from "../TablePaginationActions-BWer8cmX.js";
5
- import { f, N } from "../TablePaginationActions-BWer8cmX.js";
4
+ import { T as Typography, a as TablePaginationActions, I as ICON_SIZE_LARGE, b as ICON_SIZE_MEDIUM, c as ICON_SIZE_SMALL, g as getSpacing, M as MENU_ITEM_SIZE_DEFAULT, d as MENU_LIST_MAX_SIZE, e as MENU_ITEM_SIZE_DENSE, A as APPBAR_SIZE, B as BREAKPOINTS, S as SPACING } from "../TablePaginationActions-Cz5Hbi6N.js";
5
+ import { f, N } from "../TablePaginationActions-Cz5Hbi6N.js";
6
6
  import { Cancel, EventOutlined, ChevronRightOutlined, ChevronLeftOutlined, ExpandMoreOutlined, CheckCircleOutlined } from "@mui/icons-material";
7
7
  import { A as ArrowDown } from "../ArrowDown-d6bxUL0F.js";
8
8
  import { renderDigitalClockTimeView } from "@mui/x-date-pickers";
9
- import { M as MenuItem } from "../MenuItem-C8x-GasJ.js";
9
+ import { M as MenuItem } from "../MenuItem-C1DvWMry.js";
10
10
  import { c as commonPalette } from "../paletteUtils-BHqJlHm9.js";
11
11
  import { g } from "../paletteUtils-BHqJlHm9.js";
12
12
  const tooltipArrowSize = 1;
@@ -9,16 +9,6 @@ export type ButtonProps = MUIButtonProps<React.ElementType, {
9
9
  * - 'end': Shows spinner at the end position, replacing the endIcon
10
10
  */
11
11
  loadingPosition?: 'start' | 'end';
12
- /**
13
- * Whether the button is external. If true, the button will open in a new tab.
14
- * Needs to have a href prop to be considered external.
15
- */
16
- external?: boolean;
17
- /**
18
- * Whether to show the external icon when external is true. Defaults to true.
19
- * Needs to have a href prop to be considered external.
20
- */
21
- showExternalIcon?: boolean;
22
12
  }>;
23
13
  declare const Button: import('react').ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;
24
14
  export default Button;
@@ -1 +1 @@
1
- {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Button.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,WAAW,IAAI,cAAc,EAK9B,MAAM,eAAe,CAAA;AAuBtB,MAAM,MAAM,WAAW,GAAG,cAAc,CACtC,KAAK,CAAC,WAAW,EACjB;IACE,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;OAKG;IACH,eAAe,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;IACjC;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B,CACF,CAAA;AAmGD,QAAA,MAAM,MAAM,wHAAsB,CAAA;AAClC,eAAe,MAAM,CAAA"}
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Button.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,WAAW,IAAI,cAAc,EAK9B,MAAM,eAAe,CAAA;AAmBtB,MAAM,MAAM,WAAW,GAAG,cAAc,CACtC,KAAK,CAAC,WAAW,EACjB;IACE,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;OAKG;IACH,eAAe,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;CAClC,CACF,CAAA;AAoED,QAAA,MAAM,MAAM,wHAAsB,CAAA;AAClC,eAAe,MAAM,CAAA"}
@@ -6,8 +6,6 @@ export { default as SelectField } from './SelectField';
6
6
  export { default as ToggleButtonGroup } from './ToggleButtonGroup';
7
7
  export { default as Typography } from './Typography';
8
8
  export { default as IconButton } from './IconButton';
9
- export { default as Link } from './Link';
10
- export { default as ScreenReaderOnly } from './ScreenReaderOnly';
11
9
  export type * from './Button';
12
10
  export type * from './SplitButton';
13
11
  export type * from './LabelWithIndicator';
@@ -16,5 +14,4 @@ export type * from './SelectField';
16
14
  export type * from './ToggleButtonGroup';
17
15
  export type * from './Typography';
18
16
  export type * from './IconButton';
19
- export type * from './Link';
20
17
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC1D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AACxC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAEhE,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,sBAAsB,CAAA;AACzC,mBAAmB,iBAAiB,CAAA;AACpC,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,QAAQ,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC1D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AAEpD,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,sBAAsB,CAAA;AACzC,mBAAmB,iBAAiB,CAAA;AACpC,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,cAAc,CAAA"}
@@ -135,5 +135,5 @@ export declare function createAutocompleteGroupByList<T>({ options, groupBy, ext
135
135
  * Shows a runtime warning for deprecated groupBy prop usage
136
136
  * @param componentName - Name of the component (e.g., 'Autocomplete', 'MultipleAutocomplete')
137
137
  */
138
- export declare function warnDeprecatedGroupBy(componentName: string): void;
138
+ export declare const warnDeprecatedGroupBy: (componentName: string) => void;
139
139
  //# sourceMappingURL=utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/Autocomplete/utils.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,gCAAgC,EAAE,MAAM,SAAS,CAAA;AAE1D;;GAEG;AACH,eAAO,MAAM,kCAAkC,oBAAoB,CAAA;AAEnE;;;;GAIG;AACH,wBAAgB,6BAA6B,CAC3C,MAAM,EAAE,OAAO,GACd,MAAM,IAAI,gCAAgC,CAM5C;AAGD,eAAO,MAAM,qBAAqB,GAAI,KAAK,UAAW,KAAK,KAAG,MAI7D,CAAA;AAGD,eAAO,MAAM,wBAAwB,GAAI,KAAK,UACpC,KAAK,YACH,OAAO,KAChB,MAAM,CAAC,MAAM,EAAE,OAAO,CAIxB,CAAA;AAGD,eAAO,MAAM,uBAAuB,SAAU,MAAM,4CAEnD,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,wBAAgB,uBAAuB,CAAC,EACtC,aAAa,EACb,OAAY,EACZ,IAAc,EACd,cAAsC,GACvC,EAAE;IACD,aAAa,EAAE,CAAC,MAAM,EAAE;QACtB,aAAa,EAAE,MAAM,CAAA;QACrB,UAAU,EAAE,MAAM,CAAA;QAClB,aAAa,EAAE,SAAS,OAAO,EAAE,CAAA;QACjC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAA;QAC5B,cAAc,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAA;KAC5C,KAAK,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,SAAS,OAAO,EAAE,CAAA;IAC5B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAA;IACzB,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAA;CAC7C,WACmC,SAAS,OAAO,EAAE,oDAmCrD;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,wBAAgB,sBAAsB,CAAC,EACrC,WAAW,EACX,OAAO,EACP,kBAAyB,GAC1B,EAAE;IACD,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,MAAM,CAAA;IACf,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B,mEAMI;IACD,aAAa,EAAE,MAAM,CAAA;IACrB,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa,EAAE,SAAS,OAAO,EAAE,CAAA;IACjC,cAAc,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAA;CAC5C,YASF;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,wBAAgB,6BAA6B,CAAC,CAAC,EAAE,EAC/C,OAAO,EACP,OAAO,EACP,QAAQ,GACT,EAAE;IACD,OAAO,EAAE,CAAC,EAAE,CAAA;IACZ,OAAO,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,MAAM,CAAA;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,GAAG,CAAC,CAAC,GAAG,gCAAgC,CAAC,EAAE,CA6B3C;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI,CAkBjE"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/components/molecules/Autocomplete/utils.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,gCAAgC,EAAE,MAAM,SAAS,CAAA;AAE1D;;GAEG;AACH,eAAO,MAAM,kCAAkC,oBAAoB,CAAA;AAEnE;;;;GAIG;AACH,wBAAgB,6BAA6B,CAC3C,MAAM,EAAE,OAAO,GACd,MAAM,IAAI,gCAAgC,CAM5C;AAGD,eAAO,MAAM,qBAAqB,GAAI,KAAK,UAAW,KAAK,KAAG,MAI7D,CAAA;AAGD,eAAO,MAAM,wBAAwB,GAAI,KAAK,UACpC,KAAK,YACH,OAAO,KAChB,MAAM,CAAC,MAAM,EAAE,OAAO,CAIxB,CAAA;AAGD,eAAO,MAAM,uBAAuB,SAAU,MAAM,4CAEnD,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,wBAAgB,uBAAuB,CAAC,EACtC,aAAa,EACb,OAAY,EACZ,IAAc,EACd,cAAsC,GACvC,EAAE;IACD,aAAa,EAAE,CAAC,MAAM,EAAE;QACtB,aAAa,EAAE,MAAM,CAAA;QACrB,UAAU,EAAE,MAAM,CAAA;QAClB,aAAa,EAAE,SAAS,OAAO,EAAE,CAAA;QACjC,QAAQ,EAAE,SAAS,OAAO,EAAE,CAAA;QAC5B,cAAc,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAA;KAC5C,KAAK,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,SAAS,OAAO,EAAE,CAAA;IAC5B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAA;IACzB,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAA;CAC7C,WACmC,SAAS,OAAO,EAAE,oDAmCrD;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,wBAAgB,sBAAsB,CAAC,EACrC,WAAW,EACX,OAAO,EACP,kBAAyB,GAC1B,EAAE;IACD,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,MAAM,CAAA;IACf,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B,mEAMI;IACD,aAAa,EAAE,MAAM,CAAA;IACrB,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa,EAAE,SAAS,OAAO,EAAE,CAAA;IACjC,cAAc,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAA;CAC5C,YASF;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,wBAAgB,6BAA6B,CAAC,CAAC,EAAE,EAC/C,OAAO,EACP,OAAO,EACP,QAAQ,GACT,EAAE;IACD,OAAO,EAAE,CAAC,EAAE,CAAA;IACZ,OAAO,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,MAAM,CAAA;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,GAAG,CAAC,CAAC,GAAG,gCAAgC,CAAC,EAAE,CA6B3C;AAED;;;GAGG;AACH,eAAO,MAAM,qBAAqB,kBAGT,MAAM,KAAG,IAuB9B,CAAA"}
@@ -10,7 +10,6 @@ declare const _default: {
10
10
  save: string;
11
11
  add: string;
12
12
  showOptions: string;
13
- opensInNewTab: string;
14
13
  };
15
14
  form: {
16
15
  selectAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/localization/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAuJ0B"}
1
+ {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/localization/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAsJ0B"}
@@ -10,7 +10,6 @@ declare const _default: {
10
10
  save: string;
11
11
  add: string;
12
12
  showOptions: string;
13
- opensInNewTab: string;
14
13
  };
15
14
  form: {
16
15
  selectAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/localization/es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAyJ0B"}
1
+ {"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/localization/es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAwJ0B"}
@@ -10,7 +10,6 @@ declare const _default: {
10
10
  save: string;
11
11
  add: string;
12
12
  showOptions: string;
13
- opensInNewTab: string;
14
13
  };
15
14
  form: {
16
15
  selectAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../../src/localization/id.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAuJ0B"}
1
+ {"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../../src/localization/id.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAsJ0B"}
@@ -11,7 +11,6 @@ export declare const messages: {
11
11
  save: string;
12
12
  add: string;
13
13
  showOptions: string;
14
- opensInNewTab: string;
15
14
  };
16
15
  form: {
17
16
  selectAll: string;
@@ -160,7 +159,6 @@ export declare const messages: {
160
159
  save: string;
161
160
  add: string;
162
161
  showOptions: string;
163
- opensInNewTab: string;
164
162
  };
165
163
  form: {
166
164
  selectAll: string;
@@ -307,7 +305,6 @@ export declare const messages: {
307
305
  save: string;
308
306
  add: string;
309
307
  showOptions: string;
310
- opensInNewTab: string;
311
308
  };
312
309
  form: {
313
310
  selectAll: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/localization/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/localization/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"ComparativeCategoryWidgetUI.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.tsx"],"names":[],"mappings":"AAaA,OAAO,EAAE,UAAU,EAAwB,MAAM,wBAAwB,CAAA;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAA;AAGtE,OAAO,EAAE,YAAY,EAAE,MAAM,6CAA6C,CAAA;AAW1E,MAAM,MAAM,gCAAgC,GAAG;IAC7C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAA;IAChB,IAAI,EAAE,YAAY,EAAE,EAAE,CAAA;IACtB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,UAAU,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,gBAAgB,CAAC,EAAE,mBAAmB,CAAC,SAAS,CAAC,CAAA;IACjD,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,0BAA0B,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC3D,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAA;IAC9C,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAA;IACrD,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,2BAA2B,CAAC,EAClD,KAA+B,EAC/B,IAAsC,EACtC,MAAgC,EAChC,MAAgC,EAChC,QAAY,EACZ,KAAwB,EACxB,SAAgB,EAChB,gBAAgB,EAChB,UAAiB,EACjB,UAAiB,EACjB,kBAA4C,EAC5C,0BAAqC,EACrC,SAAyD,EACzD,gBAAgE,EAChE,OAAc,EACd,SAAiB,GAClB,EAAE,gCAAgC,2CAwSlC"}
1
+ {"version":3,"file":"ComparativeCategoryWidgetUI.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.tsx"],"names":[],"mappings":"AAoBA,OAAO,EAAE,UAAU,EAAwB,MAAM,wBAAwB,CAAA;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAA;AAGtE,OAAO,EAAE,YAAY,EAAE,MAAM,6CAA6C,CAAA;AAU1E,MAAM,MAAM,gCAAgC,GAAG;IAC7C,KAAK,CAAC,EAAE,MAAM,EAAE,CAAA;IAChB,IAAI,EAAE,YAAY,EAAE,EAAE,CAAA;IACtB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,UAAU,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,gBAAgB,CAAC,EAAE,mBAAmB,CAAC,SAAS,CAAC,CAAA;IACjD,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,0BAA0B,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC3D,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAA;IAC9C,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAA;IACrD,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,2BAA2B,CAAC,EAClD,KAA+B,EAC/B,IAAsC,EACtC,MAAgC,EAChC,MAAgC,EAChC,QAAY,EACZ,KAAwB,EACxB,SAAgB,EAChB,gBAAgB,EAChB,UAAiB,EACjB,UAAiB,EACjB,kBAA4C,EAC5C,0BAAqC,EACrC,SAAyD,EACzD,gBAAgE,EAChE,OAAc,EACd,SAAiB,GAClB,EAAE,gCAAgC,2CAwSlC"}
@@ -4,12 +4,12 @@ const jsxRuntime = require("react/jsx-runtime");
4
4
  const React = require("react");
5
5
  const material = require("@mui/material");
6
6
  const reactIntl = require("react-intl");
7
- const TablePaginationActions = require("../TablePaginationActions-MwqZJoRm.cjs");
7
+ const TablePaginationActions = require("../TablePaginationActions-mbbjzV6Y.cjs");
8
8
  const _ReactEcharts = require("echarts-for-react");
9
9
  const reactWindow = require("react-window");
10
10
  const SwatchSquare = require("../SwatchSquare-B8PIY3Rd.cjs");
11
11
  const iconsMaterial = require("@mui/icons-material");
12
- const Alert = require("../Alert-C-rl1sPM.cjs");
12
+ const Alert = require("../Alert-BzEgeyQJ.cjs");
13
13
  const paletteUtils = require("../paletteUtils-B9ybmwiI.cjs");
14
14
  function detectTouchscreen() {
15
15
  let result = false;
@@ -5269,7 +5269,7 @@ function ComparativeCategoryWidgetUI({
5269
5269
  { id: "c4r.widgets.category.selectedItems" },
5270
5270
  { items: selectedCategories.length }
5271
5271
  ) : intlConfig.formatMessage({ id: "c4r.widgets.category.all" }) }),
5272
- /* @__PURE__ */ jsxRuntime.jsx(TablePaginationActions.Typography, { variant: "caption", component: "div", children: searchActive ? /* @__PURE__ */ jsxRuntime.jsx(Alert.Link, { onClick: applyTempSelection, children: intlConfig.formatMessage({ id: "c4r.widgets.category.apply" }) }) : blockingActive ? /* @__PURE__ */ jsxRuntime.jsx(Alert.Link, { onClick: disableBlocking, children: intlConfig.formatMessage({
5272
+ /* @__PURE__ */ jsxRuntime.jsx(TablePaginationActions.Typography, { variant: "caption", component: "div", children: searchActive ? /* @__PURE__ */ jsxRuntime.jsx(material.Link, { onClick: applyTempSelection, children: intlConfig.formatMessage({ id: "c4r.widgets.category.apply" }) }) : blockingActive ? /* @__PURE__ */ jsxRuntime.jsx(material.Link, { onClick: disableBlocking, children: intlConfig.formatMessage({
5273
5273
  id: "c4r.widgets.category.unlock"
5274
5274
  }) }) : selectedCategories.length ? /* @__PURE__ */ jsxRuntime.jsxs(
5275
5275
  material.Box,
@@ -5280,11 +5280,11 @@ function ComparativeCategoryWidgetUI({
5280
5280
  gap: theme.spacing(1)
5281
5281
  },
5282
5282
  children: [
5283
- /* @__PURE__ */ jsxRuntime.jsx(Alert.Link, { onClick: enableBlocking, children: intlConfig.formatMessage({
5283
+ /* @__PURE__ */ jsxRuntime.jsx(material.Link, { onClick: enableBlocking, children: intlConfig.formatMessage({
5284
5284
  id: "c4r.widgets.category.lock"
5285
5285
  }) }),
5286
5286
  /* @__PURE__ */ jsxRuntime.jsx(material.Divider, { orientation: "vertical", flexItem: true }),
5287
- /* @__PURE__ */ jsxRuntime.jsx(Alert.Link, { onClick: clearSelection, children: intlConfig.formatMessage({
5287
+ /* @__PURE__ */ jsxRuntime.jsx(material.Link, { onClick: clearSelection, children: intlConfig.formatMessage({
5288
5288
  id: "c4r.widgets.category.clear"
5289
5289
  }) })
5290
5290
  ]
@@ -2,12 +2,12 @@ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
2
  import React, { useMemo, useState, useEffect, useCallback, useRef, createContext, useContext, useLayoutEffect, createRef } from "react";
3
3
  import { useTheme, styled, Box, Skeleton, Grid, Link, darken, Button, Divider, TextField, InputAdornment, Checkbox, Tooltip, debounce, Slider, TableCell, Table, TableHead, TableRow, TableBody, TableContainer, TableSortLabel, TablePagination, IconButton as IconButton$1, Menu, MenuItem, SvgIcon, lighten, Typography as Typography$1, ClickAwayListener, ToggleButton, capitalize, ListItem, Chip, List, Paper, Popover, Select, ListItemText, Collapse, Drawer, Icon, LinearProgress } from "@mui/material";
4
4
  import { useIntl } from "react-intl";
5
- import { h as getDefaultExportFromCjs, u as useImperativeIntl, T as Typography, S as SPACING, B as BREAKPOINTS, a as TablePaginationActions, b as ICON_SIZE_MEDIUM } from "../TablePaginationActions-BWer8cmX.js";
5
+ import { h as getDefaultExportFromCjs, u as useImperativeIntl, T as Typography, S as SPACING, B as BREAKPOINTS, a as TablePaginationActions, b as ICON_SIZE_MEDIUM } from "../TablePaginationActions-Cz5Hbi6N.js";
6
6
  import _ReactEcharts from "echarts-for-react";
7
7
  import { FixedSizeList } from "react-window";
8
8
  import { S as Search, a as SwatchSquare } from "../SwatchSquare-CaaLsjAC.js";
9
9
  import { ChevronLeft, ChevronRight, KeyboardArrowDown, ErrorOutline, Cancel, VisibilityOutlined, VisibilityOffOutlined, ExpandLess, ExpandMore, Close, LayersOutlined, MoreVert } from "@mui/icons-material";
10
- import { I as IconButton, L as Link$1, A as Alert } from "../Alert-DmbdMf46.js";
10
+ import { I as IconButton, A as Alert } from "../Alert-CnaTtNJd.js";
11
11
  import { a as getColorByCategory, c as commonPalette, b as getPalette } from "../paletteUtils-BHqJlHm9.js";
12
12
  function detectTouchscreen() {
13
13
  let result = false;
@@ -5267,7 +5267,7 @@ function ComparativeCategoryWidgetUI({
5267
5267
  { id: "c4r.widgets.category.selectedItems" },
5268
5268
  { items: selectedCategories.length }
5269
5269
  ) : intlConfig.formatMessage({ id: "c4r.widgets.category.all" }) }),
5270
- /* @__PURE__ */ jsx(Typography, { variant: "caption", component: "div", children: searchActive ? /* @__PURE__ */ jsx(Link$1, { onClick: applyTempSelection, children: intlConfig.formatMessage({ id: "c4r.widgets.category.apply" }) }) : blockingActive ? /* @__PURE__ */ jsx(Link$1, { onClick: disableBlocking, children: intlConfig.formatMessage({
5270
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", component: "div", children: searchActive ? /* @__PURE__ */ jsx(Link, { onClick: applyTempSelection, children: intlConfig.formatMessage({ id: "c4r.widgets.category.apply" }) }) : blockingActive ? /* @__PURE__ */ jsx(Link, { onClick: disableBlocking, children: intlConfig.formatMessage({
5271
5271
  id: "c4r.widgets.category.unlock"
5272
5272
  }) }) : selectedCategories.length ? /* @__PURE__ */ jsxs(
5273
5273
  Box,
@@ -5278,11 +5278,11 @@ function ComparativeCategoryWidgetUI({
5278
5278
  gap: theme.spacing(1)
5279
5279
  },
5280
5280
  children: [
5281
- /* @__PURE__ */ jsx(Link$1, { onClick: enableBlocking, children: intlConfig.formatMessage({
5281
+ /* @__PURE__ */ jsx(Link, { onClick: enableBlocking, children: intlConfig.formatMessage({
5282
5282
  id: "c4r.widgets.category.lock"
5283
5283
  }) }),
5284
5284
  /* @__PURE__ */ jsx(Divider, { orientation: "vertical", flexItem: true }),
5285
- /* @__PURE__ */ jsx(Link$1, { onClick: clearSelection, children: intlConfig.formatMessage({
5285
+ /* @__PURE__ */ jsx(Link, { onClick: clearSelection, children: intlConfig.formatMessage({
5286
5286
  id: "c4r.widgets.category.clear"
5287
5287
  }) })
5288
5288
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carto/meridian-ds",
3
- "version": "2.0.0-alpha-external-link.7",
3
+ "version": "2.0.0-alpha-autocomplete-console.1",
4
4
  "description": "CARTO Meridian Design System",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -1,16 +0,0 @@
1
- import { LinkProps as MUILinkProps } from '@mui/material';
2
- export type LinkProps = MUILinkProps<React.ElementType, {
3
- endIcon?: React.ReactNode;
4
- startIcon?: React.ReactNode;
5
- /**
6
- * Whether the link is external. If true, the link will open in a new tab.
7
- */
8
- external?: boolean;
9
- /**
10
- * Whether to show the external icon when external is true. Defaults to true.
11
- */
12
- showExternalIcon?: boolean;
13
- }>;
14
- declare const Link: import('react').ForwardRefExoticComponent<Omit<LinkProps, "ref"> & import('react').RefAttributes<HTMLAnchorElement>>;
15
- export default Link;
16
- //# sourceMappingURL=Link.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Link.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Link.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,SAAS,IAAI,YAAY,EAG1B,MAAM,eAAe,CAAA;AAqDtB,MAAM,MAAM,SAAS,GAAG,YAAY,CAClC,KAAK,CAAC,WAAW,EACjB;IACE,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B,CACF,CAAA;AA0DD,QAAA,MAAM,IAAI,sHAAoB,CAAA;AAC9B,eAAe,IAAI,CAAA"}
@@ -1,3 +0,0 @@
1
- declare const ScreenReaderOnly: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
2
- export default ScreenReaderOnly;
3
- //# sourceMappingURL=ScreenReaderOnly.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ScreenReaderOnly.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/ScreenReaderOnly.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,gBAAgB,+NAUnB,CAAA;AAEH,eAAe,gBAAgB,CAAA"}