@n-uf/hypr-tiling 26.7.0
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 +145 -0
- package/README.md +242 -0
- package/dist/chunk-ZCGZOWOY.mjs +9871 -0
- package/dist/devtools.cjs +12001 -0
- package/dist/devtools.d.mts +111 -0
- package/dist/devtools.d.ts +111 -0
- package/dist/devtools.mjs +2286 -0
- package/dist/drag-easing-5WbK3T82.d.ts +605 -0
- package/dist/drag-easing-KxPPNNZT.d.mts +605 -0
- package/dist/engine.cjs +9899 -0
- package/dist/engine.d.mts +314 -0
- package/dist/engine.d.ts +314 -0
- package/dist/engine.mjs +116 -0
- package/dist/index.cjs +9833 -0
- package/dist/index.d.mts +74 -0
- package/dist/index.d.ts +74 -0
- package/dist/index.mjs +125 -0
- package/dist/tiling-renderer-kTlSm4H4.d.mts +2185 -0
- package/dist/tiling-renderer-kTlSm4H4.d.ts +2185 -0
- package/package.json +96 -0
package/dist/engine.mjs
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import {
|
|
2
|
+
BASELINE_DRAG_HOP_DURATION_MS,
|
|
3
|
+
EMPTY_FOCUS_HISTORY,
|
|
4
|
+
FOCUS_HISTORY_DEFAULT_LIMIT,
|
|
5
|
+
INSTANT_DRAG_DURATION_MS,
|
|
6
|
+
MULTI_SELECT_GROUP_MIN_MEMBERS,
|
|
7
|
+
TILING_DROP_INTENT_CONFIG,
|
|
8
|
+
TILING_KEYMAP_DEFAULTS,
|
|
9
|
+
accentHue,
|
|
10
|
+
canGroupMultiSelection,
|
|
11
|
+
chordRequiresModifier,
|
|
12
|
+
clampCursorPointToViewport,
|
|
13
|
+
collectGroups,
|
|
14
|
+
collectSplitNodes,
|
|
15
|
+
commandRequiredCapability,
|
|
16
|
+
defaultKeyBindings,
|
|
17
|
+
findLeafByDirection,
|
|
18
|
+
findLeafById,
|
|
19
|
+
groupLeaves,
|
|
20
|
+
hasAnyModifier,
|
|
21
|
+
insertLeafAdjacent,
|
|
22
|
+
isCssEasing,
|
|
23
|
+
isResizeAxisEnabled,
|
|
24
|
+
isStaticAlongSplitAxis,
|
|
25
|
+
isStaticInDimension,
|
|
26
|
+
isStaticOnCrossAxis,
|
|
27
|
+
isStructurallyValidLayout,
|
|
28
|
+
keyboardActionToCommand,
|
|
29
|
+
layoutContainsStaticPane,
|
|
30
|
+
matchKeyBinding,
|
|
31
|
+
matchKeyChord,
|
|
32
|
+
matchKeymapAction,
|
|
33
|
+
moveLeafToRoot,
|
|
34
|
+
moveLeafToSplitContainer,
|
|
35
|
+
pruneFocusHistory,
|
|
36
|
+
pruneMultiSelection,
|
|
37
|
+
pushFocusHistory,
|
|
38
|
+
readLeafNodeIds,
|
|
39
|
+
removeLeafTile,
|
|
40
|
+
renormalizeFlexibleRatios,
|
|
41
|
+
resolveDragCursorPresentation,
|
|
42
|
+
resolveDragEasing,
|
|
43
|
+
resolveFocusCurrentOrLast,
|
|
44
|
+
resolveKeymap,
|
|
45
|
+
resolveMaximizeToggle,
|
|
46
|
+
resolveMultiSelectGroupCommand,
|
|
47
|
+
resolveMultiSelectGroupHost,
|
|
48
|
+
resolveSizingMode,
|
|
49
|
+
setLeafSizing,
|
|
50
|
+
shouldRenderSplitDivider,
|
|
51
|
+
siblingSubtreeForLeaf,
|
|
52
|
+
swapLeafTiles,
|
|
53
|
+
tileOrderByLeafId,
|
|
54
|
+
toggleLeafMultiSelection,
|
|
55
|
+
toggleSplitAxis,
|
|
56
|
+
ungroupNode,
|
|
57
|
+
updateSplitRatio
|
|
58
|
+
} from "./chunk-ZCGZOWOY.mjs";
|
|
59
|
+
export {
|
|
60
|
+
BASELINE_DRAG_HOP_DURATION_MS,
|
|
61
|
+
EMPTY_FOCUS_HISTORY,
|
|
62
|
+
FOCUS_HISTORY_DEFAULT_LIMIT,
|
|
63
|
+
INSTANT_DRAG_DURATION_MS,
|
|
64
|
+
MULTI_SELECT_GROUP_MIN_MEMBERS,
|
|
65
|
+
TILING_DROP_INTENT_CONFIG,
|
|
66
|
+
TILING_KEYMAP_DEFAULTS,
|
|
67
|
+
accentHue,
|
|
68
|
+
canGroupMultiSelection,
|
|
69
|
+
chordRequiresModifier,
|
|
70
|
+
clampCursorPointToViewport,
|
|
71
|
+
collectGroups,
|
|
72
|
+
collectSplitNodes,
|
|
73
|
+
commandRequiredCapability,
|
|
74
|
+
defaultKeyBindings,
|
|
75
|
+
findLeafByDirection,
|
|
76
|
+
findLeafById,
|
|
77
|
+
groupLeaves,
|
|
78
|
+
hasAnyModifier,
|
|
79
|
+
insertLeafAdjacent,
|
|
80
|
+
isCssEasing,
|
|
81
|
+
isResizeAxisEnabled,
|
|
82
|
+
isStaticAlongSplitAxis,
|
|
83
|
+
isStaticInDimension,
|
|
84
|
+
isStaticOnCrossAxis,
|
|
85
|
+
isStructurallyValidLayout,
|
|
86
|
+
keyboardActionToCommand,
|
|
87
|
+
layoutContainsStaticPane,
|
|
88
|
+
matchKeyBinding,
|
|
89
|
+
matchKeyChord,
|
|
90
|
+
matchKeymapAction,
|
|
91
|
+
moveLeafToRoot,
|
|
92
|
+
moveLeafToSplitContainer,
|
|
93
|
+
pruneFocusHistory,
|
|
94
|
+
pruneMultiSelection,
|
|
95
|
+
pushFocusHistory,
|
|
96
|
+
readLeafNodeIds,
|
|
97
|
+
removeLeafTile,
|
|
98
|
+
renormalizeFlexibleRatios,
|
|
99
|
+
resolveDragCursorPresentation,
|
|
100
|
+
resolveDragEasing,
|
|
101
|
+
resolveFocusCurrentOrLast,
|
|
102
|
+
resolveKeymap,
|
|
103
|
+
resolveMaximizeToggle,
|
|
104
|
+
resolveMultiSelectGroupCommand,
|
|
105
|
+
resolveMultiSelectGroupHost,
|
|
106
|
+
resolveSizingMode,
|
|
107
|
+
setLeafSizing,
|
|
108
|
+
shouldRenderSplitDivider,
|
|
109
|
+
siblingSubtreeForLeaf,
|
|
110
|
+
swapLeafTiles,
|
|
111
|
+
tileOrderByLeafId,
|
|
112
|
+
toggleLeafMultiSelection,
|
|
113
|
+
toggleSplitAxis,
|
|
114
|
+
ungroupNode,
|
|
115
|
+
updateSplitRatio
|
|
116
|
+
};
|