Skip to content

Releases: apertureless/vue-breakpoints

馃拵 Release new version 1.1.0

05 Apr 16:48
Compare
Choose a tag to compare

3NtY188QaxDdC

Biggest change now is, that the surrounding divs which were produced by the <hideAt/> and <showAt/> components are removed now. This leads to cleaner output. If you pass your components or markup into the slot.

馃毃 However! This has a downside! You can now only pass 1 root tag into the components. Which means:

鉁匳alid

<hide-at>
  <h1>Hello World</h1>
</hide-at>
<hide-at>
  <section>
	<h1>Welcome!</h1>
    <p>Have fun with vue-breakpoints!</p>
  </section>
</hide-at>

馃毇Invalid

<hide-at>
  <h1>Hello World</h1>
  <p>This is invalid because of multiple root nodes :c</p>
</hide-at>

Features

  • debug: Add proper render condition and console warnings (3afe976)
  • render: Remove surrounding divs in render function (9395fab)

馃拵 Release new version 1.0.0

19 Sep 15:40
Compare
Choose a tag to compare

馃拵 Release new version 0.2.0

02 Sep 14:33
Compare
Choose a tag to compare

馃拵 Release new version 0.1.0

29 Aug 12:36
Compare
Choose a tag to compare

Intial release

Heavily inspired by Airbnb react-show-at and react-hide-at components