Skip to content

Commit c7c954e

Browse files
committed
Merge branch 'release/v3.23.4'
2 parents f40ff7f + 156fdc9 commit c7c954e

File tree

14 files changed

+233
-215
lines changed

14 files changed

+233
-215
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.23.3
23+
3.23.4
2424

2525
### Actual Behavior
2626

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: 2
22
updates:
3-
- package-ecosystem: 'npm'
4-
directory: '/'
3+
- package-ecosystem: npm
4+
directory: /
55
schedule:
6-
interval: 'weekly'
6+
interval: weekly
77
groups:
88
dev-dependencies:
99
patterns:

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.23.4 (March 26, 2025)
4+
5+
### Fixed
6+
7+
- Fix performance when transitioning element properties in Chrome
8+
39
## 3.23.3 (March 17, 2025)
410

511
### Fixed

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.23.3 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1+
/*! UIkit 3.23.4 | https://www.getuikit.com | (c) 2014 - 2025 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.23.3 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1+
/*! UIkit 3.23.4 | https://www.getuikit.com | (c) 2014 - 2025 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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! UIkit 3.23.3 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1+
/*! UIkit 3.23.4 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
22

33
(function (global, factory) {
44
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -639,14 +639,12 @@
639639
return Promise.all(
640640
toNodes(element).map(
641641
(element2) => new Promise((resolve, reject) => {
642-
for (const name in props) {
643-
css(element2, name);
644-
}
645642
const timer = setTimeout(() => trigger(element2, transitionEnd), duration);
646643
once(
647644
element2,
648645
[transitionEnd, transitionCanceled],
649646
({ type }) => {
647+
cancelAnimationFrame(frame);
650648
clearTimeout(timer);
651649
removeClass(element2, clsTransition);
652650
css(element2, {
@@ -659,12 +657,14 @@
659657
{ self: true }
660658
);
661659
addClass(element2, clsTransition);
662-
css(element2, {
663-
transitionProperty: Object.keys(props).map(propName).join(","),
664-
transitionDuration: `${duration}ms`,
665-
transitionTimingFunction: timing,
666-
...props
667-
});
660+
const frame = requestAnimationFrame(
661+
() => css(element2, {
662+
transitionProperty: Object.keys(props).map(propName).join(","),
663+
transitionDuration: `${duration}ms`,
664+
transitionTimingFunction: timing,
665+
...props
666+
})
667+
);
668668
})
669669
)
670670
);
@@ -3732,7 +3732,7 @@
37323732
};
37333733
App.util = util;
37343734
App.options = {};
3735-
App.version = "3.23.3";
3735+
App.version = "3.23.4";
37363736

37373737
const PREFIX = "uk-";
37383738
const DATA = "__uikit__";

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy