@flozy/editor 5.3.9 → 5.4.0

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.
Files changed (192) hide show
  1. package/dist/Editor/ChatEditor.js +25 -34
  2. package/dist/Editor/CommonEditor.js +29 -15
  3. package/dist/Editor/Editor.css +100 -18
  4. package/dist/Editor/Elements/AI/AIInput.js +0 -1
  5. package/dist/Editor/Elements/AI/CustomSelect.js +19 -11
  6. package/dist/Editor/Elements/AI/PopoverAIInput.js +58 -52
  7. package/dist/Editor/Elements/AI/Styles.js +24 -6
  8. package/dist/Editor/Elements/Accordion/Accordion.js +8 -1
  9. package/dist/Editor/Elements/AppHeader/AppHeader.js +6 -6
  10. package/dist/Editor/Elements/Button/EditorButton.js +9 -2
  11. package/dist/Editor/Elements/Carousel/CarouselItem.js +11 -3
  12. package/dist/Editor/Elements/Color Picker/ColorButtons.js +7 -5
  13. package/dist/Editor/Elements/Color Picker/Styles.js +7 -3
  14. package/dist/Editor/Elements/Color Picker/defaultColors.js +2 -2
  15. package/dist/Editor/Elements/DataView/DataView.js +124 -0
  16. package/dist/Editor/Elements/DataView/DataViewButton.js +23 -0
  17. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +67 -0
  18. package/dist/Editor/Elements/DataView/Layouts/DataTypes/CheckType.js +33 -0
  19. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +162 -0
  20. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/SimpleSelect.js +40 -0
  21. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/styles.js +67 -0
  22. package/dist/Editor/Elements/DataView/Layouts/DataTypes/DateType.js +35 -0
  23. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +39 -0
  24. package/dist/Editor/Elements/DataView/Layouts/DataTypes/NumberType.js +30 -0
  25. package/dist/Editor/Elements/DataView/Layouts/DataTypes/PersonType.js +30 -0
  26. package/dist/Editor/Elements/DataView/Layouts/DataTypes/SelectType.js +35 -0
  27. package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +36 -0
  28. package/dist/Editor/Elements/DataView/Layouts/DataTypes/index.js +17 -0
  29. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseField.js +29 -0
  30. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseSort.js +38 -0
  31. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/index.js +74 -0
  32. package/dist/Editor/Elements/DataView/Layouts/FilterSort/index.js +64 -0
  33. package/dist/Editor/Elements/DataView/Layouts/FilterSort/styles.js +106 -0
  34. package/dist/Editor/Elements/DataView/Layouts/FilterView.js +174 -0
  35. package/dist/Editor/Elements/DataView/Layouts/Formula.js +29 -0
  36. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +113 -0
  37. package/dist/Editor/Elements/DataView/Layouts/Options/AddProperty.js +37 -0
  38. package/dist/Editor/Elements/DataView/Layouts/Options/AllProperties.js +111 -0
  39. package/dist/Editor/Elements/DataView/Layouts/Options/ChangeProperty.js +60 -0
  40. package/dist/Editor/Elements/DataView/Layouts/Options/ColumnsList.js +36 -0
  41. package/dist/Editor/Elements/DataView/Layouts/Options/Constants.js +101 -0
  42. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +160 -0
  43. package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +190 -0
  44. package/dist/Editor/Elements/DataView/Layouts/Options/FilterProperty.js +42 -0
  45. package/dist/Editor/Elements/DataView/Layouts/Options/PropertyList.js +30 -0
  46. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +110 -0
  47. package/dist/Editor/Elements/DataView/Layouts/Options/styles.js +179 -0
  48. package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +112 -0
  49. package/dist/Editor/Elements/DataView/Layouts/TableView.js +227 -0
  50. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +80 -0
  51. package/dist/Editor/Elements/DataView/Layouts/colStyles.js +10 -0
  52. package/dist/Editor/Elements/DataView/Layouts/index.js +25 -0
  53. package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +281 -0
  54. package/dist/Editor/Elements/DataView/Utils/globalSearch.js +15 -0
  55. package/dist/Editor/Elements/DataView/Utils/multiSortRows.js +74 -0
  56. package/dist/Editor/Elements/DataView/styles.js +154 -0
  57. package/dist/Editor/Elements/Divider/Divider.js +36 -20
  58. package/dist/Editor/Elements/Embed/Image.js +51 -16
  59. package/dist/Editor/Elements/Embed/Video.js +26 -3
  60. package/dist/Editor/Elements/Form/Form.js +39 -2
  61. package/dist/Editor/Elements/Form/FormElements/FormCheckbox.js +7 -1
  62. package/dist/Editor/Elements/Form/FormElements/FormDate.js +7 -1
  63. package/dist/Editor/Elements/Form/FormElements/FormEmail.js +7 -1
  64. package/dist/Editor/Elements/Form/FormElements/FormNumbers.js +7 -1
  65. package/dist/Editor/Elements/Form/FormElements/FormRadioButton.js +7 -1
  66. package/dist/Editor/Elements/Form/FormElements/FormText.js +7 -1
  67. package/dist/Editor/Elements/Form/FormElements/FormTextArea.js +6 -1
  68. package/dist/Editor/Elements/Form/FormPopup.js +12 -9
  69. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +1 -1
  70. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +20 -1
  71. package/dist/Editor/Elements/FreeGrid/breakpointConstants.js +4 -4
  72. package/dist/Editor/Elements/FreeGrid/styles.js +2 -1
  73. package/dist/Editor/Elements/Grid/GridButton.js +2 -2
  74. package/dist/Editor/Elements/Grid/GridItem.js +47 -36
  75. package/dist/Editor/Elements/Grid/Styles.js +50 -0
  76. package/dist/Editor/Elements/Link/LinkButton.js +1 -1
  77. package/dist/Editor/Elements/List/CheckList.js +2 -1
  78. package/dist/Editor/Elements/Search/SearchAttachment.js +1 -0
  79. package/dist/Editor/Elements/Search/SearchButton.js +1 -0
  80. package/dist/Editor/Elements/Signature/Signature.css +1 -1
  81. package/dist/Editor/Elements/Signature/SignatureOptions/TypeSignature.js +2 -2
  82. package/dist/Editor/Elements/Signature/SignaturePopup.js +17 -52
  83. package/dist/Editor/Elements/SimpleText/index.js +8 -1
  84. package/dist/Editor/Elements/SimpleText/style.js +20 -1
  85. package/dist/Editor/Elements/Table/AddRowCol.js +77 -0
  86. package/dist/Editor/Elements/Table/DragButton.js +142 -0
  87. package/dist/Editor/Elements/Table/DragStyles.js +70 -0
  88. package/dist/Editor/Elements/Table/Draggable.js +25 -0
  89. package/dist/Editor/Elements/Table/Droppable.js +53 -0
  90. package/dist/Editor/Elements/Table/Styles.js +82 -79
  91. package/dist/Editor/Elements/Table/Table.js +258 -140
  92. package/dist/Editor/Elements/Table/TableCell.js +365 -111
  93. package/dist/Editor/Elements/Table/TablePopup.js +9 -3
  94. package/dist/Editor/Elements/Table/TableRow.js +10 -2
  95. package/dist/Editor/Elements/Table/TableTool.js +101 -0
  96. package/dist/Editor/Elements/Table/tableHelper.js +71 -0
  97. package/dist/Editor/Elements/TopBanner/TopBanner.js +2 -1
  98. package/dist/Editor/MiniEditor.js +15 -1
  99. package/dist/Editor/Styles/EditorStyles.js +13 -4
  100. package/dist/Editor/Toolbar/FormatTools/BlockButton.js +10 -0
  101. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +7 -12
  102. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +26 -4
  103. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +3 -0
  104. package/dist/Editor/Toolbar/FormatTools/TextSize.js +5 -5
  105. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +3 -6
  106. package/dist/Editor/Toolbar/Mini/Styles.js +4 -1
  107. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/InfinityAITool.js +7 -3
  108. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +6 -4
  109. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +19 -15
  110. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +555 -57
  111. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +73 -16
  112. package/dist/Editor/Toolbar/PopupTool/index.js +3 -5
  113. package/dist/Editor/Toolbar/Toolbar.js +6 -0
  114. package/dist/Editor/Toolbar/toolbarGroups.js +4 -0
  115. package/dist/Editor/assets/svg/BrainIcon.js +2 -2
  116. package/dist/Editor/assets/svg/SettingsIcon.js +4 -4
  117. package/dist/Editor/assets/svg/TableIcons.js +220 -0
  118. package/dist/Editor/common/ColorPickerButton.js +85 -45
  119. package/dist/Editor/common/DnD/Draggable.js +2 -1
  120. package/dist/Editor/common/FontLoader/FontLoader.js +4 -4
  121. package/dist/Editor/common/Icon.js +23 -20
  122. package/dist/Editor/common/ImageSelector/Options/Upload.js +2 -1
  123. package/dist/Editor/common/ImageSelector/Styles.js +47 -6
  124. package/dist/Editor/common/ImageSelector/UploadStyles.js +18 -6
  125. package/dist/Editor/common/LinkSettings/NavComponents.js +2 -1
  126. package/dist/Editor/common/LinkSettings/index.js +2 -1
  127. package/dist/Editor/common/MentionsPopup/Styles.js +143 -8
  128. package/dist/Editor/common/MentionsPopup/index.js +1 -1
  129. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +108 -12
  130. package/dist/Editor/common/RnD/GuideLines/styles.js +3 -3
  131. package/dist/Editor/common/RnD/ShadowElement.js +1 -1
  132. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +14 -2
  133. package/dist/Editor/common/RnD/Utils/gridDropItem.js +9 -6
  134. package/dist/Editor/common/RnD/VirtualElement/index.js +5 -1
  135. package/dist/Editor/common/RnD/index.js +3 -2
  136. package/dist/Editor/common/Section/index.js +3 -3
  137. package/dist/Editor/common/Section/styles.js +5 -1
  138. package/dist/Editor/common/Select/index.js +20 -0
  139. package/dist/Editor/common/Select/styles.js +17 -0
  140. package/dist/Editor/common/Shorthands/elements.js +13 -1
  141. package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -1
  142. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +9 -3
  143. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +35 -7
  144. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -2
  145. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +10 -2
  146. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +2 -1
  147. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +1 -1
  148. package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +2 -0
  149. package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +3 -1
  150. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +79 -0
  151. package/dist/Editor/common/StyleBuilder/fieldTypes/radiusStyle.js +11 -11
  152. package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +22 -6
  153. package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +21 -2
  154. package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +20 -4
  155. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +12 -2
  156. package/dist/Editor/common/StyleBuilder/formStyle.js +268 -149
  157. package/dist/Editor/common/StyleBuilder/index.js +101 -20
  158. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +4 -0
  159. package/dist/Editor/common/StyleBuilder/tableStyle.js +69 -25
  160. package/dist/Editor/common/SwipeableDrawer/style.js +15 -4
  161. package/dist/Editor/common/ToolbarIcon.js +1 -1
  162. package/dist/Editor/common/Uploader.js +46 -36
  163. package/dist/Editor/common/iconListV2.js +616 -60
  164. package/dist/Editor/common/iconslist.js +23 -17
  165. package/dist/Editor/commonStyle.js +417 -11
  166. package/dist/Editor/helper/deserialize/index.js +4 -1
  167. package/dist/Editor/helper/enforceDateFormat.js +41 -0
  168. package/dist/Editor/helper/index.js +17 -4
  169. package/dist/Editor/helper/theme.js +24 -1
  170. package/dist/Editor/hooks/useMouseMove.js +5 -2
  171. package/dist/Editor/hooks/useTable.js +210 -0
  172. package/dist/Editor/plugins/withCustomDeleteBackward.js +36 -4
  173. package/dist/Editor/plugins/withEmbeds.js +30 -26
  174. package/dist/Editor/plugins/withHTML.js +61 -10
  175. package/dist/Editor/plugins/withLayout.js +1 -0
  176. package/dist/Editor/utils/SlateUtilityFunctions.js +39 -12
  177. package/dist/Editor/utils/brains.js +1 -1
  178. package/dist/Editor/utils/button.js +4 -4
  179. package/dist/Editor/utils/chatEditor/SlateUtilityFunctions.js +26 -1
  180. package/dist/Editor/utils/customHooks/useResize.js +7 -4
  181. package/dist/Editor/utils/customHooks/useTableResize.js +6 -2
  182. package/dist/Editor/utils/dataView.js +43 -0
  183. package/dist/Editor/utils/embed.js +2 -1
  184. package/dist/Editor/utils/events.js +0 -1
  185. package/dist/Editor/utils/font.js +11 -4
  186. package/dist/Editor/utils/formfield.js +8 -4
  187. package/dist/Editor/utils/helper.js +103 -2
  188. package/dist/Editor/utils/insertNewLine.js +19 -1
  189. package/dist/Editor/utils/pageSettings.js +14 -2
  190. package/dist/Editor/utils/serializeToText.js +2 -0
  191. package/dist/Editor/utils/table.js +228 -24
  192. package/package.json +2 -2
@@ -1,14 +1,15 @@
1
1
  const usePopupStyle = theme => ({
2
2
  popupWrapper: {
3
- boxShadow: "1px 2px 15px 0px #2563EB40",
3
+ boxShadow: theme?.palette?.type === "light" ? "1px 2px 15px 0px #2563EB40" : "unset",
4
4
  zIndex: 1300,
5
5
  marginBottom: "12px !important",
6
- borderRadius: "6px",
7
- border: "1px solid #D8DDE1",
6
+ borderRadius: "20px !important",
7
+ border: `1px solid ${theme?.palette?.editor?.popUpBorderColor} !important`,
8
8
  maxWidth: "100%",
9
9
  // maxHeight: "40px",
10
10
  "&.fullscreen": {
11
11
  marginBottom: "0px !important",
12
+ borderRadius: "0px !important",
12
13
  "& .papper-wrpr": {
13
14
  boxShadow: "none"
14
15
  }
@@ -17,7 +18,42 @@ const usePopupStyle = theme => ({
17
18
  transform: "none !important"
18
19
  },
19
20
  "& .MuiPaper-root": {
20
- backgroundColor: theme?.palette?.editor?.background
21
+ backgroundColor: `${theme?.palette?.editor?.textFormatBgColor} !important`,
22
+ borderRadius: "19px !important"
23
+ },
24
+ "& .MuiDialog-paperFullScreen": {
25
+ borderRadius: "0px !important"
26
+ },
27
+ "& .inputField": {
28
+ height: "29px",
29
+ "& .MuiIconButton-root": {
30
+ padding: "5px"
31
+ },
32
+ "& .MuiOutlinedInput-root ": {
33
+ background: `${theme?.palette?.editor?.inputFieldBgColor}`,
34
+ borderRadius: "8px",
35
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`
36
+ },
37
+ "& .MuiFormControl-root": {
38
+ background: `${theme?.palette?.editor?.inputFieldBgColor} !important`,
39
+ borderRadius: "8px",
40
+ height: "29px"
41
+ },
42
+ "& .MuiOutlinedInput-notchedOutline": {
43
+ borderRadius: "8px",
44
+ border: `1px solid transparent`
45
+ },
46
+ "& .MuiOutlinedInput-input": {
47
+ padding: "3px 35px 4px 2px !important"
48
+ },
49
+ "& .MuiInputBase-adornedStart": {
50
+ padding: "0px 0px 0px 9px"
51
+ },
52
+ "& svg": {
53
+ "& path": {
54
+ stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
55
+ }
56
+ }
21
57
  },
22
58
  "&.textSettings": {
23
59
  "@media only screen and (max-width: 600px)": {
@@ -26,7 +62,7 @@ const usePopupStyle = theme => ({
26
62
  }
27
63
  },
28
64
  "& .MuiTypography-root": {
29
- color: theme?.palette?.editor?.textColor
65
+ color: theme?.palette?.editor?.textFormatTextColor
30
66
  },
31
67
  "& .MuiInputBase-root": {
32
68
  color: theme?.palette?.editor?.textColor,
@@ -51,15 +87,25 @@ const usePopupStyle = theme => ({
51
87
  "& .buttonsWrpr": {
52
88
  "& button": {
53
89
  color: theme?.palette?.editor?.textColor
90
+ },
91
+ "& .more-btn-cbs": {
92
+ color: `${theme?.palette?.editor?.closeButtonSvgStroke}`,
93
+ border: `1px solid ${theme?.palette?.editor?.closeButtonSvgStroke}`,
94
+ paddingTop: "10px",
95
+ "& svg": {
96
+ width: "20px",
97
+ height: "24px"
98
+ }
54
99
  }
55
100
  },
56
101
  "@media only screen and (max-width: 599px)": {
57
- padding: "10px",
102
+ // margin: "10px !important",
58
103
  background: "unset",
59
- boxShadow: "unset",
60
- border: "none"
104
+ boxShadow: "unset"
105
+ // border: "none",
61
106
  }
62
107
  },
108
+
63
109
  textFormatWrapper: {
64
110
  padding: "0px 16px 16px 16px",
65
111
  width: "323px",
@@ -83,6 +129,9 @@ const usePopupStyle = theme => ({
83
129
  width: "330px"
84
130
  }
85
131
  },
132
+ "& .MuiTypography-root": {
133
+ padding: "0px"
134
+ },
86
135
  "&.templates": {
87
136
  width: "500px",
88
137
  maxWidth: "100%",
@@ -90,13 +139,38 @@ const usePopupStyle = theme => ({
90
139
  width: "100%",
91
140
  maxHeight: "fit-content"
92
141
  },
142
+ "& .MuiTab-root": {
143
+ textTransform: "capitalize",
144
+ color: "#64748B",
145
+ borderBottom: `1.5px solid ${theme?.palette?.editor?.deviderBgColor}`
146
+ },
147
+ "& .Mui-selected": {
148
+ color: `${theme?.palette?.editor?.textColor} !important`,
149
+ fontWeight: "700 !important"
150
+ },
151
+ "& .MuiTabs-indicator": {
152
+ background: "#2563EB"
153
+ },
154
+ "& .MuiTabScrollButton-horizontal": {
155
+ borderBottom: "unset !important",
156
+ width: "10px",
157
+ "& svg": {
158
+ color: theme?.palette?.editor?.closeButtonSvgStroke
159
+ }
160
+ },
93
161
  "@media only screen and (max-width: 599px)": {
94
162
  width: "330px"
163
+ },
164
+ "& .MuiCardContent-root": {
165
+ color: theme?.palette?.editor?.textColor,
166
+ fontFamily: "Inter, sans-serif",
167
+ fontSize: "12px",
168
+ fontWeight: "500"
95
169
  }
96
170
  },
97
171
  "& .headerContainer": {},
98
172
  "& .textSettingHeader": {
99
- borderBottom: "1px solid #DCE4EC",
173
+ // borderBottom: "1px solid #DCE4EC",
100
174
  padding: "8px 0px 5px",
101
175
  marginBottom: "20px"
102
176
  },
@@ -111,8 +185,77 @@ const usePopupStyle = theme => ({
111
185
  justifyContent: "start",
112
186
  borderRadius: "10px !important",
113
187
  transition: "background-color 0.3s ease",
188
+ // "& .colorBoxElementIcon": {
189
+ // "& path": {
190
+ // fill: theme?.palette?.type === "dark" ? "none" : "",
191
+ // },
192
+ // },
193
+ "& .signatureElementIcon": {
194
+ "& path": {
195
+ fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
196
+ }
197
+ },
198
+ "& .commonSvgStyle": {
199
+ "& path": {
200
+ stroke: `${theme?.palette?.editor?.closeButtonSvgStroke}`
201
+ }
202
+ },
203
+ "& .commonSvgStyle2": {
204
+ "& path": {
205
+ stroke: `${theme?.palette?.editor?.closeButtonSvgStroke}`
206
+ }
207
+ },
208
+ "& .colorBoxElementIcon": {
209
+ "& path": {
210
+ stroke: `${theme?.palette?.editor?.closeButtonSvgStroke}`,
211
+ fill: "none"
212
+ }
213
+ },
214
+ "& .gridElementIcon": {
215
+ "& path": {
216
+ stroke: `${theme?.palette?.editor?.closeButtonSvgStroke}`,
217
+ fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
218
+ }
219
+ },
220
+ "& .newLineElementIcon": {
221
+ "& path": {
222
+ fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
223
+ }
224
+ },
114
225
  "&:hover": {
115
- backgroundColor: "#E9F3FE"
226
+ backgroundColor: `${theme?.palette?.editor?.menuOptionHoverBackground} !important`,
227
+ "& .signatureElementIcon": {
228
+ "& path": {
229
+ fill: `${theme?.palette?.editor?.textColor}`
230
+ }
231
+ },
232
+ "& .commonSvgStyle": {
233
+ "& path": {
234
+ stroke: `${theme?.palette?.editor?.textColor}`
235
+ }
236
+ },
237
+ "& .commonSvgStyle2": {
238
+ "& path": {
239
+ stroke: `${theme?.palette?.editor?.textColor}`
240
+ }
241
+ },
242
+ "& .colorBoxElementIcon": {
243
+ "& path": {
244
+ stroke: `${theme?.palette?.editor?.textColor}`,
245
+ fill: "none"
246
+ }
247
+ },
248
+ "& .gridElementIcon": {
249
+ "& path": {
250
+ stroke: `${theme?.palette?.editor?.textColor}`,
251
+ fill: `${theme?.palette?.editor?.textColor}`
252
+ }
253
+ },
254
+ "& .newLineElementIcon": {
255
+ "& path": {
256
+ fill: `${theme?.palette?.editor?.textColor}`
257
+ }
258
+ }
116
259
  },
117
260
  "& svg": {
118
261
  width: "24px",
@@ -151,6 +294,14 @@ const usePopupStyle = theme => ({
151
294
  },
152
295
  "@media only screen and (max-width: 599px)": {
153
296
  width: "330px"
297
+ },
298
+ "& .textFormatMUIIcon": {
299
+ "& svg": {
300
+ color: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
301
+ }
302
+ },
303
+ "& .npr-0": {
304
+ paddingRight: "0px !important"
154
305
  }
155
306
  },
156
307
  textFormatLabel: {
@@ -168,11 +319,24 @@ const usePopupStyle = theme => ({
168
319
  },
169
320
  "& .MuiFormControl-root.MuiTextField-root input": {
170
321
  padding: "8px 35px 6px 12px"
322
+ },
323
+ "& .toogleFullScreenBtn": {
324
+ background: `${theme?.palette?.editor?.closeButtonBgColor} !important`,
325
+ padding: "4px !important",
326
+ "& .toogleFullScreenSvg": {
327
+ "& path": {
328
+ stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
329
+ }
330
+ }
171
331
  }
172
332
  },
333
+ textSettingHeader: {
334
+ display: "flex",
335
+ borderBottom: `1px solid ${theme?.palette?.editor?.deviderBgColor} !important`
336
+ },
173
337
  textFormatField: {
174
- marginBottom: "16px",
175
- marginTop: "10px"
338
+ marginBottom: "8px",
339
+ marginTop: "8px"
176
340
  },
177
341
  textFormatField1: {
178
342
  marginBottom: "16px",
@@ -182,6 +346,142 @@ const usePopupStyle = theme => ({
182
346
  // marginBottom: "16px",
183
347
  marginTop: "10px"
184
348
  },
349
+ textFormatField3: {
350
+ marginBottom: "16px"
351
+ },
352
+ textAlignButtons: {
353
+ paddingLeft: "0px",
354
+ paddingRight: "12px",
355
+ "&:hover": {
356
+ background: "unset"
357
+ },
358
+ "&:not(.btnActive):hover": {
359
+ background: "unset",
360
+ color: `${theme?.palette?.editor?.textColor} !important`,
361
+ "& .justifyIcon": {
362
+ "& path": {
363
+ fill: `${theme?.palette?.editor?.textColor}`,
364
+ stroke: `${theme?.palette?.editor?.textColor}`
365
+ }
366
+ },
367
+ "& .textAlignIconSameStyles": {
368
+ "& path": {
369
+ fill: `${theme?.palette?.editor?.textColor}`
370
+ }
371
+ },
372
+ "& .orderedListIcon": {
373
+ "& .strokePathList": {
374
+ stroke: `${theme?.palette?.editor?.textColor} !important`
375
+ },
376
+ "& .fillPathList": {
377
+ fill: `${theme?.palette?.editor?.textColor} !important`
378
+ }
379
+ },
380
+ "& .bulletedListTextIcon": {
381
+ "& path": {
382
+ fill: `${theme?.palette?.editor?.textColor}`,
383
+ stroke: `${theme?.palette?.editor?.textColor}`
384
+ },
385
+ "& circle": {
386
+ fill: `${theme?.palette?.editor?.textColor}`
387
+ }
388
+ },
389
+ "& .checkedListTextIcon": {
390
+ "& path": {
391
+ stroke: `${theme?.palette?.editor?.textColor}`
392
+ }
393
+ },
394
+ "& .accordianListTextIcon": {
395
+ // stroke: `${theme?.palette?.editor?.svgTextAlignStrokeColor} !important`,
396
+ "& svg": {
397
+ fill: `${theme?.palette?.editor?.textColor}`,
398
+ stroke: `${theme?.palette?.editor?.textColor}`
399
+ },
400
+ "& path": {
401
+ fill: `${theme?.palette?.editor?.textColor}`,
402
+ stroke: `${theme?.palette?.editor?.textColor}`
403
+ }
404
+ }
405
+ }
406
+ },
407
+ autoCompleteaFontFamily: {
408
+ "& .MuiOutlinedInput-root": {
409
+ borderRadius: "8px",
410
+ backgroundColor: `${theme?.palette?.editor?.inputFieldBgColor}`,
411
+ fontSize: "12px",
412
+ fontWeight: "400",
413
+ height: "36px",
414
+ paddingLeft: "12px !important"
415
+ },
416
+ "& .MuiOutlinedInput-notchedOutline": {
417
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`
418
+ },
419
+ '& .MuiInputBase-root': {
420
+ '& input': {
421
+ border: "none !important"
422
+ }
423
+ },
424
+ "& svg": {
425
+ width: "20px",
426
+ height: "24px"
427
+ }
428
+ },
429
+ fontFamilyListOptions: {
430
+ "& .MuiAutocomplete-listbox": {
431
+ padding: "0px",
432
+ "&::-webkit-scrollbar-thumb": {
433
+ background: `none !important`
434
+ },
435
+ "&::-webkit-scrollbar-track": {
436
+ visibility: "hidden"
437
+ },
438
+ "&::-webkit-scrollbar-thumb": {
439
+ background: `${theme?.palette?.editor?.brainPopupScroll} !important`
440
+ },
441
+ "&::-webkit-scrollbar-track": {
442
+ visibility: "hidden"
443
+ },
444
+ "& li": {
445
+ margin: "5px",
446
+ borderRadius: "8px",
447
+ color: theme?.palette?.editor?.menuOptionTextColor,
448
+ fontSize: '14px',
449
+ padding: '8px 12px',
450
+ '&[aria-selected="true"]': {
451
+ backgroundColor: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
452
+ }
453
+ }
454
+ },
455
+ "& .MuiPaper-root": {
456
+ borderRadius: "8px",
457
+ background: theme?.palette?.editor?.textWeightPopUpBackground
458
+ }
459
+ },
460
+ textFormatSelect: {
461
+ background: `${theme?.palette?.editor?.inputFieldBgColor} !important`,
462
+ width: "100%",
463
+ height: "36px",
464
+ borderRadius: "10px",
465
+ fontSize: "12px",
466
+ fontFamily: "Inter, sans-serif",
467
+ "& .MuiOutlinedInput-notchedOutline": {
468
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`
469
+ },
470
+ "& svg": {
471
+ width: "20px",
472
+ height: "24px"
473
+ }
474
+ },
475
+ textFormatSelectOptions: {
476
+ margin: "5px !important",
477
+ borderRadius: "4px !important",
478
+ fontSize: "12px !important",
479
+ fontWeight: 500,
480
+ "&.Mui-selected": {
481
+ background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`,
482
+ color: `${theme?.palette?.editor?.menuOptionTextColor} !important`
483
+ }
484
+ },
185
485
  textFormatFieldBorder: {
186
486
  display: "flex",
187
487
  alignItems: "center",
@@ -192,13 +492,31 @@ const usePopupStyle = theme => ({
192
492
  },
193
493
  dividerGrid: {
194
494
  margin: "5px 0px 10px 0px"
495
+ // background: `${theme?.palette?.editor?.deviderBgColor} !important`,
195
496
  },
497
+
196
498
  textFormatColorWrpr: {
197
499
  display: "flex",
198
500
  alignItems: "center",
199
501
  marginBottom: "8px"
200
502
  },
201
- textFormatCG: {},
503
+ textFormatCG: {
504
+ alignItems: "flexStart",
505
+ justifyContent: "center",
506
+ flexDirection: "row",
507
+ "& .accordionIcon": {
508
+ paddingLeft: "0px",
509
+ paddingRight: "12px",
510
+ "&:not(.btnActive):hover": {
511
+ background: "unset",
512
+ "& .accordianIconSvgTextFormat": {
513
+ "& path": {
514
+ stroke: theme?.palette?.editor?.textColor
515
+ }
516
+ }
517
+ }
518
+ }
519
+ },
202
520
  evenSpace: {
203
521
  display: "flex",
204
522
  flexDirection: "row",
@@ -210,7 +528,36 @@ const usePopupStyle = theme => ({
210
528
  "&.typo-icons": {
211
529
  "& button": {
212
530
  width: "31px",
213
- height: "36px"
531
+ height: "36px",
532
+ "&:hover": {
533
+ background: "unset"
534
+ },
535
+ "&:not(.btnActive):hover": {
536
+ background: "unset",
537
+ "& svg": {
538
+ color: `${theme?.palette?.editor?.textColor} !important`
539
+ },
540
+ "& .linkIcon": {
541
+ "& path": {
542
+ stroke: theme?.palette?.editor?.textColor
543
+ }
544
+ }
545
+ }
546
+ },
547
+ alignItems: "flexStart",
548
+ justifyContent: "center",
549
+ flexDirection: "row",
550
+ "&:hover": {
551
+ background: "unset"
552
+ },
553
+ "& .customSelectTool": {
554
+ color: theme?.palette?.editor?.closeButtonSvgStroke,
555
+ fontWeight: "510",
556
+ "& svg": {
557
+ marginTop: "8px",
558
+ width: "16px",
559
+ height: "8px"
560
+ }
214
561
  }
215
562
  },
216
563
  "&.text-decorations-wrpr": {
@@ -223,15 +570,24 @@ const usePopupStyle = theme => ({
223
570
  fontSize: "14px",
224
571
  marginBottom: "5px",
225
572
  paddingLeft: "5px",
573
+ marginTop: "4px",
226
574
  fontWeight: 500,
227
575
  color: theme?.palette?.editor?.textColor || "#000"
228
576
  },
229
577
  typoLabel2: {
230
578
  fontSize: "14px",
231
- marginBottom: "5px",
232
- paddingLeft: "10px",
579
+ marginBottom: "2px",
580
+ // paddingLeft: "10px",
233
581
  fontWeight: 500
234
582
  },
583
+ typoLabel3: {
584
+ fontSize: "14px",
585
+ marginBottom: "10px",
586
+ paddingLeft: "5px",
587
+ marginTop: "4px",
588
+ fontWeight: 500,
589
+ color: theme?.palette?.editor?.textColor || "#000"
590
+ },
235
591
  templateCard: {
236
592
  borderRadius: "10px",
237
593
  boxShadow: "none",
@@ -301,61 +657,110 @@ const usePopupStyle = theme => ({
301
657
  }
302
658
  },
303
659
  btnGroup: {
304
- backgroundColor: theme?.palette?.editor?.background,
660
+ border: `1px solid ${theme?.palette?.editor?.borderColor}`,
661
+ borderRadius: "7px",
662
+ backgroundColor: theme?.palette?.editor?.inputFieldBgColor,
663
+ height: "36px",
305
664
  "& button": {
306
- backgroundColor: theme?.palette?.editor?.background,
665
+ backgroundColor: theme?.palette?.editor?.inputFieldBgColor,
307
666
  marginRight: "0px",
308
667
  color: theme?.palette?.editor?.textColor,
309
- borderColor: theme?.palette?.editor?.borderColor,
668
+ borderColor: "#ffffff00 !important",
310
669
  textTransform: "capitalize",
311
670
  marginBottom: "0px",
312
- "&:hover": {
313
- color: theme?.palette?.editor?.borderColor,
314
- background: theme?.palette?.editor?.background
315
- },
316
671
  "&.active": {
317
672
  background: theme?.palette?.editor?.background,
318
673
  color: theme?.palette?.editor?.activeColor
319
674
  },
320
675
  "&.no-hover": {
321
- border: `1px solid ${theme?.palette?.editor?.borderColor}`
676
+ border: `1px solid #ffffff00`
322
677
  }
678
+ },
679
+ "& .colorBox": {
680
+ background: theme?.palette?.editor?.inputFieldBgColor,
681
+ borderRadius: "7px 0px 0px 7px",
682
+ fontSize: "12px !important",
683
+ fontWeight: 500
684
+ },
685
+ "& .colorPicker": {
686
+ background: theme?.palette?.editor?.inputFieldBgColor,
687
+ borderRadius: "0px 7px 7px 0px",
688
+ padding: "0px"
689
+ },
690
+ "& .vl": {
691
+ background: theme?.palette?.editor?.borderColor,
692
+ width: "2px",
693
+ height: "25px",
694
+ margin: "5px 0px"
695
+ },
696
+ "& svg": {
697
+ width: "20px",
698
+ height: "24px"
323
699
  }
324
700
  },
325
701
  btnGroup2: {
326
- backgroundColor: theme?.palette?.editor?.background,
702
+ border: `1px solid ${theme?.palette?.editor?.borderColor}`,
703
+ borderRadius: "7px",
704
+ backgroundColor: theme?.palette?.editor?.inputFieldBgColor,
705
+ height: "36px",
327
706
  "& button": {
328
707
  backgroundColor: theme?.palette?.editor?.background,
329
708
  marginRight: "0px",
330
709
  color: theme?.palette?.editor?.textColor,
331
- borderColor: theme?.palette?.editor?.borderColor,
710
+ borderColor: "#ffffff00 !important",
332
711
  textTransform: "capitalize",
333
712
  marginBottom: "0px",
334
- "&:hover": {
335
- color: theme?.palette?.editor?.borderColor,
336
- background: theme?.palette?.editor?.background
337
- },
713
+ // "&:hover": {
714
+ // color: theme?.palette?.editor?.borderColor,
715
+ // background: theme?.palette?.editor?.background,
716
+ // },
338
717
  "&.active": {
339
718
  background: theme?.palette?.editor?.background,
340
719
  color: theme?.palette?.editor?.activeColor
341
720
  },
342
721
  "&.no-hover": {
343
- border: `1px solid ${theme?.palette?.editor?.borderColor}`,
344
- padding: "0px 5px !important"
722
+ border: `1px solid #ffffff00`,
723
+ borderRadius: "7px 0px 0px 7px"
724
+ },
725
+ "& svg": {
726
+ width: "20px",
727
+ height: "24px"
345
728
  }
729
+ },
730
+ "& .colorBox": {
731
+ background: theme?.palette?.editor?.inputFieldBgColor,
732
+ borderRadius: "7px 0px 0px 7px",
733
+ fontSize: "12px !important",
734
+ fontWeight: 500
735
+ },
736
+ "& .colorPicker": {
737
+ background: theme?.palette?.editor?.inputFieldBgColor,
738
+ borderRadius: "0px 7px 7px 0px",
739
+ padding: "0px"
740
+ },
741
+ "& .vl": {
742
+ background: theme?.palette?.editor?.borderColor,
743
+ width: "2px",
744
+ height: "25px",
745
+ margin: "5px 0px"
346
746
  }
347
747
  },
348
748
  allColor: {
749
+ borderRadius: "7px !important",
349
750
  "& .buttonsWrpr": {
751
+ backgroundColor: `${theme?.palette?.editor?.miniToolBarBackground} !important`,
752
+ border: `1px solid ${theme?.palette?.editor?.miniToolBarBorder} !important`,
753
+ borderRadius: "7px !important",
350
754
  "& button": {
351
755
  color: theme?.palette?.editor?.textColor
352
756
  }
353
757
  }
354
758
  },
355
759
  allColorInner: {
760
+ borderRadius: "7px !important",
356
761
  "& .buttonsWrpr": {
357
762
  "& button": {
358
- border: "1px solid #ccc",
763
+ // border: "1px solid #ccc",
359
764
  margin: "4px",
360
765
  width: "24px",
361
766
  height: "24px",
@@ -379,14 +784,14 @@ const usePopupStyle = theme => ({
379
784
  textTransform: "none",
380
785
  textDecorationLine: "underline",
381
786
  textUnderlineOffset: "2px",
382
- padding: "0px 10px"
787
+ padding: "0px"
383
788
  },
384
789
  defaultBtn2: {
385
- color: "#A2B0B9 !important",
790
+ color: `${theme?.palette?.editor?.deafultColorOptionTextColor} !important`,
386
791
  textTransform: "none",
387
792
  textDecorationLine: "underline",
388
793
  textUnderlineOffset: "2px",
389
- padding: "0px 10px"
794
+ padding: "0px"
390
795
  },
391
796
  defaultBtn: {
392
797
  color: "#0F172A",
@@ -411,14 +816,16 @@ const usePopupStyle = theme => ({
411
816
  padding: "7px 15px",
412
817
  color: "#FFF",
413
818
  width: "100px",
414
- marginBottom: "10px"
819
+ marginBottom: "10px",
820
+ textTransform: "capitalize"
415
821
  },
416
822
  "& .outlineBtn": {
417
823
  border: "1px solid #D7DBEC",
418
824
  borderRadius: "7px",
419
825
  padding: "7px 15px",
420
826
  color: "#FFF",
421
- width: "100px"
827
+ width: "100px",
828
+ textTransform: "capitalize"
422
829
  }
423
830
  },
424
831
  searchBox: {
@@ -430,52 +837,110 @@ const usePopupStyle = theme => ({
430
837
  }
431
838
  },
432
839
  textOptions: {
433
- backgroundColor: theme?.palette?.editor?.background,
434
- color: theme?.palette?.editor?.textColor
840
+ backgroundColor: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`,
841
+ color: theme?.palette?.editor?.textColor,
842
+ borderRadius: "8px !important",
843
+ fontFamily: "Inter, sans-serif",
844
+ "& .MuiList-root": {
845
+ padding: "0px !important"
846
+ }
435
847
  },
436
848
  textSize: {
849
+ height: "36px !important",
850
+ "& .MuiOutlinedInput-root": {
851
+ borderRadius: "8px !important",
852
+ height: "36px !important",
853
+ background: `${theme?.palette?.editor?.inputFieldBgColor} !important`
854
+ },
855
+ "& .MuiOutlinedInput-notchedOutline": {
856
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`
857
+ },
437
858
  "& .textFontArrows": {
438
859
  "& svg": {
439
- stroke: theme?.palette?.editor?.textColor
860
+ stroke: theme?.palette?.editor?.closeButtonSvgStroke,
861
+ color: theme?.palette?.editor?.closeButtonSvgStroke,
862
+ width: "10px",
863
+ height: "12px"
440
864
  }
441
865
  }
442
866
  },
443
867
  closeBtn: {
444
- backgroundColor: theme?.palette?.editor?.background,
445
- color: theme?.palette?.editor?.textColor
868
+ background: `${theme?.palette?.editor?.closeButtonBgColor} !important`,
869
+ color: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
446
870
  },
447
871
  colorPickerPopup: {
448
872
  margin: "30px",
449
873
  "& .MuiPaper-root": {
450
874
  overflow: "auto",
451
- backgroundColor: theme?.palette?.editor?.background
875
+ backgroundColor: theme?.palette?.editor?.background,
876
+ borderRadius: "14px !important",
877
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`
452
878
  },
453
879
  "& .popup_tabs": {
454
- backgroundColor: theme?.palette?.editor?.background
880
+ backgroundColor: theme?.palette?.editor?.inputFieldBgColor,
881
+ "@media only screen and (max-width: 899px)": {
882
+ width: "100% !important"
883
+ }
455
884
  },
456
885
  "& .popup_tabs-header": {
457
- backgroundColor: theme?.palette?.editor?.background,
886
+ fontFamily: "Inter, sans-serif",
887
+ fontWeight: 700,
888
+ fontSize: "12px !important",
889
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
458
890
  "& .popup_tabs-header-label-active": {
459
891
  color: theme?.palette?.editor?.activeColor,
460
- backgroundColor: theme?.palette?.editor?.background
892
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground
461
893
  }
462
894
  },
895
+ "& .popup_tabs-body": {
896
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground
897
+ },
463
898
  "& .colorpicker": {
464
- backgroundColor: theme?.palette?.editor?.background
899
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground
465
900
  },
466
901
  "& .color-picker-panel": {
467
- backgroundColor: theme?.palette?.editor?.background
902
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground
468
903
  },
469
904
  "& .input_rgba": {
470
905
  "& input": {
471
- backgroundColor: theme?.palette?.editor?.background,
472
- color: theme?.palette?.editor?.textColor
906
+ backgroundColor: theme?.palette?.editor?.inputFieldBgColor,
907
+ color: theme?.palette?.editor?.textColor,
908
+ height: "32px !important",
909
+ borderRadius: "10px !important",
910
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`,
911
+ boxShadow: "none",
912
+ "&:hover": {
913
+ backgroundColor: `${theme?.palette?.editor?.inputFieldBgColor} !important`
914
+ },
915
+ "&:focus": {
916
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`,
917
+ backgroundColor: `${theme?.palette?.editor?.inputFieldBgColor} !important`,
918
+ boxShadow: "none"
919
+ }
920
+ },
921
+ "& .input_rgba-hex-label": {
922
+ top: "4px !important"
923
+ },
924
+ "& .input_rgba-alpha-label": {
925
+ top: "6px !important"
926
+ },
927
+ "& .input_rgba-label": {
928
+ display: "none"
929
+ }
930
+ },
931
+ "& .default-color-panel": {
932
+ gridTemplateColumns: "repeat(auto-fill, 24px)",
933
+ "& .default-color-panel_item": {
934
+ borderRadius: "50%",
935
+ width: "16px",
936
+ height: "16px"
473
937
  }
474
938
  }
475
939
  },
476
940
  colorPopper: {
477
941
  "& .MuiPaper-root": {
478
942
  backgroundColor: theme?.palette?.editor?.background,
943
+ borderRadius: "7px !important",
479
944
  "@media only screen and (max-width: 600px)": {
480
945
  marginTop: "-40px"
481
946
  }
@@ -589,17 +1054,18 @@ const usePopupStyle = theme => ({
589
1054
  "& .MuiPopover-paper": {
590
1055
  maxHeight: "140px",
591
1056
  // minWidth: "130px",
592
- border: "1px solid #E4E8EB",
593
- background: `${theme?.palette?.editor?.background} !important`,
1057
+ // border: "1px solid #E4E8EB",
1058
+ background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`,
594
1059
  overflowY: "scroll",
595
- padding: "6px 12px 6px 0px",
1060
+ padding: "3px 12px 8px 2px",
1061
+ borderRadius: "8px",
596
1062
  "@media only screen and (max-width: 600px)": {
597
1063
  marginTop: "-40px"
598
1064
  }
599
1065
  },
600
1066
  "& .customSelectOptionLabel": {
601
1067
  color: theme?.palette?.editor?.textColor || "black",
602
- margin: "0px 6px 0px 6px",
1068
+ margin: "6px 6px 0px 6px",
603
1069
  width: "100%",
604
1070
  justifyContent: "start",
605
1071
  paddingRight: "20px",
@@ -612,8 +1078,40 @@ const usePopupStyle = theme => ({
612
1078
  background: `${theme?.palette?.action?.selected} !important`
613
1079
  },
614
1080
  "&.selected": {
615
- color: `#2563EB !important`,
616
- background: `#E9F3FE !important`
1081
+ color: `${theme?.palette?.editor?.menuOptionTextColor} !important`,
1082
+ background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`,
1083
+ "& .orderedListIcon": {
1084
+ "& .strokePathList": {
1085
+ stroke: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`
1086
+ },
1087
+ "& .fillPathList": {
1088
+ fill: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`
1089
+ }
1090
+ },
1091
+ "& .bulletedListTextIcon": {
1092
+ "& path": {
1093
+ fill: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`,
1094
+ stroke: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`
1095
+ },
1096
+ "& circle": {
1097
+ fill: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`
1098
+ }
1099
+ },
1100
+ "& .checkedListTextIcon": {
1101
+ "& path": {
1102
+ stroke: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`
1103
+ }
1104
+ },
1105
+ "& .accordianIconSvgTextFormat": {
1106
+ "& path": {
1107
+ stroke: `${theme?.palette?.editor?.menuOptionsSelectedTextColor} !important`
1108
+ }
1109
+ },
1110
+ "& .textAlignIconSameStyles": {
1111
+ "& path": {
1112
+ fill: `${theme?.palette?.editor?.menuOptionsSelectedTextColor}`
1113
+ }
1114
+ }
617
1115
  }
618
1116
  },
619
1117
  "& .menuOptions": {