Skip to content

Commit 3ee9110

Browse files
committed
Merge branch 'release/v3.23.11'
2 parents 32ea8fc + 1a39ca4 commit 3ee9110

File tree

14 files changed

+226
-202
lines changed

14 files changed

+226
-202
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.10
23+
3.23.11
2424

2525
### Actual Behavior
2626

CHANGELOG.md

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

3+
## 3.23.11 (June 25, 2025)
4+
5+
### Fixed
6+
7+
- Fix setting `aria-expanded` on the closest button of the Navbar Toggle Icon
8+
- Fix SVG component handles base64 encoded data URIs correctly
9+
310
## 3.23.10 (June 12, 2025)
411

512
### 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.10 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1+
/*! UIkit 3.23.11 | 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.10 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1+
/*! UIkit 3.23.11 | 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: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! UIkit 3.23.10 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1+
/*! UIkit 3.23.11 | 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() :
@@ -3744,7 +3744,7 @@
37443744
};
37453745
App.util = util;
37463746
App.options = {};
3747-
App.version = "3.23.10";
3747+
App.version = "3.23.11";
37483748

37493749
const PREFIX = "uk-";
37503750
const DATA = "__uikit__";
@@ -8313,7 +8313,10 @@
83138313
extends: ButtonComponent,
83148314
i18n: { label: "Open menu" },
83158315
beforeConnect() {
8316-
this.$el.ariaExpanded = false;
8316+
const button = this.$el.closest("a,button");
8317+
if (button) {
8318+
button.ariaExpanded = false;
8319+
}
83178320
}
83188321
};
83198322
const Close = {
@@ -9556,13 +9559,9 @@
95569559
}
95579560
const loadSVG = memoize(async (src) => {
95589561
if (src) {
9559-
if (startsWith(src, "data:")) {
9560-
return decodeURIComponent(src.split(",", 2)[1]);
9561-
} else {
9562-
const response = await fetch(src);
9563-
if (response.headers.get("Content-Type") === "image/svg+xml") {
9564-
return response.text();
9565-
}
9562+
const response = await fetch(src);
9563+
if (response.headers.get("Content-Type") === "image/svg+xml") {
9564+
return response.text();
95669565
}
95679566
}
95689567
return Promise.reject();

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)
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