@flozy/editor 10.5.3 → 10.5.5
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.
@@ -53,6 +53,7 @@ const EditorButton = props => {
|
|
53
53
|
fontFamily,
|
54
54
|
textColorHover,
|
55
55
|
bgColorHover,
|
56
|
+
borderColorHover,
|
56
57
|
buttonIcon,
|
57
58
|
iconPosition = "start",
|
58
59
|
borderStyle,
|
@@ -287,6 +288,7 @@ const EditorButton = props => {
|
|
287
288
|
"&:hover": {
|
288
289
|
color: `${textColorHover || textColor || "#FFFFFF"}`,
|
289
290
|
background: bgColorHover || bgColor || "rgb(30, 75, 122)",
|
291
|
+
borderColor: borderColorHover || borderColor || "transparent",
|
290
292
|
"& .element-toolbar": {
|
291
293
|
display: "flex"
|
292
294
|
}
|
@@ -515,8 +515,10 @@ const FreeGrid = props => {
|
|
515
515
|
disableDragging: true,
|
516
516
|
style: {
|
517
517
|
position: "relative",
|
518
|
-
"--height": `${height}px
|
518
|
+
"--height": `${height}px`,
|
519
|
+
display: 'block' //for test purpose
|
519
520
|
},
|
521
|
+
|
520
522
|
dataSets: {
|
521
523
|
"data-height-xs": height_xs
|
522
524
|
},
|