From a281ec825b2c51fd372794e930026ac9af6576c8 Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Wed, 8 Oct 2025 21:21:02 +0530 Subject: [PATCH] Task/extend Storybook stories of accounts table component by loading state story (#5696) * Extend Storybook stories of accounts table component by loading state story * Update changelog --- CHANGELOG.md | 1 + .../accounts-table.component.stories.ts | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3bae0949..fc3a9d5da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Improved the spacing around the buttons in the holding detail dialog +- Extended the _Storybook_ stories of the accounts table component by a loading state story - Refactored the auth page to standalone ## 2.206.0 - 2025-10-04 diff --git a/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts b/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts index e13df2222..42f48fffd 100644 --- a/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts +++ b/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts @@ -107,6 +107,22 @@ export default { type Story = StoryObj; +export const Loading: Story = { + args: { + accounts: undefined, + baseCurrency: 'USD', + deviceType: 'desktop', + locale: 'en-US', + showActions: false, + showAllocationInPercentage: false, + showBalance: true, + showFooter: true, + showTransactions: true, + showValue: true, + showValueInBaseCurrency: true + } +}; + export const Default: Story = { args: { accounts,