@zat-design/sisyphus-react 3.11.8 → 3.11.9-beta.2
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 +9 -1
- package/aggregated_context.md +31670 -0
- package/es/ProDownload/utils.d.ts +15 -15
- package/es/ProDownload/utils.js +3 -1
- package/es/ProEditTable/index.js +9 -7
- package/es/ProEditTable/utils/config.js +39 -19
- package/es/ProForm/utils/useForm.js +11 -9
- package/es/ProLayout/components/Layout/Menu/OpenMenu/index.js +13 -7
- package/es/ProLayout/index.d.ts +1 -0
- package/es/ProLayout/index.js +2 -0
- package/es/ProLayout/propTypes.d.ts +7 -0
- package/lib/ProDownload/utils.d.ts +15 -15
- package/lib/ProDownload/utils.js +3 -1
- package/lib/ProEditTable/index.js +9 -7
- package/lib/ProEditTable/utils/config.js +39 -19
- package/lib/ProForm/utils/useForm.js +11 -9
- package/lib/ProLayout/components/Layout/Menu/OpenMenu/index.js +13 -7
- package/lib/ProLayout/index.d.ts +1 -0
- package/lib/ProLayout/index.js +2 -0
- package/lib/ProLayout/propTypes.d.ts +7 -0
- package/package.json +1 -1
- package/scripts/aggregateDocs.ts +94 -0
package/README.md
CHANGED
@@ -104,4 +104,12 @@ npm publish --registry https://registry.npmjs.org --access=public
|
|
104
104
|
"registry": "https://npm.zhonganinfo.com"
|
105
105
|
},
|
106
106
|
```
|
107
|
-
2. 之后使用 `npm publish` 发布, 如果提示登录使用域账号登录
|
107
|
+
2. 之后使用 `npm publish` 发布, 如果提示登录使用域账号登录
|
108
|
+
|
109
|
+
|
110
|
+
### 聚合 docs 下所有 Markdown 文件内容
|
111
|
+
|
112
|
+
```
|
113
|
+
node scripts/aggregateDocs.ts
|
114
|
+
```
|
115
|
+
|