@openeditor/react-native-prose-editor 0.0.7 → 0.0.9

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 (68) hide show
  1. package/android/build.gradle +35 -0
  2. package/android/src/main/java/com/apollohg/editor/CaretGeometry.kt +2 -2
  3. package/android/src/main/java/com/apollohg/editor/EditorEditText.kt +138 -597
  4. package/android/src/main/java/com/apollohg/editor/EditorInputConnection.kt +13 -3
  5. package/android/src/main/java/com/apollohg/editor/InputSnapshotSupport.kt +6 -0
  6. package/android/src/main/java/com/apollohg/editor/NativeBlockEditorSurface.kt +1086 -0
  7. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoView.kt +1 -1
  8. package/android/src/main/java/com/apollohg/editor/NativeEditorModule.kt +26 -50
  9. package/android/src/main/java/com/apollohg/editor/NativeImageLoader.kt +89 -0
  10. package/android/src/main/java/com/apollohg/editor/RemoteSelectionOverlayView.kt +31 -66
  11. package/android/src/main/java/com/apollohg/editor/RichTextEditorView.kt +98 -33
  12. package/dist/EditorToolbar.d.ts +1 -1
  13. package/dist/EditorToolbar.js +19 -0
  14. package/dist/NativeEditorBridge.d.ts +62 -35
  15. package/dist/NativeEditorBridge.js +122 -79
  16. package/dist/NativeProseViewer.d.ts +13 -34
  17. package/dist/NativeProseViewer.js +40 -465
  18. package/dist/NativeRichTextEditor.d.ts +10 -1
  19. package/dist/NativeRichTextEditor.js +72 -34
  20. package/dist/index.d.ts +2 -2
  21. package/dist/index.js +2 -1
  22. package/dist/schemas.d.ts +11 -0
  23. package/dist/schemas.js +149 -0
  24. package/dist/useNativeEditor.d.ts +3 -3
  25. package/dist/useNativeEditor.js +3 -3
  26. package/ios/EditorCore.xcframework/ios-arm64/libeditor_core.a +0 -0
  27. package/ios/EditorCore.xcframework/ios-arm64_x86_64-simulator/libeditor_core.a +0 -0
  28. package/ios/Generated_editor_core.swift +97 -2
  29. package/ios/NativeBlockEditorSurface.swift +1445 -0
  30. package/ios/NativeEditorExpoView.swift +3 -3
  31. package/ios/NativeEditorModule.swift +31 -46
  32. package/ios/NativeInputSupport.swift +396 -0
  33. package/ios/PositionBridge.swift +4 -4
  34. package/ios/RichTextEditorView.swift +352 -786
  35. package/ios/editor_coreFFI/editor_coreFFI.h +147 -70
  36. package/package.json +1 -1
  37. package/rust/android/arm64-v8a/libeditor_core.so +0 -0
  38. package/rust/android/armeabi-v7a/libeditor_core.so +0 -0
  39. package/rust/android/x86_64/libeditor_core.so +0 -0
  40. package/rust/bindings/kotlin/uniffi/editor_core/editor_core.kt +2087 -1399
  41. package/android/src/androidTest/AndroidManifest.xml +0 -8
  42. package/android/src/androidTest/java/com/apollohg/editor/MeasureHeightInstrumentedTest.kt +0 -53
  43. package/android/src/androidTest/java/com/apollohg/editor/NativeDeviceCollaborationInitialSyncTest.kt +0 -241
  44. package/android/src/androidTest/java/com/apollohg/editor/NativeDeviceImeRegressionTest.kt +0 -338
  45. package/android/src/androidTest/java/com/apollohg/editor/NativeDeviceOutsideTapTest.kt +0 -789
  46. package/android/src/androidTest/java/com/apollohg/editor/NativeDevicePerformanceTest.kt +0 -350
  47. package/android/src/androidTest/java/com/apollohg/editor/NativeEditorOutsideTapActivity.kt +0 -5
  48. package/android/src/main/java/com/apollohg/editor/NativeProseViewerExpoView.kt +0 -315
  49. package/android/src/main/java/com/apollohg/editor/RenderBridge.kt +0 -2172
  50. package/android/src/sharedTest/java/com/apollohg/editor/NativePerformanceSupport.kt +0 -482
  51. package/android/src/test/java/com/apollohg/editor/CaretGeometryTest.kt +0 -137
  52. package/android/src/test/java/com/apollohg/editor/EditorEditTextHardwareKeyTest.kt +0 -321
  53. package/android/src/test/java/com/apollohg/editor/EditorInputConnectionTest.kt +0 -4202
  54. package/android/src/test/java/com/apollohg/editor/NativeEditorExpoViewTest.kt +0 -2581
  55. package/android/src/test/java/com/apollohg/editor/NativeEditorModuleTest.kt +0 -27
  56. package/android/src/test/java/com/apollohg/editor/NativePerformanceTest.kt +0 -197
  57. package/android/src/test/java/com/apollohg/editor/NativeProseViewerExpoViewTest.kt +0 -84
  58. package/android/src/test/java/com/apollohg/editor/NativeToolbarTest.kt +0 -544
  59. package/android/src/test/java/com/apollohg/editor/PositionBridgeTest.kt +0 -461
  60. package/android/src/test/java/com/apollohg/editor/RenderBridgeTest.kt +0 -2054
  61. package/android/src/test/java/com/apollohg/editor/RichTextEditorViewTest.kt +0 -1367
  62. package/ios/EditorLayoutManager.swift +0 -774
  63. package/ios/NativeProseViewerExpoView.swift +0 -276
  64. package/ios/RenderBridge.swift +0 -1708
  65. package/ios/Tests/NativePerformanceTests.swift +0 -687
  66. package/ios/Tests/PositionBridgeTests.swift +0 -706
  67. package/ios/Tests/RenderBridgeTests.swift +0 -2236
  68. package/ios/Tests/RichTextEditorViewTests.swift +0 -6548
@@ -324,7 +324,7 @@ int8_t uniffi_editor_core_fn_func_editor_can_undo(uint64_t id, RustCallStatus *_
324
324
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
325
325
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CORE_VERSION
326
326
  RustBuffer uniffi_editor_core_fn_func_editor_core_version(RustCallStatus *_Nonnull out_status
327
-
327
+
328
328
  );
329
329
  #endif
330
330
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_CREATE
@@ -352,6 +352,16 @@ RustBuffer uniffi_editor_core_fn_func_editor_delete_range(uint64_t id, uint32_t
352
352
  RustBuffer uniffi_editor_core_fn_func_editor_delete_scalar_range(uint64_t id, uint32_t scalar_from, uint32_t scalar_to, RustCallStatus *_Nonnull out_status
353
353
  );
354
354
  #endif
355
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_TABLE_COLUMN
356
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_TABLE_COLUMN
357
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_table_column(uint64_t id, RustCallStatus *_Nonnull out_status
358
+ );
359
+ #endif
360
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_TABLE_ROW
361
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DELETE_TABLE_ROW
362
+ RustBuffer uniffi_editor_core_fn_func_editor_delete_table_row(uint64_t id, RustCallStatus *_Nonnull out_status
363
+ );
364
+ #endif
355
365
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DESTROY
356
366
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_DESTROY
357
367
  void uniffi_editor_core_fn_func_editor_destroy(uint64_t id, RustCallStatus *_Nonnull out_status
@@ -427,6 +437,16 @@ RustBuffer uniffi_editor_core_fn_func_editor_insert_node(uint64_t id, RustBuffer
427
437
  RustBuffer uniffi_editor_core_fn_func_editor_insert_node_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer node_type, RustCallStatus *_Nonnull out_status
428
438
  );
429
439
  #endif
440
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TABLE_COLUMN
441
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TABLE_COLUMN
442
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_table_column(uint64_t id, int8_t after, RustCallStatus *_Nonnull out_status
443
+ );
444
+ #endif
445
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TABLE_ROW
446
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TABLE_ROW
447
+ RustBuffer uniffi_editor_core_fn_func_editor_insert_table_row(uint64_t id, int8_t after, RustCallStatus *_Nonnull out_status
448
+ );
449
+ #endif
430
450
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT
431
451
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_INSERT_TEXT
432
452
  RustBuffer uniffi_editor_core_fn_func_editor_insert_text(uint64_t id, uint32_t pos, RustBuffer text, RustCallStatus *_Nonnull out_status
@@ -437,6 +457,11 @@ RustBuffer uniffi_editor_core_fn_func_editor_insert_text(uint64_t id, uint32_t p
437
457
  RustBuffer uniffi_editor_core_fn_func_editor_insert_text_scalar(uint64_t id, uint32_t scalar_pos, RustBuffer text, RustCallStatus *_Nonnull out_status
438
458
  );
439
459
  #endif
460
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_MOVE_TABLE_CELL
461
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_MOVE_TABLE_CELL
462
+ RustBuffer uniffi_editor_core_fn_func_editor_move_table_cell(uint64_t id, int8_t forward, RustCallStatus *_Nonnull out_status
463
+ );
464
+ #endif
440
465
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM
441
466
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_OUTDENT_LIST_ITEM
442
467
  RustBuffer uniffi_editor_core_fn_func_editor_outdent_list_item(uint64_t id, RustCallStatus *_Nonnull out_status
@@ -482,6 +507,11 @@ RustBuffer uniffi_editor_core_fn_func_editor_resize_image_at_doc_pos(uint64_t id
482
507
  uint32_t uniffi_editor_core_fn_func_editor_scalar_to_doc(uint64_t id, uint32_t scalar, RustCallStatus *_Nonnull out_status
483
508
  );
484
509
  #endif
510
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_CELL_SELECTION
511
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_CELL_SELECTION
512
+ void uniffi_editor_core_fn_func_editor_set_cell_selection(uint64_t id, uint32_t anchor, uint32_t head, RustCallStatus *_Nonnull out_status
513
+ );
514
+ #endif
485
515
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_HTML
486
516
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_HTML
487
517
  RustBuffer uniffi_editor_core_fn_func_editor_set_html(uint64_t id, RustBuffer html, RustCallStatus *_Nonnull out_status
@@ -502,6 +532,11 @@ RustBuffer uniffi_editor_core_fn_func_editor_set_mark(uint64_t id, RustBuffer ma
502
532
  RustBuffer uniffi_editor_core_fn_func_editor_set_mark_at_selection_scalar(uint64_t id, uint32_t scalar_anchor, uint32_t scalar_head, RustBuffer mark_name, RustBuffer attrs_json, RustCallStatus *_Nonnull out_status
503
533
  );
504
534
  #endif
535
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_NODE_SELECTION
536
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_NODE_SELECTION
537
+ void uniffi_editor_core_fn_func_editor_set_node_selection(uint64_t id, uint32_t pos, RustCallStatus *_Nonnull out_status
538
+ );
539
+ #endif
505
540
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION
506
541
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_FN_FUNC_EDITOR_SET_SELECTION
507
542
  void uniffi_editor_core_fn_func_editor_set_selection(uint64_t id, uint32_t anchor, uint32_t head, RustCallStatus *_Nonnull out_status
@@ -875,415 +910,457 @@ void ffi_editor_core_rust_future_complete_void(uint64_t handle, RustCallStatus *
875
910
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_ENCODED_STATE
876
911
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_ENCODED_STATE
877
912
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_apply_encoded_state(void
878
-
913
+
879
914
  );
880
915
  #endif
881
916
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_LOCAL_DOCUMENT_JSON
882
917
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_APPLY_LOCAL_DOCUMENT_JSON
883
918
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_apply_local_document_json(void
884
-
919
+
885
920
  );
886
921
  #endif
887
922
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CLEAR_LOCAL_AWARENESS
888
923
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CLEAR_LOCAL_AWARENESS
889
924
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_clear_local_awareness(void
890
-
925
+
891
926
  );
892
927
  #endif
893
928
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CREATE
894
929
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_CREATE
895
930
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_create(void
896
-
931
+
897
932
  );
898
933
  #endif
899
934
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_DESTROY
900
935
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_DESTROY
901
936
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_destroy(void
902
-
937
+
903
938
  );
904
939
  #endif
905
940
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_DOCUMENT_JSON
906
941
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_DOCUMENT_JSON
907
942
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_get_document_json(void
908
-
943
+
909
944
  );
910
945
  #endif
911
946
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_ENCODED_STATE
912
947
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_ENCODED_STATE
913
948
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_get_encoded_state(void
914
-
949
+
915
950
  );
916
951
  #endif
917
952
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_PEERS_JSON
918
953
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_GET_PEERS_JSON
919
954
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_get_peers_json(void
920
-
955
+
921
956
  );
922
957
  #endif
923
958
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_HANDLE_MESSAGE
924
959
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_HANDLE_MESSAGE
925
960
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_handle_message(void
926
-
961
+
927
962
  );
928
963
  #endif
929
964
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_REPLACE_ENCODED_STATE
930
965
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_REPLACE_ENCODED_STATE
931
966
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_replace_encoded_state(void
932
-
967
+
933
968
  );
934
969
  #endif
935
970
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_SET_LOCAL_AWARENESS
936
971
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_SET_LOCAL_AWARENESS
937
972
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_set_local_awareness(void
938
-
973
+
939
974
  );
940
975
  #endif
941
976
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_START
942
977
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_COLLABORATION_SESSION_START
943
978
  uint16_t uniffi_editor_core_checksum_func_collaboration_session_start(void
944
-
979
+
945
980
  );
946
981
  #endif
947
982
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_REDO
948
983
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_REDO
949
984
  uint16_t uniffi_editor_core_checksum_func_editor_can_redo(void
950
-
985
+
951
986
  );
952
987
  #endif
953
988
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_UNDO
954
989
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CAN_UNDO
955
990
  uint16_t uniffi_editor_core_checksum_func_editor_can_undo(void
956
-
991
+
957
992
  );
958
993
  #endif
959
994
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
960
995
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CORE_VERSION
961
996
  uint16_t uniffi_editor_core_checksum_func_editor_core_version(void
962
-
997
+
963
998
  );
964
999
  #endif
965
1000
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CREATE
966
1001
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_CREATE
967
1002
  uint16_t uniffi_editor_core_checksum_func_editor_create(void
968
-
1003
+
969
1004
  );
970
1005
  #endif
971
1006
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
972
1007
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_AND_SPLIT_SCALAR
973
1008
  uint16_t uniffi_editor_core_checksum_func_editor_delete_and_split_scalar(void
974
-
1009
+
975
1010
  );
976
1011
  #endif
977
1012
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_BACKWARD_AT_SELECTION_SCALAR
978
1013
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_BACKWARD_AT_SELECTION_SCALAR
979
1014
  uint16_t uniffi_editor_core_checksum_func_editor_delete_backward_at_selection_scalar(void
980
-
1015
+
981
1016
  );
982
1017
  #endif
983
1018
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_RANGE
984
1019
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_RANGE
985
1020
  uint16_t uniffi_editor_core_checksum_func_editor_delete_range(void
986
-
1021
+
987
1022
  );
988
1023
  #endif
989
1024
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_SCALAR_RANGE
990
1025
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_SCALAR_RANGE
991
1026
  uint16_t uniffi_editor_core_checksum_func_editor_delete_scalar_range(void
992
-
1027
+
1028
+ );
1029
+ #endif
1030
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_TABLE_COLUMN
1031
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_TABLE_COLUMN
1032
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_table_column(void
1033
+
1034
+ );
1035
+ #endif
1036
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_TABLE_ROW
1037
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DELETE_TABLE_ROW
1038
+ uint16_t uniffi_editor_core_checksum_func_editor_delete_table_row(void
1039
+
993
1040
  );
994
1041
  #endif
995
1042
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DESTROY
996
1043
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DESTROY
997
1044
  uint16_t uniffi_editor_core_checksum_func_editor_destroy(void
998
-
1045
+
999
1046
  );
1000
1047
  #endif
1001
1048
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DOC_TO_SCALAR
1002
1049
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_DOC_TO_SCALAR
1003
1050
  uint16_t uniffi_editor_core_checksum_func_editor_doc_to_scalar(void
1004
-
1051
+
1005
1052
  );
1006
1053
  #endif
1007
1054
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CONTENT_SNAPSHOT
1008
1055
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CONTENT_SNAPSHOT
1009
1056
  uint16_t uniffi_editor_core_checksum_func_editor_get_content_snapshot(void
1010
-
1057
+
1011
1058
  );
1012
1059
  #endif
1013
1060
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CURRENT_STATE
1014
1061
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_CURRENT_STATE
1015
1062
  uint16_t uniffi_editor_core_checksum_func_editor_get_current_state(void
1016
-
1063
+
1017
1064
  );
1018
1065
  #endif
1019
1066
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_HTML
1020
1067
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_HTML
1021
1068
  uint16_t uniffi_editor_core_checksum_func_editor_get_html(void
1022
-
1069
+
1023
1070
  );
1024
1071
  #endif
1025
1072
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_JSON
1026
1073
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_JSON
1027
1074
  uint16_t uniffi_editor_core_checksum_func_editor_get_json(void
1028
-
1075
+
1029
1076
  );
1030
1077
  #endif
1031
1078
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION
1032
1079
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION
1033
1080
  uint16_t uniffi_editor_core_checksum_func_editor_get_selection(void
1034
-
1081
+
1035
1082
  );
1036
1083
  #endif
1037
1084
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION_STATE
1038
1085
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_GET_SELECTION_STATE
1039
1086
  uint16_t uniffi_editor_core_checksum_func_editor_get_selection_state(void
1040
-
1087
+
1041
1088
  );
1042
1089
  #endif
1043
1090
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM
1044
1091
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM
1045
1092
  uint16_t uniffi_editor_core_checksum_func_editor_indent_list_item(void
1046
-
1093
+
1047
1094
  );
1048
1095
  #endif
1049
1096
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
1050
1097
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INDENT_LIST_ITEM_AT_SELECTION_SCALAR
1051
1098
  uint16_t uniffi_editor_core_checksum_func_editor_indent_list_item_at_selection_scalar(void
1052
-
1099
+
1053
1100
  );
1054
1101
  #endif
1055
1102
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_HTML
1056
1103
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_HTML
1057
1104
  uint16_t uniffi_editor_core_checksum_func_editor_insert_content_html(void
1058
-
1105
+
1059
1106
  );
1060
1107
  #endif
1061
1108
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON
1062
1109
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON
1063
1110
  uint16_t uniffi_editor_core_checksum_func_editor_insert_content_json(void
1064
-
1111
+
1065
1112
  );
1066
1113
  #endif
1067
1114
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
1068
1115
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_CONTENT_JSON_AT_SELECTION_SCALAR
1069
1116
  uint16_t uniffi_editor_core_checksum_func_editor_insert_content_json_at_selection_scalar(void
1070
-
1117
+
1071
1118
  );
1072
1119
  #endif
1073
1120
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE
1074
1121
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE
1075
1122
  uint16_t uniffi_editor_core_checksum_func_editor_insert_node(void
1076
-
1123
+
1077
1124
  );
1078
1125
  #endif
1079
1126
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
1080
1127
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_NODE_AT_SELECTION_SCALAR
1081
1128
  uint16_t uniffi_editor_core_checksum_func_editor_insert_node_at_selection_scalar(void
1082
-
1129
+
1130
+ );
1131
+ #endif
1132
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TABLE_COLUMN
1133
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TABLE_COLUMN
1134
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_table_column(void
1135
+
1136
+ );
1137
+ #endif
1138
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TABLE_ROW
1139
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TABLE_ROW
1140
+ uint16_t uniffi_editor_core_checksum_func_editor_insert_table_row(void
1141
+
1083
1142
  );
1084
1143
  #endif
1085
1144
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT
1086
1145
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT
1087
1146
  uint16_t uniffi_editor_core_checksum_func_editor_insert_text(void
1088
-
1147
+
1089
1148
  );
1090
1149
  #endif
1091
1150
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT_SCALAR
1092
1151
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_INSERT_TEXT_SCALAR
1093
1152
  uint16_t uniffi_editor_core_checksum_func_editor_insert_text_scalar(void
1094
-
1153
+
1154
+ );
1155
+ #endif
1156
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_MOVE_TABLE_CELL
1157
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_MOVE_TABLE_CELL
1158
+ uint16_t uniffi_editor_core_checksum_func_editor_move_table_cell(void
1159
+
1095
1160
  );
1096
1161
  #endif
1097
1162
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM
1098
1163
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM
1099
1164
  uint16_t uniffi_editor_core_checksum_func_editor_outdent_list_item(void
1100
-
1165
+
1101
1166
  );
1102
1167
  #endif
1103
1168
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
1104
1169
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_OUTDENT_LIST_ITEM_AT_SELECTION_SCALAR
1105
1170
  uint16_t uniffi_editor_core_checksum_func_editor_outdent_list_item_at_selection_scalar(void
1106
-
1171
+
1107
1172
  );
1108
1173
  #endif
1109
1174
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REDO
1110
1175
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REDO
1111
1176
  uint16_t uniffi_editor_core_checksum_func_editor_redo(void
1112
-
1177
+
1113
1178
  );
1114
1179
  #endif
1115
1180
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_HTML
1116
1181
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_HTML
1117
1182
  uint16_t uniffi_editor_core_checksum_func_editor_replace_html(void
1118
-
1183
+
1119
1184
  );
1120
1185
  #endif
1121
1186
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_JSON
1122
1187
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_JSON
1123
1188
  uint16_t uniffi_editor_core_checksum_func_editor_replace_json(void
1124
-
1189
+
1125
1190
  );
1126
1191
  #endif
1127
1192
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_SELECTION_TEXT
1128
1193
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_SELECTION_TEXT
1129
1194
  uint16_t uniffi_editor_core_checksum_func_editor_replace_selection_text(void
1130
-
1195
+
1131
1196
  );
1132
1197
  #endif
1133
1198
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_TEXT_SCALAR
1134
1199
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_REPLACE_TEXT_SCALAR
1135
1200
  uint16_t uniffi_editor_core_checksum_func_editor_replace_text_scalar(void
1136
-
1201
+
1137
1202
  );
1138
1203
  #endif
1139
1204
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_RESIZE_IMAGE_AT_DOC_POS
1140
1205
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_RESIZE_IMAGE_AT_DOC_POS
1141
1206
  uint16_t uniffi_editor_core_checksum_func_editor_resize_image_at_doc_pos(void
1142
-
1207
+
1143
1208
  );
1144
1209
  #endif
1145
1210
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SCALAR_TO_DOC
1146
1211
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SCALAR_TO_DOC
1147
1212
  uint16_t uniffi_editor_core_checksum_func_editor_scalar_to_doc(void
1148
-
1213
+
1214
+ );
1215
+ #endif
1216
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_CELL_SELECTION
1217
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_CELL_SELECTION
1218
+ uint16_t uniffi_editor_core_checksum_func_editor_set_cell_selection(void
1219
+
1149
1220
  );
1150
1221
  #endif
1151
1222
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_HTML
1152
1223
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_HTML
1153
1224
  uint16_t uniffi_editor_core_checksum_func_editor_set_html(void
1154
-
1225
+
1155
1226
  );
1156
1227
  #endif
1157
1228
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_JSON
1158
1229
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_JSON
1159
1230
  uint16_t uniffi_editor_core_checksum_func_editor_set_json(void
1160
-
1231
+
1161
1232
  );
1162
1233
  #endif
1163
1234
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK
1164
1235
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK
1165
1236
  uint16_t uniffi_editor_core_checksum_func_editor_set_mark(void
1166
-
1237
+
1167
1238
  );
1168
1239
  #endif
1169
1240
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK_AT_SELECTION_SCALAR
1170
1241
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_MARK_AT_SELECTION_SCALAR
1171
1242
  uint16_t uniffi_editor_core_checksum_func_editor_set_mark_at_selection_scalar(void
1172
-
1243
+
1244
+ );
1245
+ #endif
1246
+ #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_NODE_SELECTION
1247
+ #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_NODE_SELECTION
1248
+ uint16_t uniffi_editor_core_checksum_func_editor_set_node_selection(void
1249
+
1173
1250
  );
1174
1251
  #endif
1175
1252
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION
1176
1253
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION
1177
1254
  uint16_t uniffi_editor_core_checksum_func_editor_set_selection(void
1178
-
1255
+
1179
1256
  );
1180
1257
  #endif
1181
1258
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION_SCALAR
1182
1259
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SET_SELECTION_SCALAR
1183
1260
  uint16_t uniffi_editor_core_checksum_func_editor_set_selection_scalar(void
1184
-
1261
+
1185
1262
  );
1186
1263
  #endif
1187
1264
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK
1188
1265
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK
1189
1266
  uint16_t uniffi_editor_core_checksum_func_editor_split_block(void
1190
-
1267
+
1191
1268
  );
1192
1269
  #endif
1193
1270
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
1194
1271
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_SPLIT_BLOCK_SCALAR
1195
1272
  uint16_t uniffi_editor_core_checksum_func_editor_split_block_scalar(void
1196
-
1273
+
1197
1274
  );
1198
1275
  #endif
1199
1276
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE
1200
1277
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE
1201
1278
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_blockquote(void
1202
-
1279
+
1203
1280
  );
1204
1281
  #endif
1205
1282
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE_AT_SELECTION_SCALAR
1206
1283
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_BLOCKQUOTE_AT_SELECTION_SCALAR
1207
1284
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_blockquote_at_selection_scalar(void
1208
-
1285
+
1209
1286
  );
1210
1287
  #endif
1211
1288
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING
1212
1289
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING
1213
1290
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_heading(void
1214
-
1291
+
1215
1292
  );
1216
1293
  #endif
1217
1294
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING_AT_SELECTION_SCALAR
1218
1295
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_HEADING_AT_SELECTION_SCALAR
1219
1296
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_heading_at_selection_scalar(void
1220
-
1297
+
1221
1298
  );
1222
1299
  #endif
1223
1300
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK
1224
1301
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK
1225
1302
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_mark(void
1226
-
1303
+
1227
1304
  );
1228
1305
  #endif
1229
1306
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
1230
1307
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_MARK_AT_SELECTION_SCALAR
1231
1308
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_mark_at_selection_scalar(void
1232
-
1309
+
1233
1310
  );
1234
1311
  #endif
1235
1312
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_TASK_ITEM_CHECKED_AT_SELECTION_SCALAR
1236
1313
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_TOGGLE_TASK_ITEM_CHECKED_AT_SELECTION_SCALAR
1237
1314
  uint16_t uniffi_editor_core_checksum_func_editor_toggle_task_item_checked_at_selection_scalar(void
1238
-
1315
+
1239
1316
  );
1240
1317
  #endif
1241
1318
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNDO
1242
1319
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNDO
1243
1320
  uint16_t uniffi_editor_core_checksum_func_editor_undo(void
1244
-
1321
+
1245
1322
  );
1246
1323
  #endif
1247
1324
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK
1248
1325
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK
1249
1326
  uint16_t uniffi_editor_core_checksum_func_editor_unset_mark(void
1250
-
1327
+
1251
1328
  );
1252
1329
  #endif
1253
1330
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK_AT_SELECTION_SCALAR
1254
1331
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNSET_MARK_AT_SELECTION_SCALAR
1255
1332
  uint16_t uniffi_editor_core_checksum_func_editor_unset_mark_at_selection_scalar(void
1256
-
1333
+
1257
1334
  );
1258
1335
  #endif
1259
1336
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST
1260
1337
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST
1261
1338
  uint16_t uniffi_editor_core_checksum_func_editor_unwrap_from_list(void
1262
-
1339
+
1263
1340
  );
1264
1341
  #endif
1265
1342
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
1266
1343
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_UNWRAP_FROM_LIST_AT_SELECTION_SCALAR
1267
1344
  uint16_t uniffi_editor_core_checksum_func_editor_unwrap_from_list_at_selection_scalar(void
1268
-
1345
+
1269
1346
  );
1270
1347
  #endif
1271
1348
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST
1272
1349
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST
1273
1350
  uint16_t uniffi_editor_core_checksum_func_editor_wrap_in_list(void
1274
-
1351
+
1275
1352
  );
1276
1353
  #endif
1277
1354
  #ifndef UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
1278
1355
  #define UNIFFI_FFIDEF_UNIFFI_EDITOR_CORE_CHECKSUM_FUNC_EDITOR_WRAP_IN_LIST_AT_SELECTION_SCALAR
1279
1356
  uint16_t uniffi_editor_core_checksum_func_editor_wrap_in_list_at_selection_scalar(void
1280
-
1357
+
1281
1358
  );
1282
1359
  #endif
1283
1360
  #ifndef UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1284
1361
  #define UNIFFI_FFIDEF_FFI_EDITOR_CORE_UNIFFI_CONTRACT_VERSION
1285
1362
  uint32_t ffi_editor_core_uniffi_contract_version(void
1286
-
1363
+
1287
1364
  );
1288
1365
  #endif
1289
1366
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openeditor/react-native-prose-editor",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "OpenEditor-owned native rich text editor engine for React Native",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/EasyLink-HQ/openeditor",