Josh Tynjala

Results 511 comments of Josh Tynjala

I would like to create type definitions for TypeScript, which could be used with the JS build, but I need to find a way to generate them automatically. I have...

I played around a bit with Genes a couple of weeks ago because I wanted to see if I could use dynamic imports to achieve code splitting, but I was...

@alamboley There are no TypeScript definitions, but you can use pure JS with the npm package: https://www.npmjs.com/package/feathersui-openfl Note that OpenFL on npm hasn't been updated since 8.9.6, so it won't...

Since it has always worked this way in Feathers UI, going all the way back into the Starling version, I'm going to leave it as-is for for the 1.0 stable...

I should add something similar to what I did with `ToggleSwitch`. In the `ToggleSwitch` version of `refreshSelection()`, it toggles the internal skins, if possible: ```hx if ((this._currentThumbSkin is IToggle)) {...

> we use our own OpenFL fork that has this fixed on the lower level Is this a fix that we could upstream from your fork? As you mentioned, this...

Thanks. I don't particularly care if it's "fully correct" either because "more correct than what we have now" should still be a good improvement. I see your forked version is...

So what's happening here is the `Scroller` wants to handle the mouse wheel event, and it needs to prevent other `Scroller` instances that may be in the `parent` chain from...

@rat-moonshine I have not started work on this component yet, and wasn't planning on it any time soon. However, if it is needed for Moonshine/Prominic stuff, I can prioritize it...

> I assume this is because a mere import is making the module included in the compilation. So I guess we also have to fence the imports? Or use the...