Skip to content

Commit 3e407fd

Browse files
Merge pull request #88 from multiversx/development
0.0.0-alpha.13
2 parents 5f84d93 + 05521d4 commit 3e407fd

File tree

101 files changed

+4322
-1365
lines changed

Some content is hidden

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

101 files changed

+4322
-1365
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [[0.0.0-alpha.13](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/88)] - 2025-05-02
11+
12+
- [Fixed bubbling events](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/86)
13+
- [Updated the Ledger authentication flow layout](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/85)
14+
- [Added cancel login](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/84)
15+
- [Added `usdValue` to ledger accounts](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/83)
16+
- [Updated xPortal authentication flow layout](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/80)
17+
- [Fix stencil-tailwind-plugin build error in monorepo](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/79)
18+
1019
## [[0.0.0-alpha.12](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/78)] - 2025-04-10
1120

1221
- [Add stencil-tailwind-plugin for tailwind v4](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/77)

package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-dapp-core-ui",
3-
"version": "0.0.0-alpha.12",
3+
"version": "0.0.0-alpha.13",
44
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",
@@ -25,16 +25,9 @@
2525
"require": "./dist/loader/index.cjs",
2626
"types": "./dist/loader/index.d.ts"
2727
},
28-
"./sdk-dapp-core-ui.css": {
29-
"import": "./www/build/sdk-dapp-core-ui.css",
30-
"require": "./www/build/sdk-dapp-core-ui.css"
31-
},
3228
"./react": {
3329
"import": "./dist/react/components.ts",
3430
"require": "./dist/react/components.ts"
35-
},
36-
"./tailwind.css": {
37-
"import": "./www/assets/tailwind.css"
3831
}
3932
},
4033
"repository": {
@@ -60,7 +53,10 @@
6053
"@fortawesome/free-solid-svg-icons": ">= 6.7.2",
6154
"@multiversx/sdk-dapp-utils": ">= 1.0.4",
6255
"@stencil/react-output-target": "0.8.2",
56+
"bignumber.js": "^9.3.0",
6357
"classnames": ">= 2.5.1",
58+
"lodash.inrange": "^3.3.0",
59+
"lodash.range": "^3.2.0",
6460
"qrcode": ">= 1.5.4",
6561
"sass-embedded": "^1.85.1"
6662
},
24.6 KB
Binary file not shown.
24.9 KB
Binary file not shown.
24.8 KB
Binary file not shown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component, h } from '@stencil/core';
2+
3+
@Component({
4+
tag: 'mvx-angle-left-icon',
5+
shadow: true,
6+
})
7+
export class AngleLeftIcon {
8+
render() {
9+
return (
10+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="10" height="16">
11+
<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" />
12+
</svg>
13+
);
14+
}
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component, h } from '@stencil/core';
2+
3+
@Component({
4+
tag: 'mvx-angle-right-icon',
5+
shadow: true,
6+
})
7+
export class AngleRightIcon {
8+
render() {
9+
return (
10+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="10" height="16">
11+
<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" />
12+
</svg>
13+
);
14+
}
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component, h } from '@stencil/core';
2+
3+
@Component({
4+
tag: 'mvx-angles-left-icon',
5+
shadow: true,
6+
})
7+
export class AnglesLeftIcon {
8+
render() {
9+
return (
10+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16">
11+
<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 160zm352-160l-160 160c-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.3L301.3 256 438.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z" />
12+
</svg>
13+
);
14+
}
15+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Component, h } from '@stencil/core';
2+
3+
@Component({
4+
tag: 'mvx-angles-right-icon',
5+
shadow: true,
6+
})
7+
export class AnglesRightIcon {
8+
render() {
9+
return (
10+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16">
11+
<path d="M470.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.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.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 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" />
12+
</svg>
13+
);
14+
}
15+
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ import { Component, h } from '@stencil/core';
22

33
@Component({
44
tag: 'mvx-arrow-up-right-icon',
5+
shadow: true,
56
})
67
export class ArrowUpRightIcon {
78
render() {
89
return (
910
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10" fill="none">
1011
<path
1112
d="M8.9375 0.944824C9.15625 0.944824 9.375 1.16357 9.375 1.38232V7.50732C9.375 7.75342 9.15625 7.94482 8.9375 7.94482C8.69141 7.94482 8.5 7.75342 8.5 7.50732V2.44873L1.36328 9.58545C1.19922 9.74951 0.898438 9.74951 0.734375 9.58545C0.570312 9.42139 0.570312 9.12061 0.734375 8.95654L7.87109 1.81982H2.8125C2.56641 1.81982 2.375 1.62842 2.375 1.38232C2.375 1.16357 2.56641 0.944824 2.8125 0.944824H8.9375Z"
12-
fill="#23F7DD"
13+
fill="#E5E5E5"
1314
/>
1415
</svg>
1516
);

0 commit comments

Comments
 (0)