Skip to content

Commit 6dac0a5

Browse files
Expose Event bus (#262) (#263)
* Added expose EventBus from utils * Update CHANGELOG
2 parents 5447881 + 7556ba5 commit 6dac0a5

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [[0.1.2](https://github.com/multiversx/mx-sdk-dapp-ui/pull/263)] - 2025-11-06
11+
12+
- [Added expose EventBus from utils](https://github.com/multiversx/mx-sdk-dapp-ui/pull/262)
13+
1014
## [[0.1.1](https://github.com/multiversx/mx-sdk-dapp-ui/pull/261)] - 2025-11-03
1115

1216
- [Added cjs for utility functions](https://github.com/multiversx/mx-sdk-dapp-ui/pull/260)

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-dapp-ui",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",
@@ -24,6 +24,11 @@
2424
"require": "./dist/cjs/constants/browser.enum.js",
2525
"types": "./dist/types/constants/browser.enum.d.ts"
2626
},
27+
"./utils/EventBus": {
28+
"import": "./dist/utils/EventBus.js",
29+
"require": "./dist/cjs/utils/EventBus.js",
30+
"types": "./dist/types/utils/EventBus.d.ts"
31+
},
2732
"./mvx-unlock-panel": {
2833
"import": "./dist/web-components/mvx-unlock-panel.js",
2934
"types": "./dist/web-components/mvx-unlock-panel.d.ts"

tsconfig.utils.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,10 @@
1515
"constants/*": ["constants/*"]
1616
}
1717
},
18-
"include": ["src/utils/getDetectedBrowser.ts", "src/constants/browser.enum.ts", "src/constants/window.constants.ts"]
18+
"include": [
19+
"src/utils/getDetectedBrowser.ts",
20+
"src/constants/browser.enum.ts",
21+
"src/constants/window.constants.ts",
22+
"src/utils/EventBus.ts"
23+
]
1924
}

0 commit comments

Comments
 (0)