Skip to content

v1.24.0

Compare
Choose a tag to compare
@mauriciopoppe mauriciopoppe released this 16 Dec 04:32
· 68 commits to master since this release
5013eec

This release includes a new graph type to render text, for more details check the example in the main page at https://mauriciopoppe.github.io/function-plot/

functionPlot({
  target: '#text',
  data: [
    {
      graphType: 'text',
      location: [1, 1],
      text: 'hello world'
    },
    {
      graphType: 'text',
      location: [-1, -1],
      text: 'foo bar',
      attr: {
        'text-anchor': 'end'
      }
    }
  ]
})
  • chore: include missing typescript types/interfaces 252c88a
  • chore: update package-lock.json after removing clamp c5eeab0
  • docs: add text example 28df473
  • feat: new graph type text f025af7
  • fix: set key to use during join of g.graph be655e1
  • chore: cleanup public playground pages 6c4cd24
  • Fix issue in computed data split, remove clamp dependency edb1ea7
  • SamplerType is a subset of the only params neeeded from the Chart b0f1d83
  • Minimize dependency on Chart in space utility. 590b7cc
  • Fix an issue with ghost graphs, additional snapshot test images ca9f662
  • Setup image snapshot testing with puppeteer and jest-image-snapshot 9287a8b
  • Export function to register new graph types ed0b75f
  • build(deps): bump @babel/traverse and storybook 9fe2e4f

v1.23.4...v1.24.0