Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Releases: abelljs/abell-renderer

0.4.2 - Use scopedSelector inside setTimeout and other delayed callbacks

14 Mar 14:00
ca9f87f
Compare
Choose a tag to compare

0.4.1 - fix scopedSelector is defined bug

03 Mar 18:37
363f268
Compare
Choose a tag to compare
  • Fix scopedSelector is defined bug by changing const scopedSelector = to window.scopedSelector =

0.4.0 - Scoped Scripts are here!!

20 Nov 09:16
Compare
Choose a tag to compare

Features

  • Add scopedSelector and scopedSelectorAll to component scripts
  • Add __dirname, __filename to files.

Bug Fixes

v0.3.2 - Performance Upgrade

29 Oct 15:41
Compare
Choose a tag to compare

v0.3.2 (Latest)

0.3.1 - Scoped CSS

21 Sep 10:25
Compare
Choose a tag to compare

v0.3.1 (Latest)

  • Fix exitting dev-server on module not found errors.

v0.3.0

  • Scoped CSS Support (Hugee shoutout to @pantharshit00)
  • Syntax warnings for multiple statements in a block.
  • More reliable code.
  • Bug fix for const not being true constant.
  • Fix multiple values-less attribute parsing error
  • Better file not found errors for .abell and other files.
  • Refactor
  • Moved to JEST for testing (@pantharshit00)

0.2.0 - Abell Components

14 Aug 20:08
b2bcf7c
Compare
Choose a tag to compare
  • Default value of props in components is now empty object instead of undefined.
  • Multi-line support for writing component tag.
  • Convert Array into String by joining the values.
  • Now devs would not have to write .join next to map, to remove commas.
  • Naming rule of having .component.abell extension, removed. Any file that ends with .abell, can be a component.
  • Filename and error line in error stack 🎉
  • Error when brackets and value had no space, fixed (e.g. {{a}})
  • Nested Components
  • Better Error logs
  • Support for Abell Components when allowComponents flag is passed in options.

0.2.0-alpha.2 - Abell Components First Working Prototype

24 Jul 18:44
Compare
Choose a tag to compare
  • Abell Components Working Prototype
  • Lodash Vulnerability fix

0.1.11

04 Jun 13:53
Compare
Choose a tag to compare
0.1.11 Pre-release
Pre-release

Changelog

  • Trim value before adding.

0.1.7 - 0.1.10

28 May 07:32
Compare
Choose a tag to compare
0.1.7 - 0.1.10 Pre-release
Pre-release

Changelog

v0.1.10

  • BREAKING CHANGE, SECURITY UPDATE
    To use require() in the template, user will have to pass allowRequire: true in option. This option is by default set to false.
    const newHTMLTemplate = abellRenderer.render(
      myAbellTemplate, 
      mySandbox, 
      {allowRequire: true}
    );

v0.1.9

  • Fix to recursively find and create nested .abell files

v0.1.8

  • basePath is set to paths relative to input files.

v0.1.7

  • BUG FIX
    Allowing CLI to build without output path

0.1.6

21 May 05:38
Compare
Choose a tag to compare
0.1.6 Pre-release
Pre-release

Changelog

  • MAJOR CHANGE
    Added ability to escape the brackets with a slash('')