Andrew Duthie
Andrew Duthie
>@aduth Can't we mimic the `:scope` behaviour somehow to avoid the browser compatibility issue? Would this solve all the issues here? Not entirely, since it still leaves inconsistency with `query`...
According to MDN, `:scope` is deprecated? https://developer.mozilla.org/en-US/docs/Web/CSS/:scope Not sure if I had missed this previously, or if the recommendation has since changed.
Hi! I think this makes sense. As you alluded in https://github.com/gziolo/hpq/pull/1#issuecomment-530793003, I'm curious about the impact on the browser distributed bundle (i.e. can we ensure the built code only includes...
> I'd be nice to land #5 first which updates npm dependencies. Yep, done.
Is it possible that your CSS build step is reordering styles, such as through [`csso`'s `restructure` option](https://github.com/css/csso#syntaxcompressast-options)? Reason for asking is that [the outline styles](https://github.com/uswds/uswds/blob/49454674c5bae56e85cfd08a955f06df79e1b179/src/stylesheets/elements/_buttons.scss#L90) occur after [the base styles](https://github.com/uswds/uswds/blob/49454674c5bae56e85cfd08a955f06df79e1b179/src/stylesheets/elements/_buttons.scss#L8),...
I managed to reclaim a few bytes in 5f4fbdb by switching to a while loop. |`full/preact.js`|`dist/unistore.js`|`preact.js` ---|---|---|--- master|760b|355b|546b eeec990|777b|373b|546b 5f4fbdb|773b|366b|546b I tried a few other ideas (unsuccessfully) as well: -...
Hey @lgarron , thanks for picking this back up. I just tested and it appears that `v4.0.0-rc3` is working as expected!
@lgarron I may have spoken too soon, as I'm seeing some errors about "No "exports" main defined in clipboard-polyfill/package.json". I assume it's not related to the TypeScript types though. I'll...
@lgarron Thanks for that revision. I think it could make sense to include the `main`, though it doesn't help for our case, which does appear to be more to do...
I think a workaround given the current implementation is: ``` browser.chrome? || browser.edge? ``` On that note, there may be [other browsers that should also be considered as Chromium based](https://en.wikipedia.org/wiki/Chromium_(web_browser)#Browsers_based_on_Chromium)?...