js-draw 0.17.0 → 0.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,19 @@
1
+ # 0.17.2
2
+ * Bug fixes
3
+ - TextComponent: Fix sub-components not cloning when cloning a parent `TextComponent`
4
+ - This was causing duplicated `TextComponent`s to have, in part, the same styles as the original, even after attempting to restyle them with the restyle tool.
5
+ - Find tool: Don't add viewport transformations to the undo stack.
6
+ - Collaborative editing: Fix changing background size/location not synced between editors.
7
+ - Upgrade dependencies to latest versions ([see commit for details](https://github.com/personalizedrefrigerator/js-draw/commit/427a64037320ca96232d47f268258206398f3796))
8
+
9
+ # 0.17.1
10
+ * Bug fixes
11
+ - [Only partially fixed] Fix restyling duplicated TextComponents also restyling the original.
12
+ - Fix contents of overflow menu not changing on screen resize if the overflow menu was open.
13
+
1
14
  # 0.17.0
2
15
  * Breaking changes
3
- - `SerializableCommand::serialize` may no longer serialize accurately when the command to serialize is not on top of the undo/redo stack.
16
+ - `SerializableCommand::serialize` may no longer serialize accurately when the command to serialize is not on top of the undo/redo stack. (This change was made to improve performance.)
4
17
  * Toolbar overflow menu:
5
18
  - Prefer horizontal menu to veritcal for only 1-2 overflow items.
6
19
  - Prefer wrapping to scrolling.