Matthew Ary

Results 46 comments of Matthew Ary

It should be implicitly inherited. On Fri, Apr 28, 2023, 1:29 AM 1Luc1 ***@***.***> wrote: > Maybe I don't understand the actual issue or I don't know how to use...

I might have the confidence to take this on in the future, but right now I don't because this bug is weird and the actual cause of the problem is...

See the following for references and examples: - https://vuejs.org/guide/typescript/composition-api.html - https://www.radix-vue.com/guides/styling.html#extending-a-primitive This is what I would like to be able to do but currently cannot. ```vue import { VCard, type...

@websitevirtuoso I don't think so. It seems like the team has expanded the scope of this issue such that it's be come a META issue.

@KaelWD Perhaps a solution to making component prop types accessible could be found at [packages/component-meta](https://github.com/vuejs/language-tools/tree/master/packages/component-meta#vue-component-meta)

I found a partial solution. ```typescript import { VSheet } from 'vuetify/components'; import { type ExtractPropTypes } from 'vue' type VSheetPropTypes = Partial ``` I say partial because while you...

Perhaps https://vuejs.org/api/utility-types.html#extractpublicproptypes `ExtractPublicPropTypes` would be better? Update: Not seeing a significant difference, but it would probably be better to use this anyways.

ValidationRule should also get exported. https://github.com/vuetifyjs/vuetify/blob/b87b28f72990ca0227906a266bbb58793332fcb8/packages/vuetify/src/composables/validation.ts#L15C1-L20C52

This doesn't seem to work with Vuetify Component Types either. https://github.com/vuejs/language-tools/tree/master/packages/component-type-helpers