Skip to content

Commit 2956aef

Browse files
Merge pull request #94 from multiversx/development
0.0.0-alpha.15
2 parents 569160e + 9a0719f commit 2956aef

File tree

7 files changed

+16
-28
lines changed

7 files changed

+16
-28
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10-
## [[0.0.0-alpha.14](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/92)] - 2025-05-07
10+
## [[0.0.0-alpha.15](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/94)] - 2025-05-07
11+
12+
- [Fixed build error require utils](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/94)
13+
14+
## [[0.0.0-alpha.14](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/93)] - 2025-05-07
1115

1216
- [Fixed ledger double screen](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/91)
1317
- [Added Ledger address table preloaders](https://github.com/multiversx/mx-sdk-dapp-core-ui/pull/90)

package.json

Lines changed: 2 additions & 1 deletion
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.14",
3+
"version": "0.0.0-alpha.15",
44
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",
@@ -68,6 +68,7 @@
6868
"@types/jest": "^29.5.14",
6969
"@types/jsdom": "^21.1.1",
7070
"@types/node": "^22.10.0",
71+
"@types/qrcode": "^1.5.5",
7172
"@typescript-eslint/eslint-plugin": "^8.23.0",
7273
"@typescript-eslint/parser": "^8.23.0",
7374
"eslint": "^9.19.0",

src/components/functional/sign-transactions-panel/components/sign-transaction-component/sign-transaction-component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { VNode } from '@stencil/core';
22
import { Component, h, Prop, State } from '@stencil/core';
33
import { DataTestIdsEnum } from 'constants/dataTestIds.enum';
4-
import { formatAddress } from 'utils/utils';
4+
import { formatAddress } from 'utils/formatAddress';
55

66
import state from '../../signTransactionsPanelStore';
77

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@
99
*/
1010

1111
export type * from './components.d.ts';
12-
export { format } from './utils/utils';
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
export function format(first?: string, middle?: string, last?: string): string {
2-
return (first || '') + (middle ? ` ${middle}` : '') + (last ? ` ${last}` : '');
3-
}
4-
51
export const formatAddress = (value: string, maxLength = 25) => {
62
if (!value) {
73
return value;

src/utils/utils.spec.ts

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

yarn.lock

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,13 @@
11871187
dependencies:
11881188
undici-types "~6.21.0"
11891189

1190+
"@types/qrcode@^1.5.5":
1191+
version "1.5.5"
1192+
resolved "https://registry.yarnpkg.com/@types/qrcode/-/qrcode-1.5.5.tgz#993ff7c6b584277eee7aac0a20861eab682f9dac"
1193+
integrity sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==
1194+
dependencies:
1195+
"@types/node" "*"
1196+
11901197
"@types/stack-utils@^2.0.0":
11911198
version "2.0.3"
11921199
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
@@ -3998,7 +4005,7 @@ postcss-colormin@^7.0.3:
39984005
colord "^2.9.3"
39994006
postcss-value-parser "^4.2.0"
40004007

4001-
"postcss-combine-duplicated-selectors@github:poimen/postcss-combine-duplicated-selectors#duplicated-keyframes-fix":
4008+
postcss-combine-duplicated-selectors@poimen/postcss-combine-duplicated-selectors#duplicated-keyframes-fix:
40024009
version "10.0.3"
40034010
resolved "https://codeload.github.com/poimen/postcss-combine-duplicated-selectors/tar.gz/bdf9223342b6b1da8a91d6727b6e4cf719f7def7"
40044011
dependencies:

0 commit comments

Comments
 (0)