You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Improved component types.
- Also, small change, technically breaking, but half of it wasn't even working.
LayoutWindow now takes edgesProps and frameProps instead of prefixed attributes
(e.g. edges-class). Also there is no decosProps, they weren't actually passed
down before anyways.
/** The owning window, needed so we can correctly scale coordinates. */
103
-
win:LayoutWindow
104
-
/** The active frame, used to render the active edges. Calculate it from the `frames` returned by `useFrames` composable because otherwise it will be the wrong size while dragging. */
Copy file name to clipboardExpand all lines: src/runtime/components/LayoutFrame.vue
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
1
<template>
2
-
<!-- @vue-expect-error just let it inherit extra attrs -->
3
2
<!-- overflow-hidden is just in case, if the frame's css is not properly set to h-full, overflow-auto, or the border/padding are too large, we can still get overflows -->
/** The owning window, needed so we can correctly scale coordinates. */
309
+
win: LayoutWindow
310
+
/** The active frame, used to render the active edges. Calculate it from the `frames` returned by `useFrames` composable because otherwise it will be the wrong size while dragging. */
0 commit comments