Skip to content

Releases: projectcaluma/ember-caluma

v1.0.1

06 Jun 11:33
Compare
Choose a tag to compare

1.0.1 (2019-06-06)

Bug Fixes

  • form: allow stacking of info modals (bab5166)

v1.0.0

31 May 13:25
Compare
Choose a tag to compare

1.0.0 (2019-05-31)

Bug Fixes

  • deps: update dependency ember-changeset to v2.1.1 (e0be925)
  • deps: update dependency ember-cli-string-helpers to v2.1.0 (e2d77c5)
  • deps: update dependency ember-concurrency to v0.10.1 (c8259be)
  • deps: update dependency graphql to v14.3.1 (782a11e)
  • deps: update ember-cli-mirage to v1.0.0 (0ff0e23)

Features

  • mirage: add option to disable mirage support (93531d1)
  • navigation: add previous / next pagination (6aea609)
  • navigation: allow customization of the navigation (fe61ca8)

BREAKING CHANGES

  • navigation: this changes the way a form is used in the host
    application. Before, the cf-navigation component rendered the whole
    navigation and the form in it. Now there is a wrapper component
    cf-content which yields or renders the form and the navigation. This
    way the host app is able to customize where to render the navigation and
    the form. Also the host app does not need to pass the section and
    subSection query parameters since they are taken directly from the
    router.

Before:

{{cf-navigation
  documentId=documentId
  context=context
  section=section
  subSection=subSection
}}

After:

{{cf-content documentId=documentId context=context}}
  • deps: This change requires the users of ember-caluma to
    manually add faker and ember-auto-import to their devDependencies:

yarn add -D faker ember-auto-import

This is necessary because ember-cli-mirage stopped including faker in
their build. Since we expose factories using faker to the host app, they
need to install this.

v0.3.0

27 May 14:16
Compare
Choose a tag to compare

0.3.0 (2019-05-27)

Features

  • field: recompute optional property on value or hidden changes (fd18d43)

v0.2.0

22 May 15:09
Compare
Choose a tag to compare

0.2.0 (2019-05-22)

Bug Fixes

  • cf-navigation: add compute watcher on hidden state (#225) (41ba470)
  • cf-navigation: add minor safety checks (#217) (cf3ca9e)
  • deps: remove obsolete dependency (be4dbad)
  • deps: update @adfinis-sygroup/semantic-release-config (2225e00)
  • deps: update dependency ember-uikit to ^0.8.0 (#219) (28a841b)
  • deps: update dependency ember-uikit to v0.8.1 (#223) (b892a50)
  • deps: update dependency graphql to v14.3.0 (#208) (6cf38cc)
  • deps: update dependency sass to v1.20.1 (#196) (1d7a944)
  • field: drop running requests on next (aa5f99c)
  • field: fix invalid state of a field (8c3d6b4)
  • form builder: fix handling of existing metadata (4d9071f)
  • form builder: fix usage of nested properties in the question editor (97a59a5)
  • ie 11: add "manual" polyfill for array.flat (#199) (fde3a0f)
  • mirage: update mirage schema and fix generic scalar type (c1cdaa1)
  • navigation: fix document states in navigation (480b67b)
  • powerselect: render correct slected option for choice questions (#254) (837ca8c)
  • table: dialog didn't reopen (#243) (7754585)
  • table: disable form in table on disabled question (c79a380)
  • table: fix table rendering for dynamic choice fields (#239) (5d40c13)
  • translations: add missing translations (e786b52)
  • consider empty but required fields (#220) (3538471)
  • validation: add validation for static, fix multiple choice (#228) (7ab76a7)
  • do not display warning if no override (3c2bf1d)
  • remove jexl logic and hide toggle (#233) (9627dec)

Features

  • cf-form: all passing context information to cf-form, cf-navigation (7372e4d)
  • cf-form: allow passing context information to cf-form, cf-navigation (#218) (2955dc6)
  • add jexl textarea for isRequired (#232) (7b3e16a)
  • add table column display configuration (#237) (88a1ae9), closes #236
  • cf-navigation: add disabled attribute (#242) (926b9de)
  • cf-navigation: add possibility to pass custom headers (#255) (16e4448)
  • form: enable widget overrides for forms (581de15)
  • jexl: support jexl referencing TableQuestions (#229) (858d95e)
  • table: remove action buttons in disabled state (#238) (9037a3b)
  • table: show spinner while saving (fe4fc33)

v0.1.0

08 May 20:20
Compare
Choose a tag to compare

0.1.0 (2019-05-08)

Bug Fixes

  • cf-navigation: auto-link empty form sections to first subsection (#185) (a50a442)
  • deps: downgrade to jexl 1.x for IE 11 compat (#197) (cca7d03)
  • deps: Move ember-cli-showdown to dependencies (#171) (2dca978)
  • deps: update dependency ember-cli-sass to v10 (#32) (2877c64)
  • deps: update dependency ember-composable-helpers to v2.3.1 (#156) (0a1498d)
  • info: replace drop by modal (#193) (ea2a026)
  • jexl: add custom intersects operator to jexl AST parser (#183) (30ddf10)
  • jexl: don't consider the value of hidden fields in JEXL expr. (#198) (f934741)
  • table: render download links for file questions in tables (#187) (25cfd80)
  • translations: add missing german translations (#152) (dba21ec)
  • validation: ignore hidden required fields (#175) (2d1f490)

Features