Skip to content

Releases: ming-codes/ember-cli-d3

v1.1.5

21 Mar 05:29
Compare
Choose a tag to compare
  • #52 Remove explicit layout in component
  • #55 Fix css box zero case
  • #59 Fix url shim to have correct number of arguments

v1.1.4

28 Feb 02:33
Compare
Choose a tag to compare
  • #49 getowner polyfill needs to be in dependencies

v1.1.3

15 Feb 19:30
Compare
Choose a tag to compare
  • Remove Ember 2.3 deprecation and add polyfill #46

v1.1.2

14 Dec 00:49
Compare
Choose a tag to compare
  • #36 The addon options should actually be optional.

v1.1.1

14 Dec 00:39
Compare
Choose a tag to compare
  • #34 Fix Reference Error

v1.1.0

09 Dec 05:19
Compare
Choose a tag to compare
  • Upgrade d3-plugins-dist to v3

v1.0.1

22 Oct 05:04
Compare
Choose a tag to compare
  • #25 Hooks need to call _super

v1.0.0 Major Release

09 Oct 04:58
Compare
Choose a tag to compare

BREAKING CHANGE

{{data-visual}} component now yields a stage object instead of the magic SVG. You can still access the magic SVG like so.

{{#data-visual as |stg width height|}}
  {{#cart-lines select=stg.svg.select.chart as |selection|}}
    {{cart-marker select=stg.svg.defs apply-to=selection}}
  {{/cart-lines}}
{{/data-visual}}

In additional to the SVG stage, there are canvas stage that lets you draw on <canvas> 2D. This allows developer to weave together visuals on both SVG and canvas, on the same coordinate system. This let's you take advantage of each specific technology for their strength. For example, rendering complex shapes and non-interactive objects in canvas, then overlay interactive shapes in SVG.

The change in API also paves way for support like HTML stage, WebGL stage, and custom stages like pathgl.

v0.7.1

04 Oct 22:54
Compare
Choose a tag to compare
  • [BUGFIX] Error from adding add-on due do missing dependency #23

v0.7.0

04 Oct 05:39
Compare
Choose a tag to compare
  • d3-support added #requiredProperties to ensure all required properties are not empty before call.
  • Upgrade d3-plugins-dist to 2.x
  • Doc improvements