Matthew Kelly
Matthew Kelly
I hadn't even thought about async! For custom scripts that shouldn't be much of an issue, so an Async switch would work. The other will likely be a Set parameter...
Yes, the default location would be "body", so would still work as it does currently if none of the new parameters are supplied.
I just tested `$PSBoundParameters` for none `[switch]` parameters and it should work as expected. So it should be possible to allow explicitly supplied null/empty strings to clear the textbox, and...
There isn't a way to do this currently, but adding `-Value` support for `Update-PodeWebCheckbox` should be possible :)
Hi @idanmashaal, I think I know what you mean: is it that you're trying to add a link as a new column within the table that outputted from the `processes.ps1`...
In Pode.Web v1.0.0-preview1 this is now achievable, as v1.0.0 allows you to render new elements on the fly from the server, and asynchronously as well :) Docs: https://badgerati.github.io/Pode.Web/1.0.0/Tutorials/Actions/Elements/#out
It might also be worth investigating CSS variables, so the `default-dark.css`, etc. files become just variables with colour codes defined 🤔 This would make it a lot easier to add...
For the bootstrap styles, it might be possible to override their CSS variables 🤔 - https://getbootstrap.com/docs/4.6/getting-started/theming/#sass-options (or if we migrate to v5: https://getbootstrap.com/docs/5.1/customize/css-variables/)
The PR above has changed a lot to do with how themes work, primarily the dark, terminal, etc. CSS files are now CSS variable files. The concern with btn-primary elements,...
It looks like this should be possible according the Bootstraps docs: https://getbootstrap.com/docs/4.6/components/forms/#range, we just need to set the `step` attribute on the range input :)