sard-uniapp 1.2.1-alpha2 → 1.2.1
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 +6 -1
- package/components/count-to/count-to.vue +1 -2
- package/package.json +2 -3
- package/use/useLuckyDraw.js +1 -2
- package/utils/index.d.ts +1 -0
- package/utils/index.js +1 -0
package/changelog.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
## [1.2.1
|
|
1
|
+
## [1.2.1](https://github.com/sutras/sard-uniapp/compare/v1.2.0...v1.2.1) (2024-07-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 修复pnpm非扁平化依赖包下lwa依赖问题 close [#32](https://github.com/sutras/sard-uniapp/issues/32) ([5868e16](https://github.com/sutras/sard-uniapp/commit/5868e16587e8664705789e2e791c264f2a7d22f5))
|
|
2
7
|
|
|
3
8
|
|
|
4
9
|
|
|
@@ -5,9 +5,8 @@
|
|
|
5
5
|
<script>
|
|
6
6
|
import { mergeDefaults as _mergeDefaults, defineComponent as _defineComponent } from "vue";
|
|
7
7
|
import { computed, onUnmounted, ref, watch } from "vue";
|
|
8
|
-
import { addSeparator } from "../../utils";
|
|
8
|
+
import { addSeparator, createAnimation } from "../../utils";
|
|
9
9
|
import { countToPropsDefaults } from "./common";
|
|
10
|
-
import { createAnimation } from "lwa";
|
|
11
10
|
export default _defineComponent({
|
|
12
11
|
...{
|
|
13
12
|
options: {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "sard-uniapp",
|
|
3
3
|
"name": "sard-uniapp",
|
|
4
4
|
"displayName": "sard-uniapp",
|
|
5
|
-
"version": "1.2.1
|
|
5
|
+
"version": "1.2.1",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库",
|
|
8
8
|
"keywords": [
|
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@dcloudio/types": "^3.4.8",
|
|
29
|
-
"vue": "^3.4.27"
|
|
30
|
-
"lwa": "0.2.3-alpha"
|
|
29
|
+
"vue": "^3.4.27"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
32
|
"@sard/uniapp-cli": "workspace:*",
|
package/use/useLuckyDraw.js
CHANGED
package/utils/index.d.ts
CHANGED
package/utils/index.js
CHANGED