@flozy/editor 1.2.9 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Editor/CommonEditor.js +28 -3
- package/dist/Editor/DialogWrapper.js +9 -4
- package/dist/Editor/Editor.css +5 -4
- package/dist/Editor/Elements/AppHeader/AppHeader.js +2 -0
- package/dist/Editor/Elements/Carousel/Carousel.js +1 -0
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +9 -4
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +3 -2
- package/dist/Editor/Elements/Color Picker/LogoIcon.js +6 -6
- package/dist/Editor/Elements/Embed/Embed.js +8 -2
- package/dist/Editor/Elements/Equation/EquationButton.js +1 -1
- package/dist/Editor/Elements/ID/Id.js +1 -1
- package/dist/Editor/Elements/Link/Link.js +1 -1
- package/dist/Editor/Elements/Link/LinkButton.js +10 -2
- package/dist/Editor/Elements/Link/styles.css +1 -1
- package/dist/Editor/Elements/Signature/Signature.css +4 -4
- package/dist/Editor/Elements/Signature/SignaturePopup.js +11 -4
- package/dist/Editor/Elements/Table/Table.js +1 -0
- package/dist/Editor/Elements/Table/TableSelector.js +8 -4
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +2 -1
- package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +11 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +17 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/gridSize.js +0 -1
- package/dist/Editor/common/StyleBuilder/index.js +8 -1
- package/dist/Editor/common/Uploader.js +4 -4
- package/dist/Editor/commonStyle.js +11 -0
- package/package.json +1 -1
@@ -16,6 +16,7 @@ import "./Editor.css";
|
|
16
16
|
import { serialize } from "./utils/serializer";
|
17
17
|
import { getThumbnailImage } from "./helper";
|
18
18
|
import PopupTool from "./Toolbar/PopupTool";
|
19
|
+
import { Button } from "@mui/material";
|
19
20
|
import { jsx as _jsx } from "react/jsx-runtime";
|
20
21
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
21
22
|
const PREVIEW_IMAGE_HIDE_CLASS = ["grid-container-toolbar", "grid-item-toolbar", "element-toolbar"];
|
@@ -51,6 +52,13 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
51
52
|
const [isInteracted, setIsInteracted] = useState(false);
|
52
53
|
const [deboundedValue] = useDebounce(value, 500);
|
53
54
|
const [fullScreen, setFullScreen] = useState(false);
|
55
|
+
const [viewport, setViewport] = useState({
|
56
|
+
w: null,
|
57
|
+
h: null
|
58
|
+
});
|
59
|
+
const {
|
60
|
+
defaultBG
|
61
|
+
} = otherProps || {};
|
54
62
|
const editor = useMemo(() => {
|
55
63
|
if (collaborativeEditor) return collaborativeEditor;
|
56
64
|
return withCommon(createEditor());
|
@@ -134,6 +142,15 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
134
142
|
},
|
135
143
|
toggleFullscreen() {
|
136
144
|
setFullScreen(!fullScreen);
|
145
|
+
},
|
146
|
+
changeViewport({
|
147
|
+
w,
|
148
|
+
h
|
149
|
+
}) {
|
150
|
+
setViewport({
|
151
|
+
w,
|
152
|
+
h
|
153
|
+
});
|
137
154
|
}
|
138
155
|
}));
|
139
156
|
const [htmlAction, setHtmlAction] = useState({
|
@@ -205,10 +222,15 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
205
222
|
...props,
|
206
223
|
fullScreen: fullScreen,
|
207
224
|
children: /*#__PURE__*/_jsx("div", {
|
225
|
+
className: "editor-t-wrapper",
|
208
226
|
style: {
|
209
227
|
display: "flex",
|
210
228
|
flexDirection: "column",
|
211
|
-
padding: "0 8px"
|
229
|
+
padding: "0 8px",
|
230
|
+
background: "white",
|
231
|
+
backgroundImage: "radial-gradient(#CCC 2px, transparent 0)",
|
232
|
+
backgroundSize: "40px 40px",
|
233
|
+
backgroundPosition: "-19px -19px"
|
212
234
|
},
|
213
235
|
children: /*#__PURE__*/_jsxs(Slate, {
|
214
236
|
editor: editor,
|
@@ -223,12 +245,15 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
223
245
|
className: "editor-wrapper",
|
224
246
|
style: {
|
225
247
|
border: "1px solid #f3f3f3",
|
226
|
-
background: pageProps?.pageColor || "#FFF",
|
248
|
+
background: pageProps?.pageColor || defaultBG || "#FFF",
|
227
249
|
color: pageProps?.color || "#000",
|
228
250
|
paddingLeft: `${bannerSpacing?.left}px`,
|
229
251
|
paddingRight: `${bannerSpacing?.right}px`,
|
230
252
|
paddingTop: `${bannerSpacing?.top}px`,
|
231
|
-
paddingBottom: `${bannerSpacing?.bottom}px
|
253
|
+
paddingBottom: `${bannerSpacing?.bottom}px`,
|
254
|
+
width: viewport.w ? `${viewport.w}px` : "100%",
|
255
|
+
height: viewport.h ? `${viewport.h}px` : "auto",
|
256
|
+
alignSelf: "center"
|
232
257
|
},
|
233
258
|
children: [/*#__PURE__*/_jsx(PopupTool, {}), /*#__PURE__*/_jsx(Editable, {
|
234
259
|
className: "innert-editor-textbox",
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { Dialog, DialogTitle, DialogContent, DialogActions, IconButton, Grid } from "@mui/material";
|
3
3
|
import CloseIcon from "@mui/icons-material/Close";
|
4
|
+
// import styled from "@emotion/styled";
|
5
|
+
// import commonStyle from "./commonStyle";
|
4
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
5
7
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
6
8
|
const DialogWrapper = props => {
|
@@ -11,6 +13,7 @@ const DialogWrapper = props => {
|
|
11
13
|
footer
|
12
14
|
} = props;
|
13
15
|
return fullScreen ? /*#__PURE__*/_jsxs(Dialog, {
|
16
|
+
className: `dialogComp`,
|
14
17
|
open: fullScreen,
|
15
18
|
fullScreen: fullScreen,
|
16
19
|
onClose: onClose,
|
@@ -18,8 +21,8 @@ const DialogWrapper = props => {
|
|
18
21
|
children: /*#__PURE__*/_jsx(Grid, {
|
19
22
|
children: /*#__PURE__*/_jsx(Grid, {
|
20
23
|
style: {
|
21
|
-
display:
|
22
|
-
justifyContent:
|
24
|
+
display: "flex",
|
25
|
+
justifyContent: "end"
|
23
26
|
},
|
24
27
|
children: /*#__PURE__*/_jsx(IconButton, {
|
25
28
|
onClick: onClose,
|
@@ -37,7 +40,9 @@ const DialogWrapper = props => {
|
|
37
40
|
DialogWrapper.defaultProps = {
|
38
41
|
fullScreen: false,
|
39
42
|
onClose: () => {},
|
40
|
-
children:
|
41
|
-
footer:
|
43
|
+
children: "",
|
44
|
+
footer: ""
|
42
45
|
};
|
46
|
+
|
47
|
+
// export default styled(commonStyle)(DialogWrapper);
|
43
48
|
export default DialogWrapper;
|
package/dist/Editor/Editor.css
CHANGED
@@ -39,7 +39,8 @@ blockquote{
|
|
39
39
|
min-height: 400px;
|
40
40
|
height: fit-content;
|
41
41
|
max-width: 100%;
|
42
|
-
border: none !important
|
42
|
+
border: none !important;
|
43
|
+
z-index: 1;
|
43
44
|
}
|
44
45
|
|
45
46
|
.editor-wrapper table{
|
@@ -53,7 +54,7 @@ blockquote{
|
|
53
54
|
display: inline;
|
54
55
|
position: relative;
|
55
56
|
}
|
56
|
-
.popup{
|
57
|
+
.af-popup{
|
57
58
|
position: fixed;
|
58
59
|
left: 0;
|
59
60
|
right: 0;
|
@@ -64,8 +65,8 @@ blockquote{
|
|
64
65
|
padding: 20px;
|
65
66
|
border-radius: 6px;
|
66
67
|
/* border: 1px solid lightgray; */
|
67
|
-
height: fit-content;
|
68
|
-
z-index:
|
68
|
+
height: fit-content !important;
|
69
|
+
z-index: 999;
|
69
70
|
width: 300px;
|
70
71
|
|
71
72
|
}
|
@@ -94,6 +94,7 @@ function AppHeader(props) {
|
|
94
94
|
sx: {
|
95
95
|
my: 2
|
96
96
|
},
|
97
|
+
color: "primary",
|
97
98
|
children: appLogo && appLogo !== "none" ? /*#__PURE__*/_jsx("img", {
|
98
99
|
alt: `${appTitle} Logo`,
|
99
100
|
style: {
|
@@ -146,6 +147,7 @@ function AppHeader(props) {
|
|
146
147
|
}), /*#__PURE__*/_jsxs(Typography, {
|
147
148
|
variant: "h6",
|
148
149
|
component: "div",
|
150
|
+
color: "primary",
|
149
151
|
style: {
|
150
152
|
display: "inline-flex",
|
151
153
|
alignItems: "center"
|
@@ -15,6 +15,7 @@
|
|
15
15
|
border-radius: 20px;
|
16
16
|
background-color: #000000;
|
17
17
|
border: 1px solid #eee;
|
18
|
+
flex-shrink: 0;
|
18
19
|
}
|
19
20
|
.color-picker form{
|
20
21
|
display: flex;
|
@@ -24,9 +25,9 @@
|
|
24
25
|
}
|
25
26
|
.color-picker input{
|
26
27
|
width: 65%;
|
27
|
-
height: 30px;
|
28
|
+
height: 30px !important;
|
28
29
|
border:1px solid lightgray;
|
29
|
-
border-radius: 5px;
|
30
|
+
border-radius: 5px !important;
|
30
31
|
padding-left:5px
|
31
32
|
}
|
32
33
|
.color-picker button{
|
@@ -42,7 +43,7 @@
|
|
42
43
|
}
|
43
44
|
.color-picker-dialog .popup {
|
44
45
|
width: 100%;
|
45
|
-
max-width: fit-content;
|
46
|
+
max-width: fit-content !important;
|
46
47
|
}
|
47
48
|
.backdrop {
|
48
49
|
position: fixed;
|
@@ -54,5 +55,9 @@
|
|
54
55
|
z-index: 1;
|
55
56
|
}
|
56
57
|
.colorSaveBtn {
|
57
|
-
border-radius: 6px;
|
58
|
+
border-radius: 6px !important;
|
59
|
+
height: 30px;
|
60
|
+
padding: 0 15px !important;
|
61
|
+
width: 60px !important;
|
62
|
+
flex-shrink: 0;
|
58
63
|
}
|
@@ -7,6 +7,7 @@ import { Transforms } from "slate";
|
|
7
7
|
import usePopup from "../../utils/customHooks/usePopup";
|
8
8
|
import { logo } from "./LogoIcon";
|
9
9
|
import "./ColorPicker.css";
|
10
|
+
import { ButtonBase } from "@mui/material";
|
10
11
|
import { jsx as _jsx } from "react/jsx-runtime";
|
11
12
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
12
13
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -88,7 +89,7 @@ const ColorPicker = ({
|
|
88
89
|
setShowOptions(false);
|
89
90
|
}
|
90
91
|
}), /*#__PURE__*/_jsxs("div", {
|
91
|
-
className: "popup",
|
92
|
+
className: "af-popup",
|
92
93
|
children: [/*#__PURE__*/_jsx("div", {
|
93
94
|
className: "color-options",
|
94
95
|
children: colors.map((color, index) => {
|
@@ -123,7 +124,7 @@ const ColorPicker = ({
|
|
123
124
|
style: {
|
124
125
|
border: validHex === false ? "1px solid red" : "1px solid lightgray"
|
125
126
|
}
|
126
|
-
}), /*#__PURE__*/_jsx(
|
127
|
+
}), /*#__PURE__*/_jsx(ButtonBase, {
|
127
128
|
className: "colorSaveBtn",
|
128
129
|
style: {
|
129
130
|
background: validHex ? "#2563EB" : "#64748B",
|
@@ -3,7 +3,7 @@ import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
export const logo = {
|
4
4
|
color: color => /*#__PURE__*/_jsx("svg", {
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
6
|
-
fill: "#
|
6
|
+
fill: "#64748B",
|
7
7
|
height: "20px",
|
8
8
|
width: "20px",
|
9
9
|
version: "1.1",
|
@@ -12,7 +12,7 @@ export const logo = {
|
|
12
12
|
children: /*#__PURE__*/_jsxs("g", {
|
13
13
|
children: [/*#__PURE__*/_jsx("path", {
|
14
14
|
d: "M29,27H3c-0.6,0-1,0.4-1,1s0.4,1,1,1h26c0.6,0,1-0.4,1-1S29.6,27,29,27z",
|
15
|
-
fill: color || "#
|
15
|
+
fill: color || "#64748B"
|
16
16
|
}), /*#__PURE__*/_jsx("path", {
|
17
17
|
d: "M5,24h4c0.6,0,1-0.4,1-1s-0.4-1-1-1H8.6l1.9-4h11.1l1.9,4H23c-0.6,0-1,0.4-1,1s0.4,1,1,1h4c0.6,0,1-0.4,1-1s-0.4-1-1-1 h-1.4L16.9,3.6C16.7,3.2,16.4,3,16,3s-0.7,0.2-0.9,0.6L6.4,22H5c-0.6,0-1,0.4-1,1S4.4,24,5,24z M16,6.3l4.6,9.7h-9.2L16,6.3z"
|
18
18
|
})]
|
@@ -33,20 +33,20 @@ export const logo = {
|
|
33
33
|
fillRule: "evenodd",
|
34
34
|
clipRule: "evenodd",
|
35
35
|
d: "M37 37C39.2091 37 41 35.2091 41 33C41 31.5272 39.6667 29.5272 37 27C34.3333 29.5272 33 31.5272 33 33C33 35.2091 34.7909 37 37 37Z",
|
36
|
-
fill: "#
|
36
|
+
fill: "#64748B"
|
37
37
|
}), /*#__PURE__*/_jsx("path", {
|
38
38
|
d: "M20.8535 5.50439L24.389 9.03993",
|
39
|
-
stroke: "#
|
39
|
+
stroke: "#64748B",
|
40
40
|
strokeWidth: "4",
|
41
41
|
strokeLinecap: "round"
|
42
42
|
}), /*#__PURE__*/_jsx("path", {
|
43
43
|
d: "M23.6818 8.33281L8.12549 23.8892L19.4392 35.2029L34.9955 19.6465L23.6818 8.33281Z",
|
44
|
-
stroke: "#
|
44
|
+
stroke: "#64748B",
|
45
45
|
strokeWidth: "4",
|
46
46
|
strokeLinejoin: "round"
|
47
47
|
}), /*#__PURE__*/_jsx("path", {
|
48
48
|
d: "M12 20.0732L28.961 25.6496",
|
49
|
-
stroke: "#
|
49
|
+
stroke: "#64748B",
|
50
50
|
strokeWidth: "4",
|
51
51
|
strokeLinecap: "round"
|
52
52
|
}), /*#__PURE__*/_jsx("path", {
|
@@ -9,6 +9,8 @@ import usePopup from "../../utils/customHooks/usePopup";
|
|
9
9
|
import { insertEmbed } from "../../utils/embed";
|
10
10
|
import Uploader from "../../common/Uploader";
|
11
11
|
import "./Embed.css";
|
12
|
+
// import commonStyle from "../../commonStyle";
|
13
|
+
// import styled from "@emotion/styled";
|
12
14
|
import { jsx as _jsx } from "react/jsx-runtime";
|
13
15
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
14
16
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -19,7 +21,8 @@ const EMBED_LABEL = {
|
|
19
21
|
const Embed = ({
|
20
22
|
editor,
|
21
23
|
format,
|
22
|
-
customProps
|
24
|
+
customProps,
|
25
|
+
className
|
23
26
|
}) => {
|
24
27
|
const urlInputRef = useRef();
|
25
28
|
const [open, setOpen] = useState(false);
|
@@ -84,6 +87,7 @@ const Embed = ({
|
|
84
87
|
}), /*#__PURE__*/_jsx(Dialog, {
|
85
88
|
open: open,
|
86
89
|
fullWidth: true,
|
90
|
+
className: `dialogComp`,
|
87
91
|
children: /*#__PURE__*/_jsxs(Grid, {
|
88
92
|
item: true,
|
89
93
|
xs: 12,
|
@@ -101,6 +105,7 @@ const Embed = ({
|
|
101
105
|
children: [/*#__PURE__*/_jsx(Typography, {
|
102
106
|
variant: "h6",
|
103
107
|
className: "popupTitle",
|
108
|
+
color: "primary",
|
104
109
|
children: EMBED_LABEL[format] || "Embed"
|
105
110
|
}), /*#__PURE__*/_jsx(Grid, {
|
106
111
|
style: {
|
@@ -158,4 +163,5 @@ const Embed = ({
|
|
158
163
|
})]
|
159
164
|
});
|
160
165
|
};
|
161
|
-
export default Embed;
|
166
|
+
export default Embed;
|
167
|
+
// export default styled(commonStyle)(Embed);
|
@@ -22,7 +22,7 @@ const Link = ({
|
|
22
22
|
target: element.target,
|
23
23
|
children: children
|
24
24
|
}), selected && focused && /*#__PURE__*/_jsxs("div", {
|
25
|
-
className: "link-popup",
|
25
|
+
className: "af-link-popup",
|
26
26
|
contentEditable: false,
|
27
27
|
children: [/*#__PURE__*/_jsx("a", {
|
28
28
|
href: element.href,
|
@@ -1,10 +1,14 @@
|
|
1
1
|
import { useRef, useState } from "react";
|
2
2
|
import { Transforms } from "slate";
|
3
|
-
import { Dialog, DialogActions, DialogContent, DialogTitle, FormControl, FormControlLabel, Grid, TextField, Button, IconButton, Typography, Checkbox
|
3
|
+
import { Dialog, DialogActions, DialogContent, DialogTitle, FormControl, FormControlLabel, Grid, TextField, Button, IconButton, Typography, Checkbox
|
4
|
+
// styled,
|
5
|
+
} from "@mui/material";
|
6
|
+
// import { styled } from "@mui/material/styles";
|
4
7
|
import CloseIcon from "@mui/icons-material/Close";
|
5
8
|
import { insertLink } from "../../utils/link";
|
6
9
|
import Icon from "../../common/Icon";
|
7
10
|
import { isBlockActive } from "../../utils/SlateUtilityFunctions";
|
11
|
+
// import styled from "@emotion/styled";
|
8
12
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
13
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
14
|
const LinkButton = props => {
|
@@ -55,6 +59,7 @@ const LinkButton = props => {
|
|
55
59
|
})
|
56
60
|
}), showInput && /*#__PURE__*/_jsx(Dialog, {
|
57
61
|
open: true,
|
62
|
+
className: `dialogComp`,
|
58
63
|
children: /*#__PURE__*/_jsxs(Grid, {
|
59
64
|
item: true,
|
60
65
|
xs: 12,
|
@@ -74,6 +79,7 @@ const LinkButton = props => {
|
|
74
79
|
children: [/*#__PURE__*/_jsx(Typography, {
|
75
80
|
variant: "h6",
|
76
81
|
className: "popupTitle",
|
82
|
+
color: "primary",
|
77
83
|
children: "LINK"
|
78
84
|
}), /*#__PURE__*/_jsx("div", {
|
79
85
|
style: {
|
@@ -117,6 +123,7 @@ const LinkButton = props => {
|
|
117
123
|
}),
|
118
124
|
label: /*#__PURE__*/_jsx(Typography, {
|
119
125
|
variant: "body1",
|
126
|
+
color: "primary",
|
120
127
|
sx: {
|
121
128
|
pl: 1
|
122
129
|
},
|
@@ -145,4 +152,5 @@ const LinkButton = props => {
|
|
145
152
|
})]
|
146
153
|
});
|
147
154
|
};
|
148
|
-
export default LinkButton;
|
155
|
+
export default LinkButton;
|
156
|
+
// export default styled(commonStyle)(LinkButton);
|
@@ -1,4 +1,4 @@
|
|
1
|
-
.signature-popup .MuiTab-root {
|
1
|
+
.af-signature-popup .MuiTab-root {
|
2
2
|
background: #ffffff;
|
3
3
|
border: 1px solid #d3d3d3 !important;
|
4
4
|
border-radius: 7px;
|
@@ -13,18 +13,18 @@
|
|
13
13
|
color: #0f172a !important;
|
14
14
|
opacity: 0.7;
|
15
15
|
}
|
16
|
-
.signature-popup .MuiTab-root.Mui-selected {
|
16
|
+
.af-signature-popup .MuiTab-root.Mui-selected {
|
17
17
|
background: #ffffff;
|
18
18
|
border: 1px solid #2563eb !important;
|
19
19
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
|
20
20
|
border-radius: 7px;
|
21
21
|
color: #0f172a !important;
|
22
22
|
}
|
23
|
-
.signature-popup .MuiTabs-indicator {
|
23
|
+
.af-signature-popup .MuiTabs-indicator {
|
24
24
|
display: none;
|
25
25
|
}
|
26
26
|
|
27
|
-
.signature-popup input.signColorPicker {
|
27
|
+
.af-signature-popup input.signColorPicker {
|
28
28
|
margin-bottom: 0px !important;
|
29
29
|
}
|
30
30
|
input[type="color"].signColorPicker {
|
@@ -4,8 +4,10 @@ import CloseIcon from "@mui/icons-material/Close";
|
|
4
4
|
import DatePicker from "react-datepicker";
|
5
5
|
import "react-datepicker/dist/react-datepicker.css";
|
6
6
|
import SignatureOptions from "./SignatureOptions";
|
7
|
-
import
|
7
|
+
import "./Signature.css";
|
8
8
|
import { DrawSignature, PencilIcon, TypeSignature, UploadSignature } from "../../common/EditorIcons";
|
9
|
+
import CommonStyle from "../../commonStyle";
|
10
|
+
import { styled } from "@mui/material/styles";
|
9
11
|
import { jsx as _jsx } from "react/jsx-runtime";
|
10
12
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
11
13
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -14,7 +16,8 @@ const SignaturePopup = props => {
|
|
14
16
|
const {
|
15
17
|
onSave,
|
16
18
|
onClear,
|
17
|
-
customProps
|
19
|
+
customProps,
|
20
|
+
className
|
18
21
|
} = props;
|
19
22
|
const [open, setOpen] = useState(false);
|
20
23
|
const [tab, setTab] = useState(0);
|
@@ -79,6 +82,7 @@ const SignaturePopup = props => {
|
|
79
82
|
children: "Sign Here"
|
80
83
|
})
|
81
84
|
}), /*#__PURE__*/_jsx(Dialog, {
|
85
|
+
className: `${className} dialogComp`,
|
82
86
|
open: open,
|
83
87
|
onClose: handleClose,
|
84
88
|
fullWidth: true,
|
@@ -103,6 +107,7 @@ const SignaturePopup = props => {
|
|
103
107
|
children: [/*#__PURE__*/_jsx(Typography, {
|
104
108
|
variant: "h6",
|
105
109
|
className: "popupTitle",
|
110
|
+
color: "primary",
|
106
111
|
children: "SIGNATURE"
|
107
112
|
}), /*#__PURE__*/_jsx("div", {
|
108
113
|
style: {
|
@@ -119,7 +124,7 @@ const SignaturePopup = props => {
|
|
119
124
|
sx: {
|
120
125
|
p: 0
|
121
126
|
},
|
122
|
-
className: "signature-popup",
|
127
|
+
className: "af-signature-popup",
|
123
128
|
children: [/*#__PURE__*/_jsx("div", {
|
124
129
|
className: "signature-btn-grps",
|
125
130
|
children: /*#__PURE__*/_jsxs(Tabs, {
|
@@ -293,4 +298,6 @@ const SignaturePopup = props => {
|
|
293
298
|
})]
|
294
299
|
});
|
295
300
|
};
|
296
|
-
|
301
|
+
|
302
|
+
// export default SignaturePopup;
|
303
|
+
export default styled(SignaturePopup)(CommonStyle);
|
@@ -5,6 +5,8 @@ import { Transforms } from "slate";
|
|
5
5
|
import { TableUtil } from "../../utils/table.js";
|
6
6
|
import "./TableSelector.css";
|
7
7
|
import CloseIcon from "@mui/icons-material/Close";
|
8
|
+
// import commonStyle from "../../commonStyle";
|
9
|
+
// import styled from "@emotion/styled";
|
8
10
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
11
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
12
|
const TableSelector = ({
|
@@ -50,7 +52,7 @@ const TableSelector = ({
|
|
50
52
|
})
|
51
53
|
}), showOptions ? /*#__PURE__*/_jsx(Dialog, {
|
52
54
|
open: showOptions,
|
53
|
-
className:
|
55
|
+
className: `dialogComp tablePopup`,
|
54
56
|
children: /*#__PURE__*/_jsxs(Grid, {
|
55
57
|
item: true,
|
56
58
|
xs: 12,
|
@@ -68,6 +70,7 @@ const TableSelector = ({
|
|
68
70
|
children: [/*#__PURE__*/_jsx(Typography, {
|
69
71
|
variant: "h6",
|
70
72
|
className: "popupTitle",
|
73
|
+
color: "primary",
|
71
74
|
children: "Table"
|
72
75
|
}), /*#__PURE__*/_jsx(Grid, {
|
73
76
|
style: {
|
@@ -103,7 +106,7 @@ const TableSelector = ({
|
|
103
106
|
variant: "body1",
|
104
107
|
color: "textSecondary",
|
105
108
|
sx: {
|
106
|
-
fontSize:
|
109
|
+
fontSize: "14px"
|
107
110
|
},
|
108
111
|
children: "No.of Rows"
|
109
112
|
})
|
@@ -129,7 +132,7 @@ const TableSelector = ({
|
|
129
132
|
variant: "body1",
|
130
133
|
color: "textSecondary",
|
131
134
|
sx: {
|
132
|
-
fontSize:
|
135
|
+
fontSize: "14px"
|
133
136
|
},
|
134
137
|
children: "No.of Columns"
|
135
138
|
})
|
@@ -163,4 +166,5 @@ const TableSelector = ({
|
|
163
166
|
}) : null]
|
164
167
|
});
|
165
168
|
};
|
166
|
-
export default TableSelector;
|
169
|
+
export default TableSelector;
|
170
|
+
// export default styled(commonStyle)(TableSelector);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React from "react";
|
2
|
-
import { Grid, Radio, RadioGroup, FormControl, FormLabel, FormControlLabel } from "@mui/material";
|
2
|
+
import { Grid, Radio, RadioGroup, FormControl, FormLabel, FormControlLabel, Typography } from "@mui/material";
|
3
3
|
import { jsx as _jsx } from "react/jsx-runtime";
|
4
4
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
5
5
|
const Alignment = props => {
|
@@ -21,7 +21,6 @@ const Alignment = props => {
|
|
21
21
|
};
|
22
22
|
return /*#__PURE__*/_jsxs(Grid, {
|
23
23
|
container: true,
|
24
|
-
padding: 3,
|
25
24
|
style: {
|
26
25
|
paddingTop: "12px"
|
27
26
|
},
|
@@ -32,7 +31,11 @@ const Alignment = props => {
|
|
32
31
|
children: /*#__PURE__*/_jsxs(FormControl, {
|
33
32
|
children: [/*#__PURE__*/_jsx(FormLabel, {
|
34
33
|
id: "demo-row-radio-buttons-group-label",
|
35
|
-
children:
|
34
|
+
children: /*#__PURE__*/_jsx(Typography, {
|
35
|
+
variant: "body1",
|
36
|
+
color: "primary",
|
37
|
+
children: "Horizantal Position"
|
38
|
+
})
|
36
39
|
}), /*#__PURE__*/_jsxs(RadioGroup, {
|
37
40
|
row: true,
|
38
41
|
"aria-labelledby": "demo-row-radio-buttons-group-label",
|
@@ -60,7 +63,11 @@ const Alignment = props => {
|
|
60
63
|
children: /*#__PURE__*/_jsxs(FormControl, {
|
61
64
|
children: [/*#__PURE__*/_jsx(FormLabel, {
|
62
65
|
id: "demo-row-radio-buttons-group-label",
|
63
|
-
children:
|
66
|
+
children: /*#__PURE__*/_jsx(Typography, {
|
67
|
+
variant: "body1",
|
68
|
+
color: "primary",
|
69
|
+
children: "Vertical Position"
|
70
|
+
})
|
64
71
|
}), /*#__PURE__*/_jsxs(RadioGroup, {
|
65
72
|
row: true,
|
66
73
|
"aria-labelledby": "demo-row-radio-buttons-group-label",
|
@@ -1,5 +1,5 @@
|
|
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";
|
@@ -43,14 +43,13 @@ const BackgroundImage = props => {
|
|
43
43
|
};
|
44
44
|
return /*#__PURE__*/_jsxs(Grid, {
|
45
45
|
container: true,
|
46
|
-
padding: 3,
|
47
46
|
children: [/*#__PURE__*/_jsxs(Grid, {
|
48
47
|
item: true,
|
49
48
|
xs: 12,
|
50
49
|
style: {
|
51
50
|
display: "flex"
|
52
51
|
},
|
53
|
-
justifyContent: "
|
52
|
+
justifyContent: "space-between",
|
54
53
|
alignItems: "center",
|
55
54
|
children: [/*#__PURE__*/_jsxs(Button, {
|
56
55
|
component: "label",
|
@@ -59,16 +58,24 @@ const BackgroundImage = props => {
|
|
59
58
|
children: ["Upload file", /*#__PURE__*/_jsx("input", {
|
60
59
|
type: "file",
|
61
60
|
style: {
|
62
|
-
opacity: 0
|
61
|
+
opacity: 0,
|
62
|
+
width: "0px"
|
63
63
|
},
|
64
64
|
onChange: handleChange
|
65
65
|
})]
|
66
|
-
}), /*#__PURE__*/
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
66
|
+
}), /*#__PURE__*/_jsxs(Grid, {
|
67
|
+
className: "dflex",
|
68
|
+
children: [/*#__PURE__*/_jsx("input", {
|
69
|
+
type: "checkbox",
|
70
|
+
value: "none",
|
71
|
+
checked: value === "none",
|
72
|
+
onChange: onRemoveBG
|
73
|
+
}), " ", /*#__PURE__*/_jsx(Typography, {
|
74
|
+
variant: "body1",
|
75
|
+
color: "primary",
|
76
|
+
children: "Remove"
|
77
|
+
})]
|
78
|
+
})]
|
72
79
|
}), uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
|
73
80
|
item: true,
|
74
81
|
xs: 12,
|
@@ -2,6 +2,8 @@ import React, { useState } from "react";
|
|
2
2
|
import { Dialog, DialogTitle, DialogContent, DialogActions, Button, Tabs, Tab, Grid, IconButton, Typography } from "@mui/material";
|
3
3
|
import FieldMap from "./fieldTypes";
|
4
4
|
import CloseIcon from "@mui/icons-material/Close";
|
5
|
+
import commonStyle from "../../commonStyle";
|
6
|
+
import { styled } from "@mui/material/styles";
|
5
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
6
8
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
7
9
|
const StyleContent = props => {
|
@@ -70,6 +72,7 @@ const StyleBuilder = props => {
|
|
70
72
|
onClose,
|
71
73
|
onDelete,
|
72
74
|
customProps
|
75
|
+
// className,
|
73
76
|
} = props;
|
74
77
|
const [elementProps, setElementProps] = useState(element);
|
75
78
|
const [tab, setTab] = useState(renderTabs[0]?.value);
|
@@ -88,6 +91,7 @@ const StyleBuilder = props => {
|
|
88
91
|
return /*#__PURE__*/_jsx(Dialog, {
|
89
92
|
open: true,
|
90
93
|
fullWidth: true,
|
94
|
+
className: ` dialogComp`,
|
91
95
|
children: /*#__PURE__*/_jsxs(Grid, {
|
92
96
|
item: true,
|
93
97
|
xs: 12,
|
@@ -105,6 +109,7 @@ const StyleBuilder = props => {
|
|
105
109
|
children: [/*#__PURE__*/_jsx(Typography, {
|
106
110
|
variant: "h6",
|
107
111
|
className: "popupTitle",
|
112
|
+
color: "primary",
|
108
113
|
children: title
|
109
114
|
}), /*#__PURE__*/_jsx(Grid, {
|
110
115
|
style: {
|
@@ -155,4 +160,6 @@ const StyleBuilder = props => {
|
|
155
160
|
})
|
156
161
|
});
|
157
162
|
};
|
158
|
-
|
163
|
+
|
164
|
+
// export default StyleBuilder;
|
165
|
+
export default styled(StyleBuilder)(commonStyle);
|
@@ -55,9 +55,9 @@ const Uploader = props => {
|
|
55
55
|
children: [/*#__PURE__*/_jsxs(Button, {
|
56
56
|
component: "label",
|
57
57
|
sx: {
|
58
|
-
display:
|
59
|
-
width:
|
60
|
-
whiteSpace:
|
58
|
+
display: "inline-flex",
|
59
|
+
width: "154px",
|
60
|
+
whiteSpace: "nowrap"
|
61
61
|
},
|
62
62
|
variant: "contained",
|
63
63
|
startIcon: /*#__PURE__*/_jsx(CloudUploadIcon, {}),
|
@@ -73,7 +73,7 @@ const Uploader = props => {
|
|
73
73
|
color: "secondary",
|
74
74
|
onClick: onRemoveBG,
|
75
75
|
children: "Clear"
|
76
|
-
}) :
|
76
|
+
}) : ""]
|
77
77
|
})
|
78
78
|
}), uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
|
79
79
|
item: true,
|