@flozy/editor 1.4.9 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Editor/CommonEditor.js +14 -3
- package/dist/Editor/Editor.css +144 -14
- package/dist/Editor/Elements/AppHeader/AppHeader.js +16 -11
- package/dist/Editor/Elements/Button/EditorButton.js +16 -7
- package/dist/Editor/Elements/Embed/Embed.js +13 -10
- package/dist/Editor/Elements/Form/Form.js +2 -1
- package/dist/Editor/Elements/Form/FormPopup.js +4 -2
- package/dist/Editor/Elements/Grid/Grid.js +15 -2
- package/dist/Editor/Elements/Grid/GridItem.js +14 -2
- package/dist/Editor/Elements/Table/TableSelector.js +6 -4
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +73 -0
- package/dist/Editor/Toolbar/FormatTools/index.js +2 -1
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +23 -9
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +152 -42
- package/dist/Editor/Toolbar/PopupTool/index.js +35 -34
- package/dist/Editor/Toolbar/Toolbar.js +6 -1
- package/dist/Editor/Toolbar/toolbarGroups.js +9 -9
- package/dist/Editor/assets/svg/addGridItem.js +49 -0
- package/dist/Editor/common/ColorPickerButton.js +3 -3
- package/dist/Editor/common/StyleBuilder/embedImageStyle.js +4 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +32 -15
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +48 -34
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +90 -115
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +93 -101
- package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +24 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +7 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/elementSize.js +49 -20
- package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +9 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +23 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/radiusStyle.js +52 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +33 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +16 -17
- package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +8 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/textAlign.js +12 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +28 -23
- package/dist/Editor/common/StyleBuilder/gridStyle.js +0 -6
- package/dist/Editor/common/StyleBuilder/index.js +70 -44
- package/dist/Editor/common/Uploader.js +51 -14
- package/dist/Editor/common/iconslist.js +409 -0
- package/dist/Editor/utils/embed.js +2 -22
- package/package.json +1 -1
@@ -1,5 +1,10 @@
|
|
1
|
-
import React, { useState } from "react";
|
2
|
-
import {
|
1
|
+
import React, { useEffect, useState } from "react";
|
2
|
+
import {
|
3
|
+
// Dialog,
|
4
|
+
DialogTitle, DialogContent, DialogActions, Button,
|
5
|
+
// Tabs,
|
6
|
+
// Tab,
|
7
|
+
Grid, IconButton, Typography, Drawer } from "@mui/material";
|
3
8
|
import FieldMap from "./fieldTypes";
|
4
9
|
import CloseIcon from "@mui/icons-material/Close";
|
5
10
|
import commonStyle from "../../commonStyle";
|
@@ -44,27 +49,31 @@ const StyleContent = props => {
|
|
44
49
|
})
|
45
50
|
}, value);
|
46
51
|
};
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
}
|
52
|
+
|
53
|
+
// const StyleTabs = (props) => {
|
54
|
+
// const { value, handleChange, renderTabs } = props;
|
55
|
+
// return (
|
56
|
+
// <Tabs
|
57
|
+
// value={value}
|
58
|
+
// onChange={handleChange}
|
59
|
+
// variant="scrollable"
|
60
|
+
// scrollButtons="auto"
|
61
|
+
// aria-label="scrollable auto tabs example"
|
62
|
+
// className="editorTabs"
|
63
|
+
// >
|
64
|
+
// {renderTabs.map((m, i) => {
|
65
|
+
// return (
|
66
|
+
// <Tab
|
67
|
+
// key={`editor-stt-tab-${m.value}`}
|
68
|
+
// value={m.value}
|
69
|
+
// label={m.tab}
|
70
|
+
// />
|
71
|
+
// );
|
72
|
+
// })}
|
73
|
+
// </Tabs>
|
74
|
+
// );
|
75
|
+
// };
|
76
|
+
|
68
77
|
const StyleBuilder = props => {
|
69
78
|
const {
|
70
79
|
title,
|
@@ -77,16 +86,29 @@ const StyleBuilder = props => {
|
|
77
86
|
// className,
|
78
87
|
} = props;
|
79
88
|
const [elementProps, setElementProps] = useState(element);
|
80
|
-
const [tab, setTab] = useState(renderTabs[0]?.value);
|
89
|
+
// const [tab, setTab] = useState(renderTabs[0]?.value);
|
90
|
+
const [tab] = useState(renderTabs[0]?.value);
|
81
91
|
const tabVal = renderTabs?.find(f => f.value === tab);
|
82
92
|
const {
|
83
93
|
needActions = true
|
84
94
|
} = tabVal || {
|
85
95
|
needActions: true
|
86
96
|
};
|
87
|
-
|
88
|
-
|
89
|
-
|
97
|
+
useEffect(() => {
|
98
|
+
if (customProps?.onDrawerOpen) {
|
99
|
+
customProps?.onDrawerOpen(true);
|
100
|
+
}
|
101
|
+
return () => {
|
102
|
+
if (customProps?.onDrawerOpen) {
|
103
|
+
customProps?.onDrawerOpen(false);
|
104
|
+
}
|
105
|
+
};
|
106
|
+
}, []);
|
107
|
+
|
108
|
+
// const handleChange = (e, newValue) => {
|
109
|
+
// setTab(newValue);
|
110
|
+
// };
|
111
|
+
|
90
112
|
const onElementPropsChange = data => {
|
91
113
|
setElementProps({
|
92
114
|
...elementProps,
|
@@ -99,21 +121,25 @@ const StyleBuilder = props => {
|
|
99
121
|
const handleClose = () => {
|
100
122
|
onClose();
|
101
123
|
};
|
102
|
-
return /*#__PURE__*/_jsx(
|
124
|
+
return /*#__PURE__*/_jsx(Drawer, {
|
103
125
|
open: true,
|
104
126
|
fullWidth: true,
|
105
|
-
className: ` dialogComp`,
|
127
|
+
className: ` dialogComp tools-drawer`,
|
128
|
+
anchor: "right",
|
129
|
+
hideBackdrop: true,
|
106
130
|
children: /*#__PURE__*/_jsxs(Grid, {
|
107
131
|
item: true,
|
108
132
|
xs: 12,
|
109
133
|
sx: {
|
110
|
-
p:
|
134
|
+
p: 2,
|
135
|
+
width: "350px"
|
111
136
|
},
|
112
137
|
children: [/*#__PURE__*/_jsx(DialogTitle, {
|
113
138
|
sx: {
|
114
139
|
p: 0,
|
115
140
|
pb: 2
|
116
141
|
},
|
142
|
+
className: "optionePopupHeader",
|
117
143
|
children: /*#__PURE__*/_jsxs(Grid, {
|
118
144
|
container: true,
|
119
145
|
justifyContent: "space-between",
|
@@ -133,22 +159,22 @@ const StyleBuilder = props => {
|
|
133
159
|
})
|
134
160
|
})]
|
135
161
|
})
|
136
|
-
}), /*#__PURE__*/
|
162
|
+
}), /*#__PURE__*/_jsx(DialogContent, {
|
137
163
|
sx: {
|
138
|
-
p: 0
|
164
|
+
p: 0,
|
165
|
+
maxHeight: `${window.innerHeight - 150}px`
|
166
|
+
// padding: "16px",
|
139
167
|
},
|
140
|
-
children:
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
handleClose: handleClose
|
151
|
-
})]
|
168
|
+
children: renderTabs.map((m, i) => {
|
169
|
+
return /*#__PURE__*/_jsx(StyleContent, {
|
170
|
+
renderTabs: renderTabs,
|
171
|
+
value: m.value,
|
172
|
+
element: elementProps,
|
173
|
+
onChange: onElementPropsChange,
|
174
|
+
customProps: customProps,
|
175
|
+
handleClose: handleClose
|
176
|
+
}, `tab_${m.value}_$${i}`);
|
177
|
+
})
|
152
178
|
}), needActions ? /*#__PURE__*/_jsxs(DialogActions, {
|
153
179
|
sx: {
|
154
180
|
p: 0,
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import React, { useState } from "react";
|
2
|
-
import { Grid, Button } from "@mui/material";
|
2
|
+
import { Grid, Button, Typography } from "@mui/material";
|
3
3
|
import CloudUploadIcon from "@mui/icons-material/CloudUpload";
|
4
4
|
import { convertBase64 } from "../utils/helper";
|
5
5
|
import { uploadFile } from "../service/fileupload";
|
6
|
+
import { UploadBtnIcon } from "./iconslist";
|
6
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
7
8
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
8
9
|
const Uploader = props => {
|
@@ -45,11 +46,59 @@ const Uploader = props => {
|
|
45
46
|
return /*#__PURE__*/_jsxs(Grid, {
|
46
47
|
container: true,
|
47
48
|
sx: {
|
48
|
-
pt:
|
49
|
+
pt: 1
|
49
50
|
},
|
50
51
|
children: [/*#__PURE__*/_jsx(Grid, {
|
51
52
|
item: true,
|
52
53
|
xs: 12,
|
54
|
+
children: uploading ? "Uploading..." : ""
|
55
|
+
}), /*#__PURE__*/_jsx(Typography, {
|
56
|
+
variant: "body1",
|
57
|
+
color: "primary",
|
58
|
+
sx: {
|
59
|
+
fontSize: "14px",
|
60
|
+
fontWeight: "500",
|
61
|
+
marginBottom: "5px"
|
62
|
+
},
|
63
|
+
children: "Upload Image"
|
64
|
+
}), /*#__PURE__*/_jsx(Grid, {
|
65
|
+
item: true,
|
66
|
+
xs: 12,
|
67
|
+
style: {
|
68
|
+
marginTop: "12px",
|
69
|
+
width: "100%",
|
70
|
+
backgroundImage: base64 ? `url(${base64})` : "none",
|
71
|
+
backgroundSize: "contain",
|
72
|
+
backgroundRepeat: "no-repeat",
|
73
|
+
backgroundPosition: "center",
|
74
|
+
height: "200px",
|
75
|
+
position: "relative",
|
76
|
+
backgroundColor: "rgba(0,0,0,0.5)",
|
77
|
+
borderRadius: "10px"
|
78
|
+
},
|
79
|
+
children: /*#__PURE__*/_jsx(Grid, {
|
80
|
+
className: "uploadImageSection",
|
81
|
+
children: base64 ? /*#__PURE__*/_jsx(Grid, {
|
82
|
+
className: "removeImageText",
|
83
|
+
onClick: onRemoveBG,
|
84
|
+
children: "REMOVE"
|
85
|
+
}) : /*#__PURE__*/_jsxs(Grid, {
|
86
|
+
className: "uploadImageText",
|
87
|
+
onClick: handleChange,
|
88
|
+
children: [/*#__PURE__*/_jsx(UploadBtnIcon, {}), /*#__PURE__*/_jsx("span", {
|
89
|
+
style: {
|
90
|
+
paddingLeft: "8px"
|
91
|
+
},
|
92
|
+
children: "UPLOAD"
|
93
|
+
})]
|
94
|
+
})
|
95
|
+
})
|
96
|
+
}), /*#__PURE__*/_jsx(Grid, {
|
97
|
+
item: true,
|
98
|
+
xs: 12,
|
99
|
+
sx: {
|
100
|
+
paddingTop: "20px"
|
101
|
+
},
|
53
102
|
children: /*#__PURE__*/_jsxs(Grid, {
|
54
103
|
container: true,
|
55
104
|
justifyContent: "space-between",
|
@@ -76,18 +125,6 @@ const Uploader = props => {
|
|
76
125
|
children: "Clear"
|
77
126
|
}) : ""]
|
78
127
|
})
|
79
|
-
}), uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
|
80
|
-
item: true,
|
81
|
-
xs: 12,
|
82
|
-
style: {
|
83
|
-
marginTop: "12px",
|
84
|
-
width: "100%",
|
85
|
-
backgroundImage: base64 ? `url(${base64})` : "none",
|
86
|
-
backgroundSize: "contain",
|
87
|
-
backgroundRepeat: "no-repeat",
|
88
|
-
backgroundPosition: "center",
|
89
|
-
height: "100px"
|
90
|
-
}
|
91
128
|
})]
|
92
129
|
});
|
93
130
|
};
|
@@ -880,4 +880,413 @@ export const PageSettings = props => /*#__PURE__*/_jsxs("svg", {
|
|
880
880
|
d: "M9.22082 9.41013H9.3411C9.40267 9.41013 9.45738 9.45007 9.4772 9.50961C9.50102 9.58075 9.52981 9.65038 9.56274 9.7164C9.59069 9.77248 9.58022 9.83939 9.53673 9.88296L9.45187 9.96782C9.36581 10.054 9.36589 10.1942 9.45195 10.2801L9.71978 10.548C9.80586 10.6339 9.94588 10.6339 10.0321 10.5478L10.1168 10.4631C10.1602 10.4197 10.2273 10.4094 10.2834 10.4372C10.3497 10.4702 10.4192 10.499 10.4904 10.5228C10.5498 10.5427 10.5898 10.5974 10.5898 10.6589V10.7792C10.5898 10.901 10.6889 11 10.8107 11H11.1894C11.3111 11 11.4102 10.901 11.4102 10.7792V10.6589C11.4102 10.5974 11.4501 10.5427 11.5096 10.5228C11.5806 10.4991 11.6503 10.4703 11.7165 10.4372C11.7727 10.4094 11.8397 10.4197 11.8832 10.4631L11.9679 10.5478C12.0541 10.634 12.1942 10.6339 12.2801 10.548L12.5481 10.2801C12.5898 10.2384 12.6128 10.1831 12.6128 10.124C12.6128 10.065 12.5898 10.0096 12.5481 9.96782L12.4632 9.88296C12.4197 9.83939 12.4093 9.77248 12.4373 9.71625C12.4706 9.64933 12.4993 9.57984 12.5227 9.50961C12.5425 9.45007 12.5973 9.41013 12.6589 9.41013H12.7792C12.901 9.41013 13 9.31111 13 9.18931V8.81069C13 8.68891 12.9011 8.58987 12.7795 8.58987H12.6588C12.5973 8.58987 12.5425 8.54993 12.5227 8.49039C12.4992 8.42001 12.4704 8.35038 12.4371 8.28345C12.4092 8.22722 12.4196 8.16031 12.4631 8.11674L12.5481 8.03174C12.5898 7.98999 12.6128 7.93467 12.6128 7.87558C12.6128 7.8165 12.5898 7.76117 12.5481 7.71942L12.2801 7.45173C12.1939 7.36537 12.0538 7.36552 11.9679 7.45173L11.883 7.53674C11.8393 7.58045 11.7724 7.59085 11.7163 7.56267C11.6498 7.52951 11.5803 7.50086 11.5096 7.47721C11.4501 7.45746 11.4102 7.40275 11.4102 7.34111V7.22082C11.4102 7.09904 11.3111 7 11.1894 7H10.8107C10.6889 7 10.5898 7.09904 10.5898 7.22082V7.34111C10.5898 7.40275 10.5499 7.45746 10.4904 7.47721C10.4195 7.50086 10.35 7.52965 10.2836 7.56267C10.2276 7.591 10.1607 7.58045 10.117 7.53674L10.0321 7.45173C9.94603 7.36582 9.80586 7.36582 9.71978 7.45173L9.45195 7.71942C9.4102 7.76103 9.38721 7.8165 9.38721 7.87558C9.38721 7.93452 9.4102 7.98999 9.45187 8.03174L9.53689 8.11674C9.58037 8.16031 9.59084 8.22722 9.56281 8.28345C9.5295 8.35037 9.5007 8.42001 9.4772 8.49039C9.45738 8.54993 9.40267 8.58987 9.3411 8.58987H9.22082C9.09903 8.58987 9 8.68891 9 8.81069V9.18931C9 9.31111 9.09903 9.41013 9.22082 9.41013ZM11 8.18517C11.4493 8.18517 11.8148 8.55068 11.8148 9C11.8148 9.44932 11.4493 9.81483 11 9.81483C10.5506 9.81483 10.1851 9.44932 10.1851 9C10.1851 8.55068 10.5506 8.18517 11 8.18517Z",
|
881
881
|
fill: "#64748B"
|
882
882
|
})]
|
883
|
+
});
|
884
|
+
export const TextLeftAlign = props => /*#__PURE__*/_jsxs("svg", {
|
885
|
+
xmlns: "http://www.w3.org/2000/svg",
|
886
|
+
width: "24",
|
887
|
+
height: "25",
|
888
|
+
viewBox: "0 0 24 25",
|
889
|
+
fill: "none",
|
890
|
+
children: [/*#__PURE__*/_jsx("path", {
|
891
|
+
className: "fillPath",
|
892
|
+
d: "M21 6.05566H3C2.59 6.05566 2.25 5.71566 2.25 5.30566C2.25 4.89566 2.59 4.55566 3 4.55566H21C21.41 4.55566 21.75 4.89566 21.75 5.30566C21.75 5.71566 21.41 6.05566 21 6.05566Z",
|
893
|
+
fill: "#292D32"
|
894
|
+
}), /*#__PURE__*/_jsx("path", {
|
895
|
+
className: "fillPath",
|
896
|
+
d: "M12.47 11.0557H3C2.59 11.0557 2.25 10.7157 2.25 10.3057C2.25 9.89566 2.59 9.55566 3 9.55566H12.47C12.88 9.55566 13.22 9.89566 13.22 10.3057C13.22 10.7157 12.89 11.0557 12.47 11.0557Z",
|
897
|
+
fill: "#292D32"
|
898
|
+
}), /*#__PURE__*/_jsx("path", {
|
899
|
+
className: "fillPath",
|
900
|
+
d: "M21 16.0557H3C2.59 16.0557 2.25 15.7157 2.25 15.3057C2.25 14.8957 2.59 14.5557 3 14.5557H21C21.41 14.5557 21.75 14.8957 21.75 15.3057C21.75 15.7157 21.41 16.0557 21 16.0557Z",
|
901
|
+
fill: "#292D32"
|
902
|
+
}), /*#__PURE__*/_jsx("path", {
|
903
|
+
className: "fillPath",
|
904
|
+
d: "M12.47 21.0557H3C2.59 21.0557 2.25 20.7157 2.25 20.3057C2.25 19.8957 2.59 19.5557 3 19.5557H12.47C12.88 19.5557 13.22 19.8957 13.22 20.3057C13.22 20.7157 12.89 21.0557 12.47 21.0557Z",
|
905
|
+
fill: "#292D32"
|
906
|
+
})]
|
907
|
+
});
|
908
|
+
export const TextCenterAlign = props => /*#__PURE__*/_jsxs("svg", {
|
909
|
+
xmlns: "http://www.w3.org/2000/svg",
|
910
|
+
width: "24",
|
911
|
+
height: "25",
|
912
|
+
viewBox: "0 0 24 25",
|
913
|
+
fill: "none",
|
914
|
+
children: [/*#__PURE__*/_jsx("path", {
|
915
|
+
className: "fillPath",
|
916
|
+
d: "M21 6.05566H3C2.59 6.05566 2.25 5.71566 2.25 5.30566C2.25 4.89566 2.59 4.55566 3 4.55566H21C21.41 4.55566 21.75 4.89566 21.75 5.30566C21.75 5.71566 21.41 6.05566 21 6.05566Z",
|
917
|
+
fill: "#292D32"
|
918
|
+
}), /*#__PURE__*/_jsx("path", {
|
919
|
+
className: "fillPath",
|
920
|
+
d: "M16.7417 11.0557H7.26172C6.85172 11.0557 6.51172 10.7157 6.51172 10.3057C6.51172 9.89566 6.85172 9.55566 7.26172 9.55566H16.7317C17.1417 9.55566 17.4817 9.89566 17.4817 10.3057C17.4817 10.7157 17.1517 11.0557 16.7417 11.0557Z",
|
921
|
+
fill: "#292D32"
|
922
|
+
}), /*#__PURE__*/_jsx("path", {
|
923
|
+
className: "fillPath",
|
924
|
+
d: "M21 16.0557H3C2.59 16.0557 2.25 15.7157 2.25 15.3057C2.25 14.8957 2.59 14.5557 3 14.5557H21C21.41 14.5557 21.75 14.8957 21.75 15.3057C21.75 15.7157 21.41 16.0557 21 16.0557Z",
|
925
|
+
fill: "#292D32"
|
926
|
+
}), /*#__PURE__*/_jsx("path", {
|
927
|
+
className: "fillPath",
|
928
|
+
d: "M16.7417 21.0557H7.26172C6.85172 21.0557 6.51172 20.7157 6.51172 20.3057C6.51172 19.8957 6.85172 19.5557 7.26172 19.5557H16.7317C17.1417 19.5557 17.4817 19.8957 17.4817 20.3057C17.4817 20.7157 17.1517 21.0557 16.7417 21.0557Z",
|
929
|
+
fill: "#292D32"
|
930
|
+
})]
|
931
|
+
});
|
932
|
+
export const TextRightAlign = props => /*#__PURE__*/_jsxs("svg", {
|
933
|
+
xmlns: "http://www.w3.org/2000/svg",
|
934
|
+
width: "24",
|
935
|
+
height: "25",
|
936
|
+
viewBox: "0 0 24 25",
|
937
|
+
fill: "none",
|
938
|
+
children: [/*#__PURE__*/_jsx("path", {
|
939
|
+
className: "fillPath",
|
940
|
+
d: "M21 6.05566H3C2.59 6.05566 2.25 5.71566 2.25 5.30566C2.25 4.89566 2.59 4.55566 3 4.55566H21C21.41 4.55566 21.75 4.89566 21.75 5.30566C21.75 5.71566 21.41 6.05566 21 6.05566Z",
|
941
|
+
fill: "#292D32"
|
942
|
+
}), /*#__PURE__*/_jsx("path", {
|
943
|
+
className: "fillPath",
|
944
|
+
d: "M21.0013 11.0557H11.5312C11.1213 11.0557 10.7812 10.7157 10.7812 10.3057C10.7812 9.89566 11.1213 9.55566 11.5312 9.55566H21.0013C21.4113 9.55566 21.7513 9.89566 21.7513 10.3057C21.7513 10.7157 21.4113 11.0557 21.0013 11.0557Z",
|
945
|
+
fill: "#292D32"
|
946
|
+
}), /*#__PURE__*/_jsx("path", {
|
947
|
+
className: "fillPath",
|
948
|
+
d: "M21 16.0557H3C2.59 16.0557 2.25 15.7157 2.25 15.3057C2.25 14.8957 2.59 14.5557 3 14.5557H21C21.41 14.5557 21.75 14.8957 21.75 15.3057C21.75 15.7157 21.41 16.0557 21 16.0557Z",
|
949
|
+
fill: "#292D32"
|
950
|
+
}), /*#__PURE__*/_jsx("path", {
|
951
|
+
className: "fillPath",
|
952
|
+
d: "M21.0013 21.0557H11.5312C11.1213 21.0557 10.7812 20.7157 10.7812 20.3057C10.7812 19.8957 11.1213 19.5557 11.5312 19.5557H21.0013C21.4113 19.5557 21.7513 19.8957 21.7513 20.3057C21.7513 20.7157 21.4113 21.0557 21.0013 21.0557Z",
|
953
|
+
fill: "#292D32"
|
954
|
+
})]
|
955
|
+
});
|
956
|
+
export const JustifyStartIcon = props => /*#__PURE__*/_jsxs("svg", {
|
957
|
+
xmlns: "http://www.w3.org/2000/svg",
|
958
|
+
width: "24",
|
959
|
+
height: "25",
|
960
|
+
viewBox: "0 0 24 25",
|
961
|
+
fill: "none",
|
962
|
+
children: [/*#__PURE__*/_jsx("path", {
|
963
|
+
d: "M5.10156 20.0557H16.9016C18.4016 20.0557 19.0016 19.4157 19.0016 17.8257V16.7857C19.0016 15.1957 18.4016 14.5557 16.9016 14.5557H5.10156",
|
964
|
+
stroke: "#64748B",
|
965
|
+
strokeWidth: "1.5",
|
966
|
+
strokeLinecap: "round",
|
967
|
+
strokeLinejoin: "round",
|
968
|
+
className: "fillStroke"
|
969
|
+
}), /*#__PURE__*/_jsx("path", {
|
970
|
+
d: "M5.10156 6.05566H11.9016C13.4016 6.05566 14.0016 6.69566 14.0016 8.28566V9.32566C14.0016 10.9157 13.4016 11.5557 11.9016 11.5557H5.10156",
|
971
|
+
stroke: "#64748B",
|
972
|
+
strokeWidth: "1.5",
|
973
|
+
strokeLinecap: "round",
|
974
|
+
strokeLinejoin: "round",
|
975
|
+
className: "fillStroke"
|
976
|
+
}), /*#__PURE__*/_jsx("path", {
|
977
|
+
d: "M5 2.7959V22.7959",
|
978
|
+
stroke: "#64748B",
|
979
|
+
strokeWidth: "1.5",
|
980
|
+
strokeLinecap: "round",
|
981
|
+
strokeLinejoin: "round",
|
982
|
+
className: "fillStroke"
|
983
|
+
})]
|
984
|
+
});
|
985
|
+
export const JustifyCenterIcon = props => /*#__PURE__*/_jsxs("svg", {
|
986
|
+
xmlns: "http://www.w3.org/2000/svg",
|
987
|
+
width: "24",
|
988
|
+
height: "25",
|
989
|
+
viewBox: "0 0 24 25",
|
990
|
+
fill: "none",
|
991
|
+
children: [/*#__PURE__*/_jsx("path", {
|
992
|
+
d: "M17.4 20.0557H6.6C5.1 20.0557 4.5 19.4157 4.5 17.8257V16.7857C4.5 15.1957 5.1 14.5557 6.6 14.5557H17.4C18.9 14.5557 19.5 15.1957 19.5 16.7857V17.8257C19.5 19.4157 18.9 20.0557 17.4 20.0557Z",
|
993
|
+
stroke: "#64748B",
|
994
|
+
strokeWidth: "1.5",
|
995
|
+
strokeLinecap: "round",
|
996
|
+
strokeLinejoin: "round",
|
997
|
+
className: "fillStroke"
|
998
|
+
}), /*#__PURE__*/_jsx("path", {
|
999
|
+
d: "M15.4 11.5557H8.6C7.1 11.5557 6.5 10.9157 6.5 9.32566V8.28566C6.5 6.69566 7.1 6.05566 8.6 6.05566H15.4C16.9 6.05566 17.5 6.69566 17.5 8.28566V9.32566C17.5 10.9157 16.9 11.5557 15.4 11.5557Z",
|
1000
|
+
stroke: "#64748B",
|
1001
|
+
strokeWidth: "1.5",
|
1002
|
+
strokeLinecap: "round",
|
1003
|
+
strokeLinejoin: "round",
|
1004
|
+
className: "fillStroke"
|
1005
|
+
}), /*#__PURE__*/_jsx("path", {
|
1006
|
+
d: "M12 22.8053V20.4053",
|
1007
|
+
stroke: "#64748B",
|
1008
|
+
strokeWidth: "1.5",
|
1009
|
+
strokeLinecap: "round",
|
1010
|
+
strokeLinejoin: "round"
|
1011
|
+
}), /*#__PURE__*/_jsx("path", {
|
1012
|
+
d: "M12 13.8057V11.8057",
|
1013
|
+
stroke: "#64748B",
|
1014
|
+
strokeWidth: "1.5",
|
1015
|
+
strokeLinecap: "round",
|
1016
|
+
strokeLinejoin: "round",
|
1017
|
+
className: "fillStroke"
|
1018
|
+
}), /*#__PURE__*/_jsx("path", {
|
1019
|
+
d: "M12 2.80566V5.49566",
|
1020
|
+
stroke: "#64748B",
|
1021
|
+
strokeWidth: "1.5",
|
1022
|
+
strokeLinecap: "round",
|
1023
|
+
strokeLinejoin: "round",
|
1024
|
+
className: "fillStroke"
|
1025
|
+
})]
|
1026
|
+
});
|
1027
|
+
export const JustifyEndIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1028
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1029
|
+
width: "24",
|
1030
|
+
height: "25",
|
1031
|
+
viewBox: "0 0 24 25",
|
1032
|
+
fill: "none",
|
1033
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1034
|
+
d: "M18.9 20.0557H7.1C5.6 20.0557 5 19.4157 5 17.8257V16.7857C5 15.1957 5.6 14.5557 7.1 14.5557H18.9",
|
1035
|
+
stroke: "#64748B",
|
1036
|
+
strokeWidth: "1.5",
|
1037
|
+
strokeLinecap: "round",
|
1038
|
+
strokeLinejoin: "round",
|
1039
|
+
className: "fillStroke"
|
1040
|
+
}), /*#__PURE__*/_jsx("path", {
|
1041
|
+
d: "M18.9 6.05566H12.1C10.6 6.05566 10 6.69566 10 8.28566V9.32566C10 10.9157 10.6 11.5557 12.1 11.5557H18.9",
|
1042
|
+
stroke: "#64748B",
|
1043
|
+
strokeWidth: "1.5",
|
1044
|
+
strokeLinecap: "round",
|
1045
|
+
strokeLinejoin: "round",
|
1046
|
+
className: "fillStroke"
|
1047
|
+
}), /*#__PURE__*/_jsx("path", {
|
1048
|
+
d: "M19 2.7959V22.7959",
|
1049
|
+
stroke: "#64748B",
|
1050
|
+
strokeWidth: "1.5",
|
1051
|
+
strokeLinecap: "round",
|
1052
|
+
strokeLinejoin: "round",
|
1053
|
+
className: "fillStroke"
|
1054
|
+
})]
|
1055
|
+
});
|
1056
|
+
export const AlignStartIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1057
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1058
|
+
width: "24",
|
1059
|
+
height: "25",
|
1060
|
+
viewBox: "0 0 24 25",
|
1061
|
+
fill: "none",
|
1062
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1063
|
+
d: "M4.75 5.90527L4.75 17.7053C4.75 19.2053 5.39 19.8053 6.98 19.8053H8.02C9.61 19.8053 10.25 19.2053 10.25 17.7053L10.25 5.90527",
|
1064
|
+
stroke: "#64748B",
|
1065
|
+
strokeWidth: "1.5",
|
1066
|
+
strokeLinecap: "round",
|
1067
|
+
strokeLinejoin: "round",
|
1068
|
+
className: "fillStroke"
|
1069
|
+
}), /*#__PURE__*/_jsx("path", {
|
1070
|
+
d: "M18.75 5.90527V12.7053C18.75 14.2053 18.11 14.8053 16.52 14.8053H15.48C13.89 14.8053 13.25 14.2053 13.25 12.7053V5.90527",
|
1071
|
+
stroke: "#64748B",
|
1072
|
+
strokeWidth: "1.5",
|
1073
|
+
strokeLinecap: "round",
|
1074
|
+
strokeLinejoin: "round",
|
1075
|
+
className: "fillStroke"
|
1076
|
+
}), /*#__PURE__*/_jsx("path", {
|
1077
|
+
d: "M22.0117 5.80566L2.01172 5.80566",
|
1078
|
+
stroke: "#64748B",
|
1079
|
+
strokeWidth: "1.5",
|
1080
|
+
strokeLinecap: "round",
|
1081
|
+
strokeLinejoin: "round",
|
1082
|
+
className: "fillStroke"
|
1083
|
+
})]
|
1084
|
+
});
|
1085
|
+
export const AlignCenterIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1086
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1087
|
+
width: "24",
|
1088
|
+
height: "25",
|
1089
|
+
viewBox: "0 0 24 25",
|
1090
|
+
fill: "none",
|
1091
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1092
|
+
d: "M4.75 18.2057L4.75 7.40566C4.75 5.90566 5.39 5.30566 6.98 5.30566L8.02 5.30566C9.61 5.30566 10.25 5.90566 10.25 7.40566L10.25 18.2057C10.25 19.7057 9.61 20.3057 8.02 20.3057H6.98C5.39 20.3057 4.75 19.7057 4.75 18.2057Z",
|
1093
|
+
stroke: "#64748B",
|
1094
|
+
strokeWidth: "1.5",
|
1095
|
+
strokeLinecap: "round",
|
1096
|
+
strokeLinejoin: "round",
|
1097
|
+
className: "fillStroke"
|
1098
|
+
}), /*#__PURE__*/_jsx("path", {
|
1099
|
+
d: "M13.25 16.2057L13.25 9.40566C13.25 7.90566 13.89 7.30566 15.48 7.30566L16.52 7.30566C18.11 7.30566 18.75 7.90566 18.75 9.40566V16.2057C18.75 17.7057 18.11 18.3057 16.52 18.3057H15.48C13.89 18.3057 13.25 17.7057 13.25 16.2057Z",
|
1100
|
+
stroke: "#64748B",
|
1101
|
+
strokeWidth: "1.5",
|
1102
|
+
strokeLinecap: "round",
|
1103
|
+
strokeLinejoin: "round",
|
1104
|
+
className: "fillStroke"
|
1105
|
+
}), /*#__PURE__*/_jsx("path", {
|
1106
|
+
d: "M1.99844 12.8057H4.39844",
|
1107
|
+
stroke: "#64748B",
|
1108
|
+
strokeWidth: "1.5",
|
1109
|
+
strokeLinecap: "round",
|
1110
|
+
strokeLinejoin: "round",
|
1111
|
+
className: "fillStroke"
|
1112
|
+
}), /*#__PURE__*/_jsx("path", {
|
1113
|
+
d: "M11 12.8057H13",
|
1114
|
+
stroke: "#64748B",
|
1115
|
+
strokeWidth: "1.5",
|
1116
|
+
strokeLinecap: "round",
|
1117
|
+
strokeLinejoin: "round",
|
1118
|
+
className: "fillStroke"
|
1119
|
+
}), /*#__PURE__*/_jsx("path", {
|
1120
|
+
d: "M22 12.8057H19.31",
|
1121
|
+
stroke: "#64748B",
|
1122
|
+
strokeWidth: "1.5",
|
1123
|
+
strokeLinecap: "round",
|
1124
|
+
strokeLinejoin: "round",
|
1125
|
+
className: "fillStroke"
|
1126
|
+
})]
|
1127
|
+
});
|
1128
|
+
export const AlignEndIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1129
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1130
|
+
width: "24",
|
1131
|
+
height: "25",
|
1132
|
+
viewBox: "0 0 24 25",
|
1133
|
+
fill: "none",
|
1134
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1135
|
+
d: "M4.75 19.7057V7.90566C4.75 6.40566 5.39 5.80566 6.98 5.80566H8.02C9.61 5.80566 10.25 6.40566 10.25 7.90566V19.7057",
|
1136
|
+
stroke: "#64748B",
|
1137
|
+
strokeWidth: "1.5",
|
1138
|
+
strokeLinecap: "round",
|
1139
|
+
strokeLinejoin: "round",
|
1140
|
+
className: "fillStroke"
|
1141
|
+
}), /*#__PURE__*/_jsx("path", {
|
1142
|
+
d: "M18.75 19.7057V12.9057C18.75 11.4057 18.11 10.8057 16.52 10.8057H15.48C13.89 10.8057 13.25 11.4057 13.25 12.9057V19.7057",
|
1143
|
+
stroke: "#64748B",
|
1144
|
+
strokeWidth: "1.5",
|
1145
|
+
strokeLinecap: "round",
|
1146
|
+
strokeLinejoin: "round",
|
1147
|
+
className: "fillStroke"
|
1148
|
+
}), /*#__PURE__*/_jsx("path", {
|
1149
|
+
d: "M22.0117 19.8057H2.01172",
|
1150
|
+
stroke: "#64748B",
|
1151
|
+
strokeWidth: "1.5",
|
1152
|
+
strokeLinecap: "round",
|
1153
|
+
strokeLinejoin: "round",
|
1154
|
+
className: "fillStroke"
|
1155
|
+
})]
|
1156
|
+
});
|
1157
|
+
export const UploadBtnIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1158
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1159
|
+
width: "21",
|
1160
|
+
height: "16",
|
1161
|
+
viewBox: "0 0 21 16",
|
1162
|
+
fill: "none",
|
1163
|
+
children: [/*#__PURE__*/_jsx("rect", {
|
1164
|
+
x: "0.5",
|
1165
|
+
y: "0.5",
|
1166
|
+
width: "20",
|
1167
|
+
height: "14.3462",
|
1168
|
+
rx: "7.17308",
|
1169
|
+
stroke: "white"
|
1170
|
+
}), /*#__PURE__*/_jsx("path", {
|
1171
|
+
d: "M4.37891 10.0834V8.7508C4.37891 8.57819 4.52511 8.44676 4.64216 8.31992L7.85316 4.84024C7.98427 4.68731 8.22463 4.68731 8.37758 4.81839L10.8467 7.24338C10.9997 7.37446 11.2182 7.37446 11.3711 7.24338L12.3326 6.28212C12.4855 6.12919 12.704 6.15104 12.857 6.28212L15.3261 8.86003C15.3916 8.92557 15.4354 9.01296 15.4354 9.12219V10.0834C15.4354 10.2801 15.2605 10.4548 15.0639 10.4548H4.75037C4.53186 10.4548 4.37891 10.3019 4.37891 10.0834Z",
|
1172
|
+
fill: "white"
|
1173
|
+
}), /*#__PURE__*/_jsx("path", {
|
1174
|
+
d: "M12.9911 4.68886C13.5341 4.68886 13.9744 4.24871 13.9744 3.70576C13.9744 3.16281 13.5341 2.72266 12.9911 2.72266C12.448 2.72266 12.0078 3.16281 12.0078 3.70576C12.0078 4.24871 12.448 4.68886 12.9911 4.68886Z",
|
1175
|
+
fill: "white"
|
1176
|
+
})]
|
1177
|
+
});
|
1178
|
+
export const TextPlusIcon = props => /*#__PURE__*/_jsx("svg", {
|
1179
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1180
|
+
width: "7",
|
1181
|
+
height: "4",
|
1182
|
+
viewBox: "0 0 7 4",
|
1183
|
+
fill: "none",
|
1184
|
+
children: /*#__PURE__*/_jsx("path", {
|
1185
|
+
d: "M1.08203 3.43359L3.51526 1.00036L5.94849 3.43359",
|
1186
|
+
stroke: "#64748B",
|
1187
|
+
strokeLinecap: "round"
|
1188
|
+
})
|
1189
|
+
});
|
1190
|
+
export const TextMinusIcon = props => /*#__PURE__*/_jsx("svg", {
|
1191
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1192
|
+
width: "7",
|
1193
|
+
height: "4",
|
1194
|
+
viewBox: "0 0 7 4",
|
1195
|
+
fill: "none",
|
1196
|
+
children: /*#__PURE__*/_jsx("path", {
|
1197
|
+
d: "M1 0.805664L3.43323 3.2389L5.86646 0.805664",
|
1198
|
+
stroke: "#64748B",
|
1199
|
+
strokeLinecap: "round"
|
1200
|
+
})
|
1201
|
+
});
|
1202
|
+
export const DirectionRowIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1203
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1204
|
+
width: "20",
|
1205
|
+
height: "20",
|
1206
|
+
viewBox: "0 0 20 20",
|
1207
|
+
fill: "none",
|
1208
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1209
|
+
d: "M16.5832 11.25H3.4165C2.1665 11.25 1.6665 11.7833 1.6665 13.1083V16.475C1.6665 17.8 2.1665 18.3333 3.4165 18.3333H16.5832C17.8332 18.3333 18.3332 17.8 18.3332 16.475V13.1083C18.3332 11.7833 17.8332 11.25 16.5832 11.25Z",
|
1210
|
+
stroke: "#64748B",
|
1211
|
+
className: "fillStroke",
|
1212
|
+
strokeWidth: "1.5",
|
1213
|
+
strokeLinecap: "round",
|
1214
|
+
strokeLinejoin: "round"
|
1215
|
+
}), /*#__PURE__*/_jsx("path", {
|
1216
|
+
d: "M16.5832 1.66699H3.4165C2.1665 1.66699 1.6665 2.20033 1.6665 3.52533V6.89199C1.6665 8.21699 2.1665 8.75033 3.4165 8.75033H16.5832C17.8332 8.75033 18.3332 8.21699 18.3332 6.89199V3.52533C18.3332 2.20033 17.8332 1.66699 16.5832 1.66699Z",
|
1217
|
+
stroke: "#64748B",
|
1218
|
+
className: "fillStroke",
|
1219
|
+
strokeWidth: "1.5",
|
1220
|
+
strokeLinecap: "round",
|
1221
|
+
strokeLinejoin: "round"
|
1222
|
+
})]
|
1223
|
+
});
|
1224
|
+
export const DirectionColumIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1225
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1226
|
+
width: "20",
|
1227
|
+
height: "20",
|
1228
|
+
viewBox: "0 0 20 20",
|
1229
|
+
fill: "none",
|
1230
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1231
|
+
d: "M8.74984 16.5837V3.41699C8.74984 2.16699 8.2165 1.66699 6.8915 1.66699H3.52484C2.19984 1.66699 1.6665 2.16699 1.6665 3.41699V16.5837C1.6665 17.8337 2.19984 18.3337 3.52484 18.3337H6.8915C8.2165 18.3337 8.74984 17.8337 8.74984 16.5837Z",
|
1232
|
+
stroke: "#64748B",
|
1233
|
+
className: "fillStroke",
|
1234
|
+
strokeWidth: "1.5",
|
1235
|
+
strokeLinecap: "round",
|
1236
|
+
strokeLinejoin: "round"
|
1237
|
+
}), /*#__PURE__*/_jsx("path", {
|
1238
|
+
d: "M18.3333 16.5837V3.41699C18.3333 2.16699 17.8 1.66699 16.475 1.66699H13.1083C11.7833 1.66699 11.25 2.16699 11.25 3.41699V16.5837C11.25 17.8337 11.7833 18.3337 13.1083 18.3337H16.475C17.8 18.3337 18.3333 17.8337 18.3333 16.5837Z",
|
1239
|
+
stroke: "#64748B",
|
1240
|
+
className: "fillStroke",
|
1241
|
+
strokeWidth: "1.5",
|
1242
|
+
strokeLinecap: "round",
|
1243
|
+
strokeLinejoin: "round"
|
1244
|
+
})]
|
1245
|
+
});
|
1246
|
+
export const DirectionReverseIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1247
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1248
|
+
width: "22",
|
1249
|
+
height: "22",
|
1250
|
+
viewBox: "0 0 22 22",
|
1251
|
+
fill: "none",
|
1252
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1253
|
+
d: "M8.25016 20.1663H13.7502C18.3335 20.1663 20.1668 18.333 20.1668 13.7497V8.24967C20.1668 3.66634 18.3335 1.83301 13.7502 1.83301H8.25016C3.66683 1.83301 1.8335 3.66634 1.8335 8.24967V13.7497C1.8335 18.333 3.66683 20.1663 8.25016 20.1663Z",
|
1254
|
+
stroke: "#64748B",
|
1255
|
+
className: "fillStroke",
|
1256
|
+
strokeWidth: "1.5",
|
1257
|
+
strokeLinecap: "round",
|
1258
|
+
strokeLinejoin: "round"
|
1259
|
+
}), /*#__PURE__*/_jsx("path", {
|
1260
|
+
d: "M15.7207 12.668L12.9341 15.4546",
|
1261
|
+
stroke: "#64748B",
|
1262
|
+
className: "fillStroke",
|
1263
|
+
strokeWidth: "1.5",
|
1264
|
+
strokeMiterlimit: "10",
|
1265
|
+
strokeLinecap: "round",
|
1266
|
+
strokeLinejoin: "round"
|
1267
|
+
}), /*#__PURE__*/_jsx("path", {
|
1268
|
+
d: "M6.2793 12.668H15.721",
|
1269
|
+
stroke: "#64748B",
|
1270
|
+
className: "fillStroke",
|
1271
|
+
strokeWidth: "1.5",
|
1272
|
+
strokeMiterlimit: "10",
|
1273
|
+
strokeLinecap: "round",
|
1274
|
+
strokeLinejoin: "round"
|
1275
|
+
}), /*#__PURE__*/_jsx("path", {
|
1276
|
+
d: "M6.2793 9.33159L9.06596 6.54492",
|
1277
|
+
stroke: "#64748B",
|
1278
|
+
className: "fillStroke",
|
1279
|
+
strokeWidth: "1.5",
|
1280
|
+
strokeMiterlimit: "10",
|
1281
|
+
strokeLinecap: "round",
|
1282
|
+
strokeLinejoin: "round"
|
1283
|
+
}), /*#__PURE__*/_jsx("path", {
|
1284
|
+
d: "M15.721 9.33203H6.2793",
|
1285
|
+
stroke: "#64748B",
|
1286
|
+
className: "fillStroke",
|
1287
|
+
strokeWidth: "1.5",
|
1288
|
+
strokeMiterlimit: "10",
|
1289
|
+
strokeLinecap: "round",
|
1290
|
+
strokeLinejoin: "round"
|
1291
|
+
})]
|
883
1292
|
});
|