forked from raycast/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Merge branch \'contributions/merge-1738318514950\' - Pull contributions - update Changelogs - Merge pull request raycast#1 from gfanton/feat/edit-form - feat: Use account_display_name - feat(tags): Track when the tags field is focused to change order or Form action - chore(transaction_form): Remove non necessary useMemo and use concat instead of spread for faster merge - chore(transaction_form): Move Categories and RecurringItems rendering outside of component to avoid extra re-render - style: Remove useless quotes - chore: lint - feat(form): add tag - chore: typo - fix: update form - wip: add lunchmoney edit form - doc: Update changelog - chore: Update metadata - feat: Add status to keywords - fix: Fix month boundary parsing - feat: Move transactions into List.Section by date - feat: Move category tag at the end - feat: Add transaction category to List Item
- Loading branch information
1 parent
c4e1871
commit eeea332
Showing
6 changed files
with
404 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# LunchMoney Changelog | ||
|
||
## [Edit page, fixes and light improvements] - {PR_MERGE_DATE} | ||
|
||
- Add edit transaction pages | ||
- Add more info and changes some info order to a transaction row | ||
- Add transaction status to the List.Item keyword for easier filtering | ||
- Fix month parsing | ||
- Group transactions by day | ||
|
||
## [Initial Version] - 2024-11-06 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import * as lunchMoney from "./lunchmoney"; | ||
|
||
export const getFormatedAmount = (transaction: lunchMoney.Transaction): string => | ||
Intl.NumberFormat("en-US", { style: "currency", currency: transaction.currency }).format(transaction.to_base); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.