canvas/dist/gestures/index.mjs.map

1 line
494 KiB
Text
Raw Normal View History

2026-03-11 18:42:08 -07:00
{"version":3,"sources":["../../src/gestures/types.ts","../../src/core/input-classifier.ts","../../src/gestures/normalize.ts","../../src/gestures/timed-state.ts","../../src/gestures/timed-state-runner.ts","../../src/gestures/specificity.ts","../../src/gestures/mapper.ts","../../src/gestures/keyboard-contexts.ts","../../src/gestures/pointer-bindings.ts","../../src/gestures/keyboard-bindings.ts","../../src/gestures/pointer-contexts.ts","../../src/gestures/contexts.ts","../../src/gestures/dispatcher.ts","../../src/gestures/inertia.ts","../../src/core/graph-store.ts","../../src/core/graph-position.ts","../../src/utils/debug.ts","../../src/utils/mutation-queue.ts","../../src/core/perf.ts","../../src/core/graph-derived.ts","../../src/core/viewport-store.ts","../../src/core/selection-store.ts","../../src/utils/layout.ts","../../src/core/group-store.ts","../../src/core/history-store.ts","../../src/core/history-actions.ts","../../src/core/graph-mutations.ts","../../src/core/graph-mutations-edges.ts","../../src/core/reduced-motion-store.ts","../../src/core/graph-mutations-advanced.ts","../../src/core/sync-store.ts","../../src/core/interaction-store.ts","../../src/core/locked-node-store.ts","../../src/core/node-type-registry.tsx","../../src/core/toast-store.ts","../../src/core/snap-store.ts","../../src/core/event-types.ts","../../src/core/action-types.ts","../../src/core/settings-state-types.ts","../../src/core/actions-node.ts","../../src/core/actions-viewport.ts","../../src/core/built-in-actions.ts","../../src/core/action-registry.ts","../../src/core/action-executor.ts","../../src/core/settings-store.ts","../../src/core/settings-presets.ts","../../src/core/canvas-serializer.ts","../../src/core/clipboard-store.ts","../../src/core/virtualization-store.ts","../../src/core/spatial-index.ts","../../src/core/input-store.ts","../../src/core/selection-path-store.ts","../../src/core/search-store.ts","../../src/core/gesture-rules-defaults.ts","../../src/core/gesture-rules.ts","../../src/core/gesture-rule-store.ts","../../src/core/external-keyboard-store.ts","../../src/commands/registry.ts","../../src/core/plugin-registry.ts","../../src/commands/store.ts","../../src/commands/store-atoms.ts","../../src/gestures/modifier-helpers.ts","../../src/gestures/gesture-classification.ts","../../src/gestures/input-action-helpers.ts","../../src/gestures/useCanvasGestures.ts","../../src/gestures/useGuardContext.ts","../../src/gestures/useInertia.ts","../../src/gestures/useWheelZoom.ts","../../src/gestures/usePinchZoom.ts","../../src/gestures/useNodeGestures.ts","../../src/gestures/useGestureSystem.ts","../../src/gestures/useInputModeGestureContext.ts","../../src/gestures/useRegisterInputActions.ts","../../src/gestures/GestureProvider.tsx","../../src/gestures/gesture-provider-utils.ts"],"sourcesContent":["/**\n * Gesture System v2 — Core Types\n *\n * Single source of truth for every type in the gesture pipeline.\n * No runtime code — pure type definitions.\n */\n\n// =============================================================================\n// Layer 1: Normalize\n// =============================================================================\n\nexport const NO_MODIFIERS = Object.freeze({\n shift: false,\n ctrl: false,\n alt: false,\n meta: false\n});\nexport const NO_HELD_KEYS = Object.freeze({\n byKey: Object.freeze({}),\n byCode: Object.freeze({})\n});\n\n// =============================================================================\n// Layer 2: Recognize\n// =============================================================================\n\n// =============================================================================\n// Layer 2: Timed State\n// =============================================================================\n\n// =============================================================================\n// Layer 3: Resolve\n// =============================================================================\n\n// =============================================================================\n// Layer 4: Dispatch\n// ======================