@flozy/editor 5.3.8 → 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 +19 -7
  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
@@ -6,6 +6,7 @@ export const ImageElementIcon = props => /*#__PURE__*/_jsxs("svg", {
6
6
  viewBox: "0 0 14 14",
7
7
  fill: "none",
8
8
  xmlns: "http://www.w3.org/2000/svg",
9
+ className: "commonSvgStyle",
9
10
  children: [/*#__PURE__*/_jsx("path", {
10
11
  d: "M5.2 13H8.8C11.8 13 13 11.8 13 8.8V5.2C13 2.2 11.8 1 8.8 1H5.2C2.2 1 1 2.2 1 5.2V8.8C1 11.8 2.2 13 5.2 13Z",
11
12
  stroke: "#64748B",
@@ -29,6 +30,7 @@ export const DocUploadElementIcon = props => /*#__PURE__*/_jsxs("svg", {
29
30
  viewBox: "0 0 16 16",
30
31
  fill: "none",
31
32
  xmlns: "http://www.w3.org/2000/svg",
33
+ className: "commonSvgStyle",
32
34
  children: [/*#__PURE__*/_jsx("path", {
33
35
  d: "M14 4.66634V11.333C14 13.333 13 14.6663 10.6667 14.6663H5.33333C3 14.6663 2 13.333 2 11.333V4.66634C2 2.66634 3 1.33301 5.33333 1.33301H10.6667C13 1.33301 14 2.66634 14 4.66634Z",
34
36
  stroke: "#64748B",
@@ -61,6 +63,7 @@ export const VideoElementIcon = props => /*#__PURE__*/_jsxs("svg", {
61
63
  viewBox: "0 0 16 16",
62
64
  fill: "none",
63
65
  xmlns: "http://www.w3.org/2000/svg",
66
+ className: "commonSvgStyle",
64
67
  children: [/*#__PURE__*/_jsx("path", {
65
68
  d: "M14.6654 9.99967V5.99967C14.6654 2.66634 13.332 1.33301 9.9987 1.33301H5.9987C2.66536 1.33301 1.33203 2.66634 1.33203 5.99967V9.99967C1.33203 13.333 2.66536 14.6663 5.9987 14.6663H9.9987C13.332 14.6663 14.6654 13.333 14.6654 9.99967Z",
66
69
  stroke: "#64748B",
@@ -95,6 +98,7 @@ export const EmbedElementIcon = props => /*#__PURE__*/_jsxs("svg", {
95
98
  viewBox: "0 0 14 14",
96
99
  fill: "none",
97
100
  xmlns: "http://www.w3.org/2000/svg",
101
+ className: "commonSvgStyle",
98
102
  children: [/*#__PURE__*/_jsx("path", {
99
103
  d: "M8.02903 5.96965C7.483 5.42382 6.74256 5.11719 5.97051 5.11719C5.19847 5.11719 4.45803 5.42382 3.91199 5.96965L1.85281 8.02828C1.30676 8.57435 1 9.31498 1 10.0872C1 10.8595 1.30676 11.6001 1.85281 12.1462C2.39885 12.6923 3.13944 12.9991 3.91166 12.9991C4.68388 12.9991 5.42447 12.6923 5.97051 12.1462L6.99977 11.1169",
100
104
  stroke: "#64748B",
@@ -113,6 +117,7 @@ export const ColorBoxElementIcon = props => /*#__PURE__*/_jsxs("svg", {
113
117
  viewBox: "0 0 16 16",
114
118
  fill: "none",
115
119
  xmlns: "http://www.w3.org/2000/svg",
120
+ className: "colorBoxElementIcon",
116
121
  children: [/*#__PURE__*/_jsx("path", {
117
122
  d: "M4.66536 4H11.332C11.7454 4 12.112 4.01333 12.4387 4.06C14.192 4.25333 14.6654 5.08 14.6654 7.33333V8.66667C14.6654 10.92 14.192 11.7467 12.4387 11.94C12.112 11.9867 11.7454 12 11.332 12H4.66536C4.25203 12 3.88536 11.9867 3.5587 11.94C1.80536 11.7467 1.33203 10.92 1.33203 8.66667V7.33333C1.33203 5.08 1.80536 4.25333 3.5587 4.06C3.88536 4.01333 4.25203 4 4.66536 4Z",
118
123
  fill: "#DDDDDD",
@@ -137,6 +142,7 @@ export const GridElementIcon = props => /*#__PURE__*/_jsxs("svg", {
137
142
  viewBox: "0 0 16 16",
138
143
  fill: "none",
139
144
  xmlns: "http://www.w3.org/2000/svg",
145
+ className: "gridElementIcon",
140
146
  children: [/*#__PURE__*/_jsx("path", {
141
147
  d: "M14.6667 5.67967V2.65301C14.6667 1.71301 14.24 1.33301 13.18 1.33301H10.4867C9.42667 1.33301 9 1.71301 9 2.65301V5.67301C9 6.61967 9.42667 6.99301 10.4867 6.99301H13.18C14.24 6.99967 14.6667 6.61967 14.6667 5.67967Z",
142
148
  stroke: "#64748B",
@@ -165,6 +171,7 @@ export const TableElementIcon = props => /*#__PURE__*/_jsxs("svg", {
165
171
  viewBox: "0 0 16 16",
166
172
  fill: "none",
167
173
  xmlns: "http://www.w3.org/2000/svg",
174
+ className: "commonSvgStyle",
168
175
  children: [/*#__PURE__*/_jsx("path", {
169
176
  d: "M5.9987 14.6663H9.9987C13.332 14.6663 14.6654 13.333 14.6654 9.99967V5.99967C14.6654 2.66634 13.332 1.33301 9.9987 1.33301H5.9987C2.66536 1.33301 1.33203 2.66634 1.33203 5.99967V9.99967C1.33203 13.333 2.66536 14.6663 5.9987 14.6663Z",
170
177
  stroke: "#64748B",
@@ -198,6 +205,7 @@ export const CarouselElementIcon = props => /*#__PURE__*/_jsxs("svg", {
198
205
  viewBox: "0 0 16 16",
199
206
  fill: "none",
200
207
  xmlns: "http://www.w3.org/2000/svg",
208
+ className: "commonSvgStyle",
201
209
  children: [/*#__PURE__*/_jsx("path", {
202
210
  d: "M5.99969 8.66699C5.55969 8.88699 5.19302 9.21366 4.91969 9.62033C4.76635 9.85366 4.76635 10.147 4.91969 10.3803C5.19302 10.787 5.55969 11.1137 5.99969 11.3337",
203
211
  stroke: "#64748B",
@@ -226,6 +234,7 @@ export const DividerElementIcon = props => /*#__PURE__*/_jsxs("svg", {
226
234
  viewBox: "0 0 16 16",
227
235
  fill: "none",
228
236
  xmlns: "http://www.w3.org/2000/svg",
237
+ className: "commonSvgStyle",
229
238
  children: [/*#__PURE__*/_jsx("path", {
230
239
  d: "M2 14.667H14",
231
240
  stroke: "#64748B",
@@ -259,6 +268,7 @@ export const EmojiElementIcon = props => /*#__PURE__*/_jsxs("svg", {
259
268
  viewBox: "0 0 16 16",
260
269
  fill: "none",
261
270
  xmlns: "http://www.w3.org/2000/svg",
271
+ className: "commonSvgStyle2",
262
272
  children: [/*#__PURE__*/_jsx("path", {
263
273
  d: "M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z",
264
274
  stroke: "#64748B",
@@ -289,6 +299,7 @@ export const NewLineElementIcon = props => /*#__PURE__*/_jsxs("svg", {
289
299
  viewBox: "0 0 16 16",
290
300
  fill: "none",
291
301
  xmlns: "http://www.w3.org/2000/svg",
302
+ className: "newLineElementIcon",
292
303
  children: [/*#__PURE__*/_jsx("path", {
293
304
  d: "M14 5.16699H2C1.72667 5.16699 1.5 4.94033 1.5 4.66699C1.5 4.39366 1.72667 4.16699 2 4.16699H14C14.2733 4.16699 14.5 4.39366 14.5 4.66699C14.5 4.94033 14.2733 5.16699 14 5.16699Z",
294
305
  fill: "#64748B"
@@ -306,6 +317,7 @@ export const SignatureElementIcon = props => /*#__PURE__*/_jsxs("svg", {
306
317
  viewBox: "0 0 16 16",
307
318
  fill: "none",
308
319
  xmlns: "http://www.w3.org/2000/svg",
320
+ className: "signatureElementIcon",
309
321
  children: [/*#__PURE__*/_jsx("path", {
310
322
  d: "M15.6664 11.5031H7.49382C7.75186 10.6187 7.98377 9.66296 8.19851 8.6858C8.77183 8.27708 9.33523 7.94217 9.81784 7.74203C10.2158 7.57737 10.4165 7.56488 10.4925 7.56488C10.5165 7.56488 10.5279 7.56698 10.5292 7.56418C10.5438 7.6033 10.6899 8.08102 9.84919 9.83886C9.66124 10.233 9.69852 10.5225 9.96057 10.7003C10.3693 10.9772 10.5599 10.7352 11.2693 9.82974C11.7493 9.21726 12.552 8.19125 12.95 7.90937C13.3733 7.61077 13.6173 7.59969 13.6693 7.64429C13.766 7.72311 13.8646 8.21064 13.5319 9.14123C13.4353 9.41261 13.5673 9.7132 13.8252 9.81502C14.0859 9.91685 14.3719 9.77731 14.4685 9.50813C14.9132 8.26236 14.8472 7.28295 14.2879 6.82195C14.0139 6.59669 13.4045 6.32459 12.3898 7.04242C12.1506 7.21198 11.8658 7.50136 11.5472 7.86826C11.5752 7.43233 11.4819 7.10233 11.2699 6.86108C10.7259 6.2396 9.76449 6.63792 9.44989 6.76906C9.16383 6.88759 8.84251 7.05504 8.50054 7.2608C8.57855 6.88269 8.65456 6.50608 8.73056 6.13287C8.76058 5.98433 8.78994 5.83708 8.81985 5.69064C9.64654 5.23652 10.3492 4.72245 10.6965 4.23702C12.1319 2.23513 11.9665 1.14143 11.7405 0.668204C11.5405 0.249679 11.1492 0 10.6939 0C9.9972 0 9.30457 0.543364 8.88648 1.41814C8.55913 2.10314 8.26382 3.40963 7.9425 4.97559C6.76649 5.55657 5.39449 6.01198 4.66648 6.01198C4.39048 6.01198 4.16648 6.24635 4.16648 6.53514C4.16648 6.82392 4.39048 7.05829 4.66648 7.05829C5.40512 7.05829 6.56381 6.7284 7.6845 6.24426C7.5672 6.82323 7.44052 7.44402 7.30313 8.07671C5.96518 9.08601 4.61114 10.4218 4.02511 11.5029H0.333373C0.149332 11.5029 0 11.6592 0 11.8517C0 12.0443 0.149332 12.2005 0.333373 12.2005H3.68796C3.28662 13.1227 2.73393 14.7236 3.30125 15.5383C3.4566 15.7614 3.74053 16 4.24119 16C4.3499 16 4.46854 15.9888 4.59788 15.9637C5.77992 15.7363 6.61786 14.2241 7.27858 12.1997L15.6666 12.1998C15.8507 12.1998 16 12.0435 16 11.851C16 11.6584 15.8507 11.5028 15.6666 11.5028L15.6664 11.5031ZM9.78041 1.88604C10.0557 1.30988 10.447 1.04689 10.693 1.04689C10.7937 1.04689 10.8237 1.0908 10.8457 1.13693C10.9684 1.3929 10.9057 2.20132 9.89569 3.60966C9.73698 3.83153 9.45829 4.07138 9.10574 4.31066C9.33766 3.23642 9.56232 2.34297 9.78041 1.88604ZM6.93308 9.6936C6.7804 10.3179 6.61779 10.929 6.44379 11.503L5.22435 11.5029C5.64033 10.9352 6.25305 10.2935 6.93308 9.6936ZM4.41701 14.9356C4.22303 14.9733 4.12706 14.9475 4.10963 14.9224C3.92626 14.6587 4.19233 13.4311 4.80092 12.2006H6.21967C5.71041 13.6926 5.1143 14.8017 4.41698 14.9356L4.41701 14.9356Z",
311
323
  fill: "#64748B"
@@ -320,6 +332,7 @@ export const ButtonElementIcon = props => /*#__PURE__*/_jsxs("svg", {
320
332
  viewBox: "0 0 16 16",
321
333
  fill: "none",
322
334
  xmlns: "http://www.w3.org/2000/svg",
335
+ className: "commonSvgStyle",
323
336
  children: [/*#__PURE__*/_jsx("path", {
324
337
  d: "M12.8799 6.66651H3.12652C2.13985 6.66651 1.33984 5.85985 1.33984 4.87985V3.12652C1.33984 2.13985 2.14652 1.33984 3.12652 1.33984H12.8799C13.8665 1.33984 14.6665 2.14652 14.6665 3.12652V4.87985C14.6665 5.85985 13.8599 6.66651 12.8799 6.66651Z",
325
338
  stroke: "#64748B",
@@ -368,6 +381,7 @@ export const TopBannerElementIcon = props => /*#__PURE__*/_jsxs("svg", {
368
381
  viewBox: "0 0 16 16",
369
382
  fill: "none",
370
383
  xmlns: "http://www.w3.org/2000/svg",
384
+ className: "commonSvgStyle",
371
385
  children: [/*#__PURE__*/_jsx("path", {
372
386
  d: "M4.84145 1.33301H11.1548C11.5881 1.33301 11.9748 1.34636 12.3215 1.39303C14.1681 1.59969 14.6681 2.46635 14.6681 4.83968V9.05302C14.6681 11.4264 14.1681 12.293 12.3215 12.4997C11.9748 12.5463 11.5948 12.5597 11.1548 12.5597H4.84145C4.40812 12.5597 4.02145 12.5463 3.67478 12.4997C1.82812 12.293 1.32812 11.4264 1.32812 9.05302V4.83968C1.32812 2.46635 1.82812 1.59969 3.67478 1.39303C4.02145 1.34636 4.40812 1.33301 4.84145 1.33301Z",
373
387
  stroke: "#64748B",
@@ -406,6 +420,7 @@ export const FormElementIcon = props => /*#__PURE__*/_jsxs("svg", {
406
420
  viewBox: "0 0 16 16",
407
421
  fill: "none",
408
422
  xmlns: "http://www.w3.org/2000/svg",
423
+ className: "commonSvgStyle",
409
424
  children: [/*#__PURE__*/_jsx("path", {
410
425
  d: "M7.33203 13H13.9987",
411
426
  stroke: "#64748B",
@@ -439,121 +454,130 @@ export const FormElementIcon = props => /*#__PURE__*/_jsxs("svg", {
439
454
  })]
440
455
  });
441
456
  export const OrderedListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
442
- width: "19",
443
- height: "19",
457
+ width: "24",
458
+ height: "25",
444
459
  viewBox: "0 0 24 25",
445
460
  fill: "none",
446
461
  xmlns: "http://www.w3.org/2000/svg",
462
+ className: "orderedListIcon",
447
463
  children: [/*#__PURE__*/_jsx("path", {
448
464
  d: "M11 19.8564H21",
449
465
  stroke: "#64748B",
450
- strokeWidth: "1.5",
466
+ strokeWidth: "2",
451
467
  strokeLinecap: "round",
452
- strokeLinejoin: "round"
468
+ strokeLinejoin: "round",
469
+ className: "strokePathList"
453
470
  }), /*#__PURE__*/_jsx("path", {
454
471
  d: "M11 12.8564H21",
455
472
  stroke: "#64748B",
456
- strokeWidth: "1.5",
473
+ strokeWidth: "2",
457
474
  strokeLinecap: "round",
458
- strokeLinejoin: "round"
475
+ strokeLinejoin: "round",
476
+ className: "strokePathList"
459
477
  }), /*#__PURE__*/_jsx("path", {
460
478
  d: "M11 5.85645H21",
461
479
  stroke: "#64748B",
462
- strokeWidth: "1.5",
480
+ strokeWidth: "2",
463
481
  strokeLinecap: "round",
464
- strokeLinejoin: "round"
482
+ strokeLinejoin: "round",
483
+ className: "strokePathList"
465
484
  }), /*#__PURE__*/_jsx("path", {
466
- d: "M5.02415 4.22008V7.85645H4.03693V5.12917H4.01562L3.22017 5.60502V4.76696L4.11506 4.22008H5.02415Z",
467
- fill: "#64748B"
485
+ d: "M5.63139 3.12917V7.85645H4.34801V4.31099H4.32031L3.28622 4.9296V3.84011L4.44957 3.12917H5.63139Z",
486
+ fill: "#64748B",
487
+ className: "fillPathList"
468
488
  }), /*#__PURE__*/_jsx("path", {
469
- d: "M3.24148 14.8564V14.1462L4.59801 13.0241C4.68797 12.9495 4.76491 12.8796 4.82884 12.8145C4.89394 12.7483 4.94366 12.6802 4.97798 12.6104C5.01349 12.5405 5.03125 12.463 5.03125 12.3778C5.03125 12.2842 5.01113 12.2043 4.97088 12.1381C4.93182 12.0718 4.87737 12.0209 4.80753 11.9854C4.73769 11.9487 4.6572 11.9303 4.56605 11.9303C4.47491 11.9303 4.39441 11.9487 4.32457 11.9854C4.25592 12.022 4.20265 12.0759 4.16477 12.1469C4.12689 12.218 4.10795 12.3044 4.10795 12.4062H3.17045C3.17045 12.1505 3.22786 11.9303 3.34268 11.7456C3.4575 11.561 3.61967 11.4189 3.82919 11.3195C4.03871 11.2201 4.28433 11.1704 4.56605 11.1704C4.85724 11.1704 5.10938 11.2171 5.32244 11.3106C5.5367 11.403 5.70182 11.5332 5.81783 11.7013C5.93501 11.8693 5.99361 12.0664 5.99361 12.2925C5.99361 12.4322 5.96461 12.5713 5.90661 12.7098C5.8486 12.8471 5.74444 12.9992 5.59411 13.1661C5.44377 13.333 5.23011 13.5319 4.95312 13.7627L4.61222 14.0468V14.0681H6.03267V14.8564H3.24148Z",
470
- fill: "#64748B"
489
+ d: "M3.31392 14.8564V13.9331L5.07741 12.4743C5.19437 12.3774 5.29439 12.2866 5.37749 12.202C5.46212 12.1158 5.52675 12.0273 5.57138 11.9365C5.61754 11.8457 5.64062 11.7449 5.64062 11.6341C5.64062 11.5126 5.61447 11.4087 5.56215 11.3225C5.51136 11.2364 5.44058 11.1702 5.34979 11.124C5.259 11.0763 5.15436 11.0525 5.03587 11.0525C4.91738 11.0525 4.81274 11.0763 4.72195 11.124C4.63269 11.1717 4.56345 11.2417 4.5142 11.3341C4.46496 11.4264 4.44034 11.5387 4.44034 11.6711H3.22159C3.22159 11.3387 3.29622 11.0525 3.44549 10.8124C3.59476 10.5724 3.80558 10.3877 4.07795 10.2584C4.35032 10.1292 4.66963 10.0645 5.03587 10.0645C5.41442 10.0645 5.74219 10.1253 6.01918 10.2469C6.2977 10.3669 6.51237 10.5362 6.66317 10.7547C6.81552 10.9732 6.89169 11.2294 6.89169 11.5233C6.89169 11.7049 6.85399 11.8857 6.77859 12.0658C6.70318 12.2443 6.56777 12.442 6.37234 12.659C6.17691 12.876 5.89915 13.1345 5.53906 13.4346L5.09588 13.8039V13.8316H6.94247V14.8564H3.31392Z",
490
+ fill: "#64748B",
491
+ className: "fillPathList"
471
492
  }), /*#__PURE__*/_jsx("path", {
472
- d: "M4.66193 21.9062C4.37547 21.9062 4.12098 21.857 3.89844 21.7588C3.67708 21.6594 3.50308 21.5226 3.37642 21.3486C3.24976 21.1746 3.18584 20.9746 3.18466 20.7485H4.17898C4.18016 20.8183 4.20147 20.8811 4.2429 20.9367C4.28551 20.9912 4.34351 21.0338 4.4169 21.0645C4.49029 21.0953 4.57434 21.1107 4.66903 21.1107C4.76018 21.1107 4.84067 21.0947 4.91051 21.0628C4.98035 21.0296 5.0348 20.984 5.07386 20.926C5.11293 20.868 5.13187 20.8018 5.13068 20.7272C5.13187 20.6538 5.10938 20.5887 5.06321 20.5319C5.01823 20.4751 4.9549 20.4307 4.87322 20.3987C4.79155 20.3667 4.69744 20.3508 4.59091 20.3508H4.22159V19.6689H4.59091C4.68916 19.6689 4.77557 19.653 4.85014 19.621C4.9259 19.589 4.98449 19.5447 5.02592 19.4878C5.06854 19.431 5.08925 19.3659 5.08807 19.2925C5.08925 19.2215 5.07209 19.1588 5.03658 19.1043C5.00107 19.0499 4.95135 19.0073 4.88743 18.9765C4.82469 18.9457 4.75189 18.9303 4.66903 18.9303C4.57907 18.9303 4.49858 18.9463 4.42756 18.9782C4.35772 19.0102 4.30268 19.0546 4.26243 19.1114C4.22218 19.1682 4.20147 19.2333 4.20028 19.3067H3.25568C3.25687 19.0842 3.31783 18.8877 3.43857 18.7172C3.56049 18.5468 3.72739 18.413 3.93928 18.316C4.15116 18.2189 4.39441 18.1704 4.66903 18.1704C4.93774 18.1704 5.17507 18.2159 5.38104 18.3071C5.58819 18.3982 5.74976 18.5237 5.86577 18.6835C5.98295 18.8421 6.04096 19.0238 6.03977 19.2286C6.04214 19.4322 5.9723 19.5991 5.83026 19.7293C5.68939 19.8595 5.51065 19.9365 5.29403 19.9601V19.9885C5.58759 20.0205 5.80836 20.1105 5.95632 20.2584C6.10429 20.4052 6.17708 20.5899 6.17472 20.8124C6.1759 21.0255 6.11198 21.2143 5.98295 21.3788C5.85511 21.5434 5.67696 21.6724 5.44851 21.7659C5.22124 21.8594 4.95904 21.9062 4.66193 21.9062Z",
473
- fill: "#64748B"
493
+ d: "M5.16051 21.9211C4.78812 21.9211 4.45727 21.8572 4.16797 21.7295C3.88021 21.6002 3.654 21.4225 3.48935 21.1963C3.32469 20.9701 3.2416 20.71 3.24006 20.4161H4.53267C4.53421 20.5069 4.56191 20.5885 4.61577 20.6608C4.67116 20.7316 4.74657 20.787 4.84197 20.827C4.93738 20.867 5.04664 20.887 5.16974 20.887C5.28823 20.887 5.39287 20.8662 5.48366 20.8247C5.57446 20.7816 5.64524 20.7223 5.69602 20.6469C5.7468 20.5715 5.77143 20.4854 5.76989 20.3884C5.77143 20.293 5.74219 20.2084 5.68217 20.1345C5.6237 20.0606 5.54137 20.0029 5.43519 19.9614C5.32901 19.9198 5.20668 19.8991 5.06818 19.8991H4.58807V19.0127H5.06818C5.1959 19.0127 5.30824 18.9919 5.40518 18.9504C5.50367 18.9088 5.57984 18.8511 5.6337 18.7773C5.6891 18.7034 5.71603 18.6188 5.71449 18.5233C5.71603 18.431 5.69371 18.3495 5.64755 18.2787C5.60138 18.2079 5.53675 18.1525 5.45366 18.1125C5.3721 18.0725 5.27746 18.0525 5.16974 18.0525C5.05279 18.0525 4.94815 18.0732 4.85582 18.1148C4.76503 18.1563 4.69348 18.214 4.64116 18.2879C4.58884 18.3618 4.56191 18.4464 4.56037 18.5418H3.33239C3.33393 18.2525 3.41317 17.9971 3.57013 17.7755C3.72863 17.5539 3.94561 17.38 4.22106 17.2538C4.49651 17.1276 4.81274 17.0645 5.16974 17.0645C5.51906 17.0645 5.82759 17.1238 6.09535 17.2423C6.36464 17.3608 6.57469 17.5239 6.7255 17.7316C6.87784 17.9378 6.95324 18.174 6.9517 18.4403C6.95478 18.7049 6.86399 18.9219 6.67933 19.0912C6.49621 19.2604 6.26385 19.3605 5.98224 19.3912V19.4282C6.36387 19.4697 6.65086 19.5867 6.84322 19.779C7.03557 19.9698 7.13021 20.2099 7.12713 20.4992C7.12867 20.7762 7.04557 21.0216 6.87784 21.2355C6.71165 21.4494 6.48005 21.6172 6.18306 21.7387C5.88761 21.8603 5.54676 21.9211 5.16051 21.9211Z",
494
+ fill: "#64748B",
495
+ className: "fillPathList"
474
496
  })]
475
497
  });
476
498
  export const BulletedListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
477
499
  width: "19",
478
500
  height: "19",
479
- viewBox: "0 0 24 25",
501
+ viewBox: "0 0 22 22",
480
502
  fill: "none",
481
503
  xmlns: "http://www.w3.org/2000/svg",
504
+ className: "bulletedListTextIcon",
482
505
  children: [/*#__PURE__*/_jsx("path", {
483
506
  d: "M11 19.8564H21",
484
- stroke: "#64748B",
485
- strokeWidth: "1.5",
507
+ stroke: "currentColor",
508
+ strokeWidth: "2",
486
509
  strokeLinecap: "round",
487
510
  strokeLinejoin: "round"
488
511
  }), /*#__PURE__*/_jsx("path", {
489
512
  d: "M11 12.8564H21",
490
- stroke: "#64748B",
491
- strokeWidth: "1.5",
513
+ stroke: "currentColor",
514
+ strokeWidth: "2",
492
515
  strokeLinecap: "round",
493
516
  strokeLinejoin: "round"
494
517
  }), /*#__PURE__*/_jsx("path", {
495
518
  d: "M11 5.85645H21",
496
- stroke: "#64748B",
497
- strokeWidth: "1.5",
519
+ stroke: "currentColor",
520
+ strokeWidth: "2",
498
521
  strokeLinecap: "round",
499
522
  strokeLinejoin: "round"
500
523
  }), /*#__PURE__*/_jsx("circle", {
501
524
  cx: "5.25",
502
525
  cy: "5.80664",
503
- r: "1.25",
504
- fill: "#64748B"
526
+ r: "1.7",
527
+ fill: "currentColor"
505
528
  }), /*#__PURE__*/_jsx("circle", {
506
529
  cx: "5.25",
507
530
  cy: "12.8066",
508
- r: "1.25",
509
- fill: "#64748B"
531
+ r: "1.7",
532
+ fill: "currentColor"
510
533
  }), /*#__PURE__*/_jsx("circle", {
511
534
  cx: "5.25",
512
535
  cy: "19.8066",
513
- r: "1.25",
514
- fill: "#64748B"
536
+ r: "1.7",
537
+ fill: "currentColor"
515
538
  })]
516
539
  });
517
540
  export const CheckListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
518
541
  width: "19",
519
542
  height: "19",
520
- viewBox: "0 0 24 25",
543
+ viewBox: "0 0 22 22",
521
544
  fill: "none",
522
545
  xmlns: "http://www.w3.org/2000/svg",
546
+ className: "checkedListTextIcon",
523
547
  children: [/*#__PURE__*/_jsx("path", {
524
548
  d: "M11 19.8564H21",
525
- stroke: "#64748B",
526
- strokeWidth: "1.5",
549
+ stroke: "currentColor",
550
+ strokeWidth: "2",
527
551
  strokeLinecap: "round",
528
552
  strokeLinejoin: "round"
529
553
  }), /*#__PURE__*/_jsx("path", {
530
554
  d: "M11 12.8564H21",
531
- stroke: "#64748B",
532
- strokeWidth: "1.5",
555
+ stroke: "currentColor",
556
+ strokeWidth: "2",
533
557
  strokeLinecap: "round",
534
558
  strokeLinejoin: "round"
535
559
  }), /*#__PURE__*/_jsx("path", {
536
560
  d: "M11 5.85645H21",
537
- stroke: "#64748B",
538
- strokeWidth: "1.5",
561
+ stroke: "currentColor",
562
+ strokeWidth: "2",
539
563
  strokeLinecap: "round",
540
564
  strokeLinejoin: "round"
541
565
  }), /*#__PURE__*/_jsx("path", {
542
566
  d: "M3 5.85645L4 6.85645L7 3.85645",
543
- stroke: "#64748B",
544
- strokeWidth: "1.5",
567
+ stroke: "currentColor",
568
+ strokeWidth: "2",
545
569
  strokeLinecap: "round",
546
570
  strokeLinejoin: "round"
547
571
  }), /*#__PURE__*/_jsx("path", {
548
572
  d: "M3 12.8564L4 13.8564L7 10.8564",
549
- stroke: "#64748B",
550
- strokeWidth: "1.5",
573
+ stroke: "currentColor",
574
+ strokeWidth: "2",
551
575
  strokeLinecap: "round",
552
576
  strokeLinejoin: "round"
553
577
  }), /*#__PURE__*/_jsx("path", {
554
578
  d: "M3 19.8564L4 20.8564L7 17.8564",
555
- stroke: "#64748B",
556
- strokeWidth: "1.5",
579
+ stroke: "currentColor",
580
+ strokeWidth: "2",
557
581
  strokeLinecap: "round",
558
582
  strokeLinejoin: "round"
559
583
  })]
@@ -561,37 +585,38 @@ export const CheckListTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
561
585
  export const AccordionTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
562
586
  width: "19",
563
587
  height: "19",
564
- viewBox: "0 0 24 25",
588
+ viewBox: "0 0 22 22",
565
589
  fill: "none",
566
590
  xmlns: "http://www.w3.org/2000/svg",
591
+ className: "accordianIconSvgTextFormat",
567
592
  children: [/*#__PURE__*/_jsx("path", {
568
- d: "M14 4.85645H21",
593
+ d: "M14 4.85547H21",
569
594
  stroke: "#64748B",
570
- strokeWidth: "1.5",
595
+ strokeWidth: "1.7",
571
596
  strokeLinecap: "round",
572
597
  strokeLinejoin: "round"
573
598
  }), /*#__PURE__*/_jsx("path", {
574
- d: "M14 9.85645H21",
599
+ d: "M14 9.85547H21",
575
600
  stroke: "#64748B",
576
- strokeWidth: "1.5",
601
+ strokeWidth: "1.7",
577
602
  strokeLinecap: "round",
578
603
  strokeLinejoin: "round"
579
604
  }), /*#__PURE__*/_jsx("path", {
580
- d: "M3 14.8564H21",
605
+ d: "M3 14.8555H21",
581
606
  stroke: "#64748B",
582
- strokeWidth: "1.5",
607
+ strokeWidth: "1.7",
583
608
  strokeLinecap: "round",
584
609
  strokeLinejoin: "round"
585
610
  }), /*#__PURE__*/_jsx("path", {
586
- d: "M3 19.8564H21",
611
+ d: "M3 19.8555H21",
587
612
  stroke: "#64748B",
588
- strokeWidth: "1.5",
613
+ strokeWidth: "1.7",
589
614
  strokeLinecap: "round",
590
615
  strokeLinejoin: "round"
591
616
  }), /*#__PURE__*/_jsx("path", {
592
- d: "M8.8 6.66362C9.33333 6.97154 9.33333 7.74135 8.8 8.04927L3.7 10.9938C3.16667 11.3017 2.5 10.9168 2.5 10.3009L2.5 4.41196C2.5 3.79612 3.16667 3.41122 3.7 3.71914L8.8 6.66362Z",
617
+ d: "M8.8 6.66265C9.33333 6.97057 9.33333 7.74037 8.8 8.04829L3.7 10.9928C3.16667 11.3007 2.5 10.9158 2.5 10.3L2.5 4.41098C2.5 3.79514 3.16667 3.41024 3.7 3.71816L8.8 6.66265Z",
593
618
  stroke: "#64748B",
594
- strokeWidth: "1.5"
619
+ strokeWidth: "1.7"
595
620
  })]
596
621
  });
597
622
  export const BoldTextFormatIcon = props => /*#__PURE__*/_jsx("svg", {
@@ -602,7 +627,7 @@ export const BoldTextFormatIcon = props => /*#__PURE__*/_jsx("svg", {
602
627
  xmlns: "http://www.w3.org/2000/svg",
603
628
  children: /*#__PURE__*/_jsx("path", {
604
629
  d: "M0.598011 15.3564V0.81099H5.92472C6.95691 0.81099 7.81155 0.981445 8.48864 1.32235C9.16572 1.65853 9.67235 2.11544 10.0085 2.69309C10.3447 3.26601 10.5128 3.91232 10.5128 4.63201C10.5128 5.23807 10.4015 5.74944 10.179 6.1661C9.95644 6.57804 9.65814 6.90948 9.28409 7.16042C8.91477 7.40663 8.50758 7.58656 8.0625 7.7002V7.84224C8.54545 7.86591 9.01657 8.02216 9.47585 8.31099C9.93987 8.59508 10.3234 8.99991 10.6264 9.52548C10.9295 10.051 11.081 10.6903 11.081 11.4431C11.081 12.1865 10.9058 12.8541 10.5554 13.4459C10.2098 14.0331 9.67472 14.4994 8.95028 14.8451C8.22585 15.186 7.30019 15.3564 6.1733 15.3564H0.598011ZM2.79261 13.4743H5.96023C7.01136 13.4743 7.7642 13.2707 8.21875 12.8635C8.6733 12.4564 8.90057 11.9474 8.90057 11.3366C8.90057 10.8773 8.78456 10.4559 8.55256 10.0724C8.32055 9.68883 7.98911 9.38343 7.55824 9.15616C7.1321 8.92889 6.62547 8.81525 6.03835 8.81525H2.79261V13.4743ZM2.79261 7.1036H5.73295C6.22538 7.1036 6.66809 7.00891 7.06108 6.81951C7.45881 6.63012 7.77367 6.36497 8.00568 6.02406C8.24242 5.67841 8.3608 5.27122 8.3608 4.80247C8.3608 4.20114 8.15009 3.69688 7.72869 3.28968C7.30729 2.88249 6.66099 2.67889 5.78977 2.67889H2.79261V7.1036Z",
605
- fill: "#64748B"
630
+ fill: "currentColor"
606
631
  })
607
632
  });
608
633
  export const UnderlineTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
@@ -613,13 +638,13 @@ export const UnderlineTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
613
638
  xmlns: "http://www.w3.org/2000/svg",
614
639
  children: [/*#__PURE__*/_jsx("path", {
615
640
  d: "M3.41406 1.58301V6.16634C3.41406 7.38192 3.89695 8.54771 4.75649 9.40725C5.61603 10.2668 6.78182 10.7497 7.9974 10.7497C9.21297 10.7497 10.3788 10.2668 11.2383 9.40725C12.0978 8.54771 12.5807 7.38192 12.5807 6.16634V1.58301",
616
- stroke: "#64748B",
641
+ stroke: "currentColor",
617
642
  strokeWidth: "2",
618
643
  strokeLinecap: "round",
619
644
  strokeLinejoin: "round"
620
645
  }), /*#__PURE__*/_jsx("path", {
621
646
  d: "M1.58203 14.416H14.4154",
622
- stroke: "#64748B",
647
+ stroke: "currentColor",
623
648
  strokeWidth: "2",
624
649
  strokeLinecap: "round",
625
650
  strokeLinejoin: "round"
@@ -633,19 +658,19 @@ export const ItalicTextFormatIcon = props => /*#__PURE__*/_jsxs("svg", {
633
658
  xmlns: "http://www.w3.org/2000/svg",
634
659
  children: [/*#__PURE__*/_jsx("path", {
635
660
  d: "M4.71094 1.45801H9.46094",
636
- stroke: "#64748B",
661
+ stroke: "currentColor",
637
662
  strokeWidth: "2",
638
663
  strokeLinecap: "round",
639
664
  strokeLinejoin: "round"
640
665
  }), /*#__PURE__*/_jsx("path", {
641
666
  d: "M1.54297 12.541H6.29297",
642
- stroke: "#64748B",
667
+ stroke: "currentColor",
643
668
  strokeWidth: "2",
644
669
  strokeLinecap: "round",
645
670
  strokeLinejoin: "round"
646
671
  }), /*#__PURE__*/_jsx("path", {
647
672
  d: "M7.08464 1.45801L3.91797 12.5413",
648
- stroke: "#64748B",
673
+ stroke: "currentColor",
649
674
  strokeWidth: "2",
650
675
  strokeLinecap: "round",
651
676
  strokeLinejoin: "round"
@@ -657,6 +682,7 @@ export const LinkIconV2 = props => /*#__PURE__*/_jsxs("svg", {
657
682
  viewBox: "1.5 0 17 20",
658
683
  fill: "none",
659
684
  xmlns: "http://www.w3.org/2000/svg",
685
+ className: "linkIcon",
660
686
  children: [/*#__PURE__*/_jsx("path", {
661
687
  d: "M11.2869 8.71403C10.6043 8.03173 9.67871 7.64844 8.71358 7.64844C7.74846 7.64844 6.82284 8.03173 6.14025 8.71403L3.56608 11.2874C2.88348 11.97 2.5 12.8958 2.5 13.8611C2.5 14.8265 2.88348 15.7523 3.56608 16.4349C4.24868 17.1175 5.17449 17.5009 6.13983 17.5009C7.10518 17.5009 8.03098 17.1175 8.71358 16.4349L10.0002 15.1482",
662
688
  stroke: "#64748B",
@@ -848,6 +874,7 @@ export function H1() {
848
874
  viewBox: "0 0 14 11",
849
875
  fill: "none",
850
876
  xmlns: "http://www.w3.org/2000/svg",
877
+ className: "signatureElementIcon",
851
878
  children: /*#__PURE__*/_jsx("path", {
852
879
  d: "M0.884943 11V0.818182H3.03764V5.01918H7.40767V0.818182H9.5554V11H7.40767V6.79403H3.03764V11H0.884943ZM13.4482 5.18182V11H12.218V6.34943H12.1839L10.8516 7.18466V6.09375L12.2919 5.18182H13.4482Z",
853
880
  fill: "#64748B"
@@ -861,6 +888,7 @@ export function H2() {
861
888
  viewBox: "0 0 16 11",
862
889
  fill: "none",
863
890
  xmlns: "http://www.w3.org/2000/svg",
891
+ className: "signatureElementIcon",
864
892
  children: /*#__PURE__*/_jsx("path", {
865
893
  d: "M0.884943 11V0.818182H3.03764V5.01918H7.40767V0.818182H9.5554V11H7.40767V6.79403H3.03764V11H0.884943ZM10.9169 11V10.1136L12.9879 8.19602C13.1641 8.02557 13.3118 7.87216 13.4311 7.7358C13.5523 7.59943 13.6442 7.46591 13.7067 7.33523C13.7692 7.20265 13.8004 7.05966 13.8004 6.90625C13.8004 6.7358 13.7616 6.58902 13.6839 6.46591C13.6063 6.34091 13.5002 6.24527 13.3658 6.17898C13.2313 6.1108 13.0788 6.0767 12.9084 6.0767C12.7304 6.0767 12.575 6.11269 12.4425 6.18466C12.3099 6.25663 12.2076 6.35985 12.1357 6.49432C12.0637 6.62879 12.0277 6.78883 12.0277 6.97443H10.8601C10.8601 6.59375 10.9463 6.26326 11.1186 5.98295C11.291 5.70265 11.5324 5.4858 11.843 5.33239C12.1536 5.17898 12.5116 5.10227 12.9169 5.10227C13.3336 5.10227 13.6963 5.17614 14.005 5.32386C14.3156 5.4697 14.5571 5.67235 14.7294 5.93182C14.9018 6.19129 14.9879 6.48864 14.9879 6.82386C14.9879 7.04356 14.9444 7.26042 14.8572 7.47443C14.772 7.68845 14.6196 7.92614 14.3999 8.1875C14.1802 8.44697 13.8705 8.75852 13.4709 9.12216L12.6214 9.95455V9.99432H15.0646V11H10.9169Z",
866
894
  fill: "#64748B"
@@ -874,6 +902,7 @@ export function H3() {
874
902
  viewBox: "0 0 16 12",
875
903
  fill: "none",
876
904
  xmlns: "http://www.w3.org/2000/svg",
905
+ className: "signatureElementIcon",
877
906
  children: /*#__PURE__*/_jsx("path", {
878
907
  d: "M0.884943 11V0.818182H3.03764V5.01918H7.40767V0.818182H9.5554V11H7.40767V6.79403H3.03764V11H0.884943ZM13.0675 11.0795C12.6432 11.0795 12.2654 11.0066 11.9339 10.8608C11.6044 10.7131 11.344 10.5104 11.1527 10.2528C10.9633 9.99337 10.8658 9.69413 10.8601 9.35511H12.0987C12.1063 9.49716 12.1527 9.62216 12.2379 9.73011C12.325 9.83617 12.4406 9.91856 12.5845 9.97727C12.7285 10.036 12.8904 10.0653 13.0703 10.0653C13.2578 10.0653 13.4235 10.0322 13.5675 9.96591C13.7114 9.89962 13.8241 9.80777 13.9055 9.69034C13.987 9.57292 14.0277 9.4375 14.0277 9.28409C14.0277 9.12879 13.9841 8.99148 13.897 8.87216C13.8118 8.75095 13.6887 8.65625 13.5277 8.58807C13.3686 8.51989 13.1792 8.4858 12.9595 8.4858H12.4169V7.58239H12.9595C13.1451 7.58239 13.3089 7.55019 13.451 7.4858C13.5949 7.4214 13.7067 7.33239 13.7862 7.21875C13.8658 7.10322 13.9055 6.96875 13.9055 6.81534C13.9055 6.66951 13.8705 6.54167 13.8004 6.43182C13.7322 6.32008 13.6357 6.23295 13.5107 6.17045C13.3875 6.10795 13.2436 6.0767 13.0788 6.0767C12.9122 6.0767 12.7597 6.10701 12.6214 6.16761C12.4832 6.22633 12.3724 6.31061 12.2891 6.42045C12.2057 6.5303 12.1612 6.65909 12.1555 6.80682H10.9766C10.9822 6.47159 11.0779 6.17614 11.2635 5.92045C11.4491 5.66477 11.6991 5.46496 12.0135 5.32102C12.3298 5.17519 12.6868 5.10227 13.0845 5.10227C13.486 5.10227 13.8374 5.17519 14.1385 5.32102C14.4396 5.46686 14.6735 5.66383 14.8402 5.91193C15.0088 6.15814 15.0921 6.43466 15.0902 6.74148C15.0921 7.06723 14.9908 7.33902 14.7862 7.55682C14.5836 7.77462 14.3194 7.91288 13.9936 7.97159V8.01705C14.4216 8.07197 14.7474 8.22064 14.9709 8.46307C15.1963 8.7036 15.308 9.00473 15.3061 9.36648C15.308 9.69792 15.2124 9.99242 15.0192 10.25C14.8279 10.5076 14.5637 10.7102 14.2266 10.858C13.8894 11.0057 13.5031 11.0795 13.0675 11.0795Z",
879
908
  fill: "#64748B"
@@ -887,6 +916,7 @@ export function CalendlyIcon() {
887
916
  viewBox: "0 0 12 14",
888
917
  fill: "none",
889
918
  xmlns: "http://www.w3.org/2000/svg",
919
+ className: "calederIconSvg",
890
920
  children: [/*#__PURE__*/_jsx("rect", {
891
921
  x: "0.5",
892
922
  y: "2.5",
@@ -897,14 +927,540 @@ export function CalendlyIcon() {
897
927
  }), /*#__PURE__*/_jsx("path", {
898
928
  d: "M3 1L3 4",
899
929
  stroke: "#64748B",
900
- strokeLinecap: "round"
930
+ strokeLinecap: "round",
931
+ className: "strokePath"
901
932
  }), /*#__PURE__*/_jsx("path", {
902
933
  d: "M9 1L9 4",
903
934
  stroke: "#64748B",
904
- strokeLinecap: "round"
935
+ strokeLinecap: "round",
936
+ className: "strokePath"
905
937
  }), /*#__PURE__*/_jsx("path", {
906
938
  d: "M8.10369 7.0554H7.43892C7.41335 6.91335 7.36577 6.78835 7.29616 6.6804C7.22656 6.57244 7.14134 6.48082 7.04048 6.40554C6.93963 6.33026 6.8267 6.27344 6.7017 6.23509C6.57813 6.19673 6.44673 6.17756 6.30753 6.17756C6.05611 6.17756 5.83097 6.24077 5.6321 6.36719C5.43466 6.49361 5.27841 6.67898 5.16335 6.9233C5.04972 7.16761 4.9929 7.46591 4.9929 7.81818C4.9929 8.1733 5.04972 8.47301 5.16335 8.71733C5.27841 8.96165 5.43537 9.14631 5.63423 9.27131C5.8331 9.39631 6.05682 9.45881 6.3054 9.45881C6.44318 9.45881 6.57386 9.44034 6.69744 9.40341C6.82244 9.36506 6.93537 9.30895 7.03622 9.23509C7.13707 9.16122 7.2223 9.07102 7.2919 8.96449C7.36293 8.85653 7.41193 8.73295 7.43892 8.59375L8.10369 8.59588C8.06818 8.81037 7.99929 9.00781 7.89702 9.18821C7.79616 9.36719 7.66619 9.52202 7.5071 9.6527C7.34943 9.78196 7.16903 9.8821 6.96591 9.95312C6.76278 10.0241 6.54119 10.0597 6.30114 10.0597C5.9233 10.0597 5.58665 9.97017 5.29119 9.79119C4.99574 9.6108 4.76278 9.35298 4.59233 9.01776C4.4233 8.68253 4.33878 8.28267 4.33878 7.81818C4.33878 7.35227 4.42401 6.95241 4.59446 6.61861C4.76491 6.28338 4.99787 6.02628 5.29332 5.8473C5.58878 5.6669 5.92472 5.5767 6.30114 5.5767C6.53267 5.5767 6.74858 5.61009 6.94886 5.67685C7.15057 5.74219 7.33168 5.83878 7.49219 5.96662C7.6527 6.09304 7.78551 6.24787 7.89062 6.43111C7.99574 6.61293 8.06676 6.82102 8.10369 7.0554Z",
907
- fill: "#64748B"
939
+ fill: "#64748B",
940
+ className: "fillPath"
941
+ })]
942
+ });
943
+ }
944
+ export function LeftAlignTextFormat() {
945
+ return /*#__PURE__*/_jsxs("svg", {
946
+ width: "19",
947
+ height: "19",
948
+ viewBox: "0 0 20 22",
949
+ fill: "none",
950
+ xmlns: "http://www.w3.org/2000/svg",
951
+ className: "textAlignIconSameStyles",
952
+ children: [/*#__PURE__*/_jsx("path", {
953
+ d: "M17.5 5.60547H2.5C2.15833 5.60547 1.875 5.26547 1.875 4.85547C1.875 4.44547 2.15833 4.10547 2.5 4.10547H17.5C17.8417 4.10547 18.125 4.44547 18.125 4.85547C18.125 5.26547 17.8417 5.60547 17.5 5.60547Z",
954
+ fill: "currentColor",
955
+ stroke: "currentColor",
956
+ strokeWidth: "0.5",
957
+ strokeLinecap: "round",
958
+ strokeLinejoin: "round"
959
+ }), /*#__PURE__*/_jsx("path", {
960
+ d: "M10.3917 10.6055H2.5C2.15833 10.6055 1.875 10.2655 1.875 9.85547C1.875 9.44547 2.15833 9.10547 2.5 9.10547H10.3917C10.7333 9.10547 11.0167 9.44547 11.0167 9.85547C11.0167 10.2655 10.7417 10.6055 10.3917 10.6055Z",
961
+ fill: "currentColor",
962
+ stroke: "currentColor",
963
+ strokeWidth: "0.5",
964
+ strokeLinecap: "round",
965
+ strokeLinejoin: "round"
966
+ }), /*#__PURE__*/_jsx("path", {
967
+ d: "M17.5 15.6055H2.5C2.15833 15.6055 1.875 15.2655 1.875 14.8555C1.875 14.4455 2.15833 14.1055 2.5 14.1055H17.5C17.8417 14.1055 18.125 14.4455 18.125 14.8555C18.125 15.2655 17.8417 15.6055 17.5 15.6055Z",
968
+ fill: "currentColor",
969
+ stroke: "currentColor",
970
+ strokeWidth: "0.5",
971
+ strokeLinecap: "round",
972
+ strokeLinejoin: "round"
973
+ }), /*#__PURE__*/_jsx("path", {
974
+ d: "M10.3917 20.6055H2.5C2.15833 20.6055 1.875 20.2655 1.875 19.8555C1.875 19.4455 2.15833 19.1055 2.5 19.1055H10.3917C10.7333 19.1055 11.0167 19.4455 11.0167 19.8555C11.0167 20.2655 10.7417 20.6055 10.3917 20.6055Z",
975
+ fill: "currentColor",
976
+ stroke: "currentColor",
977
+ strokeWidth: "0.5",
978
+ strokeLinecap: "round",
979
+ strokeLinejoin: "round"
980
+ })]
981
+ });
982
+ }
983
+ export function CenterAlignTextFormat() {
984
+ return /*#__PURE__*/_jsxs("svg", {
985
+ width: "19",
986
+ height: "19",
987
+ viewBox: "0 0 20 22",
988
+ fill: "none",
989
+ xmlns: "http://www.w3.org/2000/svg",
990
+ className: "textAlignIconSameStyles",
991
+ children: [/*#__PURE__*/_jsx("path", {
992
+ d: "M17.5 5.60547H2.5C2.15833 5.60547 1.875 5.26547 1.875 4.85547C1.875 4.44547 2.15833 4.10547 2.5 4.10547H17.5C17.8417 4.10547 18.125 4.44547 18.125 4.85547C18.125 5.26547 17.8417 5.60547 17.5 5.60547Z",
993
+ fill: "currentColor",
994
+ stroke: "currentColor",
995
+ strokeWidth: "0.5",
996
+ strokeLinecap: "round",
997
+ strokeLinejoin: "round"
998
+ }), /*#__PURE__*/_jsx("path", {
999
+ d: "M13.9508 10.6055H6.05078C5.70911 10.6055 5.42578 10.2655 5.42578 9.85547C5.42578 9.44547 5.70911 9.10547 6.05078 9.10547H13.9424C14.2841 9.10547 14.5674 9.44547 14.5674 9.85547C14.5674 10.2655 14.2924 10.6055 13.9508 10.6055Z",
1000
+ fill: "currentColor",
1001
+ stroke: "currentColor",
1002
+ strokeWidth: "0.5",
1003
+ strokeLinecap: "round",
1004
+ strokeLinejoin: "round"
1005
+ }), /*#__PURE__*/_jsx("path", {
1006
+ d: "M17.5 15.6055H2.5C2.15833 15.6055 1.875 15.2655 1.875 14.8555C1.875 14.4455 2.15833 14.1055 2.5 14.1055H17.5C17.8417 14.1055 18.125 14.4455 18.125 14.8555C18.125 15.2655 17.8417 15.6055 17.5 15.6055Z",
1007
+ fill: "currentColor",
1008
+ stroke: "currentColor",
1009
+ strokeWidth: "0.5",
1010
+ strokeLinecap: "round",
1011
+ strokeLinejoin: "round"
1012
+ }), /*#__PURE__*/_jsx("path", {
1013
+ d: "M13.9508 20.6055H6.05078C5.70911 20.6055 5.42578 20.2655 5.42578 19.8555C5.42578 19.4455 5.70911 19.1055 6.05078 19.1055H13.9424C14.2841 19.1055 14.5674 19.4455 14.5674 19.8555C14.5674 20.2655 14.2924 20.6055 13.9508 20.6055Z",
1014
+ fill: "currentColor",
1015
+ stroke: "currentColor",
1016
+ strokeWidth: "0.5",
1017
+ strokeLinecap: "round",
1018
+ strokeLinejoin: "round"
1019
+ })]
1020
+ });
1021
+ }
1022
+ export function RightAlignTextFormat() {
1023
+ return /*#__PURE__*/_jsxs("svg", {
1024
+ width: "19",
1025
+ height: "19",
1026
+ viewBox: "0 0 20 22",
1027
+ fill: "currentColor",
1028
+ xmlns: "http://www.w3.org/2000/svg",
1029
+ className: "textAlignIconSameStyles",
1030
+ children: [/*#__PURE__*/_jsx("path", {
1031
+ d: "M17.5 5.60547H2.5C2.15833 5.60547 1.875 5.26547 1.875 4.85547C1.875 4.44547 2.15833 4.10547 2.5 4.10547H17.5C17.8417 4.10547 18.125 4.44547 18.125 4.85547C18.125 5.26547 17.8417 5.60547 17.5 5.60547Z",
1032
+ fill: "currentColor",
1033
+ stroke: "currentColor",
1034
+ strokeWidth: "0.5",
1035
+ strokeLinecap: "round",
1036
+ strokeLinejoin: "round"
1037
+ }), /*#__PURE__*/_jsx("path", {
1038
+ d: "M17.4991 10.6055H9.60742C9.26576 10.6055 8.98242 10.2655 8.98242 9.85547C8.98242 9.44547 9.26576 9.10547 9.60742 9.10547H17.4991C17.8408 9.10547 18.1241 9.44547 18.1241 9.85547C18.1241 10.2655 17.8408 10.6055 17.4991 10.6055Z",
1039
+ fill: "currentColor",
1040
+ stroke: "currentColor",
1041
+ strokeWidth: "0.5",
1042
+ strokeLinecap: "round",
1043
+ strokeLinejoin: "round"
1044
+ }), /*#__PURE__*/_jsx("path", {
1045
+ d: "M17.5 15.6055H2.5C2.15833 15.6055 1.875 15.2655 1.875 14.8555C1.875 14.4455 2.15833 14.1055 2.5 14.1055H17.5C17.8417 14.1055 18.125 14.4455 18.125 14.8555C18.125 15.2655 17.8417 15.6055 17.5 15.6055Z",
1046
+ fill: "currentColor",
1047
+ stroke: "currentColor",
1048
+ strokeWidth: "0.5",
1049
+ strokeLinecap: "round",
1050
+ strokeLinejoin: "round"
1051
+ }), /*#__PURE__*/_jsx("path", {
1052
+ d: "M17.4991 20.6055H9.60742C9.26576 20.6055 8.98242 20.2655 8.98242 19.8555C8.98242 19.4455 9.26576 19.1055 9.60742 19.1055H17.4991C17.8408 19.1055 18.1241 19.4455 18.1241 19.8555C18.1241 20.2655 17.8408 20.6055 17.4991 20.6055Z",
1053
+ fill: "currentColor",
1054
+ stroke: "currentColor",
1055
+ strokeWidth: "0.5",
1056
+ strokeLinecap: "round",
1057
+ strokeLinejoin: "round"
1058
+ })]
1059
+ });
1060
+ }
1061
+ export function JustifyTextFormat() {
1062
+ return /*#__PURE__*/_jsxs("svg", {
1063
+ width: "19",
1064
+ height: "19",
1065
+ viewBox: "0 0 20 22"
1066
+ // fill="none"
1067
+ ,
1068
+ xmlns: "http://www.w3.org/2000/svg",
1069
+ className: "justifyIcon",
1070
+ children: [/*#__PURE__*/_jsx("path", {
1071
+ d: "M2.5 4.85547H17.5",
1072
+ stroke: "currentColor",
1073
+ strokeWidth: "2",
1074
+ strokeLinecap: "round",
1075
+ strokeLinejoin: "round"
1076
+ }), /*#__PURE__*/_jsx("path", {
1077
+ d: "M2.5 9.85547H17.5",
1078
+ stroke: "currentColor",
1079
+ strokeWidth: "2",
1080
+ strokeLinecap: "round",
1081
+ strokeLinejoin: "round"
1082
+ }), /*#__PURE__*/_jsx("path", {
1083
+ d: "M2.5 14.8555H17.5",
1084
+ stroke: "currentColor",
1085
+ strokeWidth: "2",
1086
+ strokeLinecap: "round",
1087
+ strokeLinejoin: "round"
1088
+ }), /*#__PURE__*/_jsx("path", {
1089
+ d: "M2.5 19.8555H17.5",
1090
+ stroke: "currentColor",
1091
+ strokeWidth: "2",
1092
+ strokeLinecap: "round",
1093
+ strokeLinejoin: "round"
1094
+ })]
1095
+ });
1096
+ }
1097
+ export function FreeGridElement() {
1098
+ return /*#__PURE__*/_jsxs("svg", {
1099
+ xmlns: "http://www.w3.org/2000/svg",
1100
+ width: "16",
1101
+ height: "16",
1102
+ viewBox: "0 0 16 16",
1103
+ fill: "none",
1104
+ className: "commonSvgStyle",
1105
+ children: [/*#__PURE__*/_jsx("path", {
1106
+ d: "M13.2654 8.99935H2.73203C1.73203 8.99935 1.33203 9.42602 1.33203 10.486L1.33203 13.1793C1.33203 14.2393 1.73203 14.666 2.73203 14.666H13.2654C14.2654 14.666 14.6654 14.2393 14.6654 13.1793V10.486C14.6654 9.42602 14.2654 8.99935 13.2654 8.99935Z",
1107
+ stroke: "#64748B",
1108
+ strokeLinecap: "round",
1109
+ strokeLinejoin: "round"
1110
+ }), /*#__PURE__*/_jsx("path", {
1111
+ d: "M7.26536 1.33333H2.73203C1.73203 1.33333 1.33203 1.76 1.33203 2.82L1.33203 5.51333C1.33203 6.57333 1.73203 7 2.73203 7H7.26536C8.26536 7 8.66536 6.57333 8.66536 5.51333V2.82C8.66536 1.76 8.26536 1.33333 7.26536 1.33333Z",
1112
+ stroke: "#64748B",
1113
+ strokeLinecap: "round",
1114
+ strokeLinejoin: "round"
1115
+ }), /*#__PURE__*/_jsx("path", {
1116
+ d: "M13.268 1.33333H12.068C11.068 1.33333 10.668 1.76 10.668 2.82V5.51333C10.668 6.57333 11.068 7 12.068 7H13.268C14.268 7 14.668 6.57333 14.668 5.51333V2.82C14.668 1.76 14.268 1.33333 13.268 1.33333Z",
1117
+ stroke: "#64748B",
1118
+ strokeLinecap: "round",
1119
+ strokeLinejoin: "round"
1120
+ })]
1121
+ });
1122
+ }
1123
+ export function AppHeaderElement() {
1124
+ return /*#__PURE__*/_jsxs("svg", {
1125
+ xmlns: "http://www.w3.org/2000/svg",
1126
+ width: "15",
1127
+ height: "14",
1128
+ viewBox: "0 0 15 14",
1129
+ fill: "none",
1130
+ className: "commonSvgStyle",
1131
+ children: [/*#__PURE__*/_jsx("path", {
1132
+ d: "M6 4.66699L11.5 4.66699",
1133
+ stroke: "#64748B",
1134
+ strokeLinecap: "round",
1135
+ strokeLinejoin: "round"
1136
+ }), /*#__PURE__*/_jsx("path", {
1137
+ d: "M4.06307 4.66634H4.06906",
1138
+ stroke: "#64748B",
1139
+ strokeWidth: "1.5",
1140
+ strokeLinecap: "round",
1141
+ strokeLinejoin: "round"
1142
+ }), /*#__PURE__*/_jsx("path", {
1143
+ d: "M4.33333 1H10.3333C10.7467 1 11.1133 1.015 11.44 1.0675C13.1933 1.285 13.6667 2.215 13.6667 4.75V9.25C13.6667 11.785 13.1933 12.715 11.44 12.9325C11.1133 12.985 10.7467 13 10.3333 13H4.33333C3.92 13 3.55333 12.985 3.22667 12.9325C1.47333 12.715 1 11.785 1 9.25V4.75C1 2.215 1.47333 1.285 3.22667 1.0675C3.55333 1.015 3.92 1 4.33333 1Z",
1144
+ stroke: "#64748B",
1145
+ strokeLinecap: "round",
1146
+ strokeLinejoin: "round"
1147
+ })]
1148
+ });
1149
+ }
1150
+ export function GridElement() {
1151
+ return /*#__PURE__*/_jsxs("svg", {
1152
+ width: "16",
1153
+ height: "16",
1154
+ viewBox: "0 0 16 16",
1155
+ fill: "none",
1156
+ xmlns: "http://www.w3.org/2000/svg",
1157
+ className: "commonSvgStyle",
1158
+ children: [/*#__PURE__*/_jsx("path", {
1159
+ d: "M14.6667 5.68065V2.65398C14.6667 1.71398 14.24 1.33398 13.18 1.33398H10.4867C9.42667 1.33398 9 1.71398 9 2.65398V5.67398C9 6.62065 9.42667 6.99398 10.4867 6.99398H13.18C14.24 7.00065 14.6667 6.62065 14.6667 5.68065Z",
1160
+ stroke: "#64748B",
1161
+ strokeLinecap: "round",
1162
+ strokeLinejoin: "round"
1163
+ }), /*#__PURE__*/_jsx("path", {
1164
+ d: "M14.6667 13.18V10.4867C14.6667 9.42667 14.24 9 13.18 9H10.4867C9.42667 9 9 9.42667 9 10.4867V13.18C9 14.24 9.42667 14.6667 10.4867 14.6667H13.18C14.24 14.6667 14.6667 14.24 14.6667 13.18Z",
1165
+ stroke: "#64748B",
1166
+ strokeLinecap: "round",
1167
+ strokeLinejoin: "round"
1168
+ }), /*#__PURE__*/_jsx("path", {
1169
+ d: "M7.00065 5.68065V2.65398C7.00065 1.71398 6.57398 1.33398 5.51398 1.33398H2.82065C1.76065 1.33398 1.33398 1.71398 1.33398 2.65398V5.67398C1.33398 6.62065 1.76065 6.99398 2.82065 6.99398H5.51398C6.57398 7.00065 7.00065 6.62065 7.00065 5.68065Z",
1170
+ stroke: "#64748B",
1171
+ strokeLinecap: "round",
1172
+ strokeLinejoin: "round"
1173
+ }), /*#__PURE__*/_jsx("path", {
1174
+ d: "M7.00065 13.18V10.4867C7.00065 9.42667 6.57398 9 5.51398 9H2.82065C1.76065 9 1.33398 9.42667 1.33398 10.4867V13.18C1.33398 14.24 1.76065 14.6667 2.82065 14.6667H5.51398C6.57398 14.6667 7.00065 14.24 7.00065 13.18Z",
1175
+ stroke: "#64748B",
1176
+ strokeLinecap: "round",
1177
+ strokeLinejoin: "round"
1178
+ })]
1179
+ });
1180
+ }
1181
+ export function ToggleFullScreenIcon() {
1182
+ return /*#__PURE__*/_jsxs("svg", {
1183
+ width: "16",
1184
+ height: "16",
1185
+ viewBox: "0 0 16 16",
1186
+ fill: "none",
1187
+ xmlns: "http://www.w3.org/2000/svg",
1188
+ className: "toogleFullScreenSvg",
1189
+ children: [/*#__PURE__*/_jsx("path", {
1190
+ d: "M14 6V2H10",
1191
+ stroke: "#8F9CAE",
1192
+ strokeWidth: "1.5",
1193
+ strokeLinecap: "round",
1194
+ strokeLinejoin: "round"
1195
+ }), /*#__PURE__*/_jsx("path", {
1196
+ d: "M2 10V14H6",
1197
+ stroke: "#8F9CAE",
1198
+ strokeWidth: "1.5",
1199
+ strokeLinecap: "round",
1200
+ strokeLinejoin: "round"
1201
+ }), /*#__PURE__*/_jsx("path", {
1202
+ d: "M14 2L9 7",
1203
+ stroke: "#8F9CAE",
1204
+ strokeWidth: "1.5",
1205
+ strokeLinecap: "round",
1206
+ strokeLinejoin: "round"
1207
+ }), /*#__PURE__*/_jsx("path", {
1208
+ d: "M7 9L2 14",
1209
+ stroke: "#8F9CAE",
1210
+ strokeWidth: "1.5",
1211
+ strokeLinecap: "round",
1212
+ strokeLinejoin: "round"
1213
+ })]
1214
+ });
1215
+ }
1216
+ export function CodeElementIcon() {
1217
+ return /*#__PURE__*/_jsxs("svg", {
1218
+ width: "12",
1219
+ height: "9",
1220
+ viewBox: "0 0 12 9",
1221
+ fill: "none",
1222
+ xmlns: "http://www.w3.org/2000/svg",
1223
+ className: "commonSvgStyle",
1224
+ children: [/*#__PURE__*/_jsx("path", {
1225
+ d: "M6.83331 1L4.83331 8",
1226
+ stroke: "#64748B",
1227
+ strokeMiterlimit: "10",
1228
+ strokeLinecap: "round",
1229
+ strokeLinejoin: "round"
1230
+ }), /*#__PURE__*/_jsx("path", {
1231
+ d: "M8.83331 2.32983L10.6666 4.32983L8.83331 6.32983",
1232
+ stroke: "#64748B",
1233
+ strokeMiterlimit: "10",
1234
+ strokeLinecap: "round",
1235
+ strokeLinejoin: "round"
1236
+ }), /*#__PURE__*/_jsx("path", {
1237
+ d: "M2.83333 2.32983L1 4.32983L2.83333 6.32983",
1238
+ stroke: "#64748B",
1239
+ strokeMiterlimit: "10",
1240
+ strokeLinecap: "round",
1241
+ strokeLinejoin: "round"
1242
+ })]
1243
+ });
1244
+ }
1245
+ export function DragIcon() {
1246
+ return /*#__PURE__*/_jsxs("svg", {
1247
+ width: "16",
1248
+ height: "12",
1249
+ viewBox: "0 0 10 6",
1250
+ fill: "none",
1251
+ xmlns: "http://www.w3.org/2000/svg",
1252
+ className: "dragIcon",
1253
+ children: [/*#__PURE__*/_jsx("ellipse", {
1254
+ cx: "1.49462",
1255
+ cy: "4.42384",
1256
+ rx: "0.779289",
1257
+ ry: "0.779289",
1258
+ transform: "rotate(-90 1.49462 4.42384)",
1259
+ fill: "#94A3B8"
1260
+ }), /*#__PURE__*/_jsx("ellipse", {
1261
+ cx: "4.99999",
1262
+ cy: "4.42384",
1263
+ rx: "0.779289",
1264
+ ry: "0.779289",
1265
+ transform: "rotate(-90 4.99999 4.42384)",
1266
+ fill: "#94A3B8"
1267
+ }), /*#__PURE__*/_jsx("ellipse", {
1268
+ cx: "8.50732",
1269
+ cy: "4.42384",
1270
+ rx: "0.779289",
1271
+ ry: "0.779289",
1272
+ transform: "rotate(-90 8.50732 4.42384)",
1273
+ fill: "#94A3B8"
1274
+ }), /*#__PURE__*/_jsx("ellipse", {
1275
+ cx: "1.49462",
1276
+ cy: "0.91993",
1277
+ rx: "0.779289",
1278
+ ry: "0.779289",
1279
+ transform: "rotate(-90 1.49462 0.91993)",
1280
+ fill: "#94A3B8"
1281
+ }), /*#__PURE__*/_jsx("ellipse", {
1282
+ cx: "4.99999",
1283
+ cy: "0.91993",
1284
+ rx: "0.779289",
1285
+ ry: "0.779289",
1286
+ transform: "rotate(-90 4.99999 0.91993)",
1287
+ fill: "#94A3B8"
1288
+ }), /*#__PURE__*/_jsx("ellipse", {
1289
+ cx: "8.50732",
1290
+ cy: "0.91993",
1291
+ rx: "0.779289",
1292
+ ry: "0.779289",
1293
+ transform: "rotate(-90 8.50732 0.91993)",
1294
+ fill: "#94A3B8"
1295
+ })]
1296
+ });
1297
+ }
1298
+ export function TextSizeUpArrow() {
1299
+ return /*#__PURE__*/_jsx("svg", {
1300
+ width: "9",
1301
+ height: "5",
1302
+ viewBox: "0 0 9 5",
1303
+ fill: "none",
1304
+ xmlns: "http://www.w3.org/2000/svg",
1305
+ children: /*#__PURE__*/_jsx("path", {
1306
+ d: "M8 3.85645L5.11869 1.10055C4.77841 0.775079 4.22159 0.775079 3.88131 1.10055L1 3.85645",
1307
+ stroke: "#64748B",
1308
+ strokeWidth: "1.5",
1309
+ strokeMiterlimit: "10",
1310
+ strokeLinecap: "round",
1311
+ strokeLinejoin: "round"
1312
+ })
1313
+ });
1314
+ }
1315
+ export function TextSizeDownArrow() {
1316
+ return /*#__PURE__*/_jsx("svg", {
1317
+ width: "9",
1318
+ height: "5",
1319
+ viewBox: "0 0 9 5",
1320
+ fill: "none",
1321
+ xmlns: "http://www.w3.org/2000/svg",
1322
+ children: /*#__PURE__*/_jsx("path", {
1323
+ d: "M1 0.856445L3.88131 3.61235C4.22159 3.93781 4.77841 3.93781 5.11869 3.61235L8 0.856445",
1324
+ stroke: "#64748B",
1325
+ strokeWidth: "1.5",
1326
+ strokeMiterlimit: "10",
1327
+ strokeLinecap: "round",
1328
+ strokeLinejoin: "round"
1329
+ })
1330
+ });
1331
+ }
1332
+ export function CheckedBoxCheckIcon() {
1333
+ return /*#__PURE__*/_jsx("svg", {
1334
+ width: "10",
1335
+ height: "8",
1336
+ viewBox: "0 0 10 8",
1337
+ fill: "none",
1338
+ xmlns: "http://www.w3.org/2000/svg",
1339
+ children: /*#__PURE__*/_jsx("path", {
1340
+ d: "M1.70605 4.06139L4.121 6.47532L8.94886 1.64746",
1341
+ stroke: "white",
1342
+ strokeWidth: "1.5",
1343
+ strokeLinecap: "round",
1344
+ strokeLinejoin: "round"
1345
+ })
1346
+ });
1347
+ }
1348
+ export function SectionSettingIcon() {
1349
+ return /*#__PURE__*/_jsxs("svg", {
1350
+ width: "13",
1351
+ height: "12",
1352
+ viewBox: "0 0 13 12",
1353
+ fill: "none",
1354
+ xmlns: "http://www.w3.org/2000/svg",
1355
+ children: [/*#__PURE__*/_jsx("path", {
1356
+ d: "M11.9102 2.5L6.41016 2.5",
1357
+ stroke: "#94A3B8",
1358
+ strokeWidth: "0.8",
1359
+ strokeMiterlimit: "10",
1360
+ strokeLinecap: "round",
1361
+ strokeLinejoin: "round"
1362
+ }), /*#__PURE__*/_jsx("path", {
1363
+ d: "M4.41016 2.5L1.91016 2.5",
1364
+ stroke: "#94A3B8",
1365
+ strokeWidth: "0.8",
1366
+ strokeMiterlimit: "10",
1367
+ strokeLinecap: "round",
1368
+ strokeLinejoin: "round"
1369
+ }), /*#__PURE__*/_jsx("path", {
1370
+ d: "M11.9102 6L9.41016 6",
1371
+ stroke: "#94A3B8",
1372
+ strokeWidth: "0.8",
1373
+ strokeMiterlimit: "10",
1374
+ strokeLinecap: "round",
1375
+ strokeLinejoin: "round"
1376
+ }), /*#__PURE__*/_jsx("path", {
1377
+ d: "M7.41016 6L1.91016 6",
1378
+ stroke: "#94A3B8",
1379
+ strokeWidth: "0.8",
1380
+ strokeMiterlimit: "10",
1381
+ strokeLinecap: "round",
1382
+ strokeLinejoin: "round"
1383
+ }), /*#__PURE__*/_jsx("path", {
1384
+ d: "M11.9102 9.5L6.41016 9.5",
1385
+ stroke: "#94A3B8",
1386
+ strokeWidth: "0.8",
1387
+ strokeMiterlimit: "10",
1388
+ strokeLinecap: "round",
1389
+ strokeLinejoin: "round"
1390
+ }), /*#__PURE__*/_jsx("path", {
1391
+ d: "M4.41016 9.5H1.91016",
1392
+ stroke: "#94A3B8",
1393
+ strokeWidth: "0.8",
1394
+ strokeMiterlimit: "10",
1395
+ strokeLinecap: "round",
1396
+ strokeLinejoin: "round"
1397
+ }), /*#__PURE__*/_jsx("path", {
1398
+ d: "M6.41016 10.5L6.41016 8.5",
1399
+ stroke: "#94A3B8",
1400
+ strokeWidth: "0.8",
1401
+ strokeMiterlimit: "10",
1402
+ strokeLinecap: "round",
1403
+ strokeLinejoin: "round"
1404
+ }), /*#__PURE__*/_jsx("path", {
1405
+ d: "M6.41016 3.5L6.41016 1.5",
1406
+ stroke: "#94A3B8",
1407
+ strokeWidth: "0.8",
1408
+ strokeMiterlimit: "10",
1409
+ strokeLinecap: "round",
1410
+ strokeLinejoin: "round"
1411
+ }), /*#__PURE__*/_jsx("path", {
1412
+ d: "M7.41016 7L7.41016 5",
1413
+ stroke: "#94A3B8",
1414
+ strokeWidth: "0.8",
1415
+ strokeMiterlimit: "10",
1416
+ strokeLinecap: "round",
1417
+ strokeLinejoin: "round"
1418
+ })]
1419
+ });
1420
+ }
1421
+ export function SectionDragIcon() {
1422
+ return /*#__PURE__*/_jsxs("svg", {
1423
+ width: "6",
1424
+ height: "10",
1425
+ viewBox: "0 0 6 10",
1426
+ fill: "none",
1427
+ xmlns: "http://www.w3.org/2000/svg",
1428
+ children: [/*#__PURE__*/_jsx("ellipse", {
1429
+ cx: "0.909171",
1430
+ cy: "0.909171",
1431
+ rx: "0.909171",
1432
+ ry: "0.909171",
1433
+ fill: "#94A3B8"
1434
+ }), /*#__PURE__*/_jsx("ellipse", {
1435
+ cx: "0.909171",
1436
+ cy: "4.99999",
1437
+ rx: "0.909171",
1438
+ ry: "0.909171",
1439
+ fill: "#94A3B8"
1440
+ }), /*#__PURE__*/_jsx("ellipse", {
1441
+ cx: "0.909171",
1442
+ cy: "9.09081",
1443
+ rx: "0.909171",
1444
+ ry: "0.909171",
1445
+ fill: "#94A3B8"
1446
+ }), /*#__PURE__*/_jsx("ellipse", {
1447
+ cx: "5.00097",
1448
+ cy: "0.909171",
1449
+ rx: "0.909171",
1450
+ ry: "0.909171",
1451
+ fill: "#94A3B8"
1452
+ }), /*#__PURE__*/_jsx("ellipse", {
1453
+ cx: "5.00097",
1454
+ cy: "4.99999",
1455
+ rx: "0.909171",
1456
+ ry: "0.909171",
1457
+ fill: "#94A3B8"
1458
+ }), /*#__PURE__*/_jsx("ellipse", {
1459
+ cx: "5.00097",
1460
+ cy: "9.09081",
1461
+ rx: "0.909171",
1462
+ ry: "0.909171",
1463
+ fill: "#94A3B8"
908
1464
  })]
909
1465
  });
910
1466
  }