sard-uniapp 1.25.7 → 1.25.8
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 +9 -0
- package/components/popup/popup.vue +0 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [1.25.8](https://github.com/sutras/sard-uniapp/compare/v1.25.7...v1.25.8) (2026-01-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 修复popup在h5端报错问题 ([ab1b409](https://github.com/sutras/sard-uniapp/commit/ab1b4096318a1f742cc978d3d0fb6ef79d3404c8))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## [1.25.7](https://github.com/sutras/sard-uniapp/compare/v1.25.6...v1.25.7) (2026-01-01)
|
|
2
11
|
|
|
3
12
|
|
|
@@ -172,7 +172,6 @@ export default _defineComponent({
|
|
|
172
172
|
emit("update:visible", false);
|
|
173
173
|
}
|
|
174
174
|
};
|
|
175
|
-
// #ifndef WEB
|
|
176
175
|
const { isTopLayer } = useTopPopup(
|
|
177
176
|
() => props.visible,
|
|
178
177
|
() => props.backPress === "back",
|
|
@@ -207,7 +206,6 @@ export default _defineComponent({
|
|
|
207
206
|
}
|
|
208
207
|
}
|
|
209
208
|
);
|
|
210
|
-
// #endif
|
|
211
209
|
const pageVisible = ref(true);
|
|
212
210
|
// #ifdef WEB
|
|
213
211
|
onShow(() => {
|