Browse Source
Bugfix/fix Storybook styles after upgrade (#5258)
* Fix Storybook styles after upgrade
* Update changelog
pull/5271/head
Kenrick Tandrian
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
11 additions and
13 deletions
-
CHANGELOG.md
-
libs/ui/.storybook/preview-head.html
-
libs/ui/project.json
|
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Excluded the holdings originated of `FEE`, `INTEREST` and `LIABILITY` activities from the closed holdings on the portfolio holdings page |
|
|
|
- Fixed an issue with serving _Storybook_ related to missing styles |
|
|
|
|
|
|
|
## 2.185.0 - 2025-07-26 |
|
|
|
|
|
|
|
|
|
@ -1,8 +0,0 @@ |
|
|
|
<script |
|
|
|
src="https://unpkg.com/ionicons@5.5.1/dist/ionicons/ionicons.esm.js" |
|
|
|
type="module" |
|
|
|
></script> |
|
|
|
<script |
|
|
|
nomodule |
|
|
|
src="https://unpkg.com/ionicons@5.5.1/dist/ionicons/ionicons.js" |
|
|
|
></script> |
|
|
@ -26,10 +26,15 @@ |
|
|
|
"storybook": { |
|
|
|
"executor": "@storybook/angular:start-storybook", |
|
|
|
"options": { |
|
|
|
"port": 4400, |
|
|
|
"configDir": "libs/ui/.storybook", |
|
|
|
"browserTarget": "ui:build-storybook", |
|
|
|
"compodoc": false |
|
|
|
"compodoc": false, |
|
|
|
"configDir": "libs/ui/.storybook", |
|
|
|
"port": 4400, |
|
|
|
"styles": [ |
|
|
|
"apps/client/src/assets/fonts/inter.css", |
|
|
|
"apps/client/src/styles/theme.scss", |
|
|
|
"apps/client/src/styles.scss" |
|
|
|
] |
|
|
|
}, |
|
|
|
"configurations": { |
|
|
|
"ci": { |
|
|
@ -41,10 +46,10 @@ |
|
|
|
"executor": "@storybook/angular:build-storybook", |
|
|
|
"outputs": ["{options.outputDir}"], |
|
|
|
"options": { |
|
|
|
"outputDir": "dist/apps/client/development/storybook", |
|
|
|
"configDir": "libs/ui/.storybook", |
|
|
|
"browserTarget": "ui:build-storybook", |
|
|
|
"compodoc": false, |
|
|
|
"configDir": "libs/ui/.storybook", |
|
|
|
"outputDir": "dist/apps/client/development/storybook", |
|
|
|
"styles": [ |
|
|
|
"apps/client/src/assets/fonts/inter.css", |
|
|
|
"apps/client/src/styles/theme.scss", |
|
|
|