Skip to content

Commit 253ce6c

Browse files
committed
Merge branch 'release/v3.15.17'
2 parents bd48c64 + e9b7676 commit 253ce6c

File tree

12 files changed

+19
-13
lines changed

12 files changed

+19
-13
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Please open an issues only for a bug report or feature request. Make sure no one
2020
### UIkit Version
2121

2222
_Check if the issue is reproducible with the latest stable version._
23-
3.15.16
23+
3.15.17
2424

2525
### Actual Behavior
2626

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 3.15.17 (December 6, 2022)
4+
5+
### Fixed
6+
7+
- Fix detecting unit in Parallax component stops
8+
39
## 3.15.16 (December 5, 2022)
410

511
### Changed

dist/css/uikit-rtl.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! UIkit 3.15.16 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1+
/*! UIkit 3.15.17 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
22
/* ========================================================================
33
Component: Base
44
========================================================================== */

dist/css/uikit-rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/uikit.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! UIkit 3.15.16 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1+
/*! UIkit 3.15.17 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
22
/* ========================================================================
33
Component: Base
44
========================================================================== */

dist/css/uikit.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/uikit-icons.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/uikit-icons.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/uikit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! UIkit 3.15.16 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1+
/*! UIkit 3.15.17 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
22

33
(function (global, factory) {
44
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -2982,7 +2982,7 @@
29822982
UIkit.data = '__uikit__';
29832983
UIkit.prefix = 'uk-';
29842984
UIkit.options = {};
2985-
UIkit.version = '3.15.16';
2985+
UIkit.version = '3.15.17';
29862986

29872987
globalAPI(UIkit);
29882988
hooksAPI(UIkit);
@@ -10103,7 +10103,7 @@
1010310103
return isNumber(start) ? start + Math.abs(start - end) * p * (start < end ? 1 : -1) : +end;
1010410104
}
1010510105

10106-
const unitRe = /^-?\d+(\S+)/;
10106+
const unitRe = /^-?\d+(\S+)?/;
1010710107
function getUnit(stops, defaultUnit) {
1010810108
for (const stop of stops) {
1010910109
const match = stop.match == null ? void 0 : stop.match(unitRe);

dist/js/uikit.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)