File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
src/UI/Fields/AmountSelect/components/TokenSelect/components/ReactSelectComponents Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff 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+ ## [[ 3.1.5] ( https://github.com/multiversx/mx-sdk-dapp-form/pull/380 )] - 2025-11-27
11+
12+ - [ Added ` option.value ` as document element id in ` getOption ` ] ( https://github.com/multiversx/mx-sdk-dapp-form/pull/379 )
13+
1014## [[ 3.1.4] ( https://github.com/multiversx/mx-sdk-dapp-form/pull/378 )] - 2025-11-24
1115
1216- [ Expose ` onInputChange ` event from ` TokenSelect ` ] ( https://github.com/multiversx/mx-sdk-dapp-form/pull/377 )
Original file line number Diff line number Diff line change 11{
22 "name" : " @multiversx/sdk-dapp-form" ,
3- "version" : " 3.1.4 " ,
3+ "version" : " 3.1.5 " ,
44 "description" : " A library to hold the main logic for a validating a form for transactions on the MultiversX blockchain" ,
55 "author" : " MultiversX" ,
66 "license" : " GPL-3.0-or-later" ,
1919 "build" : " rimraf dist && node esbuild.js && yarn build:esm-types && yarn build:cjs-types && cp package.json dist && cp README.md dist" ,
2020 "publish-package" : " yarn test && yarn build && cd dist && npm publish" ,
2121 "publish-package-next" : " yarn test && yarn test && yarn build && cd dist && npm publish --tag next" ,
22- "unpublish-verdaccio" : " npm unpublish @multiversx/sdk-dapp-form@2.0.4-alpha.0 --registry http://localhost:4873" ,
23- "publish-verdaccio" : " npm run unpublish-verdaccio && npm run build && cd dist && npm publish --registry http://localhost:4873/" ,
22+ "unpublish-verdaccio" : " npm unpublish @multiversx/sdk-dapp-form --registry http://localhost:4873" ,
23+ "publish-verdaccio" : " npm run build && cd dist && npm publish --registry http://localhost:4873/" ,
2424 "publish-yalc" : " yarn build && cd dist && yalc publish --push" ,
2525 "watch" : " yarn node esbuild-watch.js && yarn build:types -- --watch" ,
2626 "test" : " jest" ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export const getOption =
5656 } ) ;
5757
5858 return (
59- < div data-testid = { `${ ( props as any ) . value } -option` } >
59+ < div data-testid = { `${ ( props as any ) . value } -option` } id = { option . value } >
6060 < components . Option
6161 { ...props }
6262 className = { classNames ( styles . option , {
You can’t perform that action at this time.
0 commit comments