Skip to content

Commit 7c341db

Browse files
fix: eslint
1 parent 8644bae commit 7c341db

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/vue-primitives/src/collection/stories/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ export interface ItemData {
44
demo: { disabled: boolean }
55
}
66

7-
export const [Collection, useCollection] = createCollection<HTMLElement, ItemData, 'demo'>('List')
7+
export const [Collection, useCollection] = createCollection<HTMLElement, ItemData>('List')

packages/vue-primitives/src/dismissable-layer/DismissableLayer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { computed, onWatcherCleanup, type Ref, shallowReactive, watch } from 'vue'
22
import { useEscapeKeydown } from '../hooks/index.ts'
3-
import { composeEventHandlers } from '../utils/vue.ts'
43
import { useFocusOutside, usePointerdownOutside } from './utils.ts'
54

65
export type PointerdownOutsideEvent = CustomEvent<{ originalEvent: PointerEvent }>

packages/vue-primitives/src/menu/MenuItemImpl.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { nextTick, shallowRef, watchEffect } from 'vue'
2+
import { shallowRef, watchEffect } from 'vue'
33
import { DATA_COLLECTION_ITEM } from '../collection/index.ts'
44
import { useComposedElements } from '../hooks/index.ts'
55
import { Primitive } from '../primitive/index.ts'

0 commit comments

Comments
 (0)