[PR #3292] [CLOSED] Improved Tags #62766

Closed
opened 2026-05-11 19:55:47 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/3292
Author: @lelemm
Created: 8/20/2024
Status: Closed

Base: masterHead: Tags


📝 Commits (5)

  • 6e0d705 proof of concept of wysiwyg for input tags
  • 556a7eb Merge branch 'actualbudget:master' into Tags
  • 940f396 Merge branch 'org/master' into Tags
  • 158a77f more features
  • 78b7a49 arrow selection

📊 Changes

34 files changed (+1345 additions, -47 deletions)

View changed files

📝 package.json (+6 -1)
📝 packages/desktop-client/package.json (+4 -0)
packages/desktop-client/src/components/autocomplete/TagAutocomplete.tsx (+117 -0)
📝 packages/desktop-client/src/components/common/Input.tsx (+1 -1)
📝 packages/desktop-client/src/components/common/InputWithContent.tsx (+5 -1)
packages/desktop-client/src/components/common/InputWithTags.tsx (+331 -0)
📝 packages/desktop-client/src/components/common/Search.tsx (+1 -0)
📝 packages/desktop-client/src/components/common/Text.tsx (+125 -3)
📝 packages/desktop-client/src/components/filters/FilterExpression.tsx (+3 -1)
📝 packages/desktop-client/src/components/filters/FiltersMenu.jsx (+2 -1)
📝 packages/desktop-client/src/components/filters/updateFilterReducer.ts (+2 -1)
📝 packages/desktop-client/src/components/modals/EditRule.jsx (+2 -3)
📝 packages/desktop-client/src/components/rules/Value.tsx (+5 -5)
📝 packages/desktop-client/src/components/table.tsx (+144 -8)
📝 packages/desktop-client/src/components/transactions/TransactionList.jsx (+5 -3)
📝 packages/desktop-client/src/components/transactions/TransactionsTable.jsx (+143 -12)
📝 packages/desktop-client/src/components/util/GenericInput.jsx (+3 -2)
packages/desktop-client/src/hooks/useTags.ts (+21 -0)
packages/loot-core/migrations/1723562367412_tags.sql (+12 -0)
📝 packages/loot-core/package.json (+2 -0)

...and 14 more files

📄 Description

Just a draft for now
Discussion here:
https://discord.com/channels/937901803608096828/1273368072555729098


🔄 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/actualbudget/actual/pull/3292 **Author:** [@lelemm](https://github.com/lelemm) **Created:** 8/20/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `Tags` --- ### 📝 Commits (5) - [`6e0d705`](https://github.com/actualbudget/actual/commit/6e0d705dd0263b998a56a93701517d7d05c380f5) proof of concept of wysiwyg for input tags - [`556a7eb`](https://github.com/actualbudget/actual/commit/556a7eb21ecec5abfb0c7d475bd55b0a3f61531e) Merge branch 'actualbudget:master' into Tags - [`940f396`](https://github.com/actualbudget/actual/commit/940f396381c2e4342f1477f1c8134212a3346ca3) Merge branch 'org/master' into Tags - [`158a77f`](https://github.com/actualbudget/actual/commit/158a77f05e4456e003d5cc7fb4d6bdbe5e4e586d) more features - [`78b7a49`](https://github.com/actualbudget/actual/commit/78b7a49e99a09ff091afbd156953b56ee951d8c3) arrow selection ### 📊 Changes **34 files changed** (+1345 additions, -47 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+6 -1) 📝 `packages/desktop-client/package.json` (+4 -0) ➕ `packages/desktop-client/src/components/autocomplete/TagAutocomplete.tsx` (+117 -0) 📝 `packages/desktop-client/src/components/common/Input.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/common/InputWithContent.tsx` (+5 -1) ➕ `packages/desktop-client/src/components/common/InputWithTags.tsx` (+331 -0) 📝 `packages/desktop-client/src/components/common/Search.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/common/Text.tsx` (+125 -3) 📝 `packages/desktop-client/src/components/filters/FilterExpression.tsx` (+3 -1) 📝 `packages/desktop-client/src/components/filters/FiltersMenu.jsx` (+2 -1) 📝 `packages/desktop-client/src/components/filters/updateFilterReducer.ts` (+2 -1) 📝 `packages/desktop-client/src/components/modals/EditRule.jsx` (+2 -3) 📝 `packages/desktop-client/src/components/rules/Value.tsx` (+5 -5) 📝 `packages/desktop-client/src/components/table.tsx` (+144 -8) 📝 `packages/desktop-client/src/components/transactions/TransactionList.jsx` (+5 -3) 📝 `packages/desktop-client/src/components/transactions/TransactionsTable.jsx` (+143 -12) 📝 `packages/desktop-client/src/components/util/GenericInput.jsx` (+3 -2) ➕ `packages/desktop-client/src/hooks/useTags.ts` (+21 -0) ➕ `packages/loot-core/migrations/1723562367412_tags.sql` (+12 -0) 📝 `packages/loot-core/package.json` (+2 -0) _...and 14 more files_ </details> ### 📄 Description Just a draft for now Discussion here: https://discord.com/channels/937901803608096828/1273368072555729098 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-11 19:55:47 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#62766