marko v4.11.1 Release Notes

    • ๐Ÿ›  Fixes a regression in <${dynamic}> tags for object/array class/style attributes: marko $ const style = { color:'blue' }; <${tagName} style=style/>
    • ๐Ÿ‘ Allows dynamic attributes defined using ...spread to include object/array class/style #933: marko $ const attrs = { style:{ color:'blue' } }; <tag ...attrs/>
    • ๐Ÿ›  Fixes issue where object/array class/style attributes could not be used with ...spread #1007: marko $ const attrs = {}; <tag class=["oops"] ...attrs/>