Browse Source

Suggested changes

pull/5696/head
Raj Gupta 4 weeks ago
parent
commit
cf5132ac61
  1. 3
      CHANGELOG.md
  2. 14
      libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts

3
CHANGELOG.md

@ -9,14 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Unreleased ### Unreleased
- Extend Storybook stories of accounts table component by loading state story
### Changed ### Changed
- Restricted the selection of the retirement date picker in the _FIRE_ calculator to a future date - Restricted the selection of the retirement date picker in the _FIRE_ calculator to a future date
- Improved the support for mutual funds in the _Financial Modeling Prep_ service (get asset profiles) - Improved the support for mutual funds in the _Financial Modeling Prep_ service (get asset profiles)
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)
- Upgraded `prisma` from version `6.16.1` to `6.16.3` - Upgraded `prisma` from version `6.16.1` to `6.16.3`
- Extended the Storybook stories of accounts table component by loading state story
## 2.204.0 - 2025-09-30 ## 2.204.0 - 2025-09-30

14
libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts

@ -107,9 +107,9 @@ export default {
type Story = StoryObj<GfAccountsTableComponent>; type Story = StoryObj<GfAccountsTableComponent>;
export const Default: Story = { export const Loading: Story = {
args: { args: {
accounts, accounts: undefined,
baseCurrency: 'USD', baseCurrency: 'USD',
deviceType: 'desktop', deviceType: 'desktop',
locale: 'en-US', locale: 'en-US',
@ -120,15 +120,15 @@ export const Default: Story = {
showTransactions: true, showTransactions: true,
showValue: true, showValue: true,
showValueInBaseCurrency: true, showValueInBaseCurrency: true,
totalBalanceInBaseCurrency: 12428.2, totalBalanceInBaseCurrency: 0,
totalValueInBaseCurrency: 107971.70321466809, totalValueInBaseCurrency: 0,
transactionCount: 12 transactionCount: 0
} }
}; };
export const Loading: Story = { export const Default: Story = {
args: { args: {
accounts: undefined, accounts,
baseCurrency: 'USD', baseCurrency: 'USD',
deviceType: 'desktop', deviceType: 'desktop',
locale: 'en-US', locale: 'en-US',

Loading…
Cancel
Save