byt-ui 0.0.19 → 0.1.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 +4 -1
- package/jsconfig.json +19 -19
- package/lib/byt-ui.common.js +36797 -28210
- package/lib/byt-ui.css +1 -1
- package/lib/byt-ui.umd.js +41124 -32537
- package/lib/byt-ui.umd.min.js +152 -140
- package/lib/fonts/iconfont.1709080259515.7e4906d9.woff +0 -0
- package/lib/fonts/iconfont.1709080259515.947a27f0.ttf +0 -0
- package/package.json +3 -3
- package/packages/components/basic-view/index.vue +14 -3
- package/packages/components/form-view/index.vue +4 -4
- package/packages/components/message-push-target/MessageOne.vue +348 -0
- package/packages/components/message-push-target/index.vue +212 -0
- package/packages/components.js +7 -3
- package/yarn-error.log +0 -108
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Description:
|
|
3
3
|
* @Author: 王国火
|
|
4
4
|
* @Date: 2022-09-15 16:57:23
|
|
5
|
-
* @LastEditTime: 2023-
|
|
5
|
+
* @LastEditTime: 2023-09-13 10:51:49
|
|
6
6
|
* @LastEditors: 王国火
|
|
7
7
|
-->
|
|
8
8
|
# byt-ui
|
|
@@ -155,6 +155,9 @@ export default {
|
|
|
155
155
|
3. npm publish
|
|
156
156
|
```
|
|
157
157
|
|
|
158
|
+
## 手动刷新淘宝镜像包:
|
|
159
|
+
https://npmmirror.com/sync/byt-ui
|
|
160
|
+
|
|
158
161
|
## 升级依赖包
|
|
159
162
|
```
|
|
160
163
|
yarn upgrade byt-ui --latest
|
package/jsconfig.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"module": "esnext",
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"moduleResolution": "node",
|
|
7
|
-
"paths": {
|
|
8
|
-
"@/*": [
|
|
9
|
-
"src/*"
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
"lib": [
|
|
13
|
-
"esnext",
|
|
14
|
-
"dom",
|
|
15
|
-
"dom.iterable",
|
|
16
|
-
"scripthost"
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es5",
|
|
4
|
+
"module": "esnext",
|
|
5
|
+
"baseUrl": "./",
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"paths": {
|
|
8
|
+
"@/*": [
|
|
9
|
+
"src/*"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"lib": [
|
|
13
|
+
"esnext",
|
|
14
|
+
"dom",
|
|
15
|
+
"dom.iterable",
|
|
16
|
+
"scripthost"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
}
|