Skip to content

Commit 5cea909

Browse files
v0.0.32 (#231)
* Get detected browser (#230) * Exposed getDetectedBrowser * Added BrowserEnum to exports * Update CHANGELOG * 0.0.32
2 parents 7d34d9b + 01bf83b commit 5cea909

File tree

4 files changed

+172
-7
lines changed

4 files changed

+172
-7
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.0.32](https://github.com/multiversx/mx-sdk-dapp-ui/pull/231)] - 2025-09-26
11+
12+
- [Expose `getDetectedBrowser`](https://github.com/multiversx/mx-sdk-dapp-ui/pull/230)
13+
1014
## [[0.0.31](https://github.com/multiversx/mx-sdk-dapp-ui/pull/229)] - 2025-09-25
1115

1216
- [Updated simple toast styles](https://github.com/multiversx/mx-sdk-dapp-ui/pull/228)

package.json

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-dapp-ui",
3-
"version": "0.0.31",
3+
"version": "0.0.32",
44
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",
@@ -14,6 +14,14 @@
1414
"import": "./dist/web-components/index.js",
1515
"types": "./dist/types/index.d.ts"
1616
},
17+
"./utils/getDetectedBrowser": {
18+
"import": "./dist/utils/utils/getDetectedBrowser.js",
19+
"types": "./dist/types/utils/getDetectedBrowser.d.ts"
20+
},
21+
"./utils/constants/browser.enum": {
22+
"import": "./dist/utils/constants/browser.enum.js",
23+
"types": "./dist/types/constants/browser.enum.d.ts"
24+
},
1725
"./mvx-unlock-panel": {
1826
"import": "./dist/web-components/mvx-unlock-panel.js",
1927
"types": "./dist/web-components/mvx-unlock-panel.d.ts"
@@ -74,7 +82,7 @@
7482
"test.watch": "stencil test --spec --e2e --watchAll",
7583
"generate": "stencil generate",
7684
"build:dev": "stencil build --dev",
77-
"build": "stencil build --prod",
85+
"build": "stencil build --prod && tsc -p tsconfig.utils.json && tsc-alias -p tsconfig.utils.json",
7886
"start": "yarn run build:dev --watch --serve",
7987
"storybook-tailwind": "npx ts-node .storybook/generate-safelist.ts && npx @tailwindcss/cli -i src/global/tailwind.css -o .storybook/tailwind.css --content '.storybook/tailwind-safelist.html' && rm -f .storybook/tailwind-safelist.html",
8088
"storybook": "yarn run storybook-tailwind && storybook dev -p 6006 --no-open"
@@ -91,14 +99,12 @@
9199
"qrcode": ">=1.5.4"
92100
},
93101
"devDependencies": {
94-
"sass-embedded": "^1.85.1",
95-
"storybook": "^9.1.7",
96-
"@stencil/storybook-plugin": "^0.4.2",
97-
"@storybook/addon-links": "9.1.7",
102+
"@rollup/plugin-image": "^3.0.3",
98103
"@stencil/sass": "^3.0.12",
99104
"@stencil/store": "2.0.16",
105+
"@stencil/storybook-plugin": "^0.4.2",
100106
"@storybook/addon-docs": "9.1.7",
101-
"@rollup/plugin-image": "^3.0.3",
107+
"@storybook/addon-links": "9.1.7",
102108
"@tailwindcss/cli": "4.0.17",
103109
"@tailwindcss/postcss": "4.1.3",
104110
"@types/jest": "^29.5.14",
@@ -117,8 +123,11 @@
117123
"prettier": "3.2.5",
118124
"puppeteer": "^23.9.0",
119125
"rollup-plugin-node-polyfills": "^0.2.1",
126+
"sass-embedded": "^1.85.1",
120127
"stencil-tailwind-plugin": "2.0.5",
128+
"storybook": "^9.1.7",
121129
"tailwindcss": "4.0.15",
130+
"tsc-alias": "^1.8.16",
122131
"typescript": "^5.7.3",
123132
"vite": "^7.0.6"
124133
}

0 commit comments

Comments
 (0)