You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not showing error: Default export of the module has or is using private name 'ListItem'. for VCombobox
Actual Behavior
Showing error default export using private name.
The actual code of list-item composable is exported ListItem, but generated type of ListItem in vuetify.d.ts (and index.d.mts of VList, VCombobox) is private.
The text was updated successfully, but these errors were encountered:
Environment
Vuetify Version: 3.3.12
Vue Version: 3.3.4
Browsers: Chrome 116.0.0.0
OS: Mac OS 10.15.7
Steps to reproduce
VCombobox
and <script setup>"type-create": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.build.json",
When building the component, we see this error:
This may because VCombobox is using a private type ListItem.
When add export to interface ListItem, this error is gone.
related reading:
vuejs/language-tools#1232
Expected Behavior
Export type ListItem in generated index.d.mts
Not showing error:
Default export of the module has or is using private name 'ListItem'.
for VComboboxActual Behavior
Showing error default export using private name.
The actual code of list-item composable is exported ListItem, but generated type of ListItem in
vuetify.d.ts
(and index.d.mts of VList, VCombobox) is private.The text was updated successfully, but these errors were encountered: