[PR #1269] [MERGED] Refactor/cell data parser documentation #4637

Closed
opened 2026-03-23 21:38:41 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1269
Author: @appflowy
Created: 10/12/2022
Status: Merged
Merged: 10/13/2022
Merged by: @appflowy

Base: mainHead: refactor/cell_data_parser_documentation


📝 Commits (2)

📊 Changes

30 files changed (+198 additions, -138 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/card/board_select_option_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_cell_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_editor_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/edit_select_option_bloc.dart (+9 -5)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/multi_select_type_option.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/select_option_type_option_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/single_select_type_option.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_service.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/extension.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_editor.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/text_field.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option_editor.dart (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/event_handler.rs (+6 -6)
📝 frontend/rust-lib/flowy-grid/src/services/cell/cell_operation.rs (+57 -16)
📝 frontend/rust-lib/flowy-grid/src/services/field/type_option_builder.rs (+3 -0)
📝 frontend/rust-lib/flowy-grid/src/services/field/type_options/checkbox_type_option/checkbox_type_option.rs (+3 -3)

...and 10 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/1269 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/12/2022 **Status:** ✅ Merged **Merged:** 10/13/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `refactor/cell_data_parser_documentation` --- ### 📝 Commits (2) - [`a0d0a13`](https://github.com/AppFlowy-IO/AppFlowy/commit/a0d0a130308ef71dc7d41dc2abd9216be8e57450) chore: add documentation - [`3a76601`](https://github.com/AppFlowy-IO/AppFlowy/commit/3a7660108c6007498ac297559cfee6822e0af4a1) chore: add documentation ### 📊 Changes **30 files changed** (+198 additions, -138 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/card/board_select_option_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/cell_service/cell_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_cell_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_editor_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/cell/select_option_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/edit_select_option_bloc.dart` (+9 -5) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/multi_select_type_option.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/select_option_type_option_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/single_select_type_option.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/type_option/type_option_service.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/extension.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_editor.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/text_field.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option_editor.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/event_handler.rs` (+6 -6) 📝 `frontend/rust-lib/flowy-grid/src/services/cell/cell_operation.rs` (+57 -16) 📝 `frontend/rust-lib/flowy-grid/src/services/field/type_option_builder.rs` (+3 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/field/type_options/checkbox_type_option/checkbox_type_option.rs` (+3 -3) _...and 10 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:38:41 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4637
No description provided.