@carto/meridian-ds 3.1.0 → 3.1.1-alpha.7c9a0df.290
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 +3 -0
- package/dist/{ListItem-CRSS7jTs.js → ListItem-CEg234fT.js} +2 -2
- package/dist/{ListItem-CLIaUyDV.cjs → ListItem-ajuL9fis.cjs} +10 -10
- package/dist/{OpenDiagonallyRight-BUZBgnkY.cjs → OpenDiagonallyRight-BPUv8cSL.cjs} +2 -2
- package/dist/{OpenDiagonallyRight-DQEM4RAg.js → OpenDiagonallyRight-DuJMadZ8.js} +2 -2
- package/dist/SwatchSquare-B7D7xeJg.cjs +296 -0
- package/dist/SwatchSquare-DCUIqPy7.js +297 -0
- package/dist/{palette-utils-Ou97WiuF.cjs → TablePaginationActions-Ba0wKQEf.cjs} +2027 -2023
- package/dist/{palette-utils-B2CZD7oM.js → TablePaginationActions-Df-RJIBv.js} +2048 -2044
- package/dist/components/index.cjs +120 -120
- package/dist/components/index.js +19 -19
- package/dist/custom-icons/index.cjs +1285 -1546
- package/dist/custom-icons/index.js +1287 -1548
- package/dist/metadata.json +1 -1
- package/dist/theme/index.cjs +134 -134
- package/dist/theme/index.js +8 -8
- package/dist/types/utils/legend-utils.d.ts +12 -0
- package/dist/types/utils/legend-utils.d.ts.map +1 -1
- package/dist/types/widgets/legend/LegendCategories.stories.d.ts +68 -0
- package/dist/types/widgets/legend/LegendCategories.stories.d.ts.map +1 -1
- package/dist/types/widgets/legend/legend-types/LegendCategories.d.ts.map +1 -1
- package/dist/{utils-BnqQIMbU.js → utils-BtGGNRrY.js} +16 -16
- package/dist/{utils-DtB4pKaP.cjs → utils-ztPfyopy.cjs} +21 -21
- package/dist/widgets/index.cjs +349 -193
- package/dist/widgets/index.js +232 -76
- package/package.json +2 -2
- package/dist/SwatchSquare-BDOWVMHN.js +0 -25
- package/dist/SwatchSquare-BydXPPhd.cjs +0 -24
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
- feat(legend): add geometry-aware `symbol`, `strokeLineStyle` and `fillPattern` props to `LegendCategories` — circle/square/line symbols, solid/dashed/dotted strokes, and 8 fill patterns (incl. `solid`), each a single value or per-category array, tinted by the row color, and white/transparent values stay visible. Reuses existing `Stroke*`/`Pattern*` icons and removes the dead `isMax` ring [#446](https://github.com/CartoDB/meridian-ds/pull/446)
|
|
6
|
+
- fix(figma): sync Code Connect templates with the Meridian-DS Figma renames and add templates for the new `CopiableInputText` and `PasswordField` components [#436](https://github.com/CartoDB/meridian-ds/pull/436)
|
|
7
|
+
|
|
5
8
|
## 3.0
|
|
6
9
|
|
|
7
10
|
### 3.1.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import React, { forwardRef, useState, createContext, useMemo, useContext } from "react";
|
|
3
|
-
import { styled, Link as Link$1, Alert as Alert$1,
|
|
3
|
+
import { styled, Link as Link$1, Fade, AlertTitle, Alert as Alert$1, List as List$1, ListItemButton as ListItemButton$1, ListItem as ListItem$1 } from "@mui/material";
|
|
4
4
|
import { OpenInNewOutlined } from "@mui/icons-material";
|
|
5
5
|
import "cartocolor";
|
|
6
|
-
import {
|
|
6
|
+
import { u as useTranslationWithFallback, f as ICON_SIZE_MEDIUM, I as ICON_SIZE_SMALL, T as Typography, n as LIST_MAX_SIZE, L as LIST_ITEM_SIZE_DENSE, k as LIST_ITEM_SIZE_DEFAULT, o as LIST_OVERSCAN_ITEMS_COUNT } from "./TablePaginationActions-Df-RJIBv.js";
|
|
7
7
|
import * as ReactWindow from "react-window";
|
|
8
8
|
const ScreenReaderOnly = styled("span")(() => ({
|
|
9
9
|
position: "absolute",
|
|
@@ -4,7 +4,7 @@ const React = require("react");
|
|
|
4
4
|
const material = require("@mui/material");
|
|
5
5
|
const iconsMaterial = require("@mui/icons-material");
|
|
6
6
|
require("cartocolor");
|
|
7
|
-
const
|
|
7
|
+
const TablePaginationActions = require("./TablePaginationActions-Ba0wKQEf.cjs");
|
|
8
8
|
const ReactWindow = require("react-window");
|
|
9
9
|
function _interopNamespaceDefault(e) {
|
|
10
10
|
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
@@ -53,7 +53,7 @@ const Icon = material.styled("span", {
|
|
|
53
53
|
},
|
|
54
54
|
svg: {
|
|
55
55
|
// Size adapts to the text size, but make sure the icon size is at least 12px
|
|
56
|
-
fontSize: `max(1em, ${
|
|
56
|
+
fontSize: `max(1em, ${TablePaginationActions.ICON_SIZE_SMALL})`,
|
|
57
57
|
color: "inherit !important",
|
|
58
58
|
"> path": {
|
|
59
59
|
color: "inherit !important"
|
|
@@ -64,7 +64,7 @@ const Icon = material.styled("span", {
|
|
|
64
64
|
top: "calc(1em * 1/5)",
|
|
65
65
|
// 20% offset ratio
|
|
66
66
|
svg: {
|
|
67
|
-
fontSize:
|
|
67
|
+
fontSize: TablePaginationActions.ICON_SIZE_SMALL
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
// Button, body2 and body1 variants use medium-sized icons
|
|
@@ -72,7 +72,7 @@ const Icon = material.styled("span", {
|
|
|
72
72
|
top: "calc(1em * 1/4)",
|
|
73
73
|
// 25% offset ratio
|
|
74
74
|
svg: {
|
|
75
|
-
fontSize:
|
|
75
|
+
fontSize: TablePaginationActions.ICON_SIZE_MEDIUM
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
})
|
|
@@ -92,7 +92,7 @@ function _Link({
|
|
|
92
92
|
"aria-describedby": ariaDescribedby,
|
|
93
93
|
...otherProps
|
|
94
94
|
}, ref) {
|
|
95
|
-
const screenReaderTextValue =
|
|
95
|
+
const screenReaderTextValue = TablePaginationActions.useTranslationWithFallback(
|
|
96
96
|
"c4r.button.opensInNewTab",
|
|
97
97
|
screenReaderText
|
|
98
98
|
);
|
|
@@ -139,7 +139,7 @@ const StyledAlert = material.styled(material.Alert, {
|
|
|
139
139
|
"icon message"
|
|
140
140
|
"icon actions"
|
|
141
141
|
`,
|
|
142
|
-
gridTemplateColumns: hasCloseButton ? `${
|
|
142
|
+
gridTemplateColumns: hasCloseButton ? `${TablePaginationActions.ICON_SIZE_MEDIUM} 1fr ${theme.spacing(3)}` : `${TablePaginationActions.ICON_SIZE_MEDIUM}`
|
|
143
143
|
},
|
|
144
144
|
...isSticky && {
|
|
145
145
|
borderRadius: 0
|
|
@@ -216,7 +216,7 @@ function _Alert({
|
|
|
216
216
|
...otherProps,
|
|
217
217
|
children: [
|
|
218
218
|
title && /* @__PURE__ */ jsxRuntime.jsx(material.AlertTitle, { children: title }),
|
|
219
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
219
|
+
/* @__PURE__ */ jsxRuntime.jsx(TablePaginationActions.Typography, { variant: "caption", color: "inherit", component: "div", children })
|
|
220
220
|
]
|
|
221
221
|
}
|
|
222
222
|
) });
|
|
@@ -236,8 +236,8 @@ function _List({
|
|
|
236
236
|
dense = true,
|
|
237
237
|
virtualized = false,
|
|
238
238
|
virtualizedItemHeight,
|
|
239
|
-
virtualizedListHeight =
|
|
240
|
-
overscanCount =
|
|
239
|
+
virtualizedListHeight = TablePaginationActions.LIST_MAX_SIZE,
|
|
240
|
+
overscanCount = TablePaginationActions.LIST_OVERSCAN_ITEMS_COUNT,
|
|
241
241
|
disableGutters = false,
|
|
242
242
|
disablePadding = false,
|
|
243
243
|
fixedHeight = true,
|
|
@@ -271,7 +271,7 @@ function _List({
|
|
|
271
271
|
() => React.Children.toArray(children),
|
|
272
272
|
[children]
|
|
273
273
|
);
|
|
274
|
-
const defaultItemHeight = virtualizedItemHeight ?? (dense !== false ?
|
|
274
|
+
const defaultItemHeight = virtualizedItemHeight ?? (dense !== false ? TablePaginationActions.LIST_ITEM_SIZE_DENSE : TablePaginationActions.LIST_ITEM_SIZE_DEFAULT);
|
|
275
275
|
const listHeight = React.useMemo(() => {
|
|
276
276
|
const calculatedHeight = childrenArray.length * defaultItemHeight;
|
|
277
277
|
return Math.min(calculatedHeight, virtualizedListHeight);
|
|
@@ -84,5 +84,5 @@ function OpenDiagonallyRight({ width, height, sx, ...props }, ref) {
|
|
|
84
84
|
const ForwardedComponent = React.forwardRef(OpenDiagonallyRight);
|
|
85
85
|
ForwardedComponent.displayName = "OpenDiagonallyRight";
|
|
86
86
|
exports.ForwardedComponent = ForwardedComponent$2;
|
|
87
|
-
exports.ForwardedComponent$1 = ForwardedComponent
|
|
88
|
-
exports.ForwardedComponent$2 = ForwardedComponent;
|
|
87
|
+
exports.ForwardedComponent$1 = ForwardedComponent;
|
|
88
|
+
exports.ForwardedComponent$2 = ForwardedComponent$1;
|
|
@@ -84,6 +84,6 @@ const ForwardedComponent = forwardRef(OpenDiagonallyRight);
|
|
|
84
84
|
ForwardedComponent.displayName = "OpenDiagonallyRight";
|
|
85
85
|
export {
|
|
86
86
|
ForwardedComponent$2 as F,
|
|
87
|
-
ForwardedComponent
|
|
88
|
-
ForwardedComponent as b
|
|
87
|
+
ForwardedComponent as a,
|
|
88
|
+
ForwardedComponent$1 as b
|
|
89
89
|
};
|
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const material = require("@mui/material");
|
|
5
|
+
const Icon$b = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
d: "M9 21H3v-6h6zM21 21h-6v-6h6zM15 15H9V9h6zM9 9H3V3h6zM21 9h-6V3h6z"
|
|
10
|
+
}
|
|
11
|
+
) });
|
|
12
|
+
const BaseSvgIcon$b = material.createSvgIcon(Icon$b(), "PatternChecker");
|
|
13
|
+
function PatternChecker({ width, height, sx, ...props }, ref) {
|
|
14
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
15
|
+
BaseSvgIcon$b,
|
|
16
|
+
{
|
|
17
|
+
ref,
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
sx: {
|
|
20
|
+
width,
|
|
21
|
+
height: height || width,
|
|
22
|
+
...sx
|
|
23
|
+
},
|
|
24
|
+
...props
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
const ForwardedComponent$b = React.forwardRef(PatternChecker);
|
|
29
|
+
ForwardedComponent$b.displayName = "PatternChecker";
|
|
30
|
+
const Icon$a = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31
|
+
"path",
|
|
32
|
+
{
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
d: "m21 5.443-.516-.515-2.828 2.828 2.828 2.828.516-.516v3.862l-.516-.516-2.827 2.828 2.828 2.828.515-.514V21h-2.444l.514-.515-2.828-2.828-2.828 2.827.516.516h-3.86l.515-.516-2.828-2.828-2.828 2.83.514.514H3v-2.443l.515.514 2.828-2.829-2.828-2.828L3 13.93V10.07l.515.515 2.828-2.827-2.83-2.83L3 5.443V3h2.443l-.514.515 2.828 2.828 2.828-2.828L10.07 3h3.859l-.515.515 2.828 2.827 2.828-2.828L18.557 3H21zm-11.828 10.8L12 19.07l2.827-2.828L12 13.414zM4.93 12l2.828 2.828L10.585 12 7.757 9.172zm8.484-.001 2.828 2.828L19.07 12l-2.828-2.828zM9.172 7.757 12 10.585l2.827-2.828L12 4.929z",
|
|
36
|
+
clipRule: "evenodd"
|
|
37
|
+
}
|
|
38
|
+
) });
|
|
39
|
+
const BaseSvgIcon$a = material.createSvgIcon(Icon$a(), "PatternCrossDiagonal");
|
|
40
|
+
function PatternCrossDiagonal({ width, height, sx, ...props }, ref) {
|
|
41
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
42
|
+
BaseSvgIcon$a,
|
|
43
|
+
{
|
|
44
|
+
ref,
|
|
45
|
+
viewBox: "0 0 24 24",
|
|
46
|
+
sx: {
|
|
47
|
+
width,
|
|
48
|
+
height: height || width,
|
|
49
|
+
...sx
|
|
50
|
+
},
|
|
51
|
+
...props
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
const ForwardedComponent$a = React.forwardRef(PatternCrossDiagonal);
|
|
56
|
+
ForwardedComponent$a.displayName = "PatternCrossDiagonal";
|
|
57
|
+
const Icon$9 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58
|
+
"path",
|
|
59
|
+
{
|
|
60
|
+
fill: "currentColor",
|
|
61
|
+
d: "M4.5 3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M9.5 3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M19.5 3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M4.5 8a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M9.5 8a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M19.5 8a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M4.5 18a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M9.5 18a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M19.5 18a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M14.5 3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M14.5 8a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M14.5 18a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M4.5 13a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M9.5 13a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M19.5 13a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M14.5 13a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3"
|
|
62
|
+
}
|
|
63
|
+
) });
|
|
64
|
+
const BaseSvgIcon$9 = material.createSvgIcon(Icon$9(), "PatternDots");
|
|
65
|
+
function PatternDots({ width, height, sx, ...props }, ref) {
|
|
66
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
67
|
+
BaseSvgIcon$9,
|
|
68
|
+
{
|
|
69
|
+
ref,
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
sx: {
|
|
72
|
+
width,
|
|
73
|
+
height: height || width,
|
|
74
|
+
...sx
|
|
75
|
+
},
|
|
76
|
+
...props
|
|
77
|
+
}
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
const ForwardedComponent$9 = React.forwardRef(PatternDots);
|
|
81
|
+
ForwardedComponent$9.displayName = "PatternDots";
|
|
82
|
+
const Icon$8 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
83
|
+
"path",
|
|
84
|
+
{
|
|
85
|
+
fill: "currentColor",
|
|
86
|
+
d: "M3 5V3h18v2zM3 9h18V7H3zM21 13H3v-2h18zM3 17h18v-2H3zM3 21h18v-2H3z"
|
|
87
|
+
}
|
|
88
|
+
) });
|
|
89
|
+
const BaseSvgIcon$8 = material.createSvgIcon(Icon$8(), "PatternHLines");
|
|
90
|
+
function PatternHLines({ width, height, sx, ...props }, ref) {
|
|
91
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
92
|
+
BaseSvgIcon$8,
|
|
93
|
+
{
|
|
94
|
+
ref,
|
|
95
|
+
viewBox: "0 0 24 24",
|
|
96
|
+
sx: {
|
|
97
|
+
width,
|
|
98
|
+
height: height || width,
|
|
99
|
+
...sx
|
|
100
|
+
},
|
|
101
|
+
...props
|
|
102
|
+
}
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
const ForwardedComponent$8 = React.forwardRef(PatternHLines);
|
|
106
|
+
ForwardedComponent$8.displayName = "PatternHLines";
|
|
107
|
+
const Icon$7 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
108
|
+
"path",
|
|
109
|
+
{
|
|
110
|
+
fill: "currentColor",
|
|
111
|
+
d: "M3 4.414 19.586 21H21v-1.414L4.414 3H3zM3 10.071 13.929 21h2.829L3 7.242zM3 15.728 8.271 21h2.83L3 12.9zM3 21h2.443L3 18.557zM21 16.758v-2.83L10.071 3H7.242zM21 11.1V8.273L15.727 3H12.9zM21 5.443V3h-2.443z"
|
|
112
|
+
}
|
|
113
|
+
) });
|
|
114
|
+
const BaseSvgIcon$7 = material.createSvgIcon(Icon$7(), "PatternLDiagonal");
|
|
115
|
+
function PatternLDiagonal({ width, height, sx, ...props }, ref) {
|
|
116
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
117
|
+
BaseSvgIcon$7,
|
|
118
|
+
{
|
|
119
|
+
ref,
|
|
120
|
+
viewBox: "0 0 24 24",
|
|
121
|
+
sx: {
|
|
122
|
+
width,
|
|
123
|
+
height: height || width,
|
|
124
|
+
...sx
|
|
125
|
+
},
|
|
126
|
+
...props
|
|
127
|
+
}
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
const ForwardedComponent$7 = React.forwardRef(PatternLDiagonal);
|
|
131
|
+
ForwardedComponent$7.displayName = "PatternLDiagonal";
|
|
132
|
+
const Icon$6 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
133
|
+
"path",
|
|
134
|
+
{
|
|
135
|
+
fill: "currentColor",
|
|
136
|
+
d: "M21 4.414 4.414 21H3v-1.414L19.586 3H21zM21 10.071 10.071 21H7.242L21 7.242zM21 15.728 15.729 21h-2.83L21 12.9zM21 21h-2.443L21 18.557zM3 16.758v-2.83L13.929 3h2.829zM3 11.1V8.273L8.272 3h2.829zM3 5.443V3h2.443z"
|
|
137
|
+
}
|
|
138
|
+
) });
|
|
139
|
+
const BaseSvgIcon$6 = material.createSvgIcon(Icon$6(), "PatternRDiagonal");
|
|
140
|
+
function PatternRDiagonal({ width, height, sx, ...props }, ref) {
|
|
141
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
142
|
+
BaseSvgIcon$6,
|
|
143
|
+
{
|
|
144
|
+
ref,
|
|
145
|
+
viewBox: "0 0 24 24",
|
|
146
|
+
sx: {
|
|
147
|
+
width,
|
|
148
|
+
height: height || width,
|
|
149
|
+
...sx
|
|
150
|
+
},
|
|
151
|
+
...props
|
|
152
|
+
}
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
const ForwardedComponent$6 = React.forwardRef(PatternRDiagonal);
|
|
156
|
+
ForwardedComponent$6.displayName = "PatternRDiagonal";
|
|
157
|
+
const Icon$5 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M3 3h18v18H3z" }) });
|
|
158
|
+
const BaseSvgIcon$5 = material.createSvgIcon(Icon$5(), "PatternSolid");
|
|
159
|
+
function PatternSolid({ width, height, sx, ...props }, ref) {
|
|
160
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
161
|
+
BaseSvgIcon$5,
|
|
162
|
+
{
|
|
163
|
+
ref,
|
|
164
|
+
viewBox: "0 0 24 24",
|
|
165
|
+
sx: {
|
|
166
|
+
width,
|
|
167
|
+
height: height || width,
|
|
168
|
+
...sx
|
|
169
|
+
},
|
|
170
|
+
...props
|
|
171
|
+
}
|
|
172
|
+
);
|
|
173
|
+
}
|
|
174
|
+
const ForwardedComponent$5 = React.forwardRef(PatternSolid);
|
|
175
|
+
ForwardedComponent$5.displayName = "PatternSolid";
|
|
176
|
+
const Icon$4 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
177
|
+
"path",
|
|
178
|
+
{
|
|
179
|
+
fill: "currentColor",
|
|
180
|
+
fillRule: "evenodd",
|
|
181
|
+
d: "M5 21H3V3h2zm4 0V3H7v18zm4-18v18h-2V3zm4 18V3h-2v18zm4 0V3h-2v18z",
|
|
182
|
+
clipRule: "evenodd"
|
|
183
|
+
}
|
|
184
|
+
) });
|
|
185
|
+
const BaseSvgIcon$4 = material.createSvgIcon(Icon$4(), "PatternVLines");
|
|
186
|
+
function PatternVLines({ width, height, sx, ...props }, ref) {
|
|
187
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
188
|
+
BaseSvgIcon$4,
|
|
189
|
+
{
|
|
190
|
+
ref,
|
|
191
|
+
viewBox: "0 0 24 24",
|
|
192
|
+
sx: {
|
|
193
|
+
width,
|
|
194
|
+
height: height || width,
|
|
195
|
+
...sx
|
|
196
|
+
},
|
|
197
|
+
...props
|
|
198
|
+
}
|
|
199
|
+
);
|
|
200
|
+
}
|
|
201
|
+
const ForwardedComponent$4 = React.forwardRef(PatternVLines);
|
|
202
|
+
ForwardedComponent$4.displayName = "PatternVLines";
|
|
203
|
+
const Icon$3 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M3 11h4v2H3zM10 11h4v2h-4zM21 11h-4v2h4z" }) });
|
|
204
|
+
const BaseSvgIcon$3 = material.createSvgIcon(Icon$3(), "StrokeDash");
|
|
205
|
+
function StrokeDash({ width, height, sx, ...props }, ref) {
|
|
206
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
207
|
+
BaseSvgIcon$3,
|
|
208
|
+
{
|
|
209
|
+
ref,
|
|
210
|
+
viewBox: "0 0 24 24",
|
|
211
|
+
sx: {
|
|
212
|
+
width,
|
|
213
|
+
height: height || width,
|
|
214
|
+
...sx
|
|
215
|
+
},
|
|
216
|
+
...props
|
|
217
|
+
}
|
|
218
|
+
);
|
|
219
|
+
}
|
|
220
|
+
const ForwardedComponent$3 = React.forwardRef(StrokeDash);
|
|
221
|
+
ForwardedComponent$3.displayName = "StrokeDash";
|
|
222
|
+
const Icon$2 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
223
|
+
"path",
|
|
224
|
+
{
|
|
225
|
+
fill: "currentColor",
|
|
226
|
+
d: "M4 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2M8 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2M12 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2M16 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2M20 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2"
|
|
227
|
+
}
|
|
228
|
+
) });
|
|
229
|
+
const BaseSvgIcon$2 = material.createSvgIcon(Icon$2(), "StrokeDot");
|
|
230
|
+
function StrokeDot({ width, height, sx, ...props }, ref) {
|
|
231
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
232
|
+
BaseSvgIcon$2,
|
|
233
|
+
{
|
|
234
|
+
ref,
|
|
235
|
+
viewBox: "0 0 24 24",
|
|
236
|
+
sx: {
|
|
237
|
+
width,
|
|
238
|
+
height: height || width,
|
|
239
|
+
...sx
|
|
240
|
+
},
|
|
241
|
+
...props
|
|
242
|
+
}
|
|
243
|
+
);
|
|
244
|
+
}
|
|
245
|
+
const ForwardedComponent$2 = React.forwardRef(StrokeDot);
|
|
246
|
+
ForwardedComponent$2.displayName = "StrokeDot";
|
|
247
|
+
const Icon$1 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M21 11H3v2h18z" }) });
|
|
248
|
+
const BaseSvgIcon$1 = material.createSvgIcon(Icon$1(), "StrokeSolid");
|
|
249
|
+
function StrokeSolid({ width, height, sx, ...props }, ref) {
|
|
250
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
251
|
+
BaseSvgIcon$1,
|
|
252
|
+
{
|
|
253
|
+
ref,
|
|
254
|
+
viewBox: "0 0 24 24",
|
|
255
|
+
sx: {
|
|
256
|
+
width,
|
|
257
|
+
height: height || width,
|
|
258
|
+
...sx
|
|
259
|
+
},
|
|
260
|
+
...props
|
|
261
|
+
}
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
const ForwardedComponent$1 = React.forwardRef(StrokeSolid);
|
|
265
|
+
ForwardedComponent$1.displayName = "StrokeSolid";
|
|
266
|
+
const Icon = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { width: 16, height: 16, x: 4, y: 4, fill: "currentColor", rx: 2 }) });
|
|
267
|
+
const BaseSvgIcon = material.createSvgIcon(Icon(), "SwatchSquare");
|
|
268
|
+
function SwatchSquare({ width, height, sx, ...props }, ref) {
|
|
269
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
270
|
+
BaseSvgIcon,
|
|
271
|
+
{
|
|
272
|
+
ref,
|
|
273
|
+
viewBox: "0 0 24 24",
|
|
274
|
+
sx: {
|
|
275
|
+
width,
|
|
276
|
+
height: height || width,
|
|
277
|
+
...sx
|
|
278
|
+
},
|
|
279
|
+
...props
|
|
280
|
+
}
|
|
281
|
+
);
|
|
282
|
+
}
|
|
283
|
+
const ForwardedComponent = React.forwardRef(SwatchSquare);
|
|
284
|
+
ForwardedComponent.displayName = "SwatchSquare";
|
|
285
|
+
exports.ForwardedComponent = ForwardedComponent$b;
|
|
286
|
+
exports.ForwardedComponent$1 = ForwardedComponent$a;
|
|
287
|
+
exports.ForwardedComponent$10 = ForwardedComponent$1;
|
|
288
|
+
exports.ForwardedComponent$11 = ForwardedComponent;
|
|
289
|
+
exports.ForwardedComponent$2 = ForwardedComponent$9;
|
|
290
|
+
exports.ForwardedComponent$3 = ForwardedComponent$8;
|
|
291
|
+
exports.ForwardedComponent$4 = ForwardedComponent$7;
|
|
292
|
+
exports.ForwardedComponent$5 = ForwardedComponent$6;
|
|
293
|
+
exports.ForwardedComponent$6 = ForwardedComponent$5;
|
|
294
|
+
exports.ForwardedComponent$7 = ForwardedComponent$4;
|
|
295
|
+
exports.ForwardedComponent$8 = ForwardedComponent$3;
|
|
296
|
+
exports.ForwardedComponent$9 = ForwardedComponent$2;
|