Skip to content

Commit 4bf0719

Browse files
Merge pull request #115 from multiversx/development
v0.0.5
2 parents 18ccc66 + 382b60b commit 4bf0719

File tree

54 files changed

+1013
-1182
lines changed

Some content is hidden

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

54 files changed

+1013
-1182
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [[0.0.5](https://github.com/multiversx/mx-sdk-dapp-ui/pull/112)] - 2025-05-26
11+
12+
- [Updated Sign Transactions layout][https://github.com/multiversx/mx-sdk-dapp-ui/pull/114]
13+
- [Disable sourceMap files][https://github.com/multiversx/mx-sdk-dapp-ui/pull/113]
14+
1015
## [[0.0.4](https://github.com/multiversx/mx-sdk-dapp-ui/pull/112)] - 2025-05-26
1116

1217
- [Clean up unlock panel](https://github.com/multiversx/mx-sdk-dapp-ui/pull/111)

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-dapp-ui",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",
@@ -45,8 +45,9 @@
4545
"publish-verdaccio": "npm run unpublish-verdaccio && npm run build && npm publish --registry http://localhost:4873/",
4646
"test.watch": "stencil test --spec --e2e --watchAll",
4747
"generate": "stencil generate",
48-
"build": "stencil build",
49-
"start": "stencil build --dev --watch --serve "
48+
"build:dev": "stencil build --dev",
49+
"build": "stencil build --prod",
50+
"start": "yarn run build:dev --watch --serve "
5051
},
5152
"dependencies": {
5253
"@fortawesome/fontawesome-svg-core": ">= 6.7.2",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
:host {
2+
display: flex;
3+
4+
.angle-left-icon {
5+
display: flex;
6+
height: 16px;
7+
width: calc(20px / 2);
8+
}
9+
}

src/assets/icons/angle-left-icon/angle-left-icon.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
import { Component, h } from '@stencil/core';
1+
import { Component, h, Prop } from '@stencil/core';
22

33
@Component({
44
tag: 'mvx-angle-left-icon',
5+
styleUrl: 'angle-left-icon.scss',
56
shadow: true,
67
})
78
export class AngleLeftIcon {
9+
@Prop() class?: string;
10+
811
render() {
912
return (
10-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="10" height="16">
13+
<svg
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 320 512"
16+
class={{ 'angle-left-icon': true, [this.class]: Boolean(this.class) }}
17+
>
1118
<path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" />
1219
</svg>
1320
);
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
:host {
2+
display: flex;
3+
4+
.angle-right-icon {
5+
display: flex;
6+
height: 16px;
7+
width: calc(20px / 2);
8+
}
9+
}

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
import { Component, h } from '@stencil/core';
1+
import { Component, h, Prop } from '@stencil/core';
22

33
@Component({
44
tag: 'mvx-angle-right-icon',
5+
styleUrl: 'angle-right-icon.scss',
56
shadow: true,
67
})
78
export class AngleRightIcon {
9+
@Prop() class?: string;
10+
811
render() {
912
return (
10-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="10" height="16">
13+
<svg
14+
viewBox="0 0 320 512"
15+
xmlns="http://www.w3.org/2000/svg"
16+
class={{ 'angle-right-icon': true, [this.class]: Boolean(this.class) }}
17+
>
1118
<path d="M278.6 233.4c12.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.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z" />
1219
</svg>
1320
);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)