@flozy/editor 9.2.0 → 9.2.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/Editor/ChatEditor.js +2 -2
- package/dist/Editor/CommonEditor.js +11 -41
- package/dist/Editor/Editor.css +1 -15
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +1 -0
- package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +1 -4
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +4 -3
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/styles.js +1 -6
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/DateType.js +9 -19
- package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +2 -32
- package/dist/Editor/Elements/DataView/Layouts/TableView.js +29 -126
- package/dist/Editor/Elements/DataView/Layouts/ViewData.js +3 -3
- package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +1 -1
- package/dist/Editor/Elements/DataView/styles.js +8 -8
- package/dist/Editor/Elements/Grid/GridItem.js +2 -1
- package/dist/Editor/Elements/Link/Link.js +43 -70
- package/dist/Editor/Elements/SimpleText/index.js +1 -0
- package/dist/Editor/Elements/Variables/Style.js +2 -28
- package/dist/Editor/Elements/Variables/VariableButton.js +3 -7
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +2 -0
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +8 -9
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +6 -3
- package/dist/Editor/common/DnD/Draggable.js +1 -0
- package/dist/Editor/common/ImageSelector/UploadStyles.js +1 -0
- package/dist/Editor/common/MentionsPopup/Styles.js +3 -3
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -15
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +4 -5
- package/dist/Editor/commonStyle.js +4 -59
- package/dist/Editor/plugins/withHTML.js +1 -1
- package/dist/Editor/utils/helper.js +1 -13
- package/dist/Editor/utils/link.js +1 -1
- package/package.json +2 -5
- package/dist/Editor/common/CustomDialog/index.js +0 -90
- package/dist/Editor/common/CustomDialog/styles.js +0 -80
@@ -1,80 +0,0 @@
|
|
1
|
-
const CustomDialogStyles = theme => ({
|
2
|
-
MuiBackdropRoot: {
|
3
|
-
opacity: "1",
|
4
|
-
transition: "opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms"
|
5
|
-
},
|
6
|
-
CustomDialogu: {
|
7
|
-
"& .MuiPaper-root": {
|
8
|
-
borderRadius: "12px 12px 0px 0px",
|
9
|
-
backgroundColor: `${theme?.palette?.greyshades?.light9} !important`,
|
10
|
-
"@media only screen and (min-width: 899px)": {
|
11
|
-
maxWidth: "400px",
|
12
|
-
border: `1px solid ${theme?.palette?.editor?.customDialogueBorder}`,
|
13
|
-
borderRadius: "12px"
|
14
|
-
}
|
15
|
-
},
|
16
|
-
"& .MuiDialogContent-root": {
|
17
|
-
padding: "20px 24px 8px 24px",
|
18
|
-
"& .MuiTypography-root": {
|
19
|
-
textAlign: "center",
|
20
|
-
fontFamily: "Inter, sans-serif",
|
21
|
-
fontSize: "14px",
|
22
|
-
fontWeight: 500,
|
23
|
-
color: theme?.palette?.editor?.textColor
|
24
|
-
}
|
25
|
-
},
|
26
|
-
"& .confirmBtn": {
|
27
|
-
backgroundColor: "#2563EB",
|
28
|
-
padding: "8px 12px",
|
29
|
-
color: "#ffffff",
|
30
|
-
fontWeight: 600,
|
31
|
-
fontSize: "14px",
|
32
|
-
opacity: 1,
|
33
|
-
borderRadius: "8px",
|
34
|
-
textTransform: "math-auto",
|
35
|
-
height: "36px",
|
36
|
-
padding: "0px 12px",
|
37
|
-
minWidth: "90px",
|
38
|
-
"&:hover": {
|
39
|
-
backgroundColor: "#2563EB"
|
40
|
-
},
|
41
|
-
"@media only screen and (max-width: 899px)": {
|
42
|
-
width: "50%"
|
43
|
-
}
|
44
|
-
},
|
45
|
-
"& .MuiDialogActions-root": {
|
46
|
-
justifyContent: "center",
|
47
|
-
paddingBottom: "20px"
|
48
|
-
},
|
49
|
-
"& .closeBtn": {
|
50
|
-
padding: "8px 12px",
|
51
|
-
color: theme?.palette?.editor?.customDialogueCloseBtnColor,
|
52
|
-
fontWeight: 600,
|
53
|
-
fontSize: "14px",
|
54
|
-
opacity: 1,
|
55
|
-
borderRadius: "8px",
|
56
|
-
textTransform: "math-auto",
|
57
|
-
height: "36px",
|
58
|
-
padding: "0px 12px",
|
59
|
-
minWidth: "90px",
|
60
|
-
backgroundColor: theme?.palette?.editor?.closeButtonBackground,
|
61
|
-
border: `1px solid ${theme?.palette?.editor?.customDialogueCloseBtnBorder}`,
|
62
|
-
"&:hover": {
|
63
|
-
backgroundColor: theme?.palette?.editor?.closeButtonBackground
|
64
|
-
},
|
65
|
-
"@media only screen and (max-width: 899px)": {
|
66
|
-
width: "50%"
|
67
|
-
}
|
68
|
-
},
|
69
|
-
"& .pullerRoot": {
|
70
|
-
padding: "8px 0"
|
71
|
-
},
|
72
|
-
"& .pullerGrid": {
|
73
|
-
width: "40px",
|
74
|
-
height: "5px",
|
75
|
-
backgroundColor: "#ccc",
|
76
|
-
borderRadius: "10px"
|
77
|
-
}
|
78
|
-
}
|
79
|
-
});
|
80
|
-
export default CustomDialogStyles;
|