Skip to content

v1.0.0-beta.9

Compare
Choose a tag to compare
@k9p5 k9p5 released this 19 Aug 14:53
· 161 commits to main since this release
1a4b7f2
  • Added properties to all Clip constructors for a more efficient initialization

v1.0.0-beta.8

const text = new core.TextClip('Bunny - Our Brave Hero')
      .set({ position: 'center', stop: 90, stroke: { color: '#000000' } }); // will trigger 2 update events

v1.0.0-beta.9

const text = new core.TextClip({
      text: 'Bunny - Our Brave Hero',
      position: 'center',
      stop: 90,
      stroke: { color: '#000000' },
}); // will trigger a single update event
  • Improved set method typing by defining dedicated interfaces