logisheets 0.6.0 → 0.8.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 (423) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -0
  3. package/dist/src/api/block_manager.d.ts +21 -0
  4. package/dist/src/api/block_manager.js +35 -0
  5. package/dist/src/api/calculator.d.ts +19 -0
  6. package/dist/src/api/calculator.js +46 -0
  7. package/dist/src/api/cell.d.ts +28 -0
  8. package/dist/src/api/cell.js +52 -0
  9. package/dist/src/api/index.d.ts +7 -0
  10. package/dist/src/api/index.js +5 -0
  11. package/dist/src/api/utils.d.ts +5 -0
  12. package/dist/src/api/utils.js +9 -0
  13. package/dist/src/api/workbook.d.ts +40 -0
  14. package/dist/src/api/workbook.js +227 -0
  15. package/dist/src/api/worksheet.d.ts +24 -0
  16. package/dist/src/api/worksheet.js +71 -0
  17. package/dist/src/bindings/action_effect.d.ts +7 -0
  18. package/dist/src/bindings/action_effect.js +1 -0
  19. package/dist/src/bindings/alignment.d.ts +6 -0
  20. package/dist/src/bindings/alignment.js +1 -0
  21. package/dist/src/bindings/async_func_result.d.ts +5 -0
  22. package/dist/src/bindings/async_func_result.js +1 -0
  23. package/dist/src/bindings/block_cell_id.d.ts +5 -0
  24. package/dist/src/bindings/block_cell_id.js +2 -0
  25. package/dist/src/bindings/block_info.d.ts +7 -0
  26. package/dist/src/bindings/block_info.js +2 -0
  27. package/dist/src/bindings/block_input.d.ts +7 -0
  28. package/dist/src/bindings/block_input.js +2 -0
  29. package/dist/src/bindings/block_style_update.d.ts +8 -0
  30. package/dist/src/bindings/block_style_update.js +1 -0
  31. package/dist/src/bindings/border.d.ts +13 -0
  32. package/dist/src/bindings/border.js +1 -0
  33. package/dist/src/bindings/border_pr.d.ts +6 -0
  34. package/dist/src/bindings/border_pr.js +1 -0
  35. package/dist/src/bindings/cell_alignment.d.ts +13 -0
  36. package/dist/src/bindings/cell_alignment.js +1 -0
  37. package/dist/src/bindings/cell_clear.d.ts +5 -0
  38. package/dist/src/bindings/cell_clear.js +2 -0
  39. package/dist/src/bindings/cell_format_brush.d.ts +10 -0
  40. package/dist/src/bindings/cell_format_brush.js +2 -0
  41. package/dist/src/bindings/cell_formula_value.d.ts +7 -0
  42. package/dist/src/bindings/cell_formula_value.js +1 -0
  43. package/dist/src/bindings/cell_id.d.ts +9 -0
  44. package/dist/src/bindings/cell_id.js +1 -0
  45. package/dist/src/bindings/cell_info.d.ts +8 -0
  46. package/dist/src/bindings/cell_info.js +1 -0
  47. package/dist/src/bindings/cell_input.d.ts +6 -0
  48. package/dist/src/bindings/cell_input.js +2 -0
  49. package/dist/src/bindings/cell_position.d.ts +4 -0
  50. package/dist/src/bindings/cell_position.js +2 -0
  51. package/dist/src/bindings/cell_protection.d.ts +4 -0
  52. package/dist/src/bindings/cell_protection.js +2 -0
  53. package/dist/src/bindings/cell_style.d.ts +6 -0
  54. package/dist/src/bindings/cell_style.js +1 -0
  55. package/dist/src/bindings/cell_style_update.d.ts +7 -0
  56. package/dist/src/bindings/cell_style_update.js +1 -0
  57. package/dist/src/bindings/col_info.d.ts +5 -0
  58. package/dist/src/bindings/col_info.js +2 -0
  59. package/dist/src/bindings/color.d.ts +6 -0
  60. package/dist/src/bindings/color.js +2 -0
  61. package/dist/src/bindings/comment.d.ts +6 -0
  62. package/dist/src/bindings/comment.js +2 -0
  63. package/dist/src/bindings/create_block.d.ts +8 -0
  64. package/dist/src/bindings/create_block.js +2 -0
  65. package/dist/src/bindings/create_sheet.d.ts +4 -0
  66. package/dist/src/bindings/create_sheet.js +2 -0
  67. package/dist/src/bindings/delete_cols.d.ts +5 -0
  68. package/dist/src/bindings/delete_cols.js +2 -0
  69. package/dist/src/bindings/delete_cols_in_block.d.ts +6 -0
  70. package/dist/src/bindings/delete_cols_in_block.js +2 -0
  71. package/dist/src/bindings/delete_rows.d.ts +5 -0
  72. package/dist/src/bindings/delete_rows.js +2 -0
  73. package/dist/src/bindings/delete_rows_in_block.d.ts +6 -0
  74. package/dist/src/bindings/delete_rows_in_block.js +2 -0
  75. package/dist/src/bindings/delete_sheet.d.ts +3 -0
  76. package/dist/src/bindings/delete_sheet.js +2 -0
  77. package/dist/src/bindings/display_patch.d.ts +25 -0
  78. package/dist/src/bindings/display_patch.js +1 -0
  79. package/dist/src/bindings/display_request.d.ts +4 -0
  80. package/dist/src/bindings/display_request.js +2 -0
  81. package/dist/src/bindings/display_response.d.ts +5 -0
  82. package/dist/src/bindings/display_response.js +1 -0
  83. package/dist/src/bindings/display_window.d.ts +14 -0
  84. package/dist/src/bindings/display_window.js +1 -0
  85. package/dist/src/bindings/display_window_request.d.ts +7 -0
  86. package/dist/src/bindings/display_window_request.js +2 -0
  87. package/dist/src/bindings/display_window_with_start_point.d.ts +6 -0
  88. package/dist/src/bindings/display_window_with_start_point.js +1 -0
  89. package/dist/src/bindings/edit_action.d.ts +7 -0
  90. package/dist/src/bindings/edit_action.js +1 -0
  91. package/dist/src/bindings/edit_payload.d.ts +88 -0
  92. package/dist/src/bindings/edit_payload.js +1 -0
  93. package/dist/src/bindings/ephemeral_cell_input.d.ts +5 -0
  94. package/dist/src/bindings/ephemeral_cell_input.js +2 -0
  95. package/dist/src/bindings/ephemeral_cell_style_update.d.ts +6 -0
  96. package/dist/src/bindings/ephemeral_cell_style_update.js +1 -0
  97. package/dist/src/bindings/error_message.d.ts +4 -0
  98. package/dist/src/bindings/error_message.js +2 -0
  99. package/dist/src/bindings/fill.d.ts +7 -0
  100. package/dist/src/bindings/fill.js +1 -0
  101. package/dist/src/bindings/font.d.ts +23 -0
  102. package/dist/src/bindings/font.js +1 -0
  103. package/dist/src/bindings/font_family.d.ts +3 -0
  104. package/dist/src/bindings/font_family.js +2 -0
  105. package/dist/src/bindings/font_name.d.ts +3 -0
  106. package/dist/src/bindings/font_name.js +2 -0
  107. package/dist/src/bindings/font_scheme.d.ts +4 -0
  108. package/dist/src/bindings/font_scheme.js +1 -0
  109. package/dist/src/bindings/gradient_fill.d.ts +11 -0
  110. package/dist/src/bindings/gradient_fill.js +1 -0
  111. package/dist/src/bindings/gradient_stop.d.ts +5 -0
  112. package/dist/src/bindings/gradient_stop.js +1 -0
  113. package/dist/src/bindings/horizontal_alignment.d.ts +1 -0
  114. package/dist/src/bindings/horizontal_alignment.js +2 -0
  115. package/dist/src/bindings/index.d.ts +88 -0
  116. package/dist/src/bindings/index.js +89 -0
  117. package/dist/src/bindings/insert_cols.d.ts +5 -0
  118. package/dist/src/bindings/insert_cols.js +2 -0
  119. package/dist/src/bindings/insert_cols_in_block.d.ts +6 -0
  120. package/dist/src/bindings/insert_cols_in_block.js +2 -0
  121. package/dist/src/bindings/insert_rows.d.ts +5 -0
  122. package/dist/src/bindings/insert_rows.js +2 -0
  123. package/dist/src/bindings/insert_rows_in_block.d.ts +6 -0
  124. package/dist/src/bindings/insert_rows_in_block.js +2 -0
  125. package/dist/src/bindings/line_format_brush.d.ts +9 -0
  126. package/dist/src/bindings/line_format_brush.js +2 -0
  127. package/dist/src/bindings/line_style_update.d.ts +8 -0
  128. package/dist/src/bindings/line_style_update.js +1 -0
  129. package/dist/src/bindings/merge_cell.d.ts +6 -0
  130. package/dist/src/bindings/merge_cell.js +2 -0
  131. package/dist/src/bindings/merge_cells.d.ts +7 -0
  132. package/dist/src/bindings/merge_cells.js +2 -0
  133. package/dist/src/bindings/move_block.d.ts +6 -0
  134. package/dist/src/bindings/move_block.js +2 -0
  135. package/dist/src/bindings/msg_edit.d.ts +7 -0
  136. package/dist/src/bindings/msg_edit.js +1 -0
  137. package/dist/src/bindings/msg_join.d.ts +6 -0
  138. package/dist/src/bindings/msg_join.js +1 -0
  139. package/dist/src/bindings/msg_sequencer_action_invalid_message.d.ts +6 -0
  140. package/dist/src/bindings/msg_sequencer_action_invalid_message.js +2 -0
  141. package/dist/src/bindings/msg_sequencer_action_message.d.ts +7 -0
  142. package/dist/src/bindings/msg_sequencer_action_message.js +1 -0
  143. package/dist/src/bindings/msg_sequencer_init_workbook.d.ts +5 -0
  144. package/dist/src/bindings/msg_sequencer_init_workbook.js +2 -0
  145. package/dist/src/bindings/msg_sequencer_message.d.ts +10 -0
  146. package/dist/src/bindings/msg_sequencer_message.js +1 -0
  147. package/dist/src/bindings/msg_user_message.d.ts +7 -0
  148. package/dist/src/bindings/msg_user_message.js +1 -0
  149. package/dist/src/bindings/normal_cell_id.d.ts +4 -0
  150. package/dist/src/bindings/normal_cell_id.js +2 -0
  151. package/dist/src/bindings/pattern_fill.d.ts +7 -0
  152. package/dist/src/bindings/pattern_fill.js +1 -0
  153. package/dist/src/bindings/payloads_action.d.ts +6 -0
  154. package/dist/src/bindings/payloads_action.js +1 -0
  155. package/dist/src/bindings/recalc_cell.d.ts +5 -0
  156. package/dist/src/bindings/recalc_cell.js +1 -0
  157. package/dist/src/bindings/remove_block.d.ts +4 -0
  158. package/dist/src/bindings/remove_block.js +2 -0
  159. package/dist/src/bindings/row_info.d.ts +5 -0
  160. package/dist/src/bindings/row_info.js +2 -0
  161. package/dist/src/bindings/set_col_width.d.ts +5 -0
  162. package/dist/src/bindings/set_col_width.js +2 -0
  163. package/dist/src/bindings/set_row_height.d.ts +5 -0
  164. package/dist/src/bindings/set_row_height.js +2 -0
  165. package/dist/src/bindings/set_visible.d.ts +6 -0
  166. package/dist/src/bindings/set_visible.js +2 -0
  167. package/dist/src/bindings/sheet_blocks.d.ts +5 -0
  168. package/dist/src/bindings/sheet_blocks.js +1 -0
  169. package/dist/src/bindings/sheet_col_info.d.ts +6 -0
  170. package/dist/src/bindings/sheet_col_info.js +1 -0
  171. package/dist/src/bindings/sheet_comments.d.ts +5 -0
  172. package/dist/src/bindings/sheet_comments.js +1 -0
  173. package/dist/src/bindings/sheet_dimension.d.ts +6 -0
  174. package/dist/src/bindings/sheet_dimension.js +2 -0
  175. package/dist/src/bindings/sheet_info.d.ts +6 -0
  176. package/dist/src/bindings/sheet_info.js +2 -0
  177. package/dist/src/bindings/sheet_merge_cells.d.ts +5 -0
  178. package/dist/src/bindings/sheet_merge_cells.js +1 -0
  179. package/dist/src/bindings/sheet_names.d.ts +3 -0
  180. package/dist/src/bindings/sheet_names.js +2 -0
  181. package/dist/src/bindings/sheet_rename.d.ts +5 -0
  182. package/dist/src/bindings/sheet_rename.js +2 -0
  183. package/dist/src/bindings/sheet_row_info.d.ts +6 -0
  184. package/dist/src/bindings/sheet_row_info.js +1 -0
  185. package/dist/src/bindings/sheet_styles.d.ts +5 -0
  186. package/dist/src/bindings/sheet_styles.js +1 -0
  187. package/dist/src/bindings/sheet_values.d.ts +5 -0
  188. package/dist/src/bindings/sheet_values.js +1 -0
  189. package/dist/src/bindings/split_merged_cells.d.ts +5 -0
  190. package/dist/src/bindings/split_merged_cells.js +2 -0
  191. package/dist/src/bindings/st_border_style.d.ts +1 -0
  192. package/dist/src/bindings/st_border_style.js +2 -0
  193. package/dist/src/bindings/st_font_scheme.d.ts +1 -0
  194. package/dist/src/bindings/st_font_scheme.js +2 -0
  195. package/dist/src/bindings/st_gradient_type.d.ts +1 -0
  196. package/dist/src/bindings/st_gradient_type.js +2 -0
  197. package/dist/src/bindings/st_horizontal_alignment.d.ts +1 -0
  198. package/dist/src/bindings/st_horizontal_alignment.js +2 -0
  199. package/dist/src/bindings/st_pattern_type.d.ts +1 -0
  200. package/dist/src/bindings/st_pattern_type.js +2 -0
  201. package/dist/src/bindings/st_underline_values.d.ts +1 -0
  202. package/dist/src/bindings/st_underline_values.js +2 -0
  203. package/dist/src/bindings/st_vertical_align_run.d.ts +1 -0
  204. package/dist/src/bindings/st_vertical_align_run.js +2 -0
  205. package/dist/src/bindings/st_vertical_alignment.d.ts +1 -0
  206. package/dist/src/bindings/st_vertical_alignment.js +2 -0
  207. package/dist/src/bindings/status_code.d.ts +6 -0
  208. package/dist/src/bindings/status_code.js +1 -0
  209. package/dist/src/bindings/style.d.ts +13 -0
  210. package/dist/src/bindings/style.js +1 -0
  211. package/dist/src/bindings/style_update.d.ts +7 -0
  212. package/dist/src/bindings/style_update.js +1 -0
  213. package/dist/src/bindings/style_update_type.d.ts +29 -0
  214. package/dist/src/bindings/style_update_type.js +1 -0
  215. package/dist/src/bindings/task.d.ts +4 -0
  216. package/dist/src/bindings/task.js +2 -0
  217. package/dist/src/bindings/underline_property.d.ts +4 -0
  218. package/dist/src/bindings/underline_property.js +1 -0
  219. package/dist/src/bindings/value.d.ts +9 -0
  220. package/dist/src/bindings/value.js +2 -0
  221. package/dist/src/bindings/vertical_align_font_property.d.ts +4 -0
  222. package/dist/src/bindings/vertical_align_font_property.js +1 -0
  223. package/dist/src/bindings/vertical_alignment.d.ts +1 -0
  224. package/dist/src/bindings/vertical_alignment.js +2 -0
  225. package/dist/src/bindings/workbook_file.d.ts +4 -0
  226. package/dist/src/bindings/workbook_file.js +2 -0
  227. package/dist/src/bindings/workbook_update_type.d.ts +1 -0
  228. package/dist/src/bindings/workbook_update_type.js +2 -0
  229. package/dist/src/client.d.ts +82 -0
  230. package/dist/src/client.js +1 -0
  231. package/dist/src/index.d.ts +5 -0
  232. package/dist/src/index.js +4 -0
  233. package/dist/src/payloads/block_input.d.ts +21 -0
  234. package/dist/src/payloads/block_input.js +47 -0
  235. package/dist/src/payloads/cell_clear.d.ts +15 -0
  236. package/dist/src/payloads/cell_clear.js +31 -0
  237. package/dist/src/payloads/cell_format_brush.d.ts +30 -0
  238. package/dist/src/payloads/cell_format_brush.js +71 -0
  239. package/dist/src/payloads/cell_input.d.ts +18 -0
  240. package/dist/src/payloads/cell_input.js +39 -0
  241. package/dist/src/payloads/create_block.d.ts +24 -0
  242. package/dist/src/payloads/create_block.js +61 -0
  243. package/dist/src/payloads/delete_block_cols.d.ts +18 -0
  244. package/dist/src/payloads/delete_block_cols.js +39 -0
  245. package/dist/src/payloads/delete_block_rows.d.ts +18 -0
  246. package/dist/src/payloads/delete_block_rows.js +39 -0
  247. package/dist/src/payloads/delete_cols.d.ts +15 -0
  248. package/dist/src/payloads/delete_cols.js +31 -0
  249. package/dist/src/payloads/delete_rows.d.ts +15 -0
  250. package/dist/src/payloads/delete_rows.js +31 -0
  251. package/dist/src/payloads/delete_sheet.d.ts +9 -0
  252. package/dist/src/payloads/delete_sheet.js +15 -0
  253. package/dist/src/payloads/index.d.ts +65 -0
  254. package/dist/src/payloads/index.js +32 -0
  255. package/dist/src/payloads/insert_block_cols.d.ts +18 -0
  256. package/dist/src/payloads/insert_block_cols.js +39 -0
  257. package/dist/src/payloads/insert_block_rows.d.ts +18 -0
  258. package/dist/src/payloads/insert_block_rows.js +39 -0
  259. package/dist/src/payloads/insert_cols.d.ts +15 -0
  260. package/dist/src/payloads/insert_cols.js +31 -0
  261. package/dist/src/payloads/insert_rows.d.ts +15 -0
  262. package/dist/src/payloads/insert_rows.js +31 -0
  263. package/dist/src/payloads/insert_sheet.d.ts +12 -0
  264. package/dist/src/payloads/insert_sheet.js +23 -0
  265. package/dist/src/payloads/line_format_brush.d.ts +27 -0
  266. package/dist/src/payloads/line_format_brush.js +63 -0
  267. package/dist/src/payloads/merge_cells.d.ts +21 -0
  268. package/dist/src/payloads/merge_cells.js +47 -0
  269. package/dist/src/payloads/move_block.d.ts +18 -0
  270. package/dist/src/payloads/move_block.js +39 -0
  271. package/dist/src/payloads/set_border.d.ts +49 -0
  272. package/dist/src/payloads/set_border.js +97 -0
  273. package/dist/src/payloads/set_cell_alignment.d.ts +19 -0
  274. package/dist/src/payloads/set_cell_alignment.js +39 -0
  275. package/dist/src/payloads/set_cell_border.d.ts +49 -0
  276. package/dist/src/payloads/set_cell_border.js +97 -0
  277. package/dist/src/payloads/set_cell_font.d.ts +46 -0
  278. package/dist/src/payloads/set_cell_font.js +91 -0
  279. package/dist/src/payloads/set_cell_pattern_fill.d.ts +25 -0
  280. package/dist/src/payloads/set_cell_pattern_fill.js +49 -0
  281. package/dist/src/payloads/set_col_visible.d.ts +15 -0
  282. package/dist/src/payloads/set_col_visible.js +31 -0
  283. package/dist/src/payloads/set_col_width.d.ts +15 -0
  284. package/dist/src/payloads/set_col_width.js +31 -0
  285. package/dist/src/payloads/set_font.d.ts +46 -0
  286. package/dist/src/payloads/set_font.js +91 -0
  287. package/dist/src/payloads/set_line_alignment.d.ts +22 -0
  288. package/dist/src/payloads/set_line_alignment.js +47 -0
  289. package/dist/src/payloads/set_line_border.d.ts +49 -0
  290. package/dist/src/payloads/set_line_border.js +97 -0
  291. package/dist/src/payloads/set_line_font.d.ts +49 -0
  292. package/dist/src/payloads/set_line_font.js +99 -0
  293. package/dist/src/payloads/set_line_pattern_fill.d.ts +28 -0
  294. package/dist/src/payloads/set_line_pattern_fill.js +57 -0
  295. package/dist/src/payloads/set_row_height.d.ts +15 -0
  296. package/dist/src/payloads/set_row_height.js +31 -0
  297. package/dist/src/payloads/set_row_visible.d.ts +15 -0
  298. package/dist/src/payloads/set_row_visible.js +31 -0
  299. package/dist/src/payloads/sheet_rename.d.ts +15 -0
  300. package/dist/src/payloads/sheet_rename.js +29 -0
  301. package/dist/src/payloads/split_merged_cells.d.ts +15 -0
  302. package/dist/src/payloads/split_merged_cells.js +31 -0
  303. package/dist/src/transactions.d.ts +13 -0
  304. package/dist/src/transactions.js +23 -0
  305. package/package.json +7 -6
  306. package/index.ts +0 -1
  307. package/src/api/index.ts +0 -1
  308. package/src/api/workbook.ts +0 -201
  309. package/src/bindings/action_effect.ts +0 -17
  310. package/src/bindings/async_func_result.ts +0 -12
  311. package/src/bindings/block_cell_id.ts +0 -7
  312. package/src/bindings/block_info.ts +0 -9
  313. package/src/bindings/block_input.ts +0 -9
  314. package/src/bindings/block_style_update.ts +0 -10
  315. package/src/bindings/border.ts +0 -15
  316. package/src/bindings/border_pr.ts +0 -8
  317. package/src/bindings/cell_alignment.ts +0 -15
  318. package/src/bindings/cell_formula_value.ts +0 -9
  319. package/src/bindings/cell_id.ts +0 -7
  320. package/src/bindings/cell_input.ts +0 -9
  321. package/src/bindings/cell_protection.ts +0 -6
  322. package/src/bindings/cell_style.ts +0 -8
  323. package/src/bindings/col_info.ts +0 -7
  324. package/src/bindings/color.ts +0 -8
  325. package/src/bindings/comment.ts +0 -8
  326. package/src/bindings/create_block.ts +0 -15
  327. package/src/bindings/create_sheet.ts +0 -6
  328. package/src/bindings/delete_cols.ts +0 -7
  329. package/src/bindings/delete_cols_in_block.ts +0 -8
  330. package/src/bindings/delete_rows.ts +0 -7
  331. package/src/bindings/delete_rows_in_block.ts +0 -8
  332. package/src/bindings/delete_sheet.ts +0 -5
  333. package/src/bindings/display_patch.ts +0 -19
  334. package/src/bindings/display_request.ts +0 -6
  335. package/src/bindings/display_response.ts +0 -7
  336. package/src/bindings/edit_action.ts +0 -10
  337. package/src/bindings/edit_payload.ts +0 -47
  338. package/src/bindings/fill.ts +0 -7
  339. package/src/bindings/font.ts +0 -25
  340. package/src/bindings/font_family.ts +0 -5
  341. package/src/bindings/font_name.ts +0 -5
  342. package/src/bindings/font_scheme.ts +0 -6
  343. package/src/bindings/gradient_fill.ts +0 -13
  344. package/src/bindings/gradient_stop.ts +0 -7
  345. package/src/bindings/index.ts +0 -85
  346. package/src/bindings/insert_cols.ts +0 -7
  347. package/src/bindings/insert_cols_in_block.ts +0 -8
  348. package/src/bindings/insert_rows.ts +0 -7
  349. package/src/bindings/insert_rows_in_block.ts +0 -8
  350. package/src/bindings/merge_cell.ts +0 -8
  351. package/src/bindings/move_block.ts +0 -8
  352. package/src/bindings/msg_edit.ts +0 -9
  353. package/src/bindings/msg_join.ts +0 -9
  354. package/src/bindings/msg_sequencer_action_invalid_message.ts +0 -10
  355. package/src/bindings/msg_sequencer_action_message.ts +0 -10
  356. package/src/bindings/msg_sequencer_init_workbook.ts +0 -8
  357. package/src/bindings/msg_sequencer_message.ts +0 -9
  358. package/src/bindings/msg_user_message.ts +0 -7
  359. package/src/bindings/normal_cell_id.ts +0 -6
  360. package/src/bindings/pattern_fill.ts +0 -9
  361. package/src/bindings/payloads_action.ts +0 -15
  362. package/src/bindings/recalc_cell.ts +0 -7
  363. package/src/bindings/remove_block.ts +0 -6
  364. package/src/bindings/row_info.ts +0 -7
  365. package/src/bindings/set_col_width.ts +0 -7
  366. package/src/bindings/set_row_height.ts +0 -7
  367. package/src/bindings/set_visible.ts +0 -8
  368. package/src/bindings/sheet_blocks.ts +0 -7
  369. package/src/bindings/sheet_col_info.ts +0 -8
  370. package/src/bindings/sheet_comments.ts +0 -7
  371. package/src/bindings/sheet_merge_cells.ts +0 -7
  372. package/src/bindings/sheet_names.ts +0 -5
  373. package/src/bindings/sheet_rename.ts +0 -8
  374. package/src/bindings/sheet_row_info.ts +0 -8
  375. package/src/bindings/sheet_styles.ts +0 -7
  376. package/src/bindings/sheet_values.ts +0 -7
  377. package/src/bindings/st_border_style.ts +0 -17
  378. package/src/bindings/st_font_scheme.ts +0 -6
  379. package/src/bindings/st_gradient_type.ts +0 -6
  380. package/src/bindings/st_horizontal_alignment.ts +0 -12
  381. package/src/bindings/st_pattern_type.ts +0 -23
  382. package/src/bindings/st_underline_values.ts +0 -9
  383. package/src/bindings/st_vertical_align_run.ts +0 -7
  384. package/src/bindings/st_vertical_alignment.ts +0 -9
  385. package/src/bindings/status_code.ts +0 -5
  386. package/src/bindings/style.ts +0 -15
  387. package/src/bindings/style_update.ts +0 -9
  388. package/src/bindings/style_update_type.ts +0 -29
  389. package/src/bindings/task.ts +0 -6
  390. package/src/bindings/underline_property.ts +0 -6
  391. package/src/bindings/value.ts +0 -8
  392. package/src/bindings/vertical_align_font_property.ts +0 -6
  393. package/src/bindings/workbook_file.ts +0 -6
  394. package/src/index.ts +0 -42
  395. package/src/payloads/block_input.ts +0 -54
  396. package/src/payloads/cell_input.ts +0 -44
  397. package/src/payloads/create_block.ts +0 -78
  398. package/src/payloads/delete_block_cols.ts +0 -44
  399. package/src/payloads/delete_block_rows.ts +0 -44
  400. package/src/payloads/delete_cols.ts +0 -37
  401. package/src/payloads/delete_rows.ts +0 -37
  402. package/src/payloads/delete_sheet.ts +0 -19
  403. package/src/payloads/index.ts +0 -66
  404. package/src/payloads/insert_block_cols.ts +0 -44
  405. package/src/payloads/insert_block_rows.ts +0 -44
  406. package/src/payloads/insert_cols.ts +0 -35
  407. package/src/payloads/insert_rows.ts +0 -36
  408. package/src/payloads/insert_sheet.ts +0 -27
  409. package/src/payloads/move_block.ts +0 -45
  410. package/src/payloads/set_border.ts +0 -113
  411. package/src/payloads/set_col_visible.ts +0 -35
  412. package/src/payloads/set_col_width.ts +0 -35
  413. package/src/payloads/set_font.ts +0 -107
  414. package/src/payloads/set_row_height.ts +0 -35
  415. package/src/payloads/set_row_visible.ts +0 -35
  416. package/src/payloads/sheet_rename.ts +0 -35
  417. package/src/transactions.ts +0 -14
  418. package/wasm/.gitignore +0 -1
  419. package/wasm/logisheets_wasm_server.d.ts +0 -255
  420. package/wasm/logisheets_wasm_server.js +0 -946
  421. package/wasm/logisheets_wasm_server_bg.wasm +0 -0
  422. package/wasm/logisheets_wasm_server_bg.wasm.d.ts +0 -40
  423. package/wasm/package.json +0 -14
@@ -0,0 +1 @@
1
+ export type HorizontalAlignment = 'general' | 'left' | 'center' | 'right' | 'fill' | 'justify' | 'centerContinuous' | 'distributed';
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,88 @@
1
+ export * from './action_effect';
2
+ export * from './alignment';
3
+ export * from './async_func_result';
4
+ export * from './block_cell_id';
5
+ export * from './block_info';
6
+ export * from './block_input';
7
+ export * from './block_style_update';
8
+ export * from './border';
9
+ export * from './border_pr';
10
+ export * from './cell_clear';
11
+ export * from './cell_format_brush';
12
+ export * from './cell_id';
13
+ export * from './cell_info';
14
+ export * from './cell_input';
15
+ export * from './cell_position';
16
+ export * from './cell_protection';
17
+ export * from './cell_style_update';
18
+ export * from './col_info';
19
+ export * from './color';
20
+ export * from './comment';
21
+ export * from './create_block';
22
+ export * from './create_sheet';
23
+ export * from './delete_cols';
24
+ export * from './delete_cols_in_block';
25
+ export * from './delete_rows';
26
+ export * from './delete_rows_in_block';
27
+ export * from './delete_sheet';
28
+ export * from './display_window';
29
+ export * from './display_window_request';
30
+ export * from './display_window_with_start_point';
31
+ export * from './edit_action';
32
+ export * from './edit_payload';
33
+ export * from './ephemeral_cell_input';
34
+ export * from './ephemeral_cell_style_update';
35
+ export * from './error_message';
36
+ export * from './fill';
37
+ export * from './font';
38
+ export * from './font_family';
39
+ export * from './font_name';
40
+ export * from './font_scheme';
41
+ export * from './gradient_fill';
42
+ export * from './gradient_stop';
43
+ export * from './horizontal_alignment';
44
+ export * from './insert_cols';
45
+ export * from './insert_cols_in_block';
46
+ export * from './insert_rows';
47
+ export * from './insert_rows_in_block';
48
+ export * from './line_format_brush';
49
+ export * from './line_style_update';
50
+ export * from './merge_cell';
51
+ export * from './merge_cells';
52
+ export * from './move_block';
53
+ export * from './msg_edit';
54
+ export * from './msg_join';
55
+ export * from './msg_sequencer_action_invalid_message';
56
+ export * from './msg_sequencer_action_message';
57
+ export * from './msg_sequencer_init_workbook';
58
+ export * from './msg_sequencer_message';
59
+ export * from './msg_user_message';
60
+ export * from './normal_cell_id';
61
+ export * from './pattern_fill';
62
+ export * from './payloads_action';
63
+ export * from './recalc_cell';
64
+ export * from './remove_block';
65
+ export * from './row_info';
66
+ export * from './set_col_width';
67
+ export * from './set_row_height';
68
+ export * from './set_visible';
69
+ export * from './sheet_dimension';
70
+ export * from './sheet_info';
71
+ export * from './sheet_rename';
72
+ export * from './split_merged_cells';
73
+ export * from './st_border_style';
74
+ export * from './st_font_scheme';
75
+ export * from './st_gradient_type';
76
+ export * from './st_pattern_type';
77
+ export * from './st_underline_values';
78
+ export * from './st_vertical_align_run';
79
+ export * from './status_code';
80
+ export * from './style';
81
+ export * from './style_update_type';
82
+ export * from './task';
83
+ export * from './underline_property';
84
+ export * from './value';
85
+ export * from './vertical_align_font_property';
86
+ export * from './vertical_alignment';
87
+ export * from './workbook_file';
88
+ export * from './workbook_update_type';
@@ -0,0 +1,89 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export * from './action_effect';
3
+ export * from './alignment';
4
+ export * from './async_func_result';
5
+ export * from './block_cell_id';
6
+ export * from './block_info';
7
+ export * from './block_input';
8
+ export * from './block_style_update';
9
+ export * from './border';
10
+ export * from './border_pr';
11
+ export * from './cell_clear';
12
+ export * from './cell_format_brush';
13
+ export * from './cell_id';
14
+ export * from './cell_info';
15
+ export * from './cell_input';
16
+ export * from './cell_position';
17
+ export * from './cell_protection';
18
+ export * from './cell_style_update';
19
+ export * from './col_info';
20
+ export * from './color';
21
+ export * from './comment';
22
+ export * from './create_block';
23
+ export * from './create_sheet';
24
+ export * from './delete_cols';
25
+ export * from './delete_cols_in_block';
26
+ export * from './delete_rows';
27
+ export * from './delete_rows_in_block';
28
+ export * from './delete_sheet';
29
+ export * from './display_window';
30
+ export * from './display_window_request';
31
+ export * from './display_window_with_start_point';
32
+ export * from './edit_action';
33
+ export * from './edit_payload';
34
+ export * from './ephemeral_cell_input';
35
+ export * from './ephemeral_cell_style_update';
36
+ export * from './error_message';
37
+ export * from './fill';
38
+ export * from './font';
39
+ export * from './font_family';
40
+ export * from './font_name';
41
+ export * from './font_scheme';
42
+ export * from './gradient_fill';
43
+ export * from './gradient_stop';
44
+ export * from './horizontal_alignment';
45
+ export * from './insert_cols';
46
+ export * from './insert_cols_in_block';
47
+ export * from './insert_rows';
48
+ export * from './insert_rows_in_block';
49
+ export * from './line_format_brush';
50
+ export * from './line_style_update';
51
+ export * from './merge_cell';
52
+ export * from './merge_cells';
53
+ export * from './move_block';
54
+ export * from './msg_edit';
55
+ export * from './msg_join';
56
+ export * from './msg_sequencer_action_invalid_message';
57
+ export * from './msg_sequencer_action_message';
58
+ export * from './msg_sequencer_init_workbook';
59
+ export * from './msg_sequencer_message';
60
+ export * from './msg_user_message';
61
+ export * from './normal_cell_id';
62
+ export * from './pattern_fill';
63
+ export * from './payloads_action';
64
+ export * from './recalc_cell';
65
+ export * from './remove_block';
66
+ export * from './row_info';
67
+ export * from './set_col_width';
68
+ export * from './set_row_height';
69
+ export * from './set_visible';
70
+ export * from './sheet_dimension';
71
+ export * from './sheet_info';
72
+ export * from './sheet_rename';
73
+ export * from './split_merged_cells';
74
+ export * from './st_border_style';
75
+ export * from './st_font_scheme';
76
+ export * from './st_gradient_type';
77
+ export * from './st_pattern_type';
78
+ export * from './st_underline_values';
79
+ export * from './st_vertical_align_run';
80
+ export * from './status_code';
81
+ export * from './style';
82
+ export * from './style_update_type';
83
+ export * from './task';
84
+ export * from './underline_property';
85
+ export * from './value';
86
+ export * from './vertical_align_font_property';
87
+ export * from './vertical_alignment';
88
+ export * from './workbook_file';
89
+ export * from './workbook_update_type';
@@ -0,0 +1,5 @@
1
+ export interface InsertCols {
2
+ sheetIdx: number;
3
+ start: number;
4
+ count: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface InsertColsInBlock {
2
+ sheetIdx: number;
3
+ blockId: number;
4
+ start: number;
5
+ cnt: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface InsertRows {
2
+ sheetIdx: number;
3
+ start: number;
4
+ count: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface InsertRowsInBlock {
2
+ sheetIdx: number;
3
+ blockId: number;
4
+ start: number;
5
+ cnt: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,9 @@
1
+ export interface LineFormatBrush {
2
+ srcSheetIdx: number;
3
+ srcRow: number;
4
+ srcCol: number;
5
+ dstSheetIdx: number;
6
+ row: boolean;
7
+ from: number;
8
+ to: number;
9
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,8 @@
1
+ import { StyleUpdateType } from './style_update_type';
2
+ export interface LineStyleUpdate {
3
+ sheetIdx: number;
4
+ from: number;
5
+ to: number;
6
+ ty: StyleUpdateType;
7
+ row: boolean;
8
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface MergeCell {
2
+ startRow: number;
3
+ startCol: number;
4
+ endRow: number;
5
+ endCol: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,7 @@
1
+ export interface MergeCells {
2
+ sheetIdx: number;
3
+ startRow: number;
4
+ startCol: number;
5
+ endRow: number;
6
+ endCol: number;
7
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface MoveBlock {
2
+ sheetIdx: number;
3
+ id: number;
4
+ newMasterRow: number;
5
+ newMasterCol: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,7 @@
1
+ import { EditAction } from './edit_action';
2
+ export interface Edit {
3
+ version: number;
4
+ file: string;
5
+ user: string;
6
+ action: EditAction;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import { WorkbookFile } from './workbook_file';
2
+ export interface Join {
3
+ file: string;
4
+ user: string;
5
+ wbFile?: WorkbookFile;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface SequencerActionInvalidMessage {
2
+ version: number;
3
+ userId: string;
4
+ fileId: string;
5
+ reason: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,7 @@
1
+ import { EditAction } from './edit_action';
2
+ export interface SequencerActionMessage {
3
+ version: number;
4
+ userId: string;
5
+ fileId: string;
6
+ action: EditAction;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface SequencerInitWorkbook {
2
+ version: number;
3
+ fileId: string;
4
+ data?: Uint8Array;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,10 @@
1
+ import { SequencerActionInvalidMessage } from './msg_sequencer_action_invalid_message';
2
+ import { SequencerActionMessage } from './msg_sequencer_action_message';
3
+ import { SequencerInitWorkbook } from './msg_sequencer_init_workbook';
4
+ export type SequencerMessage = {
5
+ invalidAction: SequencerActionInvalidMessage;
6
+ } | {
7
+ action: SequencerActionMessage;
8
+ } | {
9
+ join: SequencerInitWorkbook;
10
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ import { Edit } from './msg_edit';
2
+ import { Join } from './msg_join';
3
+ export type UserMessage = {
4
+ join: Join;
5
+ } | {
6
+ edit: Edit;
7
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ export interface NormalCellId {
2
+ row: number;
3
+ col: number;
4
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,7 @@
1
+ import { Color } from './color';
2
+ import { StPatternType } from './st_pattern_type';
3
+ export interface PatternFill {
4
+ fgColor?: Color;
5
+ bgColor?: Color;
6
+ patternType?: StPatternType;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import { EditPayload } from './edit_payload';
2
+ export interface PayloadsAction {
3
+ payloads: readonly EditPayload[];
4
+ undoable: boolean;
5
+ init: boolean;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import { CellId } from './cell_id';
2
+ export interface RecalcCell {
3
+ sheetId: number;
4
+ cellId: CellId;
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ export interface RemoveBlock {
2
+ sheetIdx: number;
3
+ id: number;
4
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface RowInfo {
2
+ idx: number;
3
+ height: number;
4
+ hidden: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface SetColWidth {
2
+ sheetIdx: number;
3
+ col: number;
4
+ width: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface SetRowHeight {
2
+ sheetIdx: number;
3
+ row: number;
4
+ height: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface SetVisible {
2
+ isRow: boolean;
3
+ sheetIdx: number;
4
+ start: number;
5
+ visible: boolean;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ import { BlockInfo } from './block_info';
2
+ export interface SheetBlocks {
3
+ sheetIdx: number;
4
+ blocks: readonly BlockInfo[];
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import { ColInfo } from './col_info';
2
+ export interface SheetColInfo {
3
+ sheetIdx: number;
4
+ info: readonly ColInfo[];
5
+ defaultWidth: number;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import { Comment } from './comment';
2
+ export interface SheetComments {
3
+ sheetIdx: number;
4
+ comments: readonly Comment[];
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface SheetDimension {
2
+ maxRow: number;
3
+ maxCol: number;
4
+ height: number;
5
+ width: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,6 @@
1
+ export interface SheetInfo {
2
+ name: string;
3
+ id: number;
4
+ hidden: boolean;
5
+ tabColor: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ import { MergeCell } from './merge_cell';
2
+ export interface SheetMergeCells {
3
+ sheetIdx: number;
4
+ mergeCells: readonly MergeCell[];
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ export interface SheetNames {
2
+ names: readonly string[];
3
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface SheetRename {
2
+ oldName?: string;
3
+ idx?: number;
4
+ newName: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1,6 @@
1
+ import { RowInfo } from './row_info';
2
+ export interface SheetRowInfo {
3
+ sheetIdx: number;
4
+ info: readonly RowInfo[];
5
+ defaultHeight: number;
6
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import { CellStyle } from './cell_style';
2
+ export interface SheetStyles {
3
+ sheetIdx: number;
4
+ styles: readonly CellStyle[];
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import { CellFormulaValue } from './cell_formula_value';
2
+ export interface SheetValues {
3
+ sheetIdx: number;
4
+ values: readonly CellFormulaValue[];
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface SplitMergedCells {
2
+ sheetIdx: number;
3
+ row: number;
4
+ col: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1 @@
1
+ export type StBorderStyle = 'none' | 'thin' | 'medium' | 'dashed' | 'dotted' | 'thick' | 'double' | 'hair' | 'mediumDashed' | 'dashDot' | 'mediumDashDot' | 'dashDotDot' | 'mediumDashDotDot' | 'slantDashDot';
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};
@@ -0,0 +1 @@
1
+ export type StFontScheme = 'none' | 'major' | 'minor';
@@ -0,0 +1,2 @@
1
+ // DO NOT EDIT. CODE GENERATED BY gents.
2
+ export {};