mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-12 19:46:12 +00:00

* feat: add flowy-database2 * chore: config type option data * chore: impl type option * feat: config group * fix: group compile * feat: add sort * chore: setting * chore: insert with specific type * chore: custom group * chore: rename any map * chore: use group setting * chore: update * chore: open database event * chore: update database editor * chore: update * chore: update view editor * chore: update * chore: update view editor * chore: sort feat * chore: update handler * chore: update * chore: config handler event * feat: impl handlers * feat: impl handlers * chore: layout setting * feat: impl handlers * chore: remove flowy-folder ref * chore: integrate flowy-database2 * feat: get cell * chore: create database with data * chore: create view * chore: fix dart compile * fix: some bugs * chore: update * chore: merge develop * chore: fix warning * chore: integrate rocksdb * fix: rocksdb compile errros * fix: update cell * chore: update the bundle identifier * fix: create row * fix: switch to field * fix: duplicate grid * test: migrate tests * test: migrate tests * test: update test * test: migrate tests * chore: add patch
20 lines
528 B
Rust
20 lines
528 B
Rust
mod board_mock_data;
|
|
mod calendar_mock_data;
|
|
mod grid_mock_data;
|
|
|
|
pub use board_mock_data::*;
|
|
pub use calendar_mock_data::*;
|
|
pub use grid_mock_data::*;
|
|
|
|
pub const GOOGLE: &str = "Google";
|
|
pub const FACEBOOK: &str = "Facebook";
|
|
pub const TWITTER: &str = "Twitter";
|
|
|
|
pub const COMPLETED: &str = "Completed";
|
|
pub const PLANNED: &str = "Planned";
|
|
pub const PAUSED: &str = "Paused";
|
|
|
|
pub const FIRST_THING: &str = "Wake up at 6:00 am";
|
|
pub const SECOND_THING: &str = "Get some coffee";
|
|
pub const THIRD_THING: &str = "Start working";
|