[PR #2130] [CLOSED] Single list selection menu #2006 #5114

Closed
opened 2026-03-23 22:17:18 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2130
Author: @rizwan3395
Created: 3/28/2023
Status: Closed

Base: mainHead: single_list_selection_menu_2006


📝 Commits (10+)

  • c85c6dc feat: added emoji and network image support
  • d48c3e0 fix: translations added
  • 90dc7cf fix: code cleanup and improvements
  • 650b84a chore: merge with main
  • 9922bf6 chore: merge with main
  • bd166cb Merge branch 'AppFlowy-IO:main' into main
  • 91ce845 Merge branch 'AppFlowy-IO:main' into main
  • 3554fd5 feat: implemented selection menu list styled
  • 396bebf Merge branch 'AppFlowy-IO:main' into single_list_selection_menu_2006
  • 7cc71b1 Merge branch 'AppFlowy-IO:main' into main

📊 Changes

795 files changed (+40758 additions, -5830 deletions)

View changed files

📝 .dockerignore (+4 -1)
.github/PULL_REQUEST_TEMPLATE.md (+0 -27)
.github/workflows/docker_ci.yml (+0 -47)
📝 .github/workflows/flutter_ci.yaml (+2 -3)
📝 .github/workflows/integration_test.yml (+24 -21)
📝 .github/workflows/release.yml (+7 -33)
📝 .github/workflows/rust_ci.yaml (+1 -1)
📝 .github/workflows/rust_coverage.yml (+1 -1)
📝 CHANGELOG.md (+0 -7)
📝 frontend/.vscode/tasks.json (+222 -224)
📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/.gitignore (+2 -2)
📝 frontend/appflowy_flutter/README.md (+6 -10)
📝 frontend/appflowy_flutter/analysis_options.yaml (+5 -2)
📝 frontend/appflowy_flutter/assets/images/home/new_app.svg (+4 -16)
📝 frontend/appflowy_flutter/assets/translations/en.json (+6 -9)
📝 frontend/appflowy_flutter/assets/translations/eu-ES.json (+1 -1)
📝 frontend/appflowy_flutter/assets/translations/fr-FR.json (+1 -1)
📝 frontend/appflowy_flutter/assets/translations/ko-KR.json (+1 -1)
📝 frontend/appflowy_flutter/assets/translations/pt-BR.json (+1 -1)

...and 80 more files

📄 Description

##Description
Implemented single list style selection menu with grouped items and tooltips (with image) on hover.

Type of change

Please delete options that are not relevant.

  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

Tested via inserting / command

Checklist:

  • I have performed a self-review of my own code
  • I have commented on my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published in downstream modules

🔄 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/2130 **Author:** [@rizwan3395](https://github.com/rizwan3395) **Created:** 3/28/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `single_list_selection_menu_2006` --- ### 📝 Commits (10+) - [`c85c6dc`](https://github.com/AppFlowy-IO/AppFlowy/commit/c85c6dcfe8bf0cd2242c5ee755bcc9b4e4205905) feat: added emoji and network image support - [`d48c3e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/d48c3e0734d83f229141f7e34ed0e596a4666dca) fix: translations added - [`90dc7cf`](https://github.com/AppFlowy-IO/AppFlowy/commit/90dc7cf303027fb829a515170d9047195b426e68) fix: code cleanup and improvements - [`650b84a`](https://github.com/AppFlowy-IO/AppFlowy/commit/650b84a801431a9701823e3d9728b8b2864343ca) chore: merge with main - [`9922bf6`](https://github.com/AppFlowy-IO/AppFlowy/commit/9922bf688f84b24338bde1c036c4964c3c3722e3) chore: merge with main - [`bd166cb`](https://github.com/AppFlowy-IO/AppFlowy/commit/bd166cb15fadc45bd83963484c5a745fcc817818) Merge branch 'AppFlowy-IO:main' into main - [`91ce845`](https://github.com/AppFlowy-IO/AppFlowy/commit/91ce8452e77f9fd4aeeb00bb716c0a2a33034e80) Merge branch 'AppFlowy-IO:main' into main - [`3554fd5`](https://github.com/AppFlowy-IO/AppFlowy/commit/3554fd504a492b3cceab8a67d2ca45028566074c) feat: implemented selection menu list styled - [`396bebf`](https://github.com/AppFlowy-IO/AppFlowy/commit/396bebff84e43f2608332ddf87b428912465d909) Merge branch 'AppFlowy-IO:main' into single_list_selection_menu_2006 - [`7cc71b1`](https://github.com/AppFlowy-IO/AppFlowy/commit/7cc71b145a4a08486a12a001efd46078081c01c6) Merge branch 'AppFlowy-IO:main' into main ### 📊 Changes **795 files changed** (+40758 additions, -5830 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+4 -1) ➖ `.github/PULL_REQUEST_TEMPLATE.md` (+0 -27) ➖ `.github/workflows/docker_ci.yml` (+0 -47) 📝 `.github/workflows/flutter_ci.yaml` (+2 -3) 📝 `.github/workflows/integration_test.yml` (+24 -21) 📝 `.github/workflows/release.yml` (+7 -33) 📝 `.github/workflows/rust_ci.yaml` (+1 -1) 📝 `.github/workflows/rust_coverage.yml` (+1 -1) 📝 `CHANGELOG.md` (+0 -7) 📝 `frontend/.vscode/tasks.json` (+222 -224) 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/.gitignore` (+2 -2) 📝 `frontend/appflowy_flutter/README.md` (+6 -10) 📝 `frontend/appflowy_flutter/analysis_options.yaml` (+5 -2) 📝 `frontend/appflowy_flutter/assets/images/home/new_app.svg` (+4 -16) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+6 -9) 📝 `frontend/appflowy_flutter/assets/translations/eu-ES.json` (+1 -1) 📝 `frontend/appflowy_flutter/assets/translations/fr-FR.json` (+1 -1) 📝 `frontend/appflowy_flutter/assets/translations/ko-KR.json` (+1 -1) 📝 `frontend/appflowy_flutter/assets/translations/pt-BR.json` (+1 -1) _...and 80 more files_ </details> ### 📄 Description ##Description Implemented single list style selection menu with grouped items and tooltips (with image) on hover. ## Type of change Please delete options that are not relevant. - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update # How Has This Been Tested? Tested via inserting `/` command # Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:17:18 +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#5114
No description provided.