File tree 2 files changed +9
-5
lines changed
src/js/packages/event-to-object/src
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,16 @@ Unreleased
20
20
21
21
**Fixed **
22
22
23
- - :pull: `1118 ` - `module_from_template ` is broken with a recent release of `requests `
24
- - :pull: `1131 ` - `module_from_template ` did not work when using Flask backend
25
- - :pull: `1200 ` - Fixed `UnicodeDecodeError ` when using `reactpy.web.export `
23
+ - :pull: `1118 ` - `` module_from_template `` is broken with a recent release of `` requests ` `
24
+ - :pull: `1131 ` - `` module_from_template ` ` did not work when using Flask backend
25
+ - :pull: `1200 ` - Fixed `` UnicodeDecodeError `` when using `` reactpy.web.export ` `
26
26
- :pull: `1224 ` - Fixes needless unmounting of JavaScript components during each ReactPy render.
27
+ - :pull: `1126 ` - Fixed missing ``event["target"]["checked"] `` on checkbox inputs
27
28
28
29
**Added **
29
30
30
31
- :pull: `1165 ` - Allow concurrently rendering discrete component trees - enable this
31
- experimental feature by setting `REACTPY_ASYNC_RENDERING=true `. This improves
32
+ experimental feature by setting `` REACTPY_ASYNC_RENDERING=true ` `. This improves
32
33
the overall responsiveness of your app in situations where larger renders would
33
34
otherwise block smaller renders from executing.
34
35
Original file line number Diff line number Diff line change @@ -303,7 +303,10 @@ const elementConverters: { [key: string]: (element: any) => any } = {
303
303
FORM : ( element : HTMLFormElement ) => ( {
304
304
elements : Array . from ( element . elements ) . map ( convertElement ) ,
305
305
} ) ,
306
- INPUT : ( element : HTMLInputElement ) => ( { value : element . value } ) ,
306
+ INPUT : ( element : HTMLInputElement ) => ( {
307
+ value : element . value ,
308
+ checked : element . checked ,
309
+ } ) ,
307
310
METER : ( element : HTMLMeterElement ) => ( { value : element . value } ) ,
308
311
OPTION : ( element : HTMLOptionElement ) => ( { value : element . value } ) ,
309
312
OUTPUT : ( element : HTMLOutputElement ) => ( { value : element . value } ) ,
You can’t perform that action at this time.
0 commit comments