@witchcraft/layout 0.5.8 → 0.5.10

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.
Files changed (33) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/LayoutDragEdgeHandle.d.vue.ts +2 -3
  3. package/dist/runtime/components/LayoutDragEdgeHandle.vue +1 -1
  4. package/dist/runtime/components/LayoutDragEdgeHandle.vue.d.ts +2 -3
  5. package/dist/runtime/components/LayoutDragEdges.vue +1 -1
  6. package/dist/runtime/components/LayoutIntersectionHandle.d.vue.ts +2 -3
  7. package/dist/runtime/components/LayoutIntersectionHandle.vue +1 -2
  8. package/dist/runtime/components/LayoutIntersectionHandle.vue.d.ts +2 -3
  9. package/dist/runtime/components/LayoutWindow.d.vue.ts +2 -1370
  10. package/dist/runtime/components/LayoutWindow.vue +0 -2
  11. package/dist/runtime/components/LayoutWindow.vue.d.ts +2 -1370
  12. package/dist/runtime/composables/useFrames.d.ts +2 -1062
  13. package/dist/runtime/move/ActionHandler.d.ts +1 -1
  14. package/dist/runtime/move/ActionHandler.js +1 -1
  15. package/dist/runtime/move/CloseAction.d.ts +2 -2
  16. package/dist/runtime/move/CloseAction.js +2 -2
  17. package/dist/runtime/move/FrameDragAction.d.ts +2 -2
  18. package/dist/runtime/move/SplitAction.d.ts +2 -2
  19. package/dist/runtime/move/SplitAction.js +1 -1
  20. package/dist/runtime/types/index.d.ts +3 -1
  21. package/dist/runtime/types/vue.d.ts +15 -18
  22. package/package.json +1 -1
  23. package/src/runtime/components/LayoutDragEdgeHandle.vue +2 -2
  24. package/src/runtime/components/LayoutDragEdges.vue +1 -1
  25. package/src/runtime/components/LayoutIntersectionHandle.vue +2 -3
  26. package/src/runtime/components/LayoutWindow.vue +0 -2
  27. package/src/runtime/composables/useFrames.ts +8 -4
  28. package/src/runtime/move/ActionHandler.ts +3 -3
  29. package/src/runtime/move/CloseAction.ts +4 -4
  30. package/src/runtime/move/FrameDragAction.ts +3 -3
  31. package/src/runtime/move/SplitAction.ts +3 -3
  32. package/src/runtime/types/index.ts +3 -1
  33. package/src/runtime/types/vue.ts +24 -5
@@ -98,7 +98,6 @@ const actionHandler = props.actionHandler ?? markRaw(new ActionHandler(
98
98
  ],
99
99
  {
100
100
  onEvent: (e, cancel) => {
101
- showMoving.value = true;
102
101
  if (e instanceof KeyboardEvent && e.key === "Escape") {
103
102
  cancel();
104
103
  }
@@ -108,7 +107,6 @@ const actionHandler = props.actionHandler ?? markRaw(new ActionHandler(
108
107
  },
109
108
  onEnd: () => {
110
109
  requestType.value = void 0;
111
- showMoving.value = true;
112
110
  }
113
111
  }
114
112
  ));