Christopher S. Case
Christopher S. Case
@alanmies That's a great idea. While adding two more properties for this wouldn't be all that hard, this change makes for a pretty nice work around until/if that happens.
Interesting. Nothing really should have changed in this project to break it like that. And I can tell you that when I was last using this project, that functionality worked,...
I'm not sure that an order should be required here. The tabs _should_ be registered in the order specified, _however_ I'm relying on the DOM and VueJS to handle that....
For posterity, the current tab mechanism is this: A tab registers itself with the tabset, at compile time: https://github.com/Morgul/vueboot/blob/master/src/tabs/tab.vue#L47 The tabset pushes the tabs into it's internal list in the...
I wonder if it's related to this: https://github.com/pegjs/pegjs/issues/237 So, for the moment, I'm not _that_ worried, since we have the ability to store a parsed tree, and call it as...
That fix is already in this fork, since I forked well after that: https://github.com/Morgul/ui-bootstrap4/blob/master/src/datepicker/datepicker.js#L328-L331 There's gotta be something else breaking this now. Can you put together an example?
I'll also add a request for regular expression find/replace support. Allows for more advanced renames using capture groups, i.e. to rename `track - artist.mp3` to `artist - track.mp3`. See the...
I've been working on the same problem in a project I'm converting to Vue 3. So far the best solution I've found is to add a warning handler, `app.config.warnHandler` (as...
That _almost_ works for me. The same errors I couldn't remove with the `warnHandler` didn't get removed with this. Here's an example:
Interesting, I've never noticed that section (this project was originally developed against a much older version of BootstrapVue and upgraded over the years. Now, in this instance, I did just...