mirror of
https://github.com/penpot/penpot.git
synced 2026-08-08 22:08:39 +00:00
* ✨ Remove guides from svg overlay * 🎉 Draw guides in wasm * 🎉 Serialize guides to wasm * ✨ Store separate and sorted horizontal and vertical guides * 🎉 Implement collision detection with guides * 🎉 Right click on guides to change color or remove * ✨ Implement dragging guides * 🎉 Edit wasm guides by double clicking them * 🎉 Implement changing mouse cursor on hovering a guide * ✨ Show guide pill on hover * 🎉 Implement removing guide on hovering + Del * 🔧 Fix lint + fmt errors * 🎉 Clip out outer board guide lines * ♻️ Extract common code into guide-pill* component * 🎉 Draw dotted lines on hovering board guides * 🐛 Fix board rotation when it has guides * 🎉 Make foreign guides not visible in focus mode
17 lines
257 B
Rust
17 lines
257 B
Rust
pub mod blend;
|
|
pub mod blurs;
|
|
pub mod fills;
|
|
pub mod fonts;
|
|
pub mod layouts;
|
|
pub mod mem;
|
|
pub mod paths;
|
|
pub mod rulers;
|
|
pub mod shadows;
|
|
pub mod shapes;
|
|
pub mod strokes;
|
|
pub mod svg_attrs;
|
|
pub mod text;
|
|
pub mod text_editor;
|
|
pub mod transforms;
|
|
pub mod ui;
|