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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
17 additions and
0 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts
|
|
@ -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 |
|
|
|
|
|
@ -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, |
|
|
|