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

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 (26) hide show
  1. package/README.md +5 -9
  2. package/android/src/main/java/com/apollohg/editor/EditorTheme.kt +23 -0
  3. package/android/src/main/java/com/apollohg/editor/ImageResizeOverlayView.kt +2 -2
  4. package/android/src/main/java/com/apollohg/editor/NativeBlockEditorSurface.kt +476 -53
  5. package/android/src/main/java/com/apollohg/editor/NativeEditorExpoView.kt +110 -169
  6. package/android/src/main/java/com/apollohg/editor/NativeEditorModule.kt +1 -1
  7. package/android/src/main/java/com/apollohg/editor/RichTextEditorView.kt +124 -337
  8. package/dist/EditorTheme.d.ts +8 -0
  9. package/ios/EditorCore.xcframework/ios-arm64/libeditor_core.a +0 -0
  10. package/ios/EditorCore.xcframework/ios-arm64_x86_64-simulator/libeditor_core.a +0 -0
  11. package/ios/Generated_editor_core.swift +15 -0
  12. package/ios/NativeBlockEditorSurface.swift +371 -60
  13. package/ios/NativeEditorExpoView.swift +114 -117
  14. package/ios/NativeInputSupport.swift +0 -302
  15. package/ios/PositionBridge.swift +22 -548
  16. package/ios/RichTextEditorView.swift +217 -4671
  17. package/ios/editor_coreFFI/editor_coreFFI.h +11 -0
  18. package/package.json +1 -1
  19. package/rust/android/arm64-v8a/libeditor_core.so +0 -0
  20. package/rust/android/armeabi-v7a/libeditor_core.so +0 -0
  21. package/rust/android/x86_64/libeditor_core.so +0 -0
  22. package/rust/bindings/kotlin/uniffi/editor_core/editor_core.kt +31 -0
  23. package/android/src/main/java/com/apollohg/editor/CaretGeometry.kt +0 -50
  24. package/android/src/main/java/com/apollohg/editor/EditorEditText.kt +0 -4068
  25. package/android/src/main/java/com/apollohg/editor/EditorInputConnection.kt +0 -1009
  26. package/android/src/main/java/com/apollohg/editor/InputSnapshotSupport.kt +0 -6
@@ -1,6 +0,0 @@
1
- package com.openeditor.editor
2
-
3
- internal object InputSnapshotConstants {
4
- const val SYNTHETIC_PLACEHOLDER_CHARACTER = "\u200B"
5
- const val UNORDERED_LIST_BULLET = "\u2022 "
6
- }