@carto/meridian-ds 1.4.5-alpha-external-link.1 → 1.4.5-alpha-external-link.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{Alert-D8jI1sG4.js → Alert-BcaaL6lM.js} +20 -4
- package/dist/{Alert-zqtoWsBL.cjs → Alert-CVfTyHiz.cjs} +18 -2
- package/dist/components/index.cjs +10 -35
- package/dist/components/index.js +10 -35
- package/dist/types/components/atoms/ExternalLink.d.ts +4 -1
- package/dist/types/components/atoms/ExternalLink.d.ts.map +1 -1
- package/dist/types/components/atoms/Link.d.ts +4 -0
- package/dist/types/components/atoms/Link.d.ts.map +1 -0
- package/dist/types/components/atoms/index.d.ts +2 -0
- package/dist/types/components/atoms/index.d.ts.map +1 -1
- package/dist/types/theme/types.d.ts +6 -0
- 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 +4 -4
- package/dist/widgets/index.js +4 -4
- package/package.json +1 -1
|
@@ -1,7 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { b as ICON_SIZE_MEDIUM, T as Typography } from "./TablePaginationActions-KpTvhN4Y.js";
|
|
3
|
-
import { styled, Alert as Alert$1, Fade, AlertTitle } from "@mui/material";
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
4
2
|
import { forwardRef, useState } from "react";
|
|
3
|
+
import { styled, Box, Link as Link$1, Alert as Alert$1, Fade, AlertTitle } from "@mui/material";
|
|
4
|
+
import { b as ICON_SIZE_MEDIUM, T as Typography } from "./TablePaginationActions-KpTvhN4Y.js";
|
|
5
|
+
const Icon = styled(Box)(({ theme }) => ({
|
|
6
|
+
position: "relative",
|
|
7
|
+
display: "inline-block",
|
|
8
|
+
margin: theme.spacing(0, 0.25),
|
|
9
|
+
top: "calc(1em * 5.0/32)"
|
|
10
|
+
// heuristic to align icon with true perceived baseline
|
|
11
|
+
}));
|
|
12
|
+
function _Link({ children, startIcon, endIcon, ...otherProps }, ref) {
|
|
13
|
+
return /* @__PURE__ */ jsxs(Link$1, { ...otherProps, ref, children: [
|
|
14
|
+
startIcon && /* @__PURE__ */ jsx(Icon, { children: startIcon }),
|
|
15
|
+
children,
|
|
16
|
+
endIcon && /* @__PURE__ */ jsx(Icon, { children: endIcon })
|
|
17
|
+
] });
|
|
18
|
+
}
|
|
19
|
+
const Link = forwardRef(_Link);
|
|
5
20
|
const StyledAlert = styled(Alert$1, {
|
|
6
21
|
shouldForwardProp: (prop) => ![
|
|
7
22
|
"isNeutral",
|
|
@@ -130,5 +145,6 @@ function _Alert({
|
|
|
130
145
|
}
|
|
131
146
|
const Alert = forwardRef(_Alert);
|
|
132
147
|
export {
|
|
133
|
-
Alert as A
|
|
148
|
+
Alert as A,
|
|
149
|
+
Link as L
|
|
134
150
|
};
|
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
-
const TablePaginationActions = require("./TablePaginationActions-CFGXm44W.cjs");
|
|
4
|
-
const material = require("@mui/material");
|
|
5
3
|
const React = require("react");
|
|
4
|
+
const material = require("@mui/material");
|
|
5
|
+
const TablePaginationActions = require("./TablePaginationActions-CFGXm44W.cjs");
|
|
6
|
+
const Icon = material.styled(material.Box)(({ theme }) => ({
|
|
7
|
+
position: "relative",
|
|
8
|
+
display: "inline-block",
|
|
9
|
+
margin: theme.spacing(0, 0.25),
|
|
10
|
+
top: "calc(1em * 5.0/32)"
|
|
11
|
+
// heuristic to align icon with true perceived baseline
|
|
12
|
+
}));
|
|
13
|
+
function _Link({ children, startIcon, endIcon, ...otherProps }, ref) {
|
|
14
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(material.Link, { ...otherProps, ref, children: [
|
|
15
|
+
startIcon && /* @__PURE__ */ jsxRuntime.jsx(Icon, { children: startIcon }),
|
|
16
|
+
children,
|
|
17
|
+
endIcon && /* @__PURE__ */ jsxRuntime.jsx(Icon, { children: endIcon })
|
|
18
|
+
] });
|
|
19
|
+
}
|
|
20
|
+
const Link = React.forwardRef(_Link);
|
|
6
21
|
const StyledAlert = material.styled(material.Alert, {
|
|
7
22
|
shouldForwardProp: (prop) => ![
|
|
8
23
|
"isNeutral",
|
|
@@ -131,3 +146,4 @@ function _Alert({
|
|
|
131
146
|
}
|
|
132
147
|
const Alert = React.forwardRef(_Alert);
|
|
133
148
|
exports.Alert = Alert;
|
|
149
|
+
exports.Link = Link;
|
|
@@ -6,9 +6,8 @@ const material = require("@mui/material");
|
|
|
6
6
|
const TablePaginationActions = require("../TablePaginationActions-CFGXm44W.cjs");
|
|
7
7
|
const reactIntl = require("react-intl");
|
|
8
8
|
const iconsMaterial = require("@mui/icons-material");
|
|
9
|
-
const Link = require("@mui/material/Link");
|
|
10
9
|
const styles = require("@mui/material/styles");
|
|
11
|
-
const Alert$1 = require("../Alert-
|
|
10
|
+
const Alert$1 = require("../Alert-CVfTyHiz.cjs");
|
|
12
11
|
require("cartocolor");
|
|
13
12
|
const MenuItem = require("../MenuItem-Br2jY2lt.cjs");
|
|
14
13
|
const ArrowDown = require("../ArrowDown-8fLj23Ge.cjs");
|
|
@@ -445,49 +444,25 @@ const externalLinkProps = {
|
|
|
445
444
|
target: "_blank",
|
|
446
445
|
rel: "noopener noreferrer"
|
|
447
446
|
};
|
|
448
|
-
const InlineLink = styles.styled(Link)(
|
|
449
|
-
({ fontWeight = 500 }) => ({
|
|
450
|
-
display: "inline",
|
|
451
|
-
fontWeight
|
|
452
|
-
})
|
|
453
|
-
);
|
|
454
447
|
const IconOpenInNewOutlined = styles.styled(iconsMaterial.OpenInNewOutlined)(() => ({
|
|
455
|
-
display: "inline",
|
|
456
448
|
fontSize: "1em",
|
|
457
449
|
// in some place, like alerts all svg/icon colors are overriden, so force color to link color
|
|
458
|
-
color:
|
|
450
|
+
color: "inherit !important",
|
|
459
451
|
"> path": {
|
|
460
452
|
color: "inherit !important"
|
|
461
453
|
}
|
|
462
454
|
}));
|
|
463
|
-
const IconWrapperInline = styles.styled("span")(() => ({
|
|
464
|
-
marginLeft: "0.25em",
|
|
465
|
-
position: "relative",
|
|
466
|
-
top: "calc(1em * 5.0/32)"
|
|
467
|
-
// heuristic to align icon with true perceived baseline
|
|
468
|
-
}));
|
|
469
|
-
const StyledButton = styles.styled(Button)(({ size, theme }) => ({
|
|
470
|
-
"& > span": {
|
|
471
|
-
display: "inline-flex",
|
|
472
|
-
alignItems: "center"
|
|
473
|
-
},
|
|
474
|
-
...size === "small" && {
|
|
475
|
-
svg: {
|
|
476
|
-
width: `${theme.spacing(2)} !important`,
|
|
477
|
-
height: `${theme.spacing(2)} !important`
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
}));
|
|
481
455
|
function _ExternalLink({
|
|
482
456
|
children,
|
|
483
457
|
showIcon = true,
|
|
484
458
|
useButton = false,
|
|
485
459
|
icon = /* @__PURE__ */ jsxRuntime.jsx(IconOpenInNewOutlined, {}),
|
|
460
|
+
fontWeight = "medium",
|
|
486
461
|
...props
|
|
487
462
|
}, ref) {
|
|
488
463
|
if (useButton) {
|
|
489
464
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
490
|
-
|
|
465
|
+
Button,
|
|
491
466
|
{
|
|
492
467
|
...externalLinkProps,
|
|
493
468
|
endIcon: showIcon && icon,
|
|
@@ -497,16 +472,15 @@ function _ExternalLink({
|
|
|
497
472
|
}
|
|
498
473
|
);
|
|
499
474
|
} else {
|
|
500
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
501
|
-
|
|
475
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
476
|
+
Alert$1.Link,
|
|
502
477
|
{
|
|
503
478
|
...externalLinkProps,
|
|
479
|
+
endIcon: showIcon && icon,
|
|
480
|
+
fontWeight,
|
|
504
481
|
...props,
|
|
505
482
|
ref,
|
|
506
|
-
children
|
|
507
|
-
children,
|
|
508
|
-
showIcon && /* @__PURE__ */ jsxRuntime.jsx(IconWrapperInline, { children: icon })
|
|
509
|
-
]
|
|
483
|
+
children
|
|
510
484
|
}
|
|
511
485
|
);
|
|
512
486
|
}
|
|
@@ -4616,6 +4590,7 @@ function CodeAreaDialog({
|
|
|
4616
4590
|
exports.TablePaginationActions = TablePaginationActions.TablePaginationActions;
|
|
4617
4591
|
exports.Typography = TablePaginationActions.Typography;
|
|
4618
4592
|
exports.Alert = Alert$1.Alert;
|
|
4593
|
+
exports.Link = Alert$1.Link;
|
|
4619
4594
|
exports.MenuItem = MenuItem.MenuItem;
|
|
4620
4595
|
exports.AccordionGroup = AccordionGroup;
|
|
4621
4596
|
exports.AppBar = AppBar;
|
package/dist/components/index.js
CHANGED
|
@@ -5,9 +5,8 @@ import { T as Typography, c as ICON_SIZE_SMALL, u as useImperativeIntl, N as NOT
|
|
|
5
5
|
import { a } from "../TablePaginationActions-KpTvhN4Y.js";
|
|
6
6
|
import { useIntl } from "react-intl";
|
|
7
7
|
import { VisibilityOffOutlined, VisibilityOutlined, OpenInNewOutlined, Cancel, AddCircleOutlineOutlined, ContentCopyOutlined, CloseOutlined, MenuOutlined, HelpOutline, TodayOutlined, MoreVertOutlined, ErrorOutline, Check } from "@mui/icons-material";
|
|
8
|
-
import Link from "@mui/material/Link";
|
|
9
8
|
import { styled as styled$1 } from "@mui/material/styles";
|
|
10
|
-
import { A as Alert$1 } from "../Alert-
|
|
9
|
+
import { L as Link, A as Alert$1 } from "../Alert-BcaaL6lM.js";
|
|
11
10
|
import "cartocolor";
|
|
12
11
|
import { M as MenuItem$1 } from "../MenuItem-CXnnE5lK.js";
|
|
13
12
|
import { A as ArrowDown } from "../ArrowDown-CY_wMVJT.js";
|
|
@@ -444,49 +443,25 @@ const externalLinkProps = {
|
|
|
444
443
|
target: "_blank",
|
|
445
444
|
rel: "noopener noreferrer"
|
|
446
445
|
};
|
|
447
|
-
const InlineLink = styled$1(Link)(
|
|
448
|
-
({ fontWeight = 500 }) => ({
|
|
449
|
-
display: "inline",
|
|
450
|
-
fontWeight
|
|
451
|
-
})
|
|
452
|
-
);
|
|
453
446
|
const IconOpenInNewOutlined = styled$1(OpenInNewOutlined)(() => ({
|
|
454
|
-
display: "inline",
|
|
455
447
|
fontSize: "1em",
|
|
456
448
|
// in some place, like alerts all svg/icon colors are overriden, so force color to link color
|
|
457
|
-
color:
|
|
449
|
+
color: "inherit !important",
|
|
458
450
|
"> path": {
|
|
459
451
|
color: "inherit !important"
|
|
460
452
|
}
|
|
461
453
|
}));
|
|
462
|
-
const IconWrapperInline = styled$1("span")(() => ({
|
|
463
|
-
marginLeft: "0.25em",
|
|
464
|
-
position: "relative",
|
|
465
|
-
top: "calc(1em * 5.0/32)"
|
|
466
|
-
// heuristic to align icon with true perceived baseline
|
|
467
|
-
}));
|
|
468
|
-
const StyledButton = styled$1(Button)(({ size, theme }) => ({
|
|
469
|
-
"& > span": {
|
|
470
|
-
display: "inline-flex",
|
|
471
|
-
alignItems: "center"
|
|
472
|
-
},
|
|
473
|
-
...size === "small" && {
|
|
474
|
-
svg: {
|
|
475
|
-
width: `${theme.spacing(2)} !important`,
|
|
476
|
-
height: `${theme.spacing(2)} !important`
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
}));
|
|
480
454
|
function _ExternalLink({
|
|
481
455
|
children,
|
|
482
456
|
showIcon = true,
|
|
483
457
|
useButton = false,
|
|
484
458
|
icon = /* @__PURE__ */ jsx(IconOpenInNewOutlined, {}),
|
|
459
|
+
fontWeight = "medium",
|
|
485
460
|
...props
|
|
486
461
|
}, ref) {
|
|
487
462
|
if (useButton) {
|
|
488
463
|
return /* @__PURE__ */ jsx(
|
|
489
|
-
|
|
464
|
+
Button,
|
|
490
465
|
{
|
|
491
466
|
...externalLinkProps,
|
|
492
467
|
endIcon: showIcon && icon,
|
|
@@ -496,16 +471,15 @@ function _ExternalLink({
|
|
|
496
471
|
}
|
|
497
472
|
);
|
|
498
473
|
} else {
|
|
499
|
-
return /* @__PURE__ */
|
|
500
|
-
|
|
474
|
+
return /* @__PURE__ */ jsx(
|
|
475
|
+
Link,
|
|
501
476
|
{
|
|
502
477
|
...externalLinkProps,
|
|
478
|
+
endIcon: showIcon && icon,
|
|
479
|
+
fontWeight,
|
|
503
480
|
...props,
|
|
504
481
|
ref,
|
|
505
|
-
children
|
|
506
|
-
children,
|
|
507
|
-
showIcon && /* @__PURE__ */ jsx(IconWrapperInline, { children: icon })
|
|
508
|
-
]
|
|
482
|
+
children
|
|
509
483
|
}
|
|
510
484
|
);
|
|
511
485
|
}
|
|
@@ -4645,6 +4619,7 @@ export {
|
|
|
4645
4619
|
ExternalLink,
|
|
4646
4620
|
IconButton,
|
|
4647
4621
|
LabelWithIndicator,
|
|
4622
|
+
Link,
|
|
4648
4623
|
Menu$1 as Menu,
|
|
4649
4624
|
MenuItem$1 as MenuItem,
|
|
4650
4625
|
MenuItemFilter,
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
import { CartoFontWeight } from './Typography';
|
|
1
2
|
declare const ExternalLink: import('react').ForwardRefExoticComponent<(Omit<import('@mui/material/Link').LinkOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
|
|
2
3
|
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;
|
|
3
|
-
}, "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"> & {
|
|
4
|
+
}, "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" | "endIcon" | "startIcon" | "TypographyClasses"> & {
|
|
4
5
|
component?: import('react').ElementType;
|
|
5
6
|
} & {
|
|
6
7
|
showIcon?: boolean;
|
|
7
8
|
useButton?: boolean;
|
|
8
9
|
icon?: JSX.Element;
|
|
10
|
+
fontWeight?: CartoFontWeight;
|
|
9
11
|
}, "ref"> | Omit<{
|
|
10
12
|
target?: string;
|
|
11
13
|
loading?: boolean;
|
|
@@ -16,6 +18,7 @@ declare const ExternalLink: import('react').ForwardRefExoticComponent<(Omit<impo
|
|
|
16
18
|
showIcon?: boolean;
|
|
17
19
|
useButton?: boolean;
|
|
18
20
|
icon?: JSX.Element;
|
|
21
|
+
fontWeight?: CartoFontWeight;
|
|
19
22
|
}, "ref">) & import('react').RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
20
23
|
export default ExternalLink;
|
|
21
24
|
//# sourceMappingURL=ExternalLink.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExternalLink.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/ExternalLink.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ExternalLink.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/ExternalLink.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AA6D9C,QAAA,MAAM,YAAY;;;;;eAnCH,OAAO;gBACN,OAAO;WACZ,GAAG,CAAC,OAAO;iBACL,eAAe;;;;;;;;eAHjB,OAAO;gBACN,OAAO;WACZ,GAAG,CAAC,OAAO;iBACL,eAAe;kFAgCc,CAAA;AAC9C,eAAe,YAAY,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Link.d.ts","sourceRoot":"","sources":["../../../../src/components/atoms/Link.tsx"],"names":[],"mappings":"AACA,OAAO,EAAO,SAAS,EAA2B,MAAM,eAAe,CAAA;AAwBvE,QAAA,MAAM,IAAI,sHAAoB,CAAA;AAC9B,eAAe,IAAI,CAAA"}
|
|
@@ -6,6 +6,7 @@ export { default as ToggleButtonGroup } from './ToggleButtonGroup';
|
|
|
6
6
|
export { default as Typography } from './Typography';
|
|
7
7
|
export { default as IconButton } from './IconButton';
|
|
8
8
|
export { default as ExternalLink } from './ExternalLink';
|
|
9
|
+
export { default as Link } from './Link';
|
|
9
10
|
export type * from './Button';
|
|
10
11
|
export type * from './LabelWithIndicator';
|
|
11
12
|
export type * from './PasswordField';
|
|
@@ -14,4 +15,5 @@ export type * from './ToggleButtonGroup';
|
|
|
14
15
|
export type * from './Typography';
|
|
15
16
|
export type * from './IconButton';
|
|
16
17
|
export type * from './ExternalLink';
|
|
18
|
+
export type * from './Link';
|
|
17
19
|
//# 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,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,YAAY,EAAE,MAAM,gBAAgB,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,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,YAAY,EAAE,MAAM,gBAAgB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AAExC,mBAAmB,UAAU,CAAA;AAC7B,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,gBAAgB,CAAA;AACnC,mBAAmB,QAAQ,CAAA"}
|
|
@@ -111,5 +111,11 @@ 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
|
+
}
|
|
114
120
|
export {};
|
|
115
121
|
//# 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" | "TypographyClasses"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
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" | "endIcon" | "startIcon" | "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;;2rDAOtB,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":"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"}
|
package/dist/widgets/index.cjs
CHANGED
|
@@ -9,7 +9,7 @@ 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-CVfTyHiz.cjs");
|
|
13
13
|
const paletteUtils = require("../paletteUtils-B9ybmwiI.cjs");
|
|
14
14
|
function detectTouchscreen() {
|
|
15
15
|
let result = false;
|
|
@@ -5275,7 +5275,7 @@ function ComparativeCategoryWidgetUI({
|
|
|
5275
5275
|
{ id: "c4r.widgets.category.selectedItems" },
|
|
5276
5276
|
{ items: selectedCategories.length }
|
|
5277
5277
|
) : intlConfig.formatMessage({ id: "c4r.widgets.category.all" }) }),
|
|
5278
|
-
/* @__PURE__ */ jsxRuntime.jsx(TablePaginationActions.Typography, { variant: "caption", component: "div", children: searchActive ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
5278
|
+
/* @__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({
|
|
5279
5279
|
id: "c4r.widgets.category.unlock"
|
|
5280
5280
|
}) }) : selectedCategories.length ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5281
5281
|
material.Box,
|
|
@@ -5286,11 +5286,11 @@ function ComparativeCategoryWidgetUI({
|
|
|
5286
5286
|
gap: theme.spacing(1)
|
|
5287
5287
|
},
|
|
5288
5288
|
children: [
|
|
5289
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5289
|
+
/* @__PURE__ */ jsxRuntime.jsx(Alert.Link, { onClick: enableBlocking, children: intlConfig.formatMessage({
|
|
5290
5290
|
id: "c4r.widgets.category.lock"
|
|
5291
5291
|
}) }),
|
|
5292
5292
|
/* @__PURE__ */ jsxRuntime.jsx(material.Divider, { orientation: "vertical", flexItem: true }),
|
|
5293
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5293
|
+
/* @__PURE__ */ jsxRuntime.jsx(Alert.Link, { onClick: clearSelection, children: intlConfig.formatMessage({
|
|
5294
5294
|
id: "c4r.widgets.category.clear"
|
|
5295
5295
|
}) })
|
|
5296
5296
|
]
|
package/dist/widgets/index.js
CHANGED
|
@@ -7,7 +7,7 @@ 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 { A as Alert } from "../Alert-
|
|
10
|
+
import { L as Link$1, A as Alert } from "../Alert-BcaaL6lM.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;
|
|
@@ -5273,7 +5273,7 @@ function ComparativeCategoryWidgetUI({
|
|
|
5273
5273
|
{ id: "c4r.widgets.category.selectedItems" },
|
|
5274
5274
|
{ items: selectedCategories.length }
|
|
5275
5275
|
) : intlConfig.formatMessage({ id: "c4r.widgets.category.all" }) }),
|
|
5276
|
-
/* @__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({
|
|
5276
|
+
/* @__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({
|
|
5277
5277
|
id: "c4r.widgets.category.unlock"
|
|
5278
5278
|
}) }) : selectedCategories.length ? /* @__PURE__ */ jsxs(
|
|
5279
5279
|
Box,
|
|
@@ -5284,11 +5284,11 @@ function ComparativeCategoryWidgetUI({
|
|
|
5284
5284
|
gap: theme.spacing(1)
|
|
5285
5285
|
},
|
|
5286
5286
|
children: [
|
|
5287
|
-
/* @__PURE__ */ jsx(Link, { onClick: enableBlocking, children: intlConfig.formatMessage({
|
|
5287
|
+
/* @__PURE__ */ jsx(Link$1, { onClick: enableBlocking, children: intlConfig.formatMessage({
|
|
5288
5288
|
id: "c4r.widgets.category.lock"
|
|
5289
5289
|
}) }),
|
|
5290
5290
|
/* @__PURE__ */ jsx(Divider, { orientation: "vertical", flexItem: true }),
|
|
5291
|
-
/* @__PURE__ */ jsx(Link, { onClick: clearSelection, children: intlConfig.formatMessage({
|
|
5291
|
+
/* @__PURE__ */ jsx(Link$1, { onClick: clearSelection, children: intlConfig.formatMessage({
|
|
5292
5292
|
id: "c4r.widgets.category.clear"
|
|
5293
5293
|
}) })
|
|
5294
5294
|
]
|