Closed keller-mark closed 5 months ago
The kwargs are nice but mean that users cannot choose value names that clash with existing (or future) named args like esm, width, height, and mode.
esm
width
height
mode
widget <- AnyHtmlWidget$new(esm = esm, mode = "static", count = 1) # vs widget <- AnyHtmlWidget$new(esm = esm, mode = "static", values = list(count = 1))
The kwargs are nice but mean that users cannot choose value names that clash with existing (or future) named args like
esm
,width
,height
, andmode
.