@livepreso/react-plugin-textfield 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/.lintstagedrc.js +6 -0
  2. package/.rush/temp/shrinkwrap-deps.json +311 -0
  3. package/.vscode/settings.json +22 -0
  4. package/CHANGELOG.json +17 -0
  5. package/CHANGELOG.md +9 -0
  6. package/components/BubbleMenu.js +181 -0
  7. package/components/BubbleMenu.module.scss +9 -0
  8. package/components/LinkEditDialog.js +105 -0
  9. package/components/LinkEditDialog.module.scss +171 -0
  10. package/components/Popover.js +43 -0
  11. package/components/Popover.module.scss +80 -0
  12. package/components/PrimaryToolbar.js +27 -0
  13. package/components/Select/Select.js +71 -0
  14. package/components/Select/Select.module.scss +100 -0
  15. package/components/Select/SelectGroup.js +37 -0
  16. package/components/Select/index.js +1 -0
  17. package/components/TableCellMenu.js +43 -0
  18. package/components/TableToolbar.js +41 -0
  19. package/components/Tooltip.js +34 -0
  20. package/components/Tooltip.module.scss +87 -0
  21. package/components/VerticalAlignToggle.js +65 -0
  22. package/components/color-picker/ColorPicker.js +28 -0
  23. package/components/color-picker/ColorPicker.module.scss +8 -0
  24. package/components/color-picker/ColorPickerChip.js +22 -0
  25. package/components/color-picker/ColorPickerChip.module.scss +25 -0
  26. package/components/color-picker/ColorPickerCombo.js +45 -0
  27. package/components/color-picker/ColorPickerCombo.module.scss +23 -0
  28. package/components/color-picker/TextColorIcon.js +18 -0
  29. package/components/editor-toolbars/EditorMenu.js +104 -0
  30. package/components/editor-toolbars/EditorMenu.module.scss +96 -0
  31. package/components/editor-toolbars/EditorToolbar.js +146 -0
  32. package/components/editor-toolbars/EditorToolbar.module.scss +75 -0
  33. package/components/editor-toolbars/MenuItem.js +24 -0
  34. package/components/editor-toolbars/SubMenu.js +50 -0
  35. package/components/editor-toolbars/ToolbarButton.js +26 -0
  36. package/components/editor-toolbars/ToolbarToggle.js +35 -0
  37. package/components/editor-toolbars/ToolbarToggleGroup.js +43 -0
  38. package/components/editor-toolbars/utils.js +7 -0
  39. package/components/hooks/use-presenter.js +5 -0
  40. package/components/style.module.scss +63 -0
  41. package/components/tiptap/ListItem.js +5 -0
  42. package/components/tiptap/Table.js +397 -0
  43. package/components/tiptap/TableCells.js +99 -0
  44. package/components/utils.js +84 -0
  45. package/configs/generate-toolbar-configuration.js +130 -0
  46. package/configs/generate-toolbar-options.js +96 -0
  47. package/configs/table-toolbar-configuration.js +187 -0
  48. package/configs/toolbar-configuration.js +330 -0
  49. package/constants.js +198 -0
  50. package/eslint.config.mjs +15 -0
  51. package/icons/AddColumnLeft.js +15 -0
  52. package/icons/AddColumnRight.js +15 -0
  53. package/icons/AddRowAbove.js +15 -0
  54. package/icons/AddRowBelow.js +15 -0
  55. package/icons/AlignHorizontalCenter.js +13 -0
  56. package/icons/AlignHorizontalLeft.js +13 -0
  57. package/icons/AlignHorizontalRight.js +13 -0
  58. package/icons/AlignVerticalBottom.js +13 -0
  59. package/icons/AlignVerticalCenter.js +13 -0
  60. package/icons/AlignVerticalTop.js +13 -0
  61. package/icons/Backspace.js +13 -0
  62. package/icons/Bold.js +14 -0
  63. package/icons/BorderAll.js +13 -0
  64. package/icons/BorderBottom.js +13 -0
  65. package/icons/BorderClear.js +13 -0
  66. package/icons/BorderHorizontal.js +13 -0
  67. package/icons/BorderInner.js +13 -0
  68. package/icons/BorderLeft.js +13 -0
  69. package/icons/BorderOuter.js +13 -0
  70. package/icons/BorderRight.js +13 -0
  71. package/icons/BorderTop.js +13 -0
  72. package/icons/BorderVertical.js +13 -0
  73. package/icons/Close.js +13 -0
  74. package/icons/Delete.js +13 -0
  75. package/icons/EvenlyDistribute.js +14 -0
  76. package/icons/FitWidth.js +13 -0
  77. package/icons/FitWidthArrows.js +21 -0
  78. package/icons/FormatAlignCenter.js +13 -0
  79. package/icons/FormatAlignJustify.js +13 -0
  80. package/icons/FormatAlignLeft.js +13 -0
  81. package/icons/FormatAlignRight.js +13 -0
  82. package/icons/FormatBold.js +13 -0
  83. package/icons/FormatClear.js +13 -0
  84. package/icons/FormatColorFill.js +13 -0
  85. package/icons/FormatColorText.js +13 -0
  86. package/icons/FormatItalic.js +13 -0
  87. package/icons/FormatLineSpacing.js +13 -0
  88. package/icons/FormatListBulleted.js +13 -0
  89. package/icons/FormatListNumbered.js +13 -0
  90. package/icons/FormatStrikethrough.js +13 -0
  91. package/icons/FormatUnderlined.js +13 -0
  92. package/icons/HorizontalRule.js +13 -0
  93. package/icons/Italic.js +14 -0
  94. package/icons/ItalicIcon.js +18 -0
  95. package/icons/Link.js +13 -0
  96. package/icons/LinkOff.js +13 -0
  97. package/icons/MergeCells.js +14 -0
  98. package/icons/Redo.js +13 -0
  99. package/icons/RemoveColumnOutline.js +28 -0
  100. package/icons/RemoveRowOutline.js +25 -0
  101. package/icons/SplitCells.js +14 -0
  102. package/icons/SplitScene.js +13 -0
  103. package/icons/Subscript.js +13 -0
  104. package/icons/Superscript.js +13 -0
  105. package/icons/Underline.js +14 -0
  106. package/icons/Undo.js +13 -0
  107. package/icons/VerticalAlignBottom.js +13 -0
  108. package/icons/VerticalAlignCenter.js +13 -0
  109. package/icons/VerticalAlignTop.js +13 -0
  110. package/icons/add_column_left.svg +6 -0
  111. package/icons/add_column_right.svg +6 -0
  112. package/icons/add_row_above.svg +6 -0
  113. package/icons/add_row_below.svg +6 -0
  114. package/icons/align_horizontal_center.svg +1 -0
  115. package/icons/align_horizontal_left.svg +1 -0
  116. package/icons/align_horizontal_right.svg +1 -0
  117. package/icons/align_vertical_bottom.svg +1 -0
  118. package/icons/align_vertical_center.svg +1 -0
  119. package/icons/align_vertical_top.svg +1 -0
  120. package/icons/backspace.svg +1 -0
  121. package/icons/bold.svg +1 -0
  122. package/icons/border_all.svg +1 -0
  123. package/icons/border_bottom.svg +1 -0
  124. package/icons/border_clear.svg +1 -0
  125. package/icons/border_horizontal.svg +1 -0
  126. package/icons/border_inner.svg +1 -0
  127. package/icons/border_left.svg +1 -0
  128. package/icons/border_outer.svg +1 -0
  129. package/icons/border_right.svg +1 -0
  130. package/icons/border_top.svg +1 -0
  131. package/icons/border_vertical.svg +1 -0
  132. package/icons/close.svg +1 -0
  133. package/icons/delete.svg +1 -0
  134. package/icons/evenly_distribute.svg +5 -0
  135. package/icons/fit_width.svg +1 -0
  136. package/icons/fit_width_arrows.svg +12 -0
  137. package/icons/format_align_center.svg +1 -0
  138. package/icons/format_align_justify.svg +1 -0
  139. package/icons/format_align_left.svg +1 -0
  140. package/icons/format_align_right.svg +1 -0
  141. package/icons/format_bold.svg +1 -0
  142. package/icons/format_clear.svg +1 -0
  143. package/icons/format_color_fill.svg +1 -0
  144. package/icons/format_color_text.svg +5 -0
  145. package/icons/format_color_text_ungrouped.svg +6 -0
  146. package/icons/format_italic.svg +1 -0
  147. package/icons/format_line_spacing.svg +1 -0
  148. package/icons/format_list_bulleted.svg +1 -0
  149. package/icons/format_list_numbered.svg +1 -0
  150. package/icons/format_strikethrough.svg +1 -0
  151. package/icons/format_underlined.svg +1 -0
  152. package/icons/horizontal_rule.svg +1 -0
  153. package/icons/index.js +191 -0
  154. package/icons/italic.svg +1 -0
  155. package/icons/link.svg +1 -0
  156. package/icons/link_off.svg +1 -0
  157. package/icons/merge_cells.svg +5 -0
  158. package/icons/redo.svg +1 -0
  159. package/icons/remove_column_outline.svg +20 -0
  160. package/icons/remove_row_outline.svg +17 -0
  161. package/icons/split_cells.svg +5 -0
  162. package/icons/split_scene.svg +1 -0
  163. package/icons/subscript.svg +1 -0
  164. package/icons/superscript.svg +1 -0
  165. package/icons/underline.svg +1 -0
  166. package/icons/undo.svg +1 -0
  167. package/icons/vertical_align_bottom.svg +1 -0
  168. package/icons/vertical_align_center.svg +1 -0
  169. package/icons/vertical_align_top.svg +1 -0
  170. package/index.js +334 -0
  171. package/index.module.scss +106 -0
  172. package/package.json +63 -0
  173. package/scripts/extract-svg.js +288 -0
  174. package/utils/color-utils.js +42 -0
  175. package/utils/generate-vertical-alignment-icon.js +22 -0
  176. package/utils/generateCustomExtensions.js +49 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-60h680v60H140Zm0-155v-60h680v60H140Zm0-155v-60h680v60H140Zm0-155v-60h680v60H140Zm0-155v-60h680v60H140Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-140v-60h680v60H140Zm0-155v-60h440v60H140Zm0-155v-60h680v60H140Zm0-155v-60h440v60H140Zm0-155v-60h680v60H140Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-760v-60h680v60H140Zm240 155v-60h440v60H380ZM140-450v-60h680v60H140Zm240 155v-60h440v60H380ZM140-140v-60h680v60H140Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M293.54-215v-530H488q61.15 0 110.58 38.08Q648-668.85 648-604.38q0 44.84-21.66 73.11-21.65 28.27-46.65 41.04 30.77 10.61 58.77 41.96 28 31.35 28 84.42 0 76.69-56.54 112.77T496-215H293.54Zm86-79.69h113.23q47.23 0 66.77-26.23t19.54-50.31q0-24.08-19.54-50.31-19.54-26.23-68.62-26.23H379.54v153.08Zm0-230.31h103.77q36.46 0 57.81-20.85 21.34-20.84 21.34-49.92 0-30.92-22.57-50.54-22.58-19.61-55.35-19.61h-105V-525Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M514.92-553.69 449.62-619l15.77-38.08h-54.62l-85.23-85.23h456.77v84.62H559.15l-44.23 104ZM782.77-92.93 457.31-418.77l-86.16 202.61h-92.53l114-267.3L89.08-786.61l42.15-42.16 693.69 693.69-42.15 42.15Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="m255.46-880.54 42.39-42.53 385.76 385.76-275.92 277.08-275.92-277.46 233.54-233-109.85-109.85Zm152.62 152.62-191.77 191h382.77l-191-191Zm343.46 461.77q-29.16 0-49.58-20.43-20.42-20.42-20.42-49.57 0-19.46 10.96-40.19 10.96-20.73 23.65-39.04 8.23-11.23 17.08-22.69 8.85-11.47 18.31-22.7 9.46 11.23 18.31 22.7 8.84 11.46 17.07 22.69 12.69 18.31 23.66 39.04 10.96 20.73 10.96 40.19 0 29.15-20.43 49.57-20.42 20.43-49.57 20.43ZM80 0v-120h800V0H80Z"/></svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <path d="M2.5,24v-3.7h19v3.7H2.5ZM5.9,17L11.1,3.5h1.7l5.3,13.5h-1.8l-1.3-3.6h-6l-1.4,3.6h-1.8ZM9.5,11.9h4.9l-2.4-6.3h-.1l-2.4,6.3Z"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <rect x="2.5" y="20.3" width="19" height="3.7"/>
5
+ <path d="M12.9,3.5h-1.7l-5.3,13.5h1.8l1.4-3.6h6l1.3,3.6h1.8L12.9,3.5ZM9.5,11.9l2.4-6.3h.1l2.4,6.3h-4.9Z"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M215.77-215v-72.31h152.69l129.62-385.38H345.39V-745h366.15v72.31H571.15L441.54-287.31h140.38V-215H215.77Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M246.15-180 100-326.15l42.15-42.16 74.01 72.77v-368.92l-74.01 72.77L100-633.85 246.15-780l146.16 146.15-42.16 42.16-74-72.77v368.92l74-72.77 42.16 42.16L246.15-180Zm241.54-40v-60H860v64.61L487.69-220Zm0-230v-60H860v60H487.69Zm0-230v-60L860-744.61V-680H487.69Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31ZM206.54-173.46q-27.45 0-46.99-19.55Q140-212.55 140-240q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-452.55 140-480q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-692.55 140-720q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M140-100v-47.69h100V-190h-60v-47.69h60V-280H140v-47.69h147.69v90l-33.84 25.38L287.69-190v90H140Zm0-266.15v-137.7h100v-42.3H140v-47.7h147.69v137.7h-100v42.3h100v47.7H140Zm60-266.16v-180h-60V-860h107.69v227.69H200ZM372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M100-410.39v-59.99h760v59.99H100Zm337.69-139.22V-695h-217.3v-85H740v85H522.69v145.39h-85Zm0 369.61v-151.15h85V-180h-85Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M213.85-155v-60h532.3v60h-532.3ZM480-298.85q-93.31 0-145.65-56.65Q282-412.15 282-507.31v-316.15h74.15v319.84q0 60.62 32.23 97.16T480-369.92q59.39 0 91.62-36.54 32.23-36.54 32.23-97.16v-319.84H678v316.15q0 95.16-52.35 151.81-52.34 56.65-145.65 56.65Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M180-450v-60h600v60H180Z"/></svg>
package/icons/index.js ADDED
@@ -0,0 +1,191 @@
1
+ // Auto-generated index file for SVG exports
2
+
3
+ import AddColumnLeft from "./AddColumnLeft.js";
4
+ import AddColumnRight from "./AddColumnRight.js";
5
+ import AddRowAbove from "./AddRowAbove.js";
6
+ import AddRowBelow from "./AddRowBelow.js";
7
+ import AlignHorizontalCenter from "./AlignHorizontalCenter.js";
8
+ import AlignHorizontalLeft from "./AlignHorizontalLeft.js";
9
+ import AlignHorizontalRight from "./AlignHorizontalRight.js";
10
+ import AlignVerticalBottom from "./AlignVerticalBottom.js";
11
+ import AlignVerticalCenter from "./AlignVerticalCenter.js";
12
+ import AlignVerticalTop from "./AlignVerticalTop.js";
13
+ import Backspace from "./Backspace.js";
14
+ import Bold from "./Bold.js";
15
+ import BorderAll from "./BorderAll.js";
16
+ import BorderBottom from "./BorderBottom.js";
17
+ import BorderClear from "./BorderClear.js";
18
+ import BorderHorizontal from "./BorderHorizontal.js";
19
+ import BorderInner from "./BorderInner.js";
20
+ import BorderLeft from "./BorderLeft.js";
21
+ import BorderOuter from "./BorderOuter.js";
22
+ import BorderRight from "./BorderRight.js";
23
+ import BorderTop from "./BorderTop.js";
24
+ import BorderVertical from "./BorderVertical.js";
25
+ import Close from "./Close.js";
26
+ import Delete from "./Delete.js";
27
+ import EvenlyDistribute from "./EvenlyDistribute.js";
28
+ import FitWidth from "./FitWidth.js";
29
+ import FitWidthArrows from "./FitWidthArrows.js";
30
+ import FormatAlignCenter from "./FormatAlignCenter.js";
31
+ import FormatAlignJustify from "./FormatAlignJustify.js";
32
+ import FormatAlignLeft from "./FormatAlignLeft.js";
33
+ import FormatAlignRight from "./FormatAlignRight.js";
34
+ import FormatBold from "./FormatBold.js";
35
+ import FormatClear from "./FormatClear.js";
36
+ import FormatColorFill from "./FormatColorFill.js";
37
+ import FormatColorText from "./FormatColorText.js";
38
+ import FormatItalic from "./FormatItalic.js";
39
+ import FormatLineSpacing from "./FormatLineSpacing.js";
40
+ import FormatListBulleted from "./FormatListBulleted.js";
41
+ import FormatListNumbered from "./FormatListNumbered.js";
42
+ import FormatStrikethrough from "./FormatStrikethrough.js";
43
+ import FormatUnderlined from "./FormatUnderlined.js";
44
+ import HorizontalRule from "./HorizontalRule.js";
45
+ import Italic from "./Italic.js";
46
+ import ItalicIcon from "./ItalicIcon.js";
47
+ import Link from "./Link.js";
48
+ import LinkOff from "./LinkOff.js";
49
+ import MergeCells from "./MergeCells.js";
50
+ import Redo from "./Redo.js";
51
+ import RemoveColumnOutline from "./RemoveColumnOutline.js";
52
+ import RemoveRowOutline from "./RemoveRowOutline.js";
53
+ import SplitCells from "./SplitCells.js";
54
+ import SplitScene from "./SplitScene.js";
55
+ import Subscript from "./Subscript.js";
56
+ import Superscript from "./Superscript.js";
57
+ import Underline from "./Underline.js";
58
+ import Undo from "./Undo.js";
59
+ import VerticalAlignBottom from "./VerticalAlignBottom.js";
60
+ import VerticalAlignCenter from "./VerticalAlignCenter.js";
61
+ import VerticalAlignTop from "./VerticalAlignTop.js";
62
+
63
+ export const MATERIAL_SVG_PARAMS = {
64
+ style: "sharp",
65
+ weight: "wght300",
66
+ size: "24px",
67
+ };
68
+
69
+ export {
70
+ AddColumnLeft,
71
+ AddColumnRight,
72
+ AddRowAbove,
73
+ AddRowBelow,
74
+ AlignHorizontalCenter,
75
+ AlignHorizontalLeft,
76
+ AlignHorizontalRight,
77
+ AlignVerticalBottom,
78
+ AlignVerticalCenter,
79
+ AlignVerticalTop,
80
+ Backspace,
81
+ Bold,
82
+ BorderAll,
83
+ BorderBottom,
84
+ BorderClear,
85
+ BorderHorizontal,
86
+ BorderInner,
87
+ BorderLeft,
88
+ BorderOuter,
89
+ BorderRight,
90
+ BorderTop,
91
+ BorderVertical,
92
+ Close,
93
+ Delete,
94
+ EvenlyDistribute,
95
+ FitWidth,
96
+ FitWidthArrows,
97
+ FormatAlignCenter,
98
+ FormatAlignJustify,
99
+ FormatAlignLeft,
100
+ FormatAlignRight,
101
+ FormatBold,
102
+ FormatClear,
103
+ FormatColorFill,
104
+ FormatColorText,
105
+ FormatItalic,
106
+ FormatLineSpacing,
107
+ FormatListBulleted,
108
+ FormatListNumbered,
109
+ FormatStrikethrough,
110
+ FormatUnderlined,
111
+ HorizontalRule,
112
+ Italic,
113
+ ItalicIcon,
114
+ Link,
115
+ LinkOff,
116
+ MergeCells,
117
+ Redo,
118
+ RemoveColumnOutline,
119
+ RemoveRowOutline,
120
+ SplitCells,
121
+ SplitScene,
122
+ Subscript,
123
+ Superscript,
124
+ Underline,
125
+ Undo,
126
+ VerticalAlignBottom,
127
+ VerticalAlignCenter,
128
+ VerticalAlignTop,
129
+ };
130
+
131
+ export default {
132
+ AddColumnLeft,
133
+ AddColumnRight,
134
+ AddRowAbove,
135
+ AddRowBelow,
136
+ AlignHorizontalCenter,
137
+ AlignHorizontalLeft,
138
+ AlignHorizontalRight,
139
+ AlignVerticalBottom,
140
+ AlignVerticalCenter,
141
+ AlignVerticalTop,
142
+ Backspace,
143
+ Bold,
144
+ BorderAll,
145
+ BorderBottom,
146
+ BorderClear,
147
+ BorderHorizontal,
148
+ BorderInner,
149
+ BorderLeft,
150
+ BorderOuter,
151
+ BorderRight,
152
+ BorderTop,
153
+ BorderVertical,
154
+ Close,
155
+ Delete,
156
+ EvenlyDistribute,
157
+ FitWidth,
158
+ FitWidthArrows,
159
+ FormatAlignCenter,
160
+ FormatAlignJustify,
161
+ FormatAlignLeft,
162
+ FormatAlignRight,
163
+ FormatBold,
164
+ FormatClear,
165
+ FormatColorFill,
166
+ FormatColorText,
167
+ FormatItalic,
168
+ FormatLineSpacing,
169
+ FormatListBulleted,
170
+ FormatListNumbered,
171
+ FormatStrikethrough,
172
+ FormatUnderlined,
173
+ HorizontalRule,
174
+ Italic,
175
+ ItalicIcon,
176
+ Link,
177
+ LinkOff,
178
+ MergeCells,
179
+ Redo,
180
+ RemoveColumnOutline,
181
+ RemoveRowOutline,
182
+ SplitCells,
183
+ SplitScene,
184
+ Subscript,
185
+ Superscript,
186
+ Underline,
187
+ Undo,
188
+ VerticalAlignBottom,
189
+ VerticalAlignCenter,
190
+ VerticalAlignTop,
191
+ };
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M15 20H7V18H9.92661L12.0425 6H9V4H17V6H14.0734L11.9575 18H15V20Z"></path></svg>
package/icons/link.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M432.31-298.46H281.54q-75.34 0-128.44-53.1Q100-404.65 100-479.98q0-75.33 53.1-128.44 53.1-53.12 128.44-53.12h150.77v60H281.54q-50.39 0-85.96 35.58Q160-530.38 160-480q0 50.38 35.58 85.96 35.57 35.58 85.96 35.58h150.77v60ZM330-450v-60h300v60H330Zm197.69 151.54v-60h150.77q50.39 0 85.96-35.58Q800-429.62 800-480q0-50.38-35.58-85.96-35.57-35.58-85.96-35.58H527.69v-60h150.77q75.34 0 128.44 53.1Q860-555.35 860-480.02q0 75.33-53.1 128.44-53.1 53.12-128.44 53.12H527.69Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M755.38-315.85 710-362.46q40.38-11 65.19-43.27Q800-438 800-480q0-50.38-35.38-85.96-35.39-35.58-85.39-35.58H526.92v-60h152.31q74.92 0 127.85 53.12Q860-555.31 860-480q0 53.15-28.54 97.11-28.54 43.97-76.08 67.04ZM623.23-450l-60-60h66v60h-6ZM805.85-69.85l-736-736L112-848l736 736-42.15 42.15ZM433.08-298.46H281.54q-75.31 0-128.42-53.12Q100-404.69 100-480q0-66.69 42.96-117.04 42.96-50.34 107.81-60.8H260l56.31 56.3h-34.77q-50.39 0-85.96 35.58Q160-530.38 160-480q0 50.38 35.58 85.96 35.57 35.58 85.96 35.58h151.54v60ZM330.77-450v-60h77.69l59 60H330.77Z"/></svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <path d="M3.5,20.5V3.5h7.3v3.6h-1.5v-2.1h-4.3v14h4.3v-2.1h1.5v3.6H3.5ZM13.2,20.5v-3.6h1.5v2.1h4.3V5h-4.3v2.1h-1.5v-3.6h7.3v17h-7.3ZM11.3,14.8v-2h-2v-1.5h2v-2h1.5v2h2v1.5h-2v2h-1.5Z"/>
5
+ </svg>
package/icons/redo.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M384.85-220q-87.77 0-150.35-58.77t-62.58-144.69q0-85.92 62.58-144.5t150.35-58.58h280.84l-111.3-111.31L596.54-780 780-596.54 596.54-413.08l-42.15-42.15 111.3-111.31H384.85q-62.62 0-107.77 41.15-45.16 41.16-45.16 101.93 0 60.77 45.16 102.11Q322.23-280 384.85-280h287.07v60H384.85Z"/></svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <g id="Layer_1">
5
+ <g id="Layer_11" data-name="Layer_1">
6
+ <polygon points="22.2 10.6 21.2 9.5 19.8 10.9 18.3 9.5 17.3 10.6 18.7 12 17.3 13.4 18.3 14.5 19.8 13.1 21.2 14.5 22.2 13.4 20.8 12 22.2 10.6"/>
7
+ <path d="M12.8,3.5H3.5v17h9.3V3.5ZM11.3,19h-6.3V5h6.3v14Z"/>
8
+ </g>
9
+ </g>
10
+ <g id="Layer_2">
11
+ <rect x="15" y="18.9" width="1.6" height="1.6"/>
12
+ <rect x="15" y="3.5" width="1.6" height="1.6"/>
13
+ <rect x="18.9" y="18.9" width="1.6" height="1.6"/>
14
+ <rect x="18.9" y="11.2" width="1.6" height="1.6"/>
15
+ <rect x="18.9" y="3.5" width="1.6" height="1.6"/>
16
+ </g>
17
+ <g id="Layer_3">
18
+ <rect x="4" y="11.2" width="8.2" height="1.5"/>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <g id="Layer_2">
5
+ <polygon points="13.4 22.2 14.5 21.2 13.1 19.8 14.5 18.4 13.4 17.3 12 18.7 10.6 17.3 9.5 18.4 11 19.8 9.5 21.2 10.6 22.2 12 20.8 13.4 22.2"/>
6
+ <path d="M20.5,12.8V3.5H3.5v9.3h17ZM5,11.3v-6.3h14v6.3H5Z"/>
7
+ </g>
8
+ <g id="Layer_4">
9
+ <path d="M12.7,11.8v-7.8s-1.5,0-1.5,0v7.8s1.5,0,1.5,0Z"/>
10
+ </g>
11
+ <g id="Layer_3">
12
+ <rect x="3.5" y="18.9" width="1.6" height="1.6"/>
13
+ <rect x="3.5" y="15" width="1.6" height="1.6"/>
14
+ <rect x="18.9" y="18.9" width="1.6" height="1.6"/>
15
+ <rect x="18.9" y="15" width="1.6" height="1.6"/>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <path d="M3.5,20.5V3.5h5.8v1.5h-4.3v14h4.3v1.5H3.5ZM12.8,21.5h-1.5V2.5h1.5v19ZM5,19V5v14ZM14.8,20.5v-1.5h4.3s0-14,0-14h-4.3v-1.5h5.8v17h-5.8Z"/>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M100-180v-600h262.31v60H160v480h202.31v60H100Zm350 80v-760h60v80h350v600H510v80h-60Zm60-140h290v-480H510v480Zm290 0v-480 480Zm-640 0v-480 480Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M783.84-180q-15.36 0-25.75-10.4-10.4-10.39-10.4-25.76v-35.38q0-15.36 10.4-25.76 10.39-10.39 25.75-10.39H860v-36.93h-94.62q-7.07 0-12.38-5.3-5.31-5.31-5.31-12.39 0-7.07 5.31-12.38 5.31-5.31 12.38-5.31h93.85q15.36 0 25.76 10.39 10.39 10.4 10.39 25.76v35.39q0 15.36-10.39 25.76-10.4 10.39-25.76 10.39h-76.15v36.92h94.61q7.08 0 12.39 5.31 5.3 5.31 5.3 12.39 0 7.07-5.3 12.38-5.31 5.31-12.39 5.31h-93.85Zm-465.17-72.31q-20.08 0-29.37-17.04-9.3-17.03 1.24-34.26l143.31-223.54-129.93-202.16q-10.53-16.61-1.24-33.65 9.3-17.04 28.63-17.04 8.92 0 16.26 4.09 7.33 4.09 11.74 11.53l119.07 188.23h2.47l119.61-188.62q4.38-7.25 12.04-11.24 7.65-3.99 15.86-3.99 20.13 0 29.08 17.04 8.94 17.04-1.59 34.27L524.77-527.15l144.69 223.54q10.54 17.23.9 34.26-9.63 17.04-28.9 17.04-8.84 0-16.21-4.09-7.37-4.09-11.79-11.52L480.85-475.08h-2.47L346.54-267.92q-4.38 7.43-12.04 11.52-7.65 4.09-15.83 4.09Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M783.84-600q-15.36 0-25.75-10.39-10.4-10.4-10.4-25.76v-35.39q0-15.36 10.4-25.76 10.39-10.39 25.75-10.39H860v-36.92h-94.62q-7.07 0-12.38-5.31-5.31-5.31-5.31-12.39 0-7.07 5.31-12.38 5.31-5.31 12.38-5.31h93.85q15.36 0 25.76 10.4 10.39 10.39 10.39 25.76v35.38q0 15.36-10.39 25.76-10.4 10.39-25.76 10.39h-76.15v36.93h94.61q7.08 0 12.39 5.3 5.3 5.31 5.3 12.39 0 7.07-5.3 12.38-5.31 5.31-12.39 5.31h-93.85ZM318.67-180q-20.08 0-29.37-17.04-9.3-17.04 1.24-34.27l143.31-223.54L303.92-657q-10.53-16.62-1.24-33.65 9.3-17.04 28.63-17.04 8.92 0 16.26 4.09 7.33 4.09 11.74 11.52l119.07 188.24h2.47l119.61-188.62q4.38-7.25 12.04-11.24 7.65-3.99 15.86-3.99 20.13 0 29.08 17.04 8.94 17.03-1.59 34.26L524.77-454.85l144.69 223.54q10.54 17.23.9 34.27-9.63 17.04-28.9 17.04-8.84 0-16.21-4.09-7.37-4.09-11.79-11.53L480.85-402.77h-2.47L346.54-195.62q-4.38 7.44-12.04 11.53-7.65 4.09-15.83 4.09Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M8 3V12C8 14.2091 9.79086 16 12 16C14.2091 16 16 14.2091 16 12V3H18V12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12V3H8ZM4 20H20V22H4V20Z"></path></svg>
package/icons/undo.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M288.08-220v-60h287.07q62.62 0 107.77-41.35 45.16-41.34 45.16-102.11 0-60.77-45.16-101.93-45.15-41.15-107.77-41.15H294.31l111.3 111.31-42.15 42.15L180-596.54 363.46-780l42.15 42.15-111.3 111.31h280.84q87.77 0 150.35 58.58t62.58 144.5q0 85.92-62.58 144.69Q662.92-220 575.15-220H288.08Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M180-140v-60h600v60H180Zm300-153.85L293.85-480 336-522.15l114 114V-820h60v411.85l114-114L666.15-480 480-293.85Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M450-100v-188l-74 74-42.15-42.16L480-402.31l146.15 146.15L584-214l-74-74v188h-60ZM180-450v-60h600v60H180Zm300-107.69L333.85-703.84 376-746l74 74v-188h60v188l74-74 42.15 42.16L480-557.69Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M180-760v-60h600v60H180Zm270 620v-411.85l-114 114L293.85-480 480-666.15 666.15-480 624-437.85l-114-114V-140h-60Z"/></svg>