Skip to content

Commit

Permalink
Merge tag 'v3.11.1' into develop
Browse files Browse the repository at this point in the history
no message
  • Loading branch information
janschoenherr committed Feb 7, 2022
2 parents 592c143 + 4f815b6 commit 256dc87
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Please open an issues only for a bug report or feature request. Make sure no one
### UIkit Version

*Check if the issue is reproducible with the latest stable version.*
3.11.0
3.11.1

### Actual Behavior

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## WIP
## 3.11.1 (February 7, 2022)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.11.0 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
/*! UIkit 3.11.1 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/uikit.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.11.0 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
/*! UIkit 3.11.1 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/uikit-icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/uikit-icons.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/js/uikit.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.11.0 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
/*! UIkit 3.11.1 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -1758,7 +1758,7 @@
? percent(width(toWindow(element)), value)
: endsWith(value, '%')
? percent(offsetDim
? dimension(property)(element)
? element[("offset" + (ucfirst(property)))]
: dimensions(element)[property], value)
: toFloat(value);
}
Expand Down Expand Up @@ -3462,7 +3462,7 @@
UIkit.data = '__uikit__';
UIkit.prefix = 'uk-';
UIkit.options = {};
UIkit.version = '3.11.0';
UIkit.version = '3.11.1';

globalAPI(UIkit);
hooksAPI(UIkit);
Expand Down Expand Up @@ -11105,7 +11105,7 @@
calc = calc.toString().replace(/\s/g, '');
calcRe.lastIndex = 0;
while ((match = calcRe.exec(calc)) !== null) {
result += toPx(match, 'height', el, true);
result += toPx(match[0], 'height', el, true);
}

return result;
Expand Down
2 changes: 1 addition & 1 deletion dist/js/uikit.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "uikit",
"title": "UIkit",
"description": "UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.",
"version": "3.11.0",
"version": "3.11.1",
"main": "dist/js/uikit.js",
"style": "dist/css/uikit.css",
"sideEffects": [
Expand Down

0 comments on commit 256dc87

Please sign in to comment.