Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/component-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
},
"dependencies": {
"@emotion/css": "^11.13.5",
"react-aria-components": "^1.8.0",
"react-aria-components": "^1.11.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@types/react": "^19.1.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "^19.1.11",
"react": "19.1.1",
"react-dom": "19.1.1",
"vitest": "^3.2.4"
},
"exports": {
Expand Down
8 changes: 4 additions & 4 deletions packages/desktop-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@types/debounce": "^1.2.4",
"@types/lodash": "^4",
"@types/promise-retry": "^1.1.6",
"@types/react": "^19.1.4",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.5",
"@types/react-grid-layout": "^1",
"@types/react-modal": "^3.16.3",
Expand Down Expand Up @@ -50,12 +50,12 @@
"promise-retry": "^2.0.1",
"prop-types": "^15.8.1",
"re-resizable": "^6.11.2",
"react": "19.1.0",
"react": "19.1.1",
"react-aria": "^3.39.0",
"react-aria-components": "^1.8.0",
"react-aria-components": "^1.11.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "19.1.0",
"react-dom": "19.1.1",
"react-error-boundary": "^5.0.0",
"react-grid-layout": "^1.5.1",
"react-hotkeys-hook": "^4.6.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,24 @@ const getScheduleIconStyle = ({ isPreview }: { isPreview: boolean }) => ({
color: isPreview ? theme.pageTextLight : theme.menuItemText,
});

type TransactionListItemProps = ComponentPropsWithoutRef<
typeof ListBoxItem<TransactionEntity>
type TransactionListItemProps = Omit<
ComponentPropsWithoutRef<typeof ListBoxItem<TransactionEntity>>,
'onPress' | 'onLongPress'
> & {
value: TransactionEntity;
onPress: (transaction: TransactionEntity) => void;
onLongPress: (transaction: TransactionEntity) => void;
};

export function TransactionListItem({
value: transaction,
onPress,
onLongPress,
...props
}: TransactionListItemProps) {
const { t } = useTranslation();
const { list: categories } = useCategories();

const { value: transaction } = props;

const payee = usePayee(transaction?.payee || '');
const displayPayee = useDisplayPayee({ transaction });

Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/5498.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [matt-fidd]
---

Bump dependencies in component-library package
Loading
Loading