form-driver 0.4.18 → 0.4.20

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 CHANGED
@@ -8,8 +8,8 @@ An efficient framework for creating forms.
8
8
  ## Setup
9
9
 
10
10
  ``` bash
11
- # 安装依赖
12
- npm run i
11
+ # 安装依赖,需要在 node v16.5.0 环境下执行
12
+ npm run i
13
13
 
14
14
  # 本地调试 http://0.0.0.0:8080
15
15
  npm run start
@@ -21,6 +21,21 @@ npm run b
21
21
  npm run pub
22
22
  ```
23
23
 
24
+ ### 发包问题
25
+ 在终端执行 npm adduser , 调转到 https://registry.npmmirror.com/-/v1/login/request/session/4e4fb2c1-564d-44de-99f5-9010c35b1237 进行登录, 输入账号密码 提示: *Public registration is not allowe*
26
+
27
+ 原因是你当前的 npm registry 被设置为 npmmirror(淘宝镜像),而不是官方 npm registry。npmmirror.com 是一个只读镜像,不支持用户注册和登录,所以提示 Public registration is not allowed。
28
+
29
+ 切换回官方 npm registry,执行 npm adduser
30
+ ```
31
+ npm config set registry https://registry.npmjs.org
32
+ ```
33
+ 登录完成后切回镜像源(下载依赖会快一点)
34
+ ```
35
+ npm config set registry https://registry.npmmirror.com
36
+ ```
37
+
38
+
24
39
  ## Catalogue
25
40
 
26
41
  ``` md
package/dist/m3.css CHANGED
@@ -766,7 +766,7 @@ table.M3_table tr:last-child td {
766
766
 
767
767
  .form-driver-plugin-richtext-viewer-wrap .richtext-viewer-more {
768
768
  text-align: center;
769
- box-shadow: 0px -5px 5px rgba(232,232,232,0.38039);
769
+ box-shadow: 0px 5px 5px rgba(232,232,232,0.38039);
770
770
  }
771
771
  .form-driver-plugin-richtext-viewer-wrap .richtext-viewer-more span {
772
772
  cursor: pointer;