focus-within-polyfill
Advanced tools
Comparing version
@@ -0,1 +1,9 @@ | ||
## [5.0.7](https://github.com/matteobad/focus-within-polyfill/compare/v5.0.6...v5.0.7) (2020-04-11) | ||
### Bug Fixes | ||
* eslint ([0fa9cb7](https://github.com/matteobad/focus-within-polyfill/commit/0fa9cb707e04b2787c2489c19068fff05e36e887)) | ||
* update dependencies to remove vulnerabilities ([f49a048](https://github.com/matteobad/focus-within-polyfill/commit/f49a048fdd07fa0befa9ca9855fa5d3ac384df49)) | ||
## [5.0.6](https://github.com/matteobad/focus-within-polyfill/compare/v5.0.5...v5.0.6) (2019-12-31) | ||
@@ -2,0 +10,0 @@ |
@@ -1,3 +0,4 @@ | ||
'use strict';(function(){function e(b){for(var a=[];b=b.parentNode||b.host||b.defaultView;)a.push(b);return a}function f(b){return function(a){var c="undefined"!==typeof a.getAttribute?a.getAttribute("class")||"":void 0;"undefined"!==typeof c&&-1===c.indexOf(b)&&a.setAttribute("class",c.concat(" ",b).trim())}}function g(b){return function(a){var c="undefined"!==typeof a.getAttribute?a.getAttribute("class")||"":void 0;if(c){var d=c.indexOf(b);0<=d&&(0===d||0<=h.indexOf(c.charAt(d-1)))&&(c=c.replace(b, | ||
"").trim(),""===c?a.removeAttribute("class"):a.setAttribute("class",c))}}}function k(){function b(a){function c(){d=!1;"blur"===a.type&&Array.prototype.slice.call(e(a.target)).forEach(g("focus-within"));"focus"===a.type&&Array.prototype.slice.call(e(a.target)).forEach(f("focus-within"))}if(!d){window.requestAnimationFrame(c);var d=!0}}document.addEventListener("focus",b,!0);document.addEventListener("blur",b,!0);f("js-focus-within")(document.body);return!0}var h=["\n","\t"," ","\r"];try{return!document.querySelector(":focus-within")}catch(b){return k()}})(); | ||
'use strict';(function(){(function(){function e(a){for(var b=[];a=a.parentNode||a.host||a.defaultView;)b.push(a);return b}function f(a){return function(b){var c="undefined"!==typeof b.getAttribute?b.getAttribute("class")||"":void 0;"undefined"!==typeof c&&-1===c.indexOf(a)&&b.setAttribute("class",c.concat(" ",a).trim())}}function g(a){return function(b){var c="undefined"!==typeof b.getAttribute?b.getAttribute("class")||"":void 0;if(c){var d=c.indexOf(a);0<=d&&(0===d||0<=h.indexOf(c.charAt(d-1)))&& | ||
(c=c.replace(a,"").trim(),""===c?b.removeAttribute("class"):b.setAttribute("class",c))}}}function k(){var a=function(b){function a(){d=!1;"blur"===b.type&&Array.prototype.slice.call(e(b.target)).forEach(g("focus-within"));"focus"===b.type&&Array.prototype.slice.call(e(b.target)).forEach(f("focus-within"))}if(!d){window.requestAnimationFrame(a);var d=!0}};document.addEventListener("focus",a,!0);document.addEventListener("blur",a,!0);f("js-focus-within")(document.body);return!0}var h=["\n","\t"," ", | ||
"\r"];try{return!document.querySelector(":focus-within")}catch(a){return k()}})()})() | ||
//# sourceMappingURL=focus-within-polyfill.js.map |
{ | ||
"name": "focus-within-polyfill", | ||
"version": "5.0.6", | ||
"version": "5.0.7", | ||
"description": "Small vanilla javascript that feature detect the :focus-within pseudo selector and polyfills it with a standard css class if necessary.", | ||
@@ -38,19 +38,19 @@ "main": "dist/focus-within-polyfill.js", | ||
"devDependencies": { | ||
"@ampproject/rollup-plugin-closure-compiler": "^0.14.0", | ||
"@semantic-release/changelog": "^3.0.4", | ||
"@semantic-release/commit-analyzer": "^6.2.0", | ||
"@semantic-release/git": "^7.0.16", | ||
"@semantic-release/github": "^5.4.2", | ||
"@semantic-release/npm": "^5.1.13", | ||
"@semantic-release/release-notes-generator": "^7.2.1", | ||
"@ampproject/rollup-plugin-closure-compiler": "^0.24.0", | ||
"@semantic-release/changelog": "^5.0.1", | ||
"@semantic-release/commit-analyzer": "^8.0.1", | ||
"@semantic-release/git": "^9.0.0", | ||
"@semantic-release/github": "^7.0.5", | ||
"@semantic-release/npm": "^7.0.5", | ||
"@semantic-release/release-notes-generator": "^9.0.1", | ||
"bundlesize": "^0.18.0", | ||
"commitizen": "^4.0.3", | ||
"cz-conventional-changelog": "^3.0.2", | ||
"eslint": "^6.1.0", | ||
"commitizen": "^4.0.4", | ||
"cz-conventional-changelog": "^3.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-google": "^0.14.0", | ||
"husky": "^3.0.1", | ||
"npm-check": "^5.9.0", | ||
"rimraf": "^3.0.0", | ||
"rollup": "^1.19.1", | ||
"semantic-release": "^15.13.18" | ||
"husky": "^4.2.5", | ||
"npm-check": "^5.9.2", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^2.6.0", | ||
"semantic-release": "^17.0.4" | ||
}, | ||
@@ -57,0 +57,0 @@ "bundlesize": [ |
@@ -6,4 +6,4 @@ /** | ||
function polyfill() { | ||
var CLASS_NAME = 'focus-within'; | ||
var WHITE_SPACE = ['\n', '\t', ' ', '\r']; | ||
/** @const */ var CLASS_NAME = 'focus-within'; | ||
/** @const */ var WHITE_SPACE = ['\n', '\t', ' ', '\r']; | ||
@@ -38,8 +38,11 @@ /** | ||
return function(el) { | ||
var attributes = (typeof el.getAttribute !== 'undefined') ? | ||
el.getAttribute('class') || '' : | ||
undefined; | ||
var attributes = | ||
typeof el.getAttribute !== 'undefined' ? | ||
el.getAttribute('class') || '' : | ||
undefined; | ||
if (typeof attributes !== 'undefined' && | ||
attributes.indexOf(value) === -1) { | ||
if ( | ||
typeof attributes !== 'undefined' && | ||
attributes.indexOf(value) === -1 | ||
) { | ||
el.setAttribute('class', attributes.concat(' ', value).trim()); | ||
@@ -59,5 +62,6 @@ } | ||
return function(el) { | ||
var attributes = (typeof el.getAttribute !== 'undefined') ? | ||
el.getAttribute('class') || '' : | ||
undefined; | ||
var attributes = | ||
typeof el.getAttribute !== 'undefined' ? | ||
el.getAttribute('class') || '' : | ||
undefined; | ||
@@ -69,7 +73,9 @@ if (attributes) { | ||
// "focus-within" being remove from "js-focus-within". | ||
if (index >= 0 && | ||
(index === 0 || | ||
WHITE_SPACE.indexOf(attributes.charAt(index - 1)) >= 0)) { | ||
if ( | ||
index >= 0 && | ||
(index === 0 || | ||
WHITE_SPACE.indexOf(attributes.charAt(index - 1)) >= 0) | ||
) { | ||
var newAttributes = attributes.replace(value, '').trim(); | ||
(newAttributes === '') ? | ||
newAttributes === '' ? | ||
el.removeAttribute('class') : | ||
@@ -76,0 +82,0 @@ el.setAttribute('class', newAttributes); |
Sorry, the diff of this file is not supported yet
47776
1.24%152
4.11%