Grigorii K. Shartsev

Results 583 comments of Grigorii K. Shartsev

Or, if you need to use it for a component prop type, then import it from Vue: ```ts import type { ButtonHTMLAttributes } from 'vue' ```

@dartcafe Do you mean the same that was discussed here? - https://github.com/nextcloud/polls/pull/3958

@dartcafe If there is a problem, could you explain it (in the context of the discussion in the PR)?

@dartcafe I don't understand what exact problem you are trying to solve. If you want to have IDE support with **autocomplete and check** for the NcButton's `variant` - it should...

> What problem: I assumed, this issue is about the broken type export and I assumed that this will be fixed, too. Yes, It will (there is a fixing PR)....

If you are using TS and ``, you can simplify props definition to: ```ts const { buttonVariant = 'primary' } = defineProps() ``

Additions after discussion: - [x] Make the dialog large - [ ] In addition to the "X" icon, add a close / cancel / go-back button next to the "Start...

I played with Web Components in a similar problem just yesterday (always wanted to apply this approach in Nextcloud). We have classic settings dialog in Talk. I needed a public...

> * That mean we'll have to wait for 3.5 final. We can still define custom element manually (see example). `defineCustomElement` just makes it much simpler. > * Else maybe...