uview-plus 3.8.112 → 3.8.113

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 3.8.113(2026-08-27)
2
+ fix: 修复启用uniUpRoot,在root组件存在components选项时组件插入错误
3
+
4
+ fix: 修复打包APK运行时icon组件未正确获取字体路径
5
+
6
+
1
7
  ## 3.8.112
2
8
  feat: navbar 新增 iOS 大标题模式
3
9
 
@@ -44,7 +44,8 @@ const getAppIconUrl = () => {
44
44
  }
45
45
  if (typeof plus !== 'undefined' && plus.io && typeof plus.io.convertLocalFileSystemURL === 'function') {
46
46
  const iconFontPath = plus.io.convertLocalFileSystemURL(appIconFontUrl);
47
- if (iconFontPath) return iconFontPath;
47
+ // if (iconFontPath) return iconFontPath;
48
+ return iconFontPath && iconFontPath.startsWith('file://') ? iconFontPath : 'file://' + iconFontPath;
48
49
  }
49
50
  return appIconFontUrl;
50
51
  // #endif
package/libs/root/root.js CHANGED
@@ -7,7 +7,9 @@ function ensureRootToastHostComponent(ms, scriptContent) {
7
7
  if (componentsMatch && /\bUpRootToastHost\b/.test(componentsMatch[1])) return
8
8
 
9
9
  if (componentsMatch) {
10
- ms.appendLeft(componentsMatch.index + componentsMatch[0].length, ' UpRootToastHost,')
10
+ // ms.appendLeft(componentsMatch.index + componentsMatch[0].length, ' UpRootToastHost,')
11
+ const openBraceIndex = componentsMatch.index + componentsMatch[0].indexOf('{')
12
+ ms.appendLeft(openBraceIndex + 1, ' UpRootToastHost,')
11
13
  return
12
14
  }
13
15
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "id": "uview-plus",
3
3
  "name": "uview-plus",
4
4
  "displayName": "零云®uview-plus3.0重磅发布,全面的Vue3鸿蒙跨端移动组件库,组件丰富维护更新稳定。",
5
- "version": "3.8.112",
5
+ "version": "3.8.113",
6
6
  "description": "零云®uview-plus已兼容vue3支持多语言,120+全面的组件和便捷的工具会让您信手拈来。近期新增拖动排序、条码、图片裁剪、下拉刷新、虚拟列表、签名、Markdown等。",
7
7
  "keywords": [
8
8
  "uview",
@@ -11,7 +11,7 @@
11
11
  "echarts",
12
12
  "ui",
13
13
  "可视化"
14
- ],
14
+ ],
15
15
  "main": "index.js",
16
16
  "repository": "https://github.com/ijry/uview-plus",
17
17
  "engines": {