sard-uniapp 1.4.0-alpha → 1.4.0
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/README.md +2 -2
- package/changelog.md +6 -1
- package/global.d.ts +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
|
|
2
|
+
<img alt="logo" src="https://fastly.jsdelivr.net/npm/@sard/assets/logo.svg" width="120" height="120" style="margin-bottom: 10px;">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">Sard Uniapp</h1>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
## 特性
|
|
27
27
|
|
|
28
|
-
- 🧩
|
|
28
|
+
- 🧩 70+个高质量组件,覆盖移动端主流场景
|
|
29
29
|
- 💪 支持一套代码同时开发 H5 / 小程序 / App
|
|
30
30
|
- 🌿 支持按需引入和 `Tree Shaking`
|
|
31
31
|
- 📖 详尽的文档和案例展示
|
package/changelog.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
# [1.4.0
|
|
1
|
+
# [1.4.0](https://github.com/sutras/sard-uniapp/compare/v1.3.0...v1.4.0) (2024-08-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add qrcode ([8d5d8ba](https://github.com/sutras/sard-uniapp/commit/8d5d8ba50b250fbe1bb76da84e4368aae2276b4d))
|
|
2
7
|
|
|
3
8
|
|
|
4
9
|
|
package/global.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import '@vue/runtime-core'
|
|
2
|
-
|
|
3
1
|
import SarAccordion from './components/accordion/accordion'
|
|
4
2
|
import SarAccordionItem from './components/accordion-item/accordion-item'
|
|
5
3
|
import SarActionSheet from './components/action-sheet/action-sheet'
|
|
@@ -87,8 +85,7 @@ import SarToast from './components/toast/toast'
|
|
|
87
85
|
import SarToastAgent from './components/toast-agent/toast-agent'
|
|
88
86
|
import SarUpload from './components/upload/upload'
|
|
89
87
|
|
|
90
|
-
declare module '
|
|
91
|
-
// GlobalComponents for Volar
|
|
88
|
+
declare module 'vue' {
|
|
92
89
|
export interface GlobalComponents {
|
|
93
90
|
SarAccordion: typeof SarAccordion
|
|
94
91
|
SarAccordionItem: typeof SarAccordionItem
|