@flozy/editor 9.5.1 → 9.5.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/Elements/Carousel/slick.min.css +13 -0
- package/dist/Editor/Elements/Search/SearchList.js +3 -0
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +5 -2
- package/dist/Editor/commonStyle.js +3 -0
- package/dist/Editor/theme/index.js +4 -1
- package/dist/Editor/themeSettings/colorTheme/index.js +8 -6
- package/dist/Editor/themeSettings/fonts/style.js +4 -3
- package/package.json +1 -1
@@ -83,3 +83,16 @@
|
|
83
83
|
.slick-arrow.slick-hidden {
|
84
84
|
display: none;
|
85
85
|
}
|
86
|
+
|
87
|
+
.slick-dots li {
|
88
|
+
margin-top: 4px;
|
89
|
+
border: 0.5px solid #FFFFFF
|
90
|
+
}
|
91
|
+
|
92
|
+
.slick-dots .slick-active {
|
93
|
+
background-color: #2563EB !important;
|
94
|
+
}
|
95
|
+
|
96
|
+
.slick-dots li {
|
97
|
+
background-color: #9DA9BA;
|
98
|
+
}
|
@@ -18,8 +18,11 @@ const TextSize = ({
|
|
18
18
|
const timerRef = useRef();
|
19
19
|
const [size] = useWindowResize();
|
20
20
|
const val = activeMark(editor, format);
|
21
|
-
|
22
|
-
const
|
21
|
+
|
22
|
+
// const noFontSize =
|
23
|
+
// val === "normal" || (typeof val === "object" && !Object.keys(val)?.length);
|
24
|
+
|
25
|
+
const value = getTextSizeVal(editor);
|
23
26
|
useEffect(() => {
|
24
27
|
setFontSize(getSizeVal());
|
25
28
|
}, [value]);
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { getDevice } from "../helper/theme";
|
1
2
|
const themeClassName = ".theme-element";
|
2
3
|
function getTextStyles(props) {
|
3
4
|
const {
|
@@ -5,11 +6,13 @@ function getTextStyles(props) {
|
|
5
6
|
textDecoration,
|
6
7
|
...rest
|
7
8
|
} = props;
|
9
|
+
const device = getDevice();
|
10
|
+
const fontS = typeof fontSize === "object" ? fontSize[device] : fontSize;
|
8
11
|
return {
|
9
12
|
...rest,
|
10
13
|
'& span[data-slate-string="true"]': {
|
11
14
|
textDecoration,
|
12
|
-
fontSize
|
15
|
+
fontSize: fontS
|
13
16
|
}
|
14
17
|
|
15
18
|
// "&::after": {
|
@@ -112,14 +112,15 @@ const ColorTheme = props => {
|
|
112
112
|
onColorChange(selectedColor, i);
|
113
113
|
}
|
114
114
|
},
|
115
|
-
hideThemeColors: true
|
116
|
-
hideGradient
|
115
|
+
hideThemeColors: true
|
116
|
+
// hideGradient={true}
|
117
|
+
,
|
117
118
|
classes: classes,
|
118
119
|
value: color,
|
119
120
|
children: /*#__PURE__*/_jsxs(Grid, {
|
120
121
|
className: "pmBox",
|
121
122
|
style: {
|
122
|
-
|
123
|
+
background: color
|
123
124
|
},
|
124
125
|
children: [/*#__PURE__*/_jsx(IconButton, {
|
125
126
|
className: "editBtn",
|
@@ -163,14 +164,15 @@ const ColorTheme = props => {
|
|
163
164
|
onColorChange(selectedColor, colorIndex);
|
164
165
|
}
|
165
166
|
},
|
166
|
-
hideThemeColors: true
|
167
|
-
hideGradient
|
167
|
+
hideThemeColors: true
|
168
|
+
// hideGradient={true}
|
169
|
+
,
|
168
170
|
classes: classes,
|
169
171
|
value: color,
|
170
172
|
children: /*#__PURE__*/_jsxs(Grid, {
|
171
173
|
className: "sdBox",
|
172
174
|
style: {
|
173
|
-
|
175
|
+
background: color
|
174
176
|
},
|
175
177
|
children: [/*#__PURE__*/_jsx(IconButton, {
|
176
178
|
className: "editBtn",
|
@@ -29,8 +29,8 @@ const Style = ({
|
|
29
29
|
fontSize: "12px",
|
30
30
|
color: "#64748B",
|
31
31
|
".dotColor": {
|
32
|
-
width: "
|
33
|
-
height: "
|
32
|
+
width: "14px",
|
33
|
+
height: "14px",
|
34
34
|
borderRadius: "12px",
|
35
35
|
background: "#0F172A",
|
36
36
|
marginRight: "3px"
|
@@ -40,7 +40,8 @@ const Style = ({
|
|
40
40
|
width: "200px",
|
41
41
|
whiteSpace: "nowrap",
|
42
42
|
overflow: "hidden",
|
43
|
-
textOverflow: "ellipsis"
|
43
|
+
textOverflow: "ellipsis",
|
44
|
+
color: `${appTheme?.palette?.editor?.textColor} !important`
|
44
45
|
},
|
45
46
|
".MuiAutocomplete-input": {
|
46
47
|
color: appTheme?.palette?.editor?.textColor
|