[PR #3163] [MERGED] [React Aria Button] All remaining components except filters, mobile transaction edit, and autocomplete #46536

Closed
opened 2026-04-26 08:34:57 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/3163
Author: @joel-jeremy
Created: 7/29/2024
Status: Merged
Merged: 9/9/2024
Merged by: @joel-jeremy

Base: masterHead: react-aria-button-10


📝 Commits (10+)

📊 Changes

27 files changed (+253 additions, -219 deletions)

View changed files

📝 packages/desktop-client/.gitignore (+1 -0)
📝 packages/desktop-client/e2e/page-models/mobile-accounts-page.js (+1 -1)
📝 packages/desktop-client/playwright.config.js (+1 -3)
📝 packages/desktop-client/src/components/Titlebar.tsx (+1 -1)
📝 packages/desktop-client/src/components/common/Link.tsx (+37 -32)
📝 packages/desktop-client/src/components/common/Modal.tsx (+6 -6)
📝 packages/desktop-client/src/components/common/Modal2.tsx (+4 -4)
📝 packages/desktop-client/src/components/common/Search.tsx (+11 -9)
📝 packages/desktop-client/src/components/common/Select.tsx (+9 -8)
📝 packages/desktop-client/src/components/manager/ServerURL.tsx (+1 -1)
📝 packages/desktop-client/src/components/manager/subscribe/Login.tsx (+1 -1)
📝 packages/desktop-client/src/components/mobile/MobileBackButton.tsx (+20 -17)
📝 packages/desktop-client/src/components/mobile/accounts/Account.jsx (+3 -3)
📝 packages/desktop-client/src/components/mobile/accounts/Accounts.jsx (+59 -71)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+48 -18)
📝 packages/desktop-client/src/components/mobile/transactions/AddTransactionButton.tsx (+16 -12)
📝 packages/desktop-client/src/components/mobile/transactions/FocusableAmountInput.tsx (+15 -11)
📝 packages/desktop-client/src/components/modals/CoverModal.tsx (+1 -10)
📝 packages/desktop-client/src/components/reports/reports/CashFlow.tsx (+1 -1)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.tsx (+1 -1)

...and 7 more files

📄 Description

Remaining components after this PR:

  1. Mobile - MobileForms and TransactionEdit
  2. Filters
  3. Autocomplete

Leaving out the mobile components from this PR because there is some weird interactions with downshift. When clicking on the payee field on the transaction edit page for example, the payee autocomplete will instantly close and select the payee that is directly above the payee field.


🔄 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/3163 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 7/29/2024 **Status:** ✅ Merged **Merged:** 9/9/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `react-aria-button-10` --- ### 📝 Commits (10+) - [`3085dcf`](https://github.com/actualbudget/actual/commit/3085dcf36cfea326387da3073d0558647f5166a7) vrt - [`464cb29`](https://github.com/actualbudget/actual/commit/464cb29fa1ba5ebecf3556f04251ca99f6b8e246) Fix account menu test - [`2b4d8ce`](https://github.com/actualbudget/actual/commit/2b4d8cecb29bd89b919130cd7bc2bfc5b0cdd152) Fix payee icons and category notes - [`9c40603`](https://github.com/actualbudget/actual/commit/9c4060315bd481fcbc6a638170ab21cce9ec2e41) vrt - [`4ce39e1`](https://github.com/actualbudget/actual/commit/4ce39e12cb13b1cdcf676c2ce0aa3237bbbe67f1) vrt - [`3277226`](https://github.com/actualbudget/actual/commit/327722686fe11524886f365d77685a8f3734d0b3) Fix notes button - [`8bee8fb`](https://github.com/actualbudget/actual/commit/8bee8fbb6940097f5e3d14e678681454c37c9dbc) VRT - [`d380684`](https://github.com/actualbudget/actual/commit/d38068460deba9b04914aaa695914de570a4158e) VRT - [`5a224e5`](https://github.com/actualbudget/actual/commit/5a224e5f0a314ed2f988c639b5a0356e9f99bcb5) React Aria Button - All except filters and autocomplete - [`35775ff`](https://github.com/actualbudget/actual/commit/35775ffae49ae70f2c294d99eb5087176c38fe39) Release notes ### 📊 Changes **27 files changed** (+253 additions, -219 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/.gitignore` (+1 -0) 📝 `packages/desktop-client/e2e/page-models/mobile-accounts-page.js` (+1 -1) 📝 `packages/desktop-client/playwright.config.js` (+1 -3) 📝 `packages/desktop-client/src/components/Titlebar.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/common/Link.tsx` (+37 -32) 📝 `packages/desktop-client/src/components/common/Modal.tsx` (+6 -6) 📝 `packages/desktop-client/src/components/common/Modal2.tsx` (+4 -4) 📝 `packages/desktop-client/src/components/common/Search.tsx` (+11 -9) 📝 `packages/desktop-client/src/components/common/Select.tsx` (+9 -8) 📝 `packages/desktop-client/src/components/manager/ServerURL.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/manager/subscribe/Login.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/mobile/MobileBackButton.tsx` (+20 -17) 📝 `packages/desktop-client/src/components/mobile/accounts/Account.jsx` (+3 -3) 📝 `packages/desktop-client/src/components/mobile/accounts/Accounts.jsx` (+59 -71) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+48 -18) 📝 `packages/desktop-client/src/components/mobile/transactions/AddTransactionButton.tsx` (+16 -12) 📝 `packages/desktop-client/src/components/mobile/transactions/FocusableAmountInput.tsx` (+15 -11) 📝 `packages/desktop-client/src/components/modals/CoverModal.tsx` (+1 -10) 📝 `packages/desktop-client/src/components/reports/reports/CashFlow.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.tsx` (+1 -1) _...and 7 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR ��� it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes --> Remaining components after this PR: 1. Mobile - MobileForms and TransactionEdit 2. Filters 3. Autocomplete Leaving out the mobile components from this PR because there is some weird interactions with downshift. When clicking on the payee field on the transaction edit page for example, the payee autocomplete will instantly close and select the payee that is directly above the payee field. --- <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-04-26 08:34:57 -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#46536