Simon
Simon
I'm hitting the same problem. Defining a merge order while still using wildcards seems a rather common use case. ``` xml standard-lib1.js standard-lib2.js *Page.js backbone-router-def.js ```
Just cost me more than 1h to figure this out. What's remarkable is that in the demo, src/components.d.ts does import @stencil/router, but this is a generated file. The root tsx,...
This works for me: stencil.conf.js `baseUrl: '/foobar'` main component ``` ``` and then navigating with `this.history.push('./main');` With this I can navigate the app on myhost.com/foobar/login or myhost.com/foobar/main resp.
+1 for OAS 3 support. If that can't be done in the near future, please update your README.md to clearly indicate that while Swagger Spec 2.0 is supported, this plugin...
I'm not saying my Overwrite is bug-free, but the current setvalue() implementation definitely causes problems. Probably for for-loop would need to work with addItem / removeItem ?
Sorry about the misleading wording. I want to use the backbone forms JS unchanged, so I'm overwriting some prototype functions in my own code. My suggestion (haven't tested it): ```...
I've taken your JSFiddle and extended it a bit to [this one](https://jsfiddle.net/sniederb/zkmtnkux/8/). I'd expect the list to re-render on the form.setValue() call, for seem reason that's not happening. If the...
fonji, I really like that idea. Would be great to see that change soon.
+1 for @RAlfoeldi 's request. We're loading an entity with a country relation, so the entity has a entity.country = 'IE'. On the autocomplete we want to display the country...
Our current solution is to hold a "current selected option": ``` private selectedOption = { key: '', label: '' }; ``` Then use the (optionSelected) on the mat-autocomplete to: ```...