form-driver 0.3.13 → 0.3.14
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 +3 -3
- package/dist/m3.js +1 -1
- package/es/m3.js +4 -1
- package/lib/m3.js +4 -1
- package/package.json +1 -1
- package/src/ui/editor/complex/AForm.tsx +3 -1
package/README.md
CHANGED
|
@@ -11,8 +11,8 @@ An efficient framework for creating forms.
|
|
|
11
11
|
# 安装依赖
|
|
12
12
|
npm run i
|
|
13
13
|
|
|
14
|
-
#
|
|
15
|
-
npm run
|
|
14
|
+
# 本地调试 http://0.0.0.0:8080
|
|
15
|
+
npm run start
|
|
16
16
|
|
|
17
17
|
# 本地构建
|
|
18
18
|
npm run b
|
|
@@ -25,7 +25,7 @@ npm run pub
|
|
|
25
25
|
|
|
26
26
|
``` md
|
|
27
27
|
├── demo/ # 演示页面目录
|
|
28
|
-
│ ├── src/ # demo
|
|
28
|
+
│ ├── src/ # demo 页面代码(引用 M3 M3 源代码)
|
|
29
29
|
│ └── dist/ # demo 构建产物
|
|
30
30
|
├── docs/ # M3 的文档
|
|
31
31
|
├── src/ # M3 源代码
|