Billy Bastardi

Results 21 comments of Billy Bastardi

Is there some weird issue with plugins with this project related to versioning? I'm trying to use the `rollup-plugin-common-js` with your plugin and it seems to be failing. When I...

what problem is this solving?

currently, you can override options on an element by doing: ``` javascript var gumiInstance = $('.gumi-instance').data('gumi'); gumiInstance.options = $.extend(gumiInstance.options, { // my new options }); gumiInstance.update(); ``` I do however,...

include data-no-change, data-disabled on button attributes

also add buttonTextOnly attribute to options

Yes, keyboard interactions is definitely something I intended to support.

There's no timeline. PR are always welcome :+1:

This seems like a great idea and is actually a simple implementation. There's already functions to handle this exact behavior, all we need to do is add a hook to...

We're just going to support it with the native .gumi() api. @mattjs is working on this. https://github.com/b1lly/gumi/pull/32

> ```ts > const srcWatcher = watch( > `${import.meta.dir}/src`, > { recursive: true }, > (event, filename) => { > Bun.build({ > entrypoints: ["./src/entry.ts"], > outdir: "./dist", > }); >...