-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fixes issue where dragstart would fire when pointerdown was held
- Loading branch information
1 parent
433252f
commit cc5ab6a
Showing
7 changed files
with
351 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,5 @@ export { useRouteAnnouncer } from '#app/composables/route-announcer'; | |
export { onBeforeRouteLeave, onBeforeRouteUpdate, useLink } from 'vue-router'; | ||
export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, defineModel, defineOptions, defineSlots, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, Component, ComponentPublicInstance, ComputedRef, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode } from 'vue'; | ||
export { injectHead, useHead, useSeoMeta, useHeadSafe, useServerHead, useServerSeoMeta, useServerHeadSafe } from '@unhead/vue'; | ||
export { useNuxtDevTools } from '../../node_modules/.pnpm/@[email protected][email protected][email protected]_@[email protected][email protected][email protected][email protected]_/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools'; | ||
export { definePageMeta } from '../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/pages/runtime/composables'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,7 @@ declare global { | |
const useModel: typeof import('../../../node_modules/.pnpm/[email protected][email protected]/node_modules/vue')['useModel'] | ||
const useNuxtApp: typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/nuxt')['useNuxtApp'] | ||
const useNuxtData: typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/asyncData')['useNuxtData'] | ||
const useNuxtDevTools: typeof import('../../../node_modules/.pnpm/@[email protected][email protected][email protected]_@[email protected][email protected][email protected][email protected]_/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools')['useNuxtDevTools'] | ||
const usePreviewMode: typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/preview')['usePreviewMode'] | ||
const useRequestEvent: typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/ssr')['useRequestEvent'] | ||
const useRequestFetch: typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/ssr')['useRequestFetch'] | ||
|
@@ -293,6 +294,7 @@ declare module 'vue' { | |
readonly useModel: UnwrapRef<typeof import('../../../node_modules/.pnpm/[email protected][email protected]/node_modules/vue')['useModel']> | ||
readonly useNuxtApp: UnwrapRef<typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/nuxt')['useNuxtApp']> | ||
readonly useNuxtData: UnwrapRef<typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/asyncData')['useNuxtData']> | ||
readonly useNuxtDevTools: UnwrapRef<typeof import('../../../node_modules/.pnpm/@[email protected][email protected][email protected]_@[email protected][email protected][email protected][email protected]_/node_modules/@nuxt/devtools/dist/runtime/use-nuxt-devtools')['useNuxtDevTools']> | ||
readonly usePreviewMode: UnwrapRef<typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/preview')['usePreviewMode']> | ||
readonly useRequestEvent: UnwrapRef<typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/ssr')['useRequestEvent']> | ||
readonly useRequestFetch: UnwrapRef<typeof import('../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/composables/ssr')['useRequestFetch']> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,18 +10,22 @@ type NuxtAppInjections = | |
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/revive-payload.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/head/runtime/plugins/unhead.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/pages/runtime/plugins/router.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/payload.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/revive-payload.server.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/chunk-reload.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/pages/runtime/plugins/prefetch.client.js").default> | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/pages/runtime/plugins/prefetch.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/pages/runtime/plugins/check-if-page-unused.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/@[email protected][email protected][email protected]_@[email protected][email protected][email protected][email protected]_/node_modules/@nuxt/devtools/dist/runtime/plugins/devtools.server.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/@[email protected][email protected][email protected]_@[email protected][email protected][email protected][email protected]_/node_modules/@nuxt/devtools/dist/runtime/plugins/devtools.client.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/dev-server-logs.js").default> & | ||
InjectionType<typeof import("../../../node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected][email protected]_magicast@0_hxxfk7ycp265twoy2ueiwjc44a/node_modules/nuxt/dist/app/plugins/check-if-layout-used.js").default> | ||
|
||
declare module '#app' { | ||
interface NuxtApp extends NuxtAppInjections { } | ||
|
||
interface NuxtAppLiterals { | ||
pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:payload' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch' | ||
pluginName: 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:checkIfPageUnused' | 'nuxt:checkIfLayoutUsed' | ||
} | ||
} | ||
|
||
|
Oops, something went wrong.