Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [[3.1.5](https://github.com/multiversx/mx-sdk-dapp-form/pull/380)] - 2025-11-27

- [Added `option.value` as document element id in `getOption`](https://github.com/multiversx/mx-sdk-dapp-form/pull/379)

## [[3.1.4](https://github.com/multiversx/mx-sdk-dapp-form/pull/378)] - 2025-11-24

- [Expose `onInputChange` event from `TokenSelect`](https://github.com/multiversx/mx-sdk-dapp-form/pull/377)
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@multiversx/sdk-dapp-form",
"version": "3.1.4",
"version": "3.1.5",
"description": "A library to hold the main logic for a validating a form for transactions on the MultiversX blockchain",
"author": "MultiversX",
"license": "GPL-3.0-or-later",
Expand All @@ -19,8 +19,8 @@
"build": "rimraf dist && node esbuild.js && yarn build:esm-types && yarn build:cjs-types && cp package.json dist && cp README.md dist",
"publish-package": "yarn test && yarn build && cd dist && npm publish",
"publish-package-next": "yarn test && yarn test && yarn build && cd dist && npm publish --tag next",
"unpublish-verdaccio": "npm unpublish @multiversx/sdk-dapp-form@2.0.4-alpha.0 --registry http://localhost:4873",
"publish-verdaccio": "npm run unpublish-verdaccio && npm run build && cd dist && npm publish --registry http://localhost:4873/",
"unpublish-verdaccio": "npm unpublish @multiversx/sdk-dapp-form --registry http://localhost:4873",
"publish-verdaccio": "npm run build && cd dist && npm publish --registry http://localhost:4873/",
"publish-yalc": "yarn build && cd dist && yalc publish --push",
"watch": "yarn node esbuild-watch.js && yarn build:types -- --watch",
"test": "jest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const getOption =
});

return (
<div data-testid={`${(props as any).value}-option`}>
<div data-testid={`${(props as any).value}-option`} id={option.value}>
<components.Option
{...props}
className={classNames(styles.option, {
Expand Down
Loading