Releases: imevro/flexboxgrid2
7.2.0 — really explicit col-* styles
7.0.0-alpha12 introduced the two new bugs (#11):
- If
col-
is not at the start of a class name, likeclass=" col-md-6"
orclass="first-xs col-md-6"
, then it will mismatch the selector. - When using
css-loader
,[class=^col-]
won't be exported, becausecss-loader
's CSS Module only works with class name selector.
Since flexboxgrid2 used in react-flexbox-grid, we are responsible to their users, so we can't degrade their experience.
Now we reverted that selector and explicitly add paddings to all .col-*
styles, thankfully to @jacargentina for his PR.
7.1.0 — flex-basis: 100% by default
7.0.1 — project is stable
Project is stable 🙌🏻
No breaking changes, just remove alpha
from version number, so you can use it without worries 🎉
Changelog
- updated readme
7.0.0-alpha12 — box-sizing and implicit col-* behaviour across all screen sizes
Two major features:
box-sizing: border-box
at.container
to get rid of overfows (thanks @akronb, #7),- implicit
.col-*
styles at all screensizes if presented at least one — no morecol-xs-12
if you want just paddings!
- <div class="col-xs-12 col-md-6 col-xl-3"></div>
+ <div class="col-md-6 col-xl-3"></div>
Breaking changes
box-sizing: border-box
at.container
When stable?
If this release will not cause any bugs, we'll release stable 7.0.0 at 16 Nov.
7.0.0-alpha7 — hidden-* and initial-order-* modifiers
🔥 New modifiers: hidden-*
and initial-order-*
As you requested (#1, #3), we added some utils modifiers. Thanks to @claviska!
TLDR
- (#1) modifiers
hidden-xs
,hidden-sm
,hidden-md
,hidden-lg
,hidden-xl
, - (#3) reset
order-*
viaorder: initial
modifiersinitial-order-xs
,initial-order-sm
,initial-order-md
,initial-order-lg
,initial-order-xl
, - (#4 (comment)) rems → pxs in breakpoints,
- ❗️
import 'flexboxgrid2/dist/flexboxgrid.css'
→import 'flexboxgrid2/flexboxgrid2.css'
Breaking changes
- rename all files to
flexboxgrid2
for consistency, - move compiled files from
dist/
folder to root for shorter path, - switch from rems to pxs in breakpoints (see motivation here: #4 (comment))
7.0.0-alpha6 — bring back life for project
Hi everyone!
Seems like original flexboxgrid was abandoned by @kristoferjoseph, I decided fork and continue develop at my own (probably with contributors).
What is already done:
- added breakpoint
xl
for 1200px andsm
now pointed to 576px (kristoferjoseph#232) like Bootstrap v4, - fixed
.container
class and now it works properly and not causing horizontal scroll (kristoferjoseph#254), - cleaned up from messy structure (kristoferjoseph#249)
flexboxgrid2 right now is alpha6, so if you can test it and fills issues (or PRs!) I'll be very grateful.