Browse Source

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
pull/5705/head
Raj Gupta 1 week ago
committed by GitHub
parent
commit
a281ec825b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 16
      libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts

1
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

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

@ -107,6 +107,22 @@ export default {
type Story = StoryObj<GfAccountsTableComponent>;
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,

Loading…
Cancel
Save