Kricsleo

Results 122 comments of Kricsleo

I think it's already emitted: https://stackblitz.com/edit/nvevwjif?file=src%2FApp.vue ```vue ```

Now that I know the issue, although the runtime still emits these events (`entry-oucs`/`open-auto-focus`), the types are omitted. It should match the runtime behavior. 👍 I'll handle this.

@swithek Could you describe (an example would be even better) why you want this event? It would help us shape this feature ❤️

I'm afraid this is intentional when using `Combobox` in `multiple` mode. In `multiple` mode, a user might type a word and then want to select multiple items. If the input...

Duplicate of https://github.com/unovue/reka-ui/issues/2157. People in different countries (locales) consider different days to be the "first day of the week," not always a specific day.

> Also install the `aws-lambda` itself in the dependencies can correct the output. But this should be unnecessary because I didn't use the `aws-lambda` package. Installing it into `dependencies` will...

Although I created https://github.com/nitrojs/nitro/pull/3381, I'm now unsure if `Content-Encoding: gzip` should be automatically added for `.gz` files. This header would cause the browser to unzip the file. It might be...

@aidenybai Based on the existing features, I can think of two solutions: 1. Add `banner` options for rollup. ```ts defineBuildConfig({ entries: ['src/index.ts'], rollup: { output: { banner: '"use client"' }...

I've moved all the logci to the new `rebuildFsCache` as per https://github.com/unjs/jiti/issues/378#issuecomment-2862651480

I plan to use indentation to display groups, consistent with native behavior. What do you think? 🤔 ```ts consola.info('0 - Hello World!') consola.group('0 - Group') consola.info('1 - Hello World!') consola.warn('1...