Skip to content

Commit

Permalink
Merge branch 'release/v3.20.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
janschoenherr committed Apr 23, 2024
2 parents 4e09827 + 19e11bb commit 97f1812
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 13 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 @@ -20,7 +20,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.20.0
3.20.1

### Actual Behavior

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.20.1 (April 23, 2024)

### Fixed

- Fix regression in Inverse component

## 3.20.0 (April 23, 2024)

### Changed
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.20.0 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/*! UIkit 3.20.1 | https://www.getuikit.com | (c) 2014 - 2024 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.20.0 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/*! UIkit 3.20.1 | https://www.getuikit.com | (c) 2014 - 2024 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.

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

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -3552,7 +3552,7 @@
};
App.util = util;
App.options = {};
App.version = "3.20.0";
App.version = "3.20.1";

const PREFIX = "uk-";
const DATA = "__uikit__";
Expand Down Expand Up @@ -8323,7 +8323,7 @@
for (const target of toNodes(this.target)) {
replaceClass(
target,
"uk-light,uk-dark",
"uk-light uk-dark",
!this.selActive || matches(target, this.selActive) ? findTargetColor(target) : ""
);
}
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.20.0",
"version": "3.20.1",
"main": "dist/js/uikit.js",
"style": "dist/css/uikit.css",
"sideEffects": [
Expand Down
2 changes: 1 addition & 1 deletion src/js/core/inverse.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
for (const target of toNodes(this.target)) {
replaceClass(
target,
'uk-light,uk-dark',
'uk-light uk-dark',
!this.selActive || matches(target, this.selActive)
? findTargetColor(target)
: '',
Expand Down

0 comments on commit 97f1812

Please sign in to comment.