Skip to content

Commit aa4587d

Browse files
MiroMargineanuarhtudormorariuliacimpeanu
authored
v0.0.34 (#238)
* Refactor FontAwesome icons and Tailwind classes (#227) * Updated styles * Removed unused styles * Removed unused styles * Updated styles * Updated CHANGELOG.md * Updated icons * Removed unused icons * Updated styles * Updated styles * Updated styles * Updated styles * Updated styles * Storybook Dynamic Properties (#237) * Updated component stories * Updated CHANGELOG.md * Intro screen waiting message (#239) * Added intro screen custom text * Update CHANGELOG * Refactor Tailwind CSS & FontAwesome icons (#236) * Updated styles * Removed unused styles * Removed unused styles * Updated styles * Updated CHANGELOG.md * Updated icons * Removed unused icons * Updated styles * Updated styles * Updated styles * Updated styles * Updated shards arrow styles * Added icons to replace Fontawesome * Updated styles * Fixed tests * Updated styles on transactions table * Refactored FontAwesome icons * Fixed test * Updated scrollbar styles * Fixes after review. * Removed FontAwesome packages * Updated icons * Fixed tests * Fixes * Fixes. * Fixes --------- Co-authored-by: Miro Mărgineanu <[email protected]> * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: Tudor Morar <[email protected]> Co-authored-by: Iulia Cimpeanu <[email protected]>
1 parent 0098ac7 commit aa4587d

File tree

113 files changed

+800
-1577
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+800
-1577
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [[0.0.34](https://github.com/multiversx/mx-sdk-dapp-ui/pull/238)] - 2025-10-09
11+
12+
- [Added intro screens waiting for provider message](https://github.com/multiversx/mx-sdk-dapp-ui/pull/239)
13+
- [Updated Storybook stories of utility elements to accept property changes from the interface](https://github.com/multiversx/mx-sdk-dapp-ui/pull/237)
14+
- [Refactor Tailwind CSS & FontAwesome icons](https://github.com/multiversx/mx-sdk-dapp-ui/pull/236)
15+
- [Updated Tailwind classes to be accessed from the markup instead of CSS files](https://github.com/multiversx/mx-sdk-dapp-ui/pull/227)
16+
1017
## [[0.0.33](https://github.com/multiversx/mx-sdk-dapp-ui/pull/235)] - 2025-09-29
1118

1219
- [Fixed toast large amount not showing](https://github.com/multiversx/mx-sdk-dapp-ui/pull/234)
@@ -21,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2128

2229
- [Updated simple toast styles](https://github.com/multiversx/mx-sdk-dapp-ui/pull/228)
2330
- [Updated custom toast styles](https://github.com/multiversx/mx-sdk-dapp-ui/pull/226)
24-
- [Refactored icons to leverage on new centralised component](https://github.com/multiversx/mx-sdk-dapp-ui/pull/219)
31+
- [Updated icons to leverage on new centralised component](https://github.com/multiversx/mx-sdk-dapp-ui/pull/219)
2532

2633
## [[0.0.30](https://github.com/multiversx/mx-sdk-dapp-ui/pull/224)] - 2025-09-22
2734

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ Visual components are the most basic building blocks that handle pure presentati
7272
Components:
7373

7474
- **Preloader** (`mvx-preloader`): A loading indicator for asynchronous operations
75-
- **Font Awesome Icon** (`mvx-fa-icon`): Icon component with Font Awesome integration
7675
- **Side Panel** (`mvx-side-panel`): Sliding panel with header and content sections
7776
- **Tooltip** (`mvx-tooltip`): Contextual information display with hover/click activation
7877
- **Transaction List Item**: Structured display of transaction information

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@
8888
"storybook": "yarn run storybook-tailwind && storybook dev -p 6006 --no-open"
8989
},
9090
"dependencies": {
91-
"@fortawesome/fontawesome-svg-core": ">=6.7.2",
92-
"@fortawesome/free-solid-svg-icons": ">=6.7.2",
9391
"@stencil/core": "^4.36.2",
9492
"@stencil/react-output-target": "1.2.0",
9593
"classnames": ">=2.5.1",
@@ -131,4 +129,4 @@
131129
"typescript": "^5.7.3",
132130
"vite": "^7.0.6"
133131
}
134-
}
132+
}

pnpm-lock.yaml

Lines changed: 0 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assets/icons/arrow-right-icon/arrow-right-icon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class ArrowRightIcon {
1515
viewBox="0 0 448 512"
1616
class={{ 'arrow-right-icon': true, [this.class]: Boolean(this.class) }}
1717
>
18-
<path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z" />
18+
<path fill="currentColor" d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z" />
1919
</svg>
2020
);
2121
}

src/assets/icons/arrow-up-right-from-square-icon/arrow-up-right-from-square-icon.scss

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/assets/icons/arrow-up-right-from-square-icon/arrow-up-right-from-square-icon.tsx

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/assets/icons/back-arrow-icon/back-arrow-icon.scss

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/assets/icons/back-arrow-icon/back-arrow-icon.tsx

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/assets/icons/close-icon/close-icon.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)