[PR #474] [MERGED] Feature: support more number format #4149

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/474
Author: @appflowy
Created: 5/1/2022
Status: Merged
Merged: 5/2/2022
Merged by: @appflowy

Base: mainHead: feat_number_format


📝 Commits (4)

📊 Changes

16 files changed (+951 additions, -136 deletions)

View changed files

📝 frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart (+4 -1)
frontend/app_flowy/lib/workspace/application/grid/field/type_option/number_format_bloc.dart (+142 -0)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/layout/sizes.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_editor.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/common/text_field.dart (+22 -11)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_editor.dart (+4 -2)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_switcher.dart (+1 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/edit_option_pannel.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/field_option_pannel.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/number.dart (+81 -57)
📝 frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/flowy_overlay.dart (+1 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid/number_type_option.pbenum.dart (+67 -3)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid/number_type_option.pbjson.dart (+35 -3)
📝 frontend/rust-lib/flowy-grid/src/protobuf/model/number_type_option.rs (+117 -8)
📝 frontend/rust-lib/flowy-grid/src/protobuf/proto/number_type_option.proto (+34 -2)
📝 frontend/rust-lib/flowy-grid/src/services/field/type_options/number_type_option.rs (+435 -38)

📄 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/474 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/1/2022 **Status:** ✅ Merged **Merged:** 5/2/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_number_format` --- ### 📝 Commits (4) - [`cf05d7d`](https://github.com/AppFlowy-IO/AppFlowy/commit/cf05d7da414cca394c161664b42e24f03b9c3e67) chore: support more number format - [`f3b899d`](https://github.com/AppFlowy-IO/AppFlowy/commit/f3b899d74264472d468fb5ae63c33ad7facd247c) chore: update currency - [`8d125a0`](https://github.com/AppFlowy-IO/AppFlowy/commit/8d125a07c56950ada2fae00aea60ab19117ab50b) chore: add test - [`1488caa`](https://github.com/AppFlowy-IO/AppFlowy/commit/1488caa97e6ded482dcaecfc47461a5514d807c8) chore: filter out number format ### 📊 Changes **16 files changed** (+951 additions, -136 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/selection_editor_bloc.dart` (+4 -1) ➕ `frontend/app_flowy/lib/workspace/application/grid/field/type_option/number_format_bloc.dart` (+142 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/layout/sizes.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/selection_cell/selection_editor.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/common/text_field.dart` (+22 -11) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_editor.dart` (+4 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/field_switcher.dart` (+1 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/edit_option_pannel.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/field_option_pannel.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/header/type_option/number.dart` (+81 -57) 📝 `frontend/app_flowy/packages/flowy_infra_ui/lib/src/flowy_overlay/flowy_overlay.dart` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid/number_type_option.pbenum.dart` (+67 -3) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-grid/number_type_option.pbjson.dart` (+35 -3) 📝 `frontend/rust-lib/flowy-grid/src/protobuf/model/number_type_option.rs` (+117 -8) 📝 `frontend/rust-lib/flowy-grid/src/protobuf/proto/number_type_option.proto` (+34 -2) 📝 `frontend/rust-lib/flowy-grid/src/services/field/type_options/number_type_option.rs` (+435 -38) </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:36:31 +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#4149
No description provided.