Skip to content

v3.3.0

Choose a tag to compare

@kdzwinel kdzwinel released this 22 Jun 11:59
· 51 commits to master since this release

Improvements

  • basic background-position support by @mxmul (#109) (this means support for image sprites πŸŽ‰)

before:
amazon-before

after:
amazon-after

  • shadow DOM support for nodeTreeToSketchGroup by @calebdwilliams (#103) - (this means support for web components πŸŽ‰)
  • support for multiple shadows by @KimDal-hyeong (#110) - (this means you can go crazy with shadows πŸŽ‰)

API Improvements

public setHasClippingMask(hasClippingMask: boolean): void;
  • ability to set position of the ShapeGroup by @mxmul
public setPosition(position: Position): void;
  • new type of object - Bitmap by @mxmul
export default class Bitmap extends Base {
  constructor(props: BitmapProps);
}

Fixes

  • removed unnecessary wrappers around SVG by @burakukula

before:

after:

screen shot 2018-06-22 at 13 40 36