From 56787e792883782de28b3bfc4728d6ba8e59319c Mon Sep 17 00:00:00 2001 From: Pete Deffendol Date: Sat, 16 Jun 2018 08:59:09 +0200 Subject: [PATCH 001/197] Use pull request #10698 from pdeffendol/patch-1 for v6.5.0 fd33d800d Fix autoprefixer documentation for Sass setup Signed-off-by: Nicolas Coden --- docs/pages/sass.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/sass.md b/docs/pages/sass.md index ead2a9b245..9c0cba2f62 100644 --- a/docs/pages/sass.md +++ b/docs/pages/sass.md @@ -30,7 +30,7 @@ To get the proper browser support, use these Autoprefixer settings: ```js autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9', 'and_chr >= 2.3'] + browsers: ['last 2 versions', 'ie >= 9', 'Android >= 2.3', 'ios >= 7'] }); ``` From fd758736737b4f698d968cf132f45f49143e5558 Mon Sep 17 00:00:00 2001 From: skadzielawa Date: Sat, 16 Jun 2018 08:59:09 +0200 Subject: [PATCH 002/197] Use pull request #10710 from skadzielawa/patch-1 for v6.5.0 f0f882142 Update starter-projects.md Signed-off-by: Nicolas Coden --- docs/pages/starter-projects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/starter-projects.md b/docs/pages/starter-projects.md index b74c842587..eb9a2dd520 100644 --- a/docs/pages/starter-projects.md +++ b/docs/pages/starter-projects.md @@ -40,7 +40,7 @@ You can set up an advanced project through the Foundation CLI with this command: foundation new --framework sites --template zurb ``` -It's also possible to download the template files directly from GitHub. Run `npm install` and `bower install` first to set it up, then `npm start` to run it. [Download advanced template](https://github.com/zurb/foundation-zurb-template/archive/master.zip). +It's also possible to download the template files directly from GitHub. Run `npm install` first to set it up, then `npm start` to run it. [Download advanced template](https://github.com/zurb/foundation-zurb-template/archive/master.zip). The biggest difference between this and the basic template is the folder structure. In the ZURB Template, your project has a `src/` folder which contains your source files, and a separate `dist/` folder with your finished website. As you work on your project, Gulp continuously updates your `dist/` folder with new versions of files. To compile a production build, run `npm run build`. From 881c57aa3700b5d6ae53dd05df6dbe8d6642d096 Mon Sep 17 00:00:00 2001 From: ArtbyPravesh Date: Sat, 16 Jun 2018 08:59:10 +0200 Subject: [PATCH 003/197] Use pull request #10719 from artbypravesh/master for v6.5.0 a2fc4f57f Fix typo in javascript docs page Signed-off-by: Nicolas Coden --- docs/pages/javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/javascript.md b/docs/pages/javascript.md index f4c476dc56..7690e5ce38 100644 --- a/docs/pages/javascript.md +++ b/docs/pages/javascript.md @@ -63,7 +63,7 @@ The `.foundation()` function on the jQuery object will kick off every Foundation $(document).foundation(); ``` -You can also selectively initialize plugins by call the `.foundation();` method on one or more elements with a plugin. +You can also selectively initialize plugins by calling the `.foundation();` method on one or more elements with a plugin. ```js $('#foo').foundation(); // initialize all plugins within the element `#foo` From 8b1a93ce4daf462f58a6651eed88054157ee2fe1 Mon Sep 17 00:00:00 2001 From: "r.bos" Date: Sat, 16 Jun 2018 08:59:10 +0200 Subject: [PATCH 004/197] Use pull request #10815 from kirra/develop for v6.5.0 c36cdf43a Changed `$foundation-palette` to `$button-palette` Signed-off-by: Nicolas Coden --- scss/components/_button-group.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/components/_button-group.scss b/scss/components/_button-group.scss index 6705e9c9e7..5b0a1238b4 100644 --- a/scss/components/_button-group.scss +++ b/scss/components/_button-group.scss @@ -207,7 +207,7 @@ $buttongroup-radius-on-each: true !default; &.expanded { @include button-group-expand; } // Colors - @each $name, $color in $foundation-palette { + @each $name, $color in $button-palette { @if $button-fill != hollow { &.#{$name} #{$buttongroup-child-selector} { @include button-style($color, auto, auto); From c76d5137ac5b69cfd4e456db66b6d7d14e4798a4 Mon Sep 17 00:00:00 2001 From: Anton Kudryavtsev Date: Sat, 16 Jun 2018 08:59:10 +0200 Subject: [PATCH 005/197] Use pull request #10807 from Anidetrix/patch-1 for v6.5.0 8cac92fa7 Fix Keyboard util TypeScript declaration Signed-off-by: Nicolas Coden --- dist/js/foundation.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/js/foundation.d.ts b/dist/js/foundation.d.ts index 6534030515..a0e6e063bc 100644 --- a/dist/js/foundation.d.ts +++ b/dist/js/foundation.d.ts @@ -359,7 +359,7 @@ declare module FoundationSites { GetOffsets(element: Object, anchor: Object, position: string, vOffset: number, hOffset: number, isOverflow: boolean): Object; } - interface KeyBoard { + interface Keyboard { parseKey(event: any): string; handleKey(event: any, component: any, functions: any): void; findFocusable($element: Object): Object; @@ -472,7 +472,7 @@ declare module FoundationSites { // utils Box: Box; - KeyBoard: KeyBoard; + Keyboard: Keyboard; MediaQuery: MediaQuery; Motion: Motion; Move: Move; From 1a3b1229203e1263a5faeff05ab83044d56b40d4 Mon Sep 17 00:00:00 2001 From: Rick Hawkins Date: Sat, 16 Jun 2018 08:59:11 +0200 Subject: [PATCH 006/197] Use pull request #10778 from rlhawk/patch-1 for v6.5.0 33a5884b7 Update xy-grid.md Signed-off-by: Nicolas Coden --- docs/pages/xy-grid.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/pages/xy-grid.md b/docs/pages/xy-grid.md index a84ff663a9..ca9e457980 100644 --- a/docs/pages/xy-grid.md +++ b/docs/pages/xy-grid.md @@ -42,7 +42,8 @@ These are: $block-grid: true, $collapse: true, $offset: true, - $vertical-grid: true + $vertical-grid: true, + $frame-grid: true ); ``` --- From b2a23936434a58187cff311b790a295e42a7f232 Mon Sep 17 00:00:00 2001 From: Ian Caunce Date: Sat, 16 Jun 2018 08:59:11 +0200 Subject: [PATCH 007/197] Use pull request #10785 from IanCaunce/fix.functionDocs for v6.5.0 75803226f Fixed typo in the rem-calc's documentation Signed-off-by: Nicolas Coden --- scss/util/_unit.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/util/_unit.scss b/scss/util/_unit.scss index 6d60f38543..a4bddb8350 100644 --- a/scss/util/_unit.scss +++ b/scss/util/_unit.scss @@ -20,7 +20,7 @@ $global-font-size: 100% !default; /// Converts one or more pixel values into matching rem values. /// /// @param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses. -/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base. +/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$global-font-size` variable as the base. /// /// @returns {List} A list of converted values. @function rem-calc($values, $base: null) { From c28c05a09eda71a9b7bf422c95282d3569708d44 Mon Sep 17 00:00:00 2001 From: Harry Manchanda Date: Sat, 16 Jun 2018 08:59:11 +0200 Subject: [PATCH 008/197] Use pull request #10752 from zurb/thumnails-standarize for v6.5.0 b3fd9ea41 Just to keep things standard Signed-off-by: Nicolas Coden --- scss/components/_thumbnail.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/components/_thumbnail.scss b/scss/components/_thumbnail.scss index 2ce42b3115..ed8109b8f7 100644 --- a/scss/components/_thumbnail.scss +++ b/scss/components/_thumbnail.scss @@ -8,7 +8,7 @@ /// Border around thumbnail images. /// @type Border -$thumbnail-border: solid 4px $white !default; +$thumbnail-border: 4px solid $white !default; /// Bottom margin for thumbnail images. /// @type Length From a435dffb25575178377341fdeb50f5330d84774c Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Sat, 16 Jun 2018 08:59:12 +0200 Subject: [PATCH 009/197] Use pull request #10731 from DanielRuf/patch-accordion-smudge-delay-master for v6.5.0 5aa4b9296 fix data attribute name Signed-off-by: Nicolas Coden --- docs/pages/accordion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/accordion.md b/docs/pages/accordion.md index 17468a189d..a46f52bd17 100644 --- a/docs/pages/accordion.md +++ b/docs/pages/accordion.md @@ -202,7 +202,7 @@ Add the attribute `data-deep-link="true"` to a accordion to: - allow users to open a particular accordion panel at page load with a hash-appended URL ```html_example -