@flozy/editor 9.8.7 → 9.8.9
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/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +12 -6
- package/dist/Editor/common/iconslist.js +22 -0
- package/dist/Editor/themeSettings/index.js +1 -1
- package/dist/Editor/themeSettingsAI/index.js +1 -1
- package/dist/Editor/themeSettingsAI/saveTheme.js +1 -1
- package/package.json +1 -1
@@ -138,6 +138,14 @@ const MultiSelectWithPopover = props => {
|
|
138
138
|
const handleClearSelection = () => {
|
139
139
|
setSelectedOptions([]);
|
140
140
|
};
|
141
|
+
const handleDeleteChip = (event, option) => {
|
142
|
+
event.stopPropagation();
|
143
|
+
setSelectedOptions(prev => {
|
144
|
+
const updatedOptions = prev.filter(selected => selected?.value !== option?.value);
|
145
|
+
onChange(updatedOptions);
|
146
|
+
return updatedOptions;
|
147
|
+
});
|
148
|
+
};
|
141
149
|
const filteredOptions = availableOptions?.filter(option => option?.value?.toLowerCase()?.includes(inputValue?.toLowerCase()));
|
142
150
|
const isExactMatch = availableOptions?.some(opt => opt?.value?.toLowerCase() === inputValue?.toLowerCase());
|
143
151
|
const open = Boolean(anchorEl);
|
@@ -157,8 +165,7 @@ const MultiSelectWithPopover = props => {
|
|
157
165
|
children: selectedOptions?.map((option, index) => /*#__PURE__*/_jsx(Chip, {
|
158
166
|
label: option?.value,
|
159
167
|
onDelete: event => {
|
160
|
-
event
|
161
|
-
setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
|
168
|
+
handleDeleteChip(event, option);
|
162
169
|
},
|
163
170
|
deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
|
164
171
|
variant: "filled",
|
@@ -168,7 +175,7 @@ const MultiSelectWithPopover = props => {
|
|
168
175
|
"& .MuiChip-deleteIcon": {
|
169
176
|
flexShrink: 0,
|
170
177
|
"& path": {
|
171
|
-
stroke: '#0F172A'
|
178
|
+
stroke: '#0F172A !important'
|
172
179
|
}
|
173
180
|
},
|
174
181
|
"&:hover": {
|
@@ -303,8 +310,7 @@ const MultiSelectWithPopover = props => {
|
|
303
310
|
index
|
304
311
|
}),
|
305
312
|
onDelete: event => {
|
306
|
-
event
|
307
|
-
setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
|
313
|
+
handleDeleteChip(event, option);
|
308
314
|
},
|
309
315
|
deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
|
310
316
|
sx: {
|
@@ -313,7 +319,7 @@ const MultiSelectWithPopover = props => {
|
|
313
319
|
"& .MuiChip-deleteIcon": {
|
314
320
|
flexShrink: 0,
|
315
321
|
"& path": {
|
316
|
-
stroke: '#0F172A'
|
322
|
+
stroke: '#0F172A !important'
|
317
323
|
}
|
318
324
|
},
|
319
325
|
"&:hover": {
|
@@ -1655,11 +1655,33 @@ export const CsvIcon = () => /*#__PURE__*/_jsxs("svg", {
|
|
1655
1655
|
})]
|
1656
1656
|
});
|
1657
1657
|
export const CloseIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1658
|
+
width: "20",
|
1659
|
+
height: "20",
|
1660
|
+
viewBox: "0 0 20 20",
|
1661
|
+
fill: "none",
|
1662
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1663
|
+
...(props || {}),
|
1664
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1665
|
+
d: "M14.1245 5.875L5.87493 14.1246",
|
1666
|
+
stroke: "#64748B",
|
1667
|
+
strokeWidth: "1.5",
|
1668
|
+
strokeLinecap: "round",
|
1669
|
+
strokeLinejoin: "round"
|
1670
|
+
}), /*#__PURE__*/_jsx("path", {
|
1671
|
+
d: "M5.875 5.875L14.1246 14.1246",
|
1672
|
+
stroke: "#64748B",
|
1673
|
+
strokeWidth: "1.5",
|
1674
|
+
strokeLinecap: "round",
|
1675
|
+
strokeLinejoin: "round"
|
1676
|
+
})]
|
1677
|
+
});
|
1678
|
+
export const CloseIcon2 = props => /*#__PURE__*/_jsxs("svg", {
|
1658
1679
|
width: "10",
|
1659
1680
|
height: "10",
|
1660
1681
|
viewBox: "0 0 10 10",
|
1661
1682
|
fill: "none",
|
1662
1683
|
xmlns: "http://www.w3.org/2000/svg",
|
1684
|
+
...(props || {}),
|
1663
1685
|
children: [/*#__PURE__*/_jsx("path", {
|
1664
1686
|
d: "M9.12476 0.875L0.875176 9.12458",
|
1665
1687
|
stroke: "#8F9CAE",
|
@@ -5,7 +5,7 @@ import { Box, CircularProgress, Drawer, Grid, IconButton, Tab, Tabs, Typography,
|
|
5
5
|
import Style from "./style";
|
6
6
|
|
7
7
|
// icons
|
8
|
-
import { CloseIcon } from "../common/iconslist";
|
8
|
+
import { CloseIcon2 as CloseIcon } from "../common/iconslist";
|
9
9
|
import { TickIcon } from "./icons";
|
10
10
|
import ColorTheme from "./colorTheme";
|
11
11
|
import Buttons from "./buttons";
|
@@ -5,7 +5,7 @@ import { Button, Checkbox, CircularProgress, Divider, Drawer, FormControlLabel,
|
|
5
5
|
import Style from "./style";
|
6
6
|
|
7
7
|
// icons
|
8
|
-
import { CloseIcon } from "../common/iconslist";
|
8
|
+
import { CloseIcon2 as CloseIcon } from "../common/iconslist";
|
9
9
|
import { CloudIcon } from "./icons";
|
10
10
|
import { TickIcon } from "./icons";
|
11
11
|
import { ResetIcon } from "./icons";
|
@@ -5,7 +5,7 @@ import { Box, Button, CircularProgress, Dialog, Divider, Grid, IconButton, TextF
|
|
5
5
|
import Style from "./style";
|
6
6
|
|
7
7
|
// icons
|
8
|
-
import { CloseIcon } from "../common/iconslist";
|
8
|
+
import { CloseIcon2 as CloseIcon } from "../common/iconslist";
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
10
10
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
11
11
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|