Skip to content

Commit 63f3532

Browse files
committed
Update to version 6.4.2
1 parent a4c216e commit 63f3532

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Preset for Zurb Foundation 6 scaffolding on new Laravel 5.5.x project.
44

5-
*Current version*: **Zurb Foundation for sites 6.4.1**
5+
*Current version*: **Zurb Foundation for sites 6.4.2**
66

77
## Usage
88
1. Fresh install Laravel 5.5.x and `cd` to your app.

src/ZurbFoundationPreset.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public static function install($withAuth = false)
4040
protected static function updatePackageArray(array $packages)
4141
{
4242
return [
43-
'foundation-sites' => '^6.4.1',
44-
'jquery' => '^2.2.4',
43+
'foundation-sites' => '^6.4.2',
44+
'jquery' => '^3.2.1',
4545
] + Arr::except($packages, ['bootstrap-sass', 'bulma', 'uikit']);
4646
}
4747

src/foundation-stubs/_settings.scss

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ $global-menu-nested-margin: 1rem;
9595
$global-text-direction: ltr;
9696
$global-flexbox: true;
9797
$global-prototype-breakpoints: false;
98+
$global-button-cursor: auto;
9899
$global-color-pick-contrast-tolerance: 0;
99100
$print-transparent-backgrounds: true;
100101

@@ -477,6 +478,7 @@ $menu-icon-spacing: 0.25rem;
477478
$menu-item-background-hover: $light-gray;
478479
$menu-state-back-compat: true;
479480
$menu-centered-back-compat: true;
481+
$menu-icons-back-compat: true;
480482

481483
// 24. Meter
482484
// ---------
@@ -491,8 +493,12 @@ $meter-fill-bad: $alert-color;
491493
// 25. Off-canvas
492494
// --------------
493495

494-
$offcanvas-size: 250px;
495-
$offcanvas-vertical-size: 250px;
496+
$offcanvas-sizes: (
497+
small: 250px,
498+
);
499+
$offcanvas-vertical-sizes: (
500+
small: 250px,
501+
);
496502
$offcanvas-background: $light-gray;
497503
$offcanvas-shadow: 0 0 10px rgba($black, 0.7);
498504
$offcanvas-inner-shadow-size: 20px;
@@ -859,4 +865,4 @@ $grid-margin-gutters: (
859865
$grid-padding-gutters: $grid-margin-gutters;
860866
$grid-container-padding: $grid-padding-gutters;
861867
$grid-container-max: $global-width;
862-
$block-grid-max: 8;
868+
$xy-block-grid-max: 8;

src/foundation-stubs/bootstrap.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ window._ = require('lodash');
1010
try {
1111
window.$ = window.jQuery = require('jquery');
1212

13-
require('foundation-sites/dist/js/foundation.min');
13+
require('foundation-sites/dist/js/foundation'); // 'foundation.min' can also be used if you like
14+
1415
} catch (e) {}
1516

1617
/**

src/foundation-stubs/foundation.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
@include foundation-everything;
44

55
// if you won't be using old float grid, comment this out
6-
// and desing your own auth pages
6+
// and design your own auth pages
77
@include foundation-grid;

src/foundation-stubs/views/welcome.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
</div>
116116

117117
<div class="foundation_button_test">
118-
<p class="framwork_title">Zurb Foundation 6.4.1</p>
118+
<p class="framwork_title">Zurb Foundation 6.4.2</p>
119119
<a class="button primary" href="#">Primary</a>
120120
<a class="button secondary" href="#">Secondary</a>
121121
<a class="button success" href="#">Success</a>

0 commit comments

Comments
 (0)