File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed
playgrounds/nuxt/app/pages/components Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 2929 },
3030 "./runtime/*" : " ./dist/runtime/*" ,
3131 "./components/*" : " ./dist/runtime/components/*" ,
32- "./composables/*" : " ./dist/runtime/composables/*" ,
32+ "./composables" : {
33+ "types" : " ./dist/runtime/composables/index.d.ts" ,
34+ "import" : " ./dist/runtime/composables/index.js"
35+ },
36+ "./composables/*" : {
37+ "types" : " ./dist/runtime/composables/*.d.ts" ,
38+ "import" : " ./dist/runtime/composables/*.js"
39+ },
3340 "./utils" : {
3441 "types" : " ./dist/runtime/utils/index.d.ts" ,
3542 "import" : " ./dist/runtime/utils/index.js"
6370 "components/*" : [
6471 " ./dist/runtime/components/*"
6572 ],
73+ "composables" : [
74+ " ./dist/runtime/composables/index.d.ts"
75+ ],
6676 "composables/*" : [
67- " ./dist/runtime/composables/*"
77+ " ./dist/runtime/composables/*.d.ts "
6878 ],
6979 "utils" : [
7080 " ./dist/runtime/utils/index.d.ts"
Original file line number Diff line number Diff line change 11<script setup lang="ts">
22import theme from ' #build/ui/kbd'
3- import { kbdKeysMap } from ' @nuxt/ui/composables/useKbd.js '
3+ import { kbdKeysMap } from ' @nuxt/ui/composables/useKbd'
44
55const sizes = Object .keys (theme .variants .size )
66const variants = Object .keys (theme .variants .variant )
Original file line number Diff line number Diff line change 11<script setup lang="ts">
2- import type { ShortcutsConfig } from ' @nuxt/ui/composables/defineShortcuts.js '
2+ import type { ShortcutsConfig } from ' @nuxt/ui/composables/defineShortcuts'
33
44const logs = ref <string []>([])
55const shortcutsState = ref ({
Original file line number Diff line number Diff line change 1+ export * from './defineLocale'
2+ export * from './defineShortcuts'
3+ export * from './useFileUpload'
4+ export * from './useKbd'
5+ export * from './useOverlay'
6+ export * from './useResizable'
7+ export * from './useScrollspy'
8+ export * from './useToast'
You can’t perform that action at this time.
0 commit comments