AJ Alt
AJ Alt
This should be doable by wrapping the list in a [Viewport][1] [1]: https://github.com/ajalt/mordant/blob/master/mordant/src/commonMain/kotlin/com/github/ajalt/mordant/widgets/Viewport.kt
You're right. If you wanted to do that now, you'd have to manually animate a `SelectList` widget. We could add the viewport to the widget created by `interactiveSelectList` to make...
Unfortunately, AFAIK apps running inside a terminal don't have access to any information about the theme the terminal uses, so I don't think this is possible.
I'm not totally clear on what change you're asking for here. The FFM module uses APIs introduced in JDK 22, so it has to compile with that version. --- Your...
I'm not 100% clear on what you're asking for. Can you give an example?
Hm, I can't reproduce this. If I run your exact code, I get `Hello, @types/node`. There's also a [unit test for this][1]. Are you on the latest version of Clikt?...
Does this only happen with kotlinscript? Can you try it with a regular project?
Sorry for the delay. Since the changes are backwards incompatible, I've been waiting until I have time to make a major version release.
Yes, I'd appreciate that. The error itself is odd; the [ffm module][1] that's causing that exception is only supported on JDK 22+, it should even be loaded on 21. Maybe...
I was able to get it to build with this: ```diff diff --git a/modules/wasm.py b/modules/wasm.py --- a/modules/wasm.py +++ b/modules/wasm.py @@ -657,6 +657,11 @@ def run_task_generate(): "ASSERTIONS=1", "-s", "ALLOW_MEMORY_GROWTH=1", + "-sSTANDALONE_WASM=1",...