Skip to content

Releases: projectcaluma/ember-caluma

v1.2.4

02 Jul 07:20
Compare
Choose a tag to compare

1.2.4 (2019-07-02)

Bug Fixes

  • deps: update dependency sass to v1.22.2 (3881d3c)
  • deps: update ember infrastructure (7a63a38)
  • form: fix wrong updating of the answer value (091831e)

v1.2.3

01 Jul 14:40
Compare
Choose a tag to compare

1.2.3 (2019-07-01)

Bug Fixes

  • deps: update dependency ember-fetch to v6.6.0 (cfc9e85)
  • deps: update dependency ember-math-helpers to v2.11.3 (bd205da)
  • deps: update dependency graphql to v14.4.0 (ed9fdb4)
  • deps: update dependency graphql to v14.4.1 (c0bf301)
  • deps: update dependency sass to v1.22.1 (9a86dc0)
  • form: fix resetting of values on slow input (e07388a)

v1.2.2

25 Jun 07:38
Compare
Choose a tag to compare

1.2.2 (2019-06-25)

Bug Fixes

  • deps: update dependency ember-cli-string-helpers to v3 (fc4d0c3)
  • deps: update dependency ember-math-helpers to v2.11.2 (13241bc)
  • deps: update dependency graphql-tools to v4.0.5 (094f60c)
  • deps: update dependency sass to v1.22.0 (4d94453)
  • form: add missing validation function for form questions (c9a4a0f)
  • form: fix answer handling of powerselect widget (cb37130)
  • form: fix loading of subforms and improve error handling (b47cd4d)
  • form: fix wrong answer when clicking checkboxes too fast (8b8bc30)
  • table: allow tables to have documents as value (017515f)

v1.2.1

19 Jun 15:53
Compare
Choose a tag to compare

1.2.1 (2019-06-19)

Bug Fixes

  • table: fix answer handling of table questions (7923168)

v1.2.0

18 Jun 09:30
Compare
Choose a tag to compare

1.2.0 (2019-06-18)

Bug Fixes

  • deps: update dependency ember-cli-babel to v7.8.0 (c46c575)

Features

  • form: pass form and root form as context for jexl expressions (619ef0c)

v1.1.0

17 Jun 09:37
Compare
Choose a tag to compare

1.1.0 (2019-06-17)

Bug Fixes

  • babel: remove obsolete babel config (53846bf)
  • deps: remove tough-cookie resolution (9dd9506)
  • deps: update dependency apollo-link-context to v1.0.18 (5449909)
  • deps: update dependency ember-auto-import to v1.4.1 (144e81c)
  • deps: update dependency ember-intl to v4 (3536974)
  • form builder: fix float inputs (6c111e5)
  • intl: update the ember-intl config to the latest version (41522fa)

Features

  • form: prevent displaying of empty forms (5cbf7d3)

v1.0.2

13 Jun 10:58
Compare
Choose a tag to compare

1.0.2 (2019-06-13)

Bug Fixes

  • deps: remove dependency to liquid-fire (d0d7d60)
  • deps: update dependency ember-auto-import to v1.4.0 (5a86384)
  • deps: update dependency ember-changeset to v2.1.2 (b2c2e95)
  • deps: update dependency ember-concurrency to v1 (e29c588)
  • deps: update dependency ember-uikit to v0.8.2 (4990142)
  • deps: update dependency sass to v1.21.0 (ea032d5)
  • form: improve initial loading performance (fa4046b)
  • linting: fix linting error happening since the prettier update (9d61840)
  • table-date: correctly render date questions in table rows (b07aa82)

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)