Artem Melnyk
Artem Melnyk
Hello, I would like to customize the badge a bit. Can you provide the ability to show only the minimized size or only the gzipped size? That would be very...
@okikio Thank you!
I have also encountered this problem, but in my case it is `parameters.query` type. Here is example ```ts UsersController_get: { parameters?: { query?: { tier_id?: string; patreon_username?: string; discord_username?: string;...
> @MellKam Code example to pass attrs to component: [funny-family/vue3-ts-playground@`master`/src/app/shared/components/text-field/text-field.component.ts#L24](https://github.com/funny-family/vue3-ts-playground/blob/master/src/app/shared/components/text-field/text-field.component.ts?rgh-link-date=2023-08-29T02%3A40%3A03Z#L24) [funny-family/vue3-ts-playground@`master`/src/app/components/not-found/not-found.component.tsx#L190](https://github.com/funny-family/vue3-ts-playground/blob/master/src/app/components/not-found/not-found.component.tsx?rgh-link-date=2023-08-29T02%3A40%3A03Z#L190) Thanks for the example, but in my case I have no control over the component. I think I need...
I would like to have this feature too. In my case, I have the expensive validation in `useForm`, but only for a specific field. Currently, it is runs every time...
@jeffpohlmeyer I don't see the problem in here. ```vue {{ text.slice(0, X) }} {{ text.slice(X) }} {{ X }} ```
I fully agree with the @michael-harvey. We don't need a disabled state for the tooltip. This will complicate the logic, and worsen accessibility and performance. If you don't need to...
@jeffpohlmeyer If you need to truncate the text only in this place, then use this condition only in this place. Don't move logic that you use in only one place...
@jeffpohlmeyer I wouldn't recommend you to render the `TooltipContent` component conditionally. If you don't need to see the tooltip, then don't render it at all (The whole tree staring from...
@jeffpohlmeyer You can make some kind of wrapper for that. This is just an example, you can come up with better name and API. ```vue {{ truncateText(X, 36) }} ......