-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 6.2.1 priorities #8413
Comments
The .babelrc seems to have caused a headache for a few people - so it's awesome to see precompiled JS being included. Is there a reason the .babelrc file is included in the bower version of Foundation - shouldn't users be configuring babel inside of their own build process? It makes sense for the foundation-template, but for the bower install, it seems to cause more issues than good. Also, since other topbar issues are going to be addressed, it may be worth knocking out this one as well: #8272 |
@JeremyEnglert We can drop that My goal is that you can load the |
@JeremyEnglert does babel "fallback" to the |
I've been investigating changing menus to One plus of this though is I've managed to get a working mega menu which I see a lot of people ask for (though not sure how to handle it when it converts to drilldown - it doesn't work there yet). Other than the JS compile errors I've not experienced any other issues myself 😄 |
Oh also forgot an old issue of mine: 7770 |
The bug in the tooltip from #8144 is still there in 6.2.0. So in my opinion this should be an urgent fix in the next release. |
Also a old bug with closeable callouts is present, refering to #8428 And the range slider doesn't work for touch. Seems to be very important issues to solve in the next release. |
@brettsmason No need to use (Relatedly: I can't seem to find where, but I brought up the fact that it's kinda silly that Foundation has both Menus and Button Groups. They're functionally the same thing. Only difference is, a Menu's "buttons" aren't blue.) |
@andycochran I know there is the |
@brettsmason Ah, yeah. Android pre Jellybean. For Button Groups, @gakimball and I decided that making things better in every other browser was worth Android 2 taking a hit. #7933 (comment) It may be the same case for Menus—which, as I keep pointing out, make Button Groups redundant. |
Hey friends, quick update—the team is heads down on launching Foundation for Emails 2 tomorrow morning, but we want to deploy 6.2.1 next Friday, April 1. We'll see about locking down a build to QA around next Wednesday or so. |
the uncss issues might be more related to the zurb template https://github.com/zurb/foundation-zurb-template |
I tested the ZURB Template with the latest development build, and version 2.0 of what-input appears to solve many of the wild configuration issues we had with Babel. Now the template can just use the stock I have a branch here @colin-marshall if you have time could you take a look and see if this looks good? I want to solidify what the ZURB Template will look like for 6.2.1. |
@gakimball that looks and works fine for me, however I could not reproduce some of the issues people were having with babel in 6.2.0. Maybe @JeremyEnglert and the other people that had issues could also test it out? Also, is there anything stopping us from putting |
@colin-marshall We could do that, although the CLI already runs |
@gakimball - looks good to me. Is there any benefit to having a separate .babelrc opposed to adding the settings to the gulpfile? function javascript() {
return gulp.src(PATHS.javascript)
.pipe($.sourcemaps.init())
.pipe($.babel({
presets: ['es2015']
}))
.pipe($.concat('app.js'))
.pipe($.if(PRODUCTION, $.uglify()
.on('error', e => { console.log(e); })
))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
} |
@JeremyEnglert For the Gulpfile itself to work with ES6 you need the |
Oh the other thing I noticed is that the |
Ahhh right. I forget ES6 is only supported by Node 4+. |
Hey friends, 6.2.1 won't be shipping tomorrow unfortunately :< Ended up being a hectic week on our end. We'll check back in next week! |
Thanks for letting us know, hope all of the awesome commits of @Owlbertz will be merged then. |
6.2.1 is going out today! It wraps up all the great changes @gakimball put in on this issue as well as @Owlbertz. Thanks for the assists @colin-marshall , @andycochran and @JeremyEnglert ! |
@rafi This is great! Hope the slider issues fixed by @Owlbertz are inside the new version. Please update the custom download to v6.2.1 so I can do some testing. Edit: Custom download is fine now. However, too bad to see the commit of owlbertz for the slider touch isn't included in this release, really sad... |
@Silvester20 Have you had a chance to test #8449 ? We'll have a quick turn around for 6.2.2 which we'll make sure that one gets into. More people confirming the fix helps! |
@rafi I am not fammiliar with Github, so I will wait for the js/css package update. |
Any progression on the list above? I need #8409 to be fixed soon... |
Any feedback, maybe? |
We're making progress but some of these issues are still outstanding as we package up 6.3, moving the milestone out once again |
We've deliberately waited a little longer for this first patch to 6.2 so we could see what unfolds. Current rough timeline for release is "a few weeks from now".
dist/
folder Include pre-compiled JavaScript files in dist folder #8406$foundation-palette
Hollow button ignores $primary-color and uses default foundation color. #8281 [SCSS 6.2] possible bug, default $foundation-palette colors overriding old variables even if @include add-foundation-colors; is not included in _settings.scss #8292@andycochran @colin-marshall @JeremyEnglert Have y'alls seen anything critical specific to 6.2 that's worth addressing?
The text was updated successfully, but these errors were encountered: