Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.29 KB

0.11.2.md

File metadata and controls

40 lines (27 loc) · 1.29 KB

0.11.2 (commit log)

  • Bring SvgTags in line with MDN SVG element reference.

    • Tag names now use camelCase
    • Fix fedistantlighting vs. feDistantLight inconsistency
    • Add script and title tags
  • RouterConfig gained convenience methods for setting the page title when route changes.

    • .setTitle(Page => String)
    • .setTitleOption(Page => Option[String])
  • .test.ReactTestUtils.renderIntoDocument creates detached DOM meaning that focus doesn't work. Added alternative methods that render a component into document.body for testing.

    • .renderIntoBody
    • .withRenderedIntoBody
    • .withRendered
  • Add to .test.{Keyboard,Mouse}EventData:

      def alt   = copy(altKey   = true)
      def ctrl  = copy(ctrlKey  = true)
      def meta  = copy(metaKey  = true)
      def shift = copy(shiftKey = true)
  • Add to .test.KeyboardEventData: .desc: String which provides a description like "Ctrl-Shift-Home".

  • Add to .test.ChangeEventData: .checked: Boolean.

  • Upgrade React to v15.3.2.

  • Upgrade scala-js-dom to v0.9.1.

  • Upgrade Scala.JS to v0.6.12.

  • Scalaz module updated to use v7.2.6.

  • Monocle module updated to use v1.2.2.