Marco Roth
Marco Roth
@tomclose just wanted to tag you and mention that https://github.com/stimulusreflex/stimulus_reflex/pull/696 should be solving this issue! If you get a chance, I'd love to hear how it works for you! Thank...
Thanks for opening this! I'm happy to take a look on adding such an action!
I was wondering if expanding the `push_state` action would be worth thinking about: https://github.com/marcoroth/turbo_power/blob/623a6f5b11608073ac36880bd1f0cc4745a52e56/src/actions/history.ts#L3-L9
Yeah, I thought it could be similar to how `redirect_to` works. https://github.com/marcoroth/turbo_power/blob/623a6f5b11608073ac36880bd1f0cc4745a52e56/src/actions/browser.ts#L17-L29 By default it uses the one on `Turbo`, but if you don't want that or if Turbo is...
Here's the workaround I used: Since this was fixed with `webdriverio` [7.19.5](https://github.com/webdriverio/webdriverio/releases/tag/v7.19.5) you can set a yarn-resolution for the `webdriverio` package in `package.json`: ```json "resolutions": { "webdriverio": "^7.19.5" } ```...
@jaredcwhite maybe I'm not understanding 100% what you are trying to do, but it seems kinda overkill to me to use phlexing (or phlex for that matter) as an intermediate...
@jaredcwhite depening what you are doing you might also find `Phlexing::ERBTransformer` or `Phlexing::Parser` helpful so you don't need to replace the output tags with weird markers
The Deface parser is currently not correctly transforming this provided input: ```ruby require "deface" html = %() Deface::Parser.erb_markup!(html) html # => "" ``` The second set of quotes within an...
Hey @hangsu, thanks for bringing this up! This is indeed something I haven't considered yet, and I'm actually not sure if and how we could support this. Unless we add...
I thought it might be cool to indicate that there's still something missing. But I updated the example to use `super` so that we still would get the helpful exception.