Thanks for the info! Unfortunately it has 145 kb which is a bit too big for just a validation imo. But I guess phone number validation is the super complicated thing you can do if you want to all m...
I know it needs to be done manually. But without underline most usecases for PDFs like invoices are not possible and therefor the whole library is kinda useless innit?
Unfortunately I needed to ...
For bold and italic you need to change the font, I dont think there is any other way around it!
For underline and strike-through tho we need support. I was just about to move from pdf-kit to pdf...
@Hopding Is underline implemented? The issue is marked as completed but I cant find any option to do so.
For bold and italic the font needs to be change, I guess this is okay.
MickL
created a comment on a pull request on
nuxt/ui
I am getting
```
ERROR Internal server error: [postcss] postcss-import: /Users/mick/git/my-project/node_modules/tailwindcss/lib/index.js:1:1: Unknown word
Plugin: vite:css
File: /Users...
MickL
created a comment on a pull request on
nuxt/ui
I just noticed when reading the docs, very cool! :)
It is written [here](https://ui3.nuxt.dev/getting-started/installation/nuxt#continuous-releases), command to get this PR:
```bun add https:...
Personally I think how it is in the docs is the right way. It is very explicit and fully flexible. What you want may work for your use case but then Nuxt UI needs to provide every use case possible...
Personally I just asked them if they would release their validation to a standalone library because I am really really unhappy with VeeValidate in my other project and how cumberstone it is and I l...
Personally I "just" want to use Tailwind in my Nuxt project. Since v4 has first class Vite support, I question if a Nuxt module is still needed or what benefits it would have. I was happy when Nuxt...
On iOS and macOS the notifications are small, come in for a few seconds and go away automatically (on macOS optionally they can stay until user reacts) and they are called notification and not toas...
> [@MickL](https://github.com/MickL) while on v2 docs, last I checked, v3 is not linked, on v3 docs v2 is indeed linked. I am also unsure of how this is a problem given that an official release is ...
Sorry for disturbing, but I have two points:
1. It would be great to have a version switcher on the docs (v2 / v3 alpha). Currently the v3 docs are not linked anywhere and hard to find. Example: h...
When following the [docs](https://algolia.nuxtjs.org/advanced/typescript/), the auto completion for the index name works, but result.value.hits is not typed:
```ts
import '@nuxtjs/algolia'
declar...
@sandros94 Thanks for the fix! Unfortunately this violates with the Typescript interfaces `Link`: `exactQuery` is defined to be a boolean. If you want it to be mixed you need to change it to boolea...
### For what version of Nuxt UI are you suggesting this?
v3.0.0-alpha.x
### Description
I noticed that using form validation in Nuxt UI is very simple: Add a schema to a `<UForm>` component and ...
### Describe the feature
At the moment I have the following rule in my nitro.config.ts:
```
routeRules: {
'/**': {
cors: true,
},
},
```
I want to only accept cors for ...
@sajiniho07 This works but will result in a unnecessary fetch request. It goes from browser to Nuxt app/function to API then back to Nuxt app and the to browser.
@asonnleitner I just realized that the whole PR is not working. Requests go to `/api/event` instead of `/api/__plausible_event__` which results in 404 - #34
@TangsWang There is an open issue with cors. In short: If you have a route that only has post/put/delete but no catch all handler (e.g. index.ts or products.ts), cors is not working because the rou...
Personally I "just" want to set the baseUrl for $fetch, useFetch and useLazyFetch. Something I guess a lot of devs want to do. @manniL You close this issue in favor of #14736 but #14736 is open fo...