@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.
@@ -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
+ }
@@ -78,6 +78,9 @@ const SearchAndDocList = ({
78
78
  InputProps: {
79
79
  startAdornment: /*#__PURE__*/_jsx(InputAdornment, {
80
80
  position: "start",
81
+ sx: {
82
+ pointerEvents: 'none'
83
+ },
81
84
  children: /*#__PURE__*/_jsx(SearchIcon, {})
82
85
  }),
83
86
  sx: {
@@ -18,8 +18,11 @@ const TextSize = ({
18
18
  const timerRef = useRef();
19
19
  const [size] = useWindowResize();
20
20
  const val = activeMark(editor, format);
21
- const noFontSize = val === "normal" || typeof val === "object" && !Object.keys(val)?.length;
22
- const value = noFontSize ? getTextSizeVal(editor) : getBreakPointsValue(val, size?.device);
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]);
@@ -136,6 +136,9 @@ const useCommonStyle = theme => ({
136
136
  width: "46px !important",
137
137
  marginLeft: "10px",
138
138
  height: "36px !important"
139
+ },
140
+ "& .spacingSlider": {
141
+ width: "calc(100% - 18px)"
139
142
  }
140
143
  },
141
144
  "& .MuiFormHelperText-root": {
@@ -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: true,
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
- backgroundColor: color
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: true,
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
- backgroundColor: color
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: "12px",
33
- height: "12px",
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.5.1",
3
+ "version": "9.5.2",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"