Releases: projectcaluma/ember-caluma
Releases · projectcaluma/ember-caluma
v2.2.0
v2.1.3
2.1.3 (2019-07-24)
Bug Fixes
- deps: update dependency sass to v1.22.4 (74d2810)
- deps: update jexl (8040e05)
- form: fix premature access to validators which are not yet fetched (df6a6e6)
- form: fix removing of table rows (5ea7881)
- jexl: fix handling of whitespace characters (f783909)
- performance: improve loading performance and caching (7bcedab)
- performance: improve performance of state calculations (cb46c5b)
- tests: add failing test for whitespace jexl expressions (ba7d236)
v2.1.2
v2.1.1
v2.1.0
2.1.0 (2019-07-09)
Bug Fixes
- deps: update dependency ember-auto-import to v1.5.0 (67a1328)
- deps: update dependency ember-fetch to v6.7.0 (c2a0d5a)
- deps: update dependency ember-intl to v4.0.1 (2f3c772)
- form: fix removing of empty answers (bd6eb15)
Features
-
add format validation to text and textarea (de6d46f)
This requires the host app to pass the new
validator
service to the form-builder engine:// app/app.js const App = Application.extend({ // ... engines: { emberCaluma: { dependencies: { services: [ // ... "validator" ] } } } });