Releases: ausi/cq-prolyfill
Releases · ausi/cq-prolyfill
0.4.0
- Media Queries Level 4 syntax, #8
- Attribute selector queries, #40
- Sass mixin as an alternative to PostCSS, #17
- New configuration option
preprocess
, #46 - Run only once per animation frame, #41
- Support specific color queries, #21
- Skip to offset parent in getContainer, #12
Breaking Changes
- Color filters are appended with dashes instead of spaces,
color hue
becomescolor-hue
, #8 - The syntax is changed to align with Media Queries Level 4,
(width > 100px < 200px)
becomes(100px < width < 200px)
,:container(text-align != right)
becomes:not(:container(text-align = right))
,min-width: 100px
is now supported too, #8 postcss
option was removed (is now the default),preprocess
can now be used to explicitly enabling preprocessing on the client side, #46- non-CORS external styles get no longer loaded via XHR, add the
crossorigin
attribute to the<link>
if required, #46