Jacob Overgaard

Results 109 comments of Jacob Overgaard
trafficstars

I am trying out the commands that @meyntony wrote on an M1 Pro (arm64) processor and getting the following warning when spinning up the container: ``` WARNING: The requested image's...

Nice one, @rjschave. Thanks for the info!

Thanks for testing, @bjarnef! We have discovered a few issues with combobox that we are looking into. Good to add this to the list.

I like the idea. Two thoughts come to mind: 1) [The Lit Playground](https://lit.dev/playground/) is really nice and something like that would cover our needs. What is it built on, though?...

Inspecting the Lit playground led me to Google's [Playground Elements](https://github.com/google/playground-elements). That looks to be exactly it.

Very good, @bjarnef !

Hi @bjarnef Sorry, yes. If you want to react on the property called "value", you could do so by making a getter/setter like `get value()` and a `set value(newVal)` function,...

@bjarnef The combobox for instance returns a [UUIComboboxEvent](https://github.com/umbraco/Umbraco.UI/blob/v1/dev/packages/uui-combobox/lib/UUIComboboxEvent.ts) with a few string properties taken from an internal change event. There are other examples as well through out the library. I...

Not sure what you mean exactly, @bjarnef. The Selectable mixin just listens to click events and then sends either a SELECTED or UNSELECTED event bubbling up through the stack so...

@bjarnef Uhh the value of the selected element. It's not included in the custom event, however you should be able to find it on the composed path if you are...