Skip to content

Commit 7e37668

Browse files
committedAug 4, 2024·
fix(module): suffix types imports with /index
Resolves #2018
1 parent 4d61936 commit 7e37668

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+48
-48
lines changed
 

‎src/runtime/components/data/Table.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ import UProgress from '../elements/Progress.vue'
121121
import UCheckbox from '../forms/Checkbox.vue'
122122
import { useUI } from '../../composables/useUI'
123123
import { mergeConfig, get } from '../../utils'
124-
import type { Strategy, Button, ProgressColor, ProgressAnimation } from '../../types'
124+
import type { Strategy, Button, ProgressColor, ProgressAnimation } from '../../types/index'
125125
// @ts-expect-error
126126
import appConfig from '#build/app.config'
127127
import { table } from '#ui/ui.config'

‎src/runtime/components/elements/Accordion.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ import UIcon from '../elements/Icon.vue'
7373
import UButton from '../elements/Button.vue'
7474
import { useUI } from '../../composables/useUI'
7575
import { mergeConfig, omit } from '../../utils'
76-
import type { AccordionItem, Strategy } from '../../types'
76+
import type { AccordionItem, Strategy } from '../../types/index'
7777
// @ts-expect-error
7878
import appConfig from '#build/app.config'
7979
import { accordion, button } from '#ui/ui.config'
@@ -194,7 +194,7 @@ export default defineComponent({
194194
attrs,
195195
buttonRefs,
196196
closeOthers,
197-
omit,
197+
omit: (omit as any),
198198
onEnter,
199199
onBeforeLeave,
200200
onAfterEnter,

0 commit comments

Comments
 (0)
Please sign in to comment.