Skip to content

Releases: ming-codes/ember-cli-d3

v1.1.5

Choose a tag to compare

@ming-codes ming-codes released this 21 Mar 05:29
  • #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

Choose a tag to compare

@ming-codes ming-codes released this 28 Feb 02:33
  • #49 getowner polyfill needs to be in dependencies

v1.1.3

Choose a tag to compare

@ming-codes ming-codes released this 15 Feb 19:30
  • Remove Ember 2.3 deprecation and add polyfill #46

v1.1.2

Choose a tag to compare

@ming-codes ming-codes released this 14 Dec 00:49
  • #36 The addon options should actually be optional.

v1.1.1

Choose a tag to compare

@ming-codes ming-codes released this 14 Dec 00:39
  • #34 Fix Reference Error

v1.1.0

Choose a tag to compare

@ming-codes ming-codes released this 09 Dec 05:19
  • Upgrade d3-plugins-dist to v3

v1.0.1

Choose a tag to compare

@ming-codes ming-codes released this 22 Oct 05:04
  • #25 Hooks need to call _super

v1.0.0 Major Release

Choose a tag to compare

@ming-codes ming-codes released this 09 Oct 04:58

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

Choose a tag to compare

@ming-codes ming-codes released this 04 Oct 22:54
  • [BUGFIX] Error from adding add-on due do missing dependency #23

v0.7.0

Choose a tag to compare

@ming-codes ming-codes released this 04 Oct 05:39
  • d3-support added #requiredProperties to ensure all required properties are not empty before call.
  • Upgrade d3-plugins-dist to 2.x
  • Doc improvements