@carto/meridian-ds 2.5.5-alpha-translations.1 → 2.6.0
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.
- package/CHANGELOG.md +5 -2
- package/dist/{Alert-CRVceJ9N.js → Alert-DHd9hCGz.js} +1 -1
- package/dist/{Alert-Dyw7Z9wJ.cjs → Alert-DOeOwxOe.cjs} +7 -7
- package/dist/{MenuItem-o51jnNjL.cjs → MenuItem-CYJN2OVU.cjs} +6 -6
- package/dist/{MenuItem-h41wtQTz.js → MenuItem-MUmADf3e.js} +1 -1
- package/dist/components/index.cjs +222 -76
- package/dist/components/index.js +161 -15
- package/dist/{TablePaginationActions-CMC_ZxDN.cjs → css-utils-CCi3p7os.cjs} +6 -0
- package/dist/{TablePaginationActions-DIFPc_wQ.js → css-utils-WejOmkiI.js} +10 -4
- package/dist/theme/index.cjs +108 -114
- package/dist/theme/index.js +7 -13
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.d.ts +117 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.d.ts.map +1 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.stories.d.ts +66 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.stories.d.ts.map +1 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.test.d.ts +2 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.test.d.ts.map +1 -0
- package/dist/types/components/EllipsisWithTooltip/index.d.ts +3 -0
- package/dist/types/components/EllipsisWithTooltip/index.d.ts.map +1 -0
- package/dist/types/components/Link/Link.stories.d.ts +0 -7
- package/dist/types/components/Link/Link.stories.d.ts.map +1 -1
- package/dist/types/components/Tag/Tag.d.ts +176 -4
- package/dist/types/components/Tag/Tag.d.ts.map +1 -1
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/theme/components/forms.d.ts.map +1 -1
- package/dist/types/utils/css-utils.d.ts +14 -0
- package/dist/types/utils/css-utils.d.ts.map +1 -0
- package/dist/types/widgets/TableWidgetUI/TableWidgetUI.d.ts.map +1 -1
- package/dist/types/widgets/WrapperWidgetUI/WrapperWidgetUI.d.ts.map +1 -1
- package/dist/widgets/index.cjs +114 -119
- package/dist/widgets/index.js +4 -9
- package/package.json +1 -1
package/dist/widgets/index.js
CHANGED
|
@@ -2,11 +2,11 @@ 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, Icon, Collapse, LinearProgress, Typography as Typography$1, lighten, ClickAwayListener, ToggleButton, capitalize, ListItem, Chip, List, Paper, Popover, Select, ListItemText, Drawer } from "@mui/material";
|
|
4
4
|
import { useIntl } from "react-intl";
|
|
5
|
-
import {
|
|
5
|
+
import { j as getDefaultExportFromCjs, u as useImperativeIntl, T as Typography, S as SPACING, i as IconButton, B as BREAKPOINTS, a as TablePaginationActions, e as ellipsisStyles, b as ICON_SIZE_MEDIUM } from "../css-utils-WejOmkiI.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
|
-
import { A as Alert, L as Link$1 } from "../Alert-
|
|
9
|
+
import { A as Alert, L as Link$1 } from "../Alert-DHd9hCGz.js";
|
|
10
10
|
import { ChevronLeft, ChevronRight, ExpandLess, ExpandMore, MoreVert, KeyboardArrowDown, ErrorOutline, Cancel, VisibilityOutlined, VisibilityOffOutlined, Close, LayersOutlined } from "@mui/icons-material";
|
|
11
11
|
import { a as getColorByCategory, c as commonPalette, b as getPalette } from "../palette-utils-BHqJlHm9.js";
|
|
12
12
|
function detectTouchscreen() {
|
|
@@ -2967,9 +2967,7 @@ const TableCellStyled = styled(TableCell)(() => ({
|
|
|
2967
2967
|
overflow: "hidden",
|
|
2968
2968
|
"& p": {
|
|
2969
2969
|
maxWidth: "100%",
|
|
2970
|
-
|
|
2971
|
-
overflow: "hidden",
|
|
2972
|
-
textOverflow: "ellipsis"
|
|
2970
|
+
...ellipsisStyles
|
|
2973
2971
|
}
|
|
2974
2972
|
}));
|
|
2975
2973
|
const StyledTablePagination = styled(TablePagination)(({ theme }) => ({
|
|
@@ -4917,10 +4915,7 @@ const Text = styled(Typography$1, {
|
|
|
4917
4915
|
WebkitLineClamp: 2,
|
|
4918
4916
|
WebkitBoxOrient: "vertical"
|
|
4919
4917
|
},
|
|
4920
|
-
...!expanded &&
|
|
4921
|
-
whiteSpace: "nowrap",
|
|
4922
|
-
textOverflow: "ellipsis"
|
|
4923
|
-
}
|
|
4918
|
+
...!expanded && ellipsisStyles
|
|
4924
4919
|
}));
|
|
4925
4920
|
const HeaderItems = styled(Grid)(({ theme }) => ({
|
|
4926
4921
|
display: "flex",
|