mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-11 14:53:12 +00:00
* feat: new tree state * fix: emit meta event * fix: semantic tree event * fix: diff calc bring_back * chore: clear comments * fix: merge * fix: tree snapshot * fix: filter empty bring back * feat: tree add external diff * fix: imported changes were not mergeable (#147) * fix: imported changes were not mergeable now the small encoding size is supported in example * fix: stupid err in richtext checkout * fix: rle oplog encode err - support pending changes - start counters were wrong * fix: utf16 query err (#151) * fix: tree movable node lamport * fix: merge * perf: bring back * doc: add deep value meta doc * refactor: bring back only when record diff --------- Co-authored-by: Zixuan Chen <remch183@outlook.com>
13 lines
374 B
Rust
13 lines
374 B
Rust
mod seq;
|
|
pub use seq::{Delta, DeltaItem, DeltaType, DeltaValue, Meta};
|
|
mod map;
|
|
pub use map::{MapDiff, ValuePair};
|
|
mod map_delta;
|
|
pub use map_delta::{MapDelta, MapValue};
|
|
mod text;
|
|
pub use text::{StyleMeta, StyleMetaItem};
|
|
mod tree;
|
|
pub(crate) use tree::TreeValue;
|
|
pub use tree::{
|
|
TreeDelta, TreeDeltaItem, TreeDiff, TreeDiffItem, TreeExternalDiff, TreeInternalDiff,
|
|
};
|