@carto/meridian-ds 1.4.8-alpha-external-link.5 → 1.5.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 +4 -4
- package/dist/{Alert-CmDToT57.cjs → Alert-BiOR9aar.cjs} +1 -72
- package/dist/{Alert-2L0Hy8lT.js → Alert-CywtIMOj.js} +3 -74
- package/dist/{TablePaginationActions-CAmwcyTy.cjs → TablePaginationActions-CFGXm44W.cjs} +3 -6
- package/dist/{TablePaginationActions-b5wP_uRE.js → TablePaginationActions-KpTvhN4Y.js} +3 -6
- package/dist/components/index.cjs +5 -22
- package/dist/components/index.js +6 -24
- package/dist/theme/index.cjs +1 -1
- package/dist/theme/index.js +2 -2
- package/dist/types/components/atoms/Button.d.ts +0 -11
- package/dist/types/components/atoms/Button.d.ts.map +1 -1
- package/dist/types/components/atoms/index.d.ts +0 -2
- package/dist/types/components/atoms/index.d.ts.map +1 -1
- package/dist/types/localization/en.d.ts +0 -1
- package/dist/types/localization/en.d.ts.map +1 -1
- package/dist/types/localization/es.d.ts +0 -1
- package/dist/types/localization/es.d.ts.map +1 -1
- package/dist/types/localization/id.d.ts +0 -1
- package/dist/types/localization/id.d.ts.map +1 -1
- package/dist/types/localization/index.d.ts +0 -3
- package/dist/types/localization/index.d.ts.map +1 -1
- package/dist/types/theme/types.d.ts +0 -6
- package/dist/types/theme/types.d.ts.map +1 -1
- package/dist/types/widgets/CategoryWidgetUI/CategoryWidgetUI.styled.d.ts +1 -1
- package/dist/types/widgets/CategoryWidgetUI/CategoryWidgetUI.styled.d.ts.map +1 -1
- package/dist/types/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.d.ts.map +1 -1
- package/dist/widgets/index.cjs +5 -5
- package/dist/widgets/index.js +5 -5
- package/package.json +1 -1
- package/dist/types/components/atoms/Link.d.ts +0 -14
- package/dist/types/components/atoms/Link.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
## 1.0
|
|
6
|
+
|
|
7
|
+
### 1.5.0
|
|
8
|
+
|
|
7
9
|
- Add `SplitButton` [#212](https://github.com/CartoDB/meridian-ds/pull/212)
|
|
8
10
|
- CodeArea: Add automatic text marking for markdown [#209](https://github.com/CartoDB/meridian-ds/pull/209)
|
|
9
11
|
|
|
10
|
-
## 1.0
|
|
11
|
-
|
|
12
12
|
### 1.4.8
|
|
13
13
|
|
|
14
14
|
- Fix Category Widget Blanks [#210](https://github.com/CartoDB/meridian-ds/pull/210)
|
|
@@ -2,10 +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
|
|
6
|
-
const iconsMaterial = require("@mui/icons-material");
|
|
7
|
-
const TablePaginationActions = require("./TablePaginationActions-CAmwcyTy.cjs");
|
|
8
|
-
require("cartocolor");
|
|
5
|
+
const TablePaginationActions = require("./TablePaginationActions-CFGXm44W.cjs");
|
|
9
6
|
const Option = material.styled("div")(({ theme }) => ({
|
|
10
7
|
position: "relative",
|
|
11
8
|
display: "inline-flex",
|
|
@@ -64,73 +61,6 @@ function _IconButton({
|
|
|
64
61
|
) });
|
|
65
62
|
}
|
|
66
63
|
const IconButton = React.forwardRef(_IconButton);
|
|
67
|
-
const StyledLink = material.styled(material.Link)(({ theme }) => ({
|
|
68
|
-
display: "inline-flex",
|
|
69
|
-
alignItems: "center",
|
|
70
|
-
gap: theme.spacing(0.25)
|
|
71
|
-
}));
|
|
72
|
-
const Icon = material.styled(material.Box, {
|
|
73
|
-
shouldForwardProp: (prop) => prop !== "variant"
|
|
74
|
-
})(({ variant }) => ({
|
|
75
|
-
display: "flex",
|
|
76
|
-
svg: {
|
|
77
|
-
// Size adapts to the text size, but make sure the icon size is at least 12px
|
|
78
|
-
fontSize: `max(1em, ${TablePaginationActions.ICON_SIZE_SMALL})`,
|
|
79
|
-
color: "inherit !important",
|
|
80
|
-
"> path": {
|
|
81
|
-
color: "inherit !important"
|
|
82
|
-
},
|
|
83
|
-
// Defined sizes in design specs
|
|
84
|
-
...variant === "caption" && {
|
|
85
|
-
fontSize: TablePaginationActions.ICON_SIZE_SMALL
|
|
86
|
-
},
|
|
87
|
-
...variant === "button" && {
|
|
88
|
-
fontSize: TablePaginationActions.ICON_SIZE_MEDIUM
|
|
89
|
-
},
|
|
90
|
-
...variant === "body2" && {
|
|
91
|
-
fontSize: TablePaginationActions.ICON_SIZE_MEDIUM
|
|
92
|
-
},
|
|
93
|
-
...variant === "body1" && {
|
|
94
|
-
fontSize: TablePaginationActions.ICON_SIZE_LARGE
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}));
|
|
98
|
-
function _Link({
|
|
99
|
-
children,
|
|
100
|
-
variant,
|
|
101
|
-
startIcon,
|
|
102
|
-
endIcon,
|
|
103
|
-
color,
|
|
104
|
-
external,
|
|
105
|
-
showExternalIcon = true,
|
|
106
|
-
...otherProps
|
|
107
|
-
}, ref) {
|
|
108
|
-
const intl = reactIntl.useIntl();
|
|
109
|
-
const intlConfig = TablePaginationActions.useImperativeIntl(intl);
|
|
110
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
111
|
-
StyledLink,
|
|
112
|
-
{
|
|
113
|
-
...otherProps,
|
|
114
|
-
variant,
|
|
115
|
-
"data-color": color,
|
|
116
|
-
"data-name": "link",
|
|
117
|
-
role: "link",
|
|
118
|
-
color,
|
|
119
|
-
ref,
|
|
120
|
-
target: external ? "_blank" : void 0,
|
|
121
|
-
rel: external ? "noopener noreferrer" : void 0,
|
|
122
|
-
"aria-label": external ? `${children == null ? void 0 : children.toString()} (${intlConfig.formatMessage({
|
|
123
|
-
id: "c4r.button.opensInNewTab"
|
|
124
|
-
})})` : void 0,
|
|
125
|
-
children: [
|
|
126
|
-
startIcon && /* @__PURE__ */ jsxRuntime.jsx(Icon, { variant, children: startIcon }),
|
|
127
|
-
children,
|
|
128
|
-
(endIcon || external && showExternalIcon) && /* @__PURE__ */ jsxRuntime.jsx(Icon, { variant, children: endIcon || /* @__PURE__ */ jsxRuntime.jsx(iconsMaterial.OpenInNewOutlined, {}) })
|
|
129
|
-
]
|
|
130
|
-
}
|
|
131
|
-
);
|
|
132
|
-
}
|
|
133
|
-
const Link = React.forwardRef(_Link);
|
|
134
64
|
const StyledAlert = material.styled(material.Alert, {
|
|
135
65
|
shouldForwardProp: (prop) => ![
|
|
136
66
|
"isNeutral",
|
|
@@ -260,4 +190,3 @@ function _Alert({
|
|
|
260
190
|
const Alert = React.forwardRef(_Alert);
|
|
261
191
|
exports.Alert = Alert;
|
|
262
192
|
exports.IconButton = IconButton;
|
|
263
|
-
exports.Link = Link;
|
|
@@ -1,10 +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,
|
|
4
|
-
import {
|
|
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-b5wP_uRE.js";
|
|
7
|
-
import "cartocolor";
|
|
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-KpTvhN4Y.js";
|
|
8
5
|
const Option = styled("div")(({ theme }) => ({
|
|
9
6
|
position: "relative",
|
|
10
7
|
display: "inline-flex",
|
|
@@ -63,73 +60,6 @@ function _IconButton({
|
|
|
63
60
|
) });
|
|
64
61
|
}
|
|
65
62
|
const IconButton = forwardRef(_IconButton);
|
|
66
|
-
const StyledLink = styled(Link$1)(({ theme }) => ({
|
|
67
|
-
display: "inline-flex",
|
|
68
|
-
alignItems: "center",
|
|
69
|
-
gap: theme.spacing(0.25)
|
|
70
|
-
}));
|
|
71
|
-
const Icon = styled(Box, {
|
|
72
|
-
shouldForwardProp: (prop) => prop !== "variant"
|
|
73
|
-
})(({ variant }) => ({
|
|
74
|
-
display: "flex",
|
|
75
|
-
svg: {
|
|
76
|
-
// Size adapts to the text size, but make sure the icon size is at least 12px
|
|
77
|
-
fontSize: `max(1em, ${ICON_SIZE_SMALL})`,
|
|
78
|
-
color: "inherit !important",
|
|
79
|
-
"> path": {
|
|
80
|
-
color: "inherit !important"
|
|
81
|
-
},
|
|
82
|
-
// Defined sizes in design specs
|
|
83
|
-
...variant === "caption" && {
|
|
84
|
-
fontSize: ICON_SIZE_SMALL
|
|
85
|
-
},
|
|
86
|
-
...variant === "button" && {
|
|
87
|
-
fontSize: ICON_SIZE_MEDIUM
|
|
88
|
-
},
|
|
89
|
-
...variant === "body2" && {
|
|
90
|
-
fontSize: ICON_SIZE_MEDIUM
|
|
91
|
-
},
|
|
92
|
-
...variant === "body1" && {
|
|
93
|
-
fontSize: ICON_SIZE_LARGE
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}));
|
|
97
|
-
function _Link({
|
|
98
|
-
children,
|
|
99
|
-
variant,
|
|
100
|
-
startIcon,
|
|
101
|
-
endIcon,
|
|
102
|
-
color,
|
|
103
|
-
external,
|
|
104
|
-
showExternalIcon = true,
|
|
105
|
-
...otherProps
|
|
106
|
-
}, ref) {
|
|
107
|
-
const intl = useIntl();
|
|
108
|
-
const intlConfig = useImperativeIntl(intl);
|
|
109
|
-
return /* @__PURE__ */ jsxs(
|
|
110
|
-
StyledLink,
|
|
111
|
-
{
|
|
112
|
-
...otherProps,
|
|
113
|
-
variant,
|
|
114
|
-
"data-color": color,
|
|
115
|
-
"data-name": "link",
|
|
116
|
-
role: "link",
|
|
117
|
-
color,
|
|
118
|
-
ref,
|
|
119
|
-
target: external ? "_blank" : void 0,
|
|
120
|
-
rel: external ? "noopener noreferrer" : void 0,
|
|
121
|
-
"aria-label": external ? `${children == null ? void 0 : children.toString()} (${intlConfig.formatMessage({
|
|
122
|
-
id: "c4r.button.opensInNewTab"
|
|
123
|
-
})})` : void 0,
|
|
124
|
-
children: [
|
|
125
|
-
startIcon && /* @__PURE__ */ jsx(Icon, { variant, children: startIcon }),
|
|
126
|
-
children,
|
|
127
|
-
(endIcon || external && showExternalIcon) && /* @__PURE__ */ jsx(Icon, { variant, children: endIcon || /* @__PURE__ */ jsx(OpenInNewOutlined, {}) })
|
|
128
|
-
]
|
|
129
|
-
}
|
|
130
|
-
);
|
|
131
|
-
}
|
|
132
|
-
const Link = forwardRef(_Link);
|
|
133
63
|
const StyledAlert = styled(Alert$1, {
|
|
134
64
|
shouldForwardProp: (prop) => ![
|
|
135
65
|
"isNeutral",
|
|
@@ -259,6 +189,5 @@ function _Alert({
|
|
|
259
189
|
const Alert = forwardRef(_Alert);
|
|
260
190
|
export {
|
|
261
191
|
Alert as A,
|
|
262
|
-
IconButton as I
|
|
263
|
-
Link as L
|
|
192
|
+
IconButton as I
|
|
264
193
|
};
|
|
@@ -814,8 +814,7 @@ const en = {
|
|
|
814
814
|
copy: "Copy",
|
|
815
815
|
save: "Save",
|
|
816
816
|
add: "Add",
|
|
817
|
-
showOptions: "Show options"
|
|
818
|
-
opensInNewTab: "Opens in new tab"
|
|
817
|
+
showOptions: "Show options"
|
|
819
818
|
},
|
|
820
819
|
form: {
|
|
821
820
|
selectAll: "Select all",
|
|
@@ -963,8 +962,7 @@ const es = {
|
|
|
963
962
|
copy: "Copiar",
|
|
964
963
|
save: "Guardar",
|
|
965
964
|
add: "Añadir",
|
|
966
|
-
showOptions: "Mostrar opciones"
|
|
967
|
-
opensInNewTab: "Abre en una nueva pestaña"
|
|
965
|
+
showOptions: "Mostrar opciones"
|
|
968
966
|
},
|
|
969
967
|
form: {
|
|
970
968
|
selectAll: "Seleccionar todos",
|
|
@@ -1110,8 +1108,7 @@ const id = {
|
|
|
1110
1108
|
copy: "Salin",
|
|
1111
1109
|
save: "Simpan",
|
|
1112
1110
|
add: "Tambah",
|
|
1113
|
-
showOptions: "Tampilkan opsi"
|
|
1114
|
-
opensInNewTab: "Buka di tab baru"
|
|
1111
|
+
showOptions: "Tampilkan opsi"
|
|
1115
1112
|
},
|
|
1116
1113
|
form: {
|
|
1117
1114
|
selectAll: "Select all",
|
|
@@ -813,8 +813,7 @@ const en = {
|
|
|
813
813
|
copy: "Copy",
|
|
814
814
|
save: "Save",
|
|
815
815
|
add: "Add",
|
|
816
|
-
showOptions: "Show options"
|
|
817
|
-
opensInNewTab: "Opens in new tab"
|
|
816
|
+
showOptions: "Show options"
|
|
818
817
|
},
|
|
819
818
|
form: {
|
|
820
819
|
selectAll: "Select all",
|
|
@@ -962,8 +961,7 @@ const es = {
|
|
|
962
961
|
copy: "Copiar",
|
|
963
962
|
save: "Guardar",
|
|
964
963
|
add: "Añadir",
|
|
965
|
-
showOptions: "Mostrar opciones"
|
|
966
|
-
opensInNewTab: "Abre en una nueva pestaña"
|
|
964
|
+
showOptions: "Mostrar opciones"
|
|
967
965
|
},
|
|
968
966
|
form: {
|
|
969
967
|
selectAll: "Seleccionar todos",
|
|
@@ -1109,8 +1107,7 @@ const id = {
|
|
|
1109
1107
|
copy: "Salin",
|
|
1110
1108
|
save: "Simpan",
|
|
1111
1109
|
add: "Tambah",
|
|
1112
|
-
showOptions: "Tampilkan opsi"
|
|
1113
|
-
opensInNewTab: "Buka di tab baru"
|
|
1110
|
+
showOptions: "Tampilkan opsi"
|
|
1114
1111
|
},
|
|
1115
1112
|
form: {
|
|
1116
1113
|
selectAll: "Select all",
|
|
@@ -2,13 +2,13 @@
|
|
|
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
|
|
8
|
-
const TablePaginationActions = require("../TablePaginationActions-CAmwcyTy.cjs");
|
|
6
|
+
const TablePaginationActions = require("../TablePaginationActions-CFGXm44W.cjs");
|
|
9
7
|
const ArrowDown = require("../ArrowDown-8fLj23Ge.cjs");
|
|
10
8
|
const OpenDiagonallyRight = require("../OpenDiagonallyRight-CM1tojUq.cjs");
|
|
11
|
-
const
|
|
9
|
+
const reactIntl = require("react-intl");
|
|
10
|
+
const iconsMaterial = require("@mui/icons-material");
|
|
11
|
+
const Alert$1 = require("../Alert-BiOR9aar.cjs");
|
|
12
12
|
require("cartocolor");
|
|
13
13
|
const MenuItem = require("../MenuItem-Br2jY2lt.cjs");
|
|
14
14
|
const DatePicker$1 = require("@mui/x-date-pickers/DatePicker");
|
|
@@ -61,13 +61,8 @@ function _Button({
|
|
|
61
61
|
startIcon,
|
|
62
62
|
endIcon,
|
|
63
63
|
loadingPosition,
|
|
64
|
-
external,
|
|
65
|
-
showExternalIcon = true,
|
|
66
|
-
"aria-label": ariaLabel,
|
|
67
64
|
...otherProps
|
|
68
65
|
}, ref) {
|
|
69
|
-
const intl = reactIntl.useIntl();
|
|
70
|
-
const intlConfig = TablePaginationActions.useImperativeIntl(intl);
|
|
71
66
|
const defaultIconLoader = /* @__PURE__ */ jsxRuntime.jsx(material.CircularProgress, { size: 18, color: "inherit" });
|
|
72
67
|
const isDefaultLoading = loading && loadingPosition === void 0;
|
|
73
68
|
const renderContent = () => {
|
|
@@ -89,11 +84,7 @@ function _Button({
|
|
|
89
84
|
}
|
|
90
85
|
return void 0;
|
|
91
86
|
}
|
|
92
|
-
|
|
93
|
-
return startIcon;
|
|
94
|
-
} else {
|
|
95
|
-
return endIcon || (external && showExternalIcon && otherProps.href ? /* @__PURE__ */ jsxRuntime.jsx(iconsMaterial.OpenInNewOutlined, {}) : void 0);
|
|
96
|
-
}
|
|
87
|
+
return position === "start" ? startIcon : endIcon;
|
|
97
88
|
};
|
|
98
89
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
99
90
|
material.Button,
|
|
@@ -103,13 +94,6 @@ function _Button({
|
|
|
103
94
|
endIcon: getIconForPosition("end"),
|
|
104
95
|
...otherProps,
|
|
105
96
|
role: otherProps.href ? "link" : "button",
|
|
106
|
-
...otherProps.href && external && {
|
|
107
|
-
target: "_blank",
|
|
108
|
-
rel: "noopener noreferrer"
|
|
109
|
-
},
|
|
110
|
-
"aria-label": ariaLabel || (external && otherProps.href ? `${children == null ? void 0 : children.toString()} (${intlConfig.formatMessage({
|
|
111
|
-
id: "c4r.button.opensInNewTab"
|
|
112
|
-
})})` : void 0),
|
|
113
97
|
ref,
|
|
114
98
|
children: /* @__PURE__ */ jsxRuntime.jsx(TablePaginationActions.Typography, { variant: "inherit", color: "inherit", noWrap: true, component: "span", children: renderContent() })
|
|
115
99
|
}
|
|
@@ -4701,7 +4685,6 @@ exports.TablePaginationActions = TablePaginationActions.TablePaginationActions;
|
|
|
4701
4685
|
exports.Typography = TablePaginationActions.Typography;
|
|
4702
4686
|
exports.Alert = Alert$1.Alert;
|
|
4703
4687
|
exports.IconButton = Alert$1.IconButton;
|
|
4704
|
-
exports.Link = Alert$1.Link;
|
|
4705
4688
|
exports.MenuItem = MenuItem.MenuItem;
|
|
4706
4689
|
exports.AccordionGroup = AccordionGroup;
|
|
4707
4690
|
exports.AppBar = AppBar;
|
package/dist/components/index.js
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef, useState, useRef, useEffect, useMemo, Fragment as Fragment$1, useImperativeHandle, useCallback } 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 {
|
|
6
|
-
import {
|
|
7
|
-
import { a } from "../TablePaginationActions-b5wP_uRE.js";
|
|
4
|
+
import { T as Typography, c as ICON_SIZE_SMALL, u as useImperativeIntl, N as NOTIFICATION_DURATION_IN_MS, A as APPBAR_SIZE } from "../TablePaginationActions-KpTvhN4Y.js";
|
|
5
|
+
import { a } from "../TablePaginationActions-KpTvhN4Y.js";
|
|
8
6
|
import { A as ArrowDown } from "../ArrowDown-CY_wMVJT.js";
|
|
9
7
|
import { A as ArrowUp, O as OpenDiagonallyRight, C as CloseDiagonallyRight } from "../OpenDiagonallyRight-CSm5GYYJ.js";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
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-CywtIMOj.js";
|
|
12
11
|
import "cartocolor";
|
|
13
12
|
import { M as MenuItem$1 } from "../MenuItem-CXnnE5lK.js";
|
|
14
13
|
import { DatePicker as DatePicker$1 } from "@mui/x-date-pickers/DatePicker";
|
|
@@ -61,13 +60,8 @@ function _Button({
|
|
|
61
60
|
startIcon,
|
|
62
61
|
endIcon,
|
|
63
62
|
loadingPosition,
|
|
64
|
-
external,
|
|
65
|
-
showExternalIcon = true,
|
|
66
|
-
"aria-label": ariaLabel,
|
|
67
63
|
...otherProps
|
|
68
64
|
}, ref) {
|
|
69
|
-
const intl = useIntl();
|
|
70
|
-
const intlConfig = useImperativeIntl(intl);
|
|
71
65
|
const defaultIconLoader = /* @__PURE__ */ jsx(CircularProgress, { size: 18, color: "inherit" });
|
|
72
66
|
const isDefaultLoading = loading && loadingPosition === void 0;
|
|
73
67
|
const renderContent = () => {
|
|
@@ -89,11 +83,7 @@ function _Button({
|
|
|
89
83
|
}
|
|
90
84
|
return void 0;
|
|
91
85
|
}
|
|
92
|
-
|
|
93
|
-
return startIcon;
|
|
94
|
-
} else {
|
|
95
|
-
return endIcon || (external && showExternalIcon && otherProps.href ? /* @__PURE__ */ jsx(OpenInNewOutlined, {}) : void 0);
|
|
96
|
-
}
|
|
86
|
+
return position === "start" ? startIcon : endIcon;
|
|
97
87
|
};
|
|
98
88
|
return /* @__PURE__ */ jsx(
|
|
99
89
|
Button$1,
|
|
@@ -103,13 +93,6 @@ function _Button({
|
|
|
103
93
|
endIcon: getIconForPosition("end"),
|
|
104
94
|
...otherProps,
|
|
105
95
|
role: otherProps.href ? "link" : "button",
|
|
106
|
-
...otherProps.href && external && {
|
|
107
|
-
target: "_blank",
|
|
108
|
-
rel: "noopener noreferrer"
|
|
109
|
-
},
|
|
110
|
-
"aria-label": ariaLabel || (external && otherProps.href ? `${children == null ? void 0 : children.toString()} (${intlConfig.formatMessage({
|
|
111
|
-
id: "c4r.button.opensInNewTab"
|
|
112
|
-
})})` : void 0),
|
|
113
96
|
ref,
|
|
114
97
|
children: /* @__PURE__ */ jsx(Typography, { variant: "inherit", color: "inherit", noWrap: true, component: "span", children: renderContent() })
|
|
115
98
|
}
|
|
@@ -4730,7 +4713,6 @@ export {
|
|
|
4730
4713
|
DialogStepper,
|
|
4731
4714
|
IconButton$1 as IconButton,
|
|
4732
4715
|
LabelWithIndicator,
|
|
4733
|
-
L as Link,
|
|
4734
4716
|
Menu$1 as Menu,
|
|
4735
4717
|
MenuItem$1 as MenuItem,
|
|
4736
4718
|
MenuItemFilter,
|
package/dist/theme/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@ 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-
|
|
6
|
+
const TablePaginationActions = require("../TablePaginationActions-CFGXm44W.cjs");
|
|
7
7
|
const iconsMaterial = require("@mui/icons-material");
|
|
8
8
|
const ArrowDown = require("../ArrowDown-8fLj23Ge.cjs");
|
|
9
9
|
const xDatePickers = require("@mui/x-date-pickers");
|
package/dist/theme/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
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, A as APPBAR_SIZE, B as BREAKPOINTS, S as SPACING } from "../TablePaginationActions-
|
|
5
|
-
import { N } from "../TablePaginationActions-
|
|
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, A as APPBAR_SIZE, B as BREAKPOINTS, S as SPACING } from "../TablePaginationActions-KpTvhN4Y.js";
|
|
5
|
+
import { N } from "../TablePaginationActions-KpTvhN4Y.js";
|
|
6
6
|
import { Cancel, EventOutlined, ChevronRightOutlined, ChevronLeftOutlined, ExpandMoreOutlined, CheckCircleOutlined } from "@mui/icons-material";
|
|
7
7
|
import { A as ArrowDown } from "../ArrowDown-CY_wMVJT.js";
|
|
8
8
|
import { renderDigitalClockTimeView } from "@mui/x-date-pickers";
|
|
@@ -9,17 +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. If true, the button will show an external icon.
|
|
19
|
-
* Needs to have a href prop to be considered external.
|
|
20
|
-
*/
|
|
21
|
-
showExternalIcon?: boolean;
|
|
22
|
-
'aria-label'?: string;
|
|
23
12
|
}>;
|
|
24
13
|
declare const Button: import('react').ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;
|
|
25
14
|
export default Button;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Button.tsx"],"names":[],"mappings":"
|
|
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,7 +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
9
|
export type * from './Button';
|
|
11
10
|
export type * from './SplitButton';
|
|
12
11
|
export type * from './LabelWithIndicator';
|
|
@@ -15,5 +14,4 @@ export type * from './SelectField';
|
|
|
15
14
|
export type * from './ToggleButtonGroup';
|
|
16
15
|
export type * from './Typography';
|
|
17
16
|
export type * from './IconButton';
|
|
18
|
-
export type * from './Link';
|
|
19
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;
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/localization/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/localization/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAsJ0B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/localization/es.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/localization/es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAwJ0B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../../src/localization/id.ts"],"names":[],"mappings":"
|
|
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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/localization/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA"}
|
|
@@ -111,11 +111,5 @@ declare module '@mui/material/Dialog' {
|
|
|
111
111
|
size?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
|
-
declare module '@mui/material/Link' {
|
|
115
|
-
interface LinkOwnProps {
|
|
116
|
-
endIcon?: React.ReactNode;
|
|
117
|
-
startIcon?: React.ReactNode;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
114
|
export {};
|
|
121
115
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/theme/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/theme/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -22,7 +22,7 @@ export declare const CategoryLabelWrapper: import('@emotion/styled').StyledCompo
|
|
|
22
22
|
export declare const CategoryLabel: import('@emotion/styled').StyledComponent<Omit<import('../../components/atoms/Typography').TypographyProps, "ref"> & import('react').RefAttributes<HTMLElement> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
23
23
|
export declare const LinkAsButton: import('@emotion/styled').StyledComponent<import('@mui/material').LinkOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
|
|
24
24
|
ref?: ((instance: HTMLAnchorElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLAnchorElement> | null | undefined;
|
|
25
|
-
}, "p" | "style" | "className" | "classes" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "color" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "align" | "children" | "gutterBottom" | "noWrap" | "paragraph" | "sx" | "variant" | "variantMapping" | "underline" | "
|
|
25
|
+
}, "p" | "style" | "className" | "classes" | "border" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "bgcolor" | "color" | "zIndex" | "position" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "typography" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "lineHeight" | "textAlign" | "textTransform" | "align" | "children" | "gutterBottom" | "noWrap" | "paragraph" | "sx" | "variant" | "variantMapping" | "underline" | "TypographyClasses"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
26
26
|
export declare const CategoriesRoot: import('@emotion/styled').StyledComponent<import('@mui/system').BoxOwnProps<import('@mui/material').Theme> & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
27
27
|
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
28
28
|
}, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CategoryWidgetUI.styled.d.ts","sourceRoot":"","sources":["../../../../src/widgets/CategoryWidgetUI/CategoryWidgetUI.styled.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,iBAAiB;;qsDAI3B,CAAA;AAEH,eAAO,MAAM,iBAAiB;;;iBAIf,OAAO;WACb,MAAM;iBACA,OAAO;UAyCpB,CAAA;AAEF,eAAO,MAAM,kBAAkB;;qsDAY9B,CAAA;AAED,eAAO,MAAM,WAAW;;qsDAerB,CAAA;AAEH,eAAO,MAAM,oBAAoB;;;kBAEd,OAAO;UAMxB,CAAA;AAEF,eAAO,MAAM,aAAa,kPAGvB,CAAA;AAEH,eAAO,MAAM,YAAY;;
|
|
1
|
+
{"version":3,"file":"CategoryWidgetUI.styled.d.ts","sourceRoot":"","sources":["../../../../src/widgets/CategoryWidgetUI/CategoryWidgetUI.styled.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,iBAAiB;;qsDAI3B,CAAA;AAEH,eAAO,MAAM,iBAAiB;;;iBAIf,OAAO;WACb,MAAM;iBACA,OAAO;UAyCpB,CAAA;AAEF,eAAO,MAAM,kBAAkB;;qsDAY9B,CAAA;AAED,eAAO,MAAM,WAAW;;qsDAerB,CAAA;AAEH,eAAO,MAAM,oBAAoB;;;kBAEd,OAAO;UAMxB,CAAA;AAEF,eAAO,MAAM,aAAa,kPAGvB,CAAA;AAEH,eAAO,MAAM,YAAY;;iqDAOtB,CAAA;AAEH,eAAO,MAAM,cAAc;;+JAExB,CAAA;AAEH,eAAO,MAAM,YAAY;;geActB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComparativeCategoryWidgetUI.d.ts","sourceRoot":"","sources":["../../../../../src/widgets/comparative/ComparativeCategoryWidgetUI/ComparativeCategoryWidgetUI.tsx"],"names":[],"mappings":"
|
|
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"}
|
package/dist/widgets/index.cjs
CHANGED
|
@@ -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-
|
|
7
|
+
const TablePaginationActions = require("../TablePaginationActions-CFGXm44W.cjs");
|
|
8
8
|
const _ReactEcharts = require("echarts-for-react");
|
|
9
9
|
const reactWindow = require("react-window");
|
|
10
10
|
const SwatchSquare = require("../SwatchSquare-benaO55C.cjs");
|
|
11
11
|
const iconsMaterial = require("@mui/icons-material");
|
|
12
|
-
const Alert = require("../Alert-
|
|
12
|
+
const Alert = require("../Alert-BiOR9aar.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(
|
|
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(
|
|
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(
|
|
5287
|
+
/* @__PURE__ */ jsxRuntime.jsx(material.Link, { onClick: clearSelection, children: intlConfig.formatMessage({
|
|
5288
5288
|
id: "c4r.widgets.category.clear"
|
|
5289
5289
|
}) })
|
|
5290
5290
|
]
|
package/dist/widgets/index.js
CHANGED
|
@@ -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 { d as getDefaultExportFromCjs, u as useImperativeIntl, T as Typography, S as SPACING, B as BREAKPOINTS, a as TablePaginationActions, b as ICON_SIZE_MEDIUM } from "../TablePaginationActions-
|
|
5
|
+
import { d as getDefaultExportFromCjs, u as useImperativeIntl, T as Typography, S as SPACING, B as BREAKPOINTS, a as TablePaginationActions, b as ICON_SIZE_MEDIUM } from "../TablePaginationActions-KpTvhN4Y.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-DhaaXt53.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,
|
|
10
|
+
import { I as IconButton, A as Alert } from "../Alert-CywtIMOj.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
|
|
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
|
|
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
|
|
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,14 +0,0 @@
|
|
|
1
|
-
import { LinkProps as MUILinkProps } from '@mui/material';
|
|
2
|
-
export type LinkProps = MUILinkProps<React.ElementType, {
|
|
3
|
-
/**
|
|
4
|
-
* Whether the link is external. If true, the link will open in a new tab.
|
|
5
|
-
*/
|
|
6
|
-
external?: boolean;
|
|
7
|
-
/**
|
|
8
|
-
* Whether to show the external icon when external is true. Defaults to true.
|
|
9
|
-
*/
|
|
10
|
-
showExternalIcon?: boolean;
|
|
11
|
-
}>;
|
|
12
|
-
declare const Link: import('react').ForwardRefExoticComponent<Omit<LinkProps, "ref"> & import('react').RefAttributes<HTMLAnchorElement>>;
|
|
13
|
-
export default Link;
|
|
14
|
-
//# 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;AA2CtB,MAAM,MAAM,SAAS,GAAG,YAAY,CAClC,KAAK,CAAC,WAAW,EACjB;IACE;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B,CACF,CAAA;AAgDD,QAAA,MAAM,IAAI,sHAAoB,CAAA;AAC9B,eAAe,IAAI,CAAA"}
|