Conversation
|
Generated by: track-bundle-size
new sizes (raw)To set the sizes as a new baseline, you can copy/paste next content to the {
"version": "6.4.3",
"timestamp": "2026-02-27",
"sizes": {
"templateApp": {
"css": 257701,
"js": 452458
},
"@epam/app": {
"css": 719380,
"js": 4951992
},
"@epam/electric": {
"css": 2275,
"js": 2883
},
"@epam/promo": {
"css": 47756,
"js": 9145
},
"@epam/uui-extra": {
"css": 0,
"js": 213
},
"@epam/loveship": {
"css": 55348,
"js": 43229
},
"@epam/uui-components": {
"css": 24608,
"js": 241121
},
"@epam/uui-core": {
"css": 0,
"js": 335352
},
"@epam/uui-db": {
"css": 0,
"js": 42718
},
"@epam/uui-docs": {
"css": 2152,
"js": 197291
},
"@epam/uui-editor": {
"css": 12952,
"js": 165320
},
"@epam/uui-timeline": {
"css": 2203,
"js": 75109
},
"@epam/uui": {
"css": 214667,
"js": 343113
}
}
}Generated by: generate-components-api Total amount of exported types/props without JSDoc comments
|
MSt1ch
approved these changes
Feb 27, 2026
…iple times on Switch click
ed0280b to
b716d30
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
Clicking the switch fired both the Switch’s handler and the row’s onClick (event bubbling), so onValueChange ran multiple times.
Fix: In the row’s
handleClick, return early when the click target is inside the switch (using a ref), so only the Switch’s handler runs.Issue link:
#3045
QA notes: