Skip to content

Commit

Permalink
Release 3.4.2: upgraded UIkit framework to 3.17.8, added utility styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Eoler committed Nov 2, 2023
1 parent bb10910 commit 2ce2452
Show file tree
Hide file tree
Showing 13 changed files with 65 additions and 57 deletions.
43 changes: 23 additions & 20 deletions assets/css/uikit3.css

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

2 changes: 1 addition & 1 deletion assets/css/uikit3.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/uikit3.min.css

Large diffs are not rendered by default.

43 changes: 23 additions & 20 deletions assets/css/uikit3themed.css

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

2 changes: 1 addition & 1 deletion assets/css/uikit3themed.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/uikit3themed.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/uikit3-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 assets/js/uikit3-icons.min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions assets/js/uikit3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.17.5 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
/*! UIkit 3.17.8 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */

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

const PREFIX = "uk-";
const DATA = "__uikit__";
Expand Down Expand Up @@ -6536,7 +6536,7 @@
},
observe: [
intersection({
filter: ({ $el }) => isVideo($el),
filter: ({ $el, autoplay }) => autoplay && isVideo($el),
handler([{ isIntersecting }]) {
if (isIntersecting) {
play(this.$el);
Expand Down Expand Up @@ -8902,7 +8902,7 @@
}
const hide = this.isFixed && !this.transitionInProgress;
if (hide) {
preventTransition(this.selTarget);
preventTransition(this.$el);
this.hide();
}
if (!this.active) {
Expand Down Expand Up @@ -9144,8 +9144,8 @@
css(el, { position: "", top: "", marginTop: "", width: "" });
}
function preventTransition(el) {
css(el, "transition", "0s");
requestAnimationFrame(() => css(el, "transition", ""));
addClass(el, "uk-transition-disable");
requestAnimationFrame(() => removeClass(el, "uk-transition-disable"));
}

var svg = {
Expand Down
4 changes: 2 additions & 2 deletions assets/js/uikit3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fields.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fields:
span: row
spanClass: col-sm-3
label: Version (build)
default: 341
default: 342
brand_color:
span: row
spanClass: col-12
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oc-ui3kit-theme",
"version": "3.4.1",
"version": "3.4.2",
"description": "Starter development template for building UIkit v3 themed OctoberCMS sites.",
"author": "Danilo Cuculić <eoler@castus.me>",
"license": "MIT",
Expand Down Expand Up @@ -46,7 +46,7 @@
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"postcss-csso": "^6.0.1",
"uikit": "^3.17.5"
"uikit": "^3.17.8"
},
"devDependencies": {
"gulp": "^3.9.1",
Expand Down
2 changes: 2 additions & 0 deletions version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,5 @@
- Upgraded UIkit framework to 3.17.2, updated SCSS variables
3.4.1:
- Upgraded UIkit framework to 3.17.5, deprecated JS functions
3.4.2:
- Upgraded UIkit framework to 3.17.8, added utility styles

0 comments on commit 2ce2452

Please sign in to comment.