v4.3.0
Fixes
- Project dependency updates by @burakukula ⚒
- Absolutely positioned nodes are now correctly sorted by their
z-index(by @jostermanAtPEW)
API Improvements
- ability to create layer styles by @daynekilheffer
const doc = new Document();
const boxNode = document.querySelector('box');
const boxLayer = nodeToSketchLayers(boxNode)[0];
boxLayer.setName('Box');
doc.addLayerStyle(boxLayer); // 🆕 - when using
asketch2sketchdirectly, you can now specify not to clear the page and shared styles (by @KimDal-hyeong)