@zat-design/sisyphus-react 4.6.1-beta.6 → 4.6.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 +3 -3
- package/dist/index.esm.css +1 -1
- package/dist/less.esm.css +1 -1
- package/es/ProEditTable/style/index.less +6 -0
- package/es/ProForm/components/combination/FormList/components/ActionButton.js +10 -8
- package/es/ProForm/components/combination/FormList/components/TabsFields.d.ts +15 -0
- package/es/ProForm/components/combination/FormList/components/TabsFields.js +269 -0
- package/es/ProForm/components/combination/FormList/components/ToolbarButton.js +12 -46
- package/es/ProForm/components/combination/FormList/index.js +19 -0
- package/es/ProForm/components/combination/FormList/propsType.d.ts +1 -1
- package/es/ProForm/components/combination/FormList/style/index.less +107 -10
- package/es/ProForm/components/combination/FormList/toolbarActions.d.ts +14 -0
- package/es/ProForm/components/combination/FormList/toolbarActions.js +47 -0
- package/es/locale/en_US.d.ts +1 -0
- package/es/locale/en_US.js +1 -0
- package/es/locale/zh_CN.d.ts +1 -0
- package/es/locale/zh_CN.js +1 -0
- package/es/style/theme/tokens.less +3 -3
- package/es/tokens.js +3 -3
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -104,7 +104,7 @@ yarn test
|
|
|
104
104
|
yarn test:coverage # 带覆盖率
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
-
###
|
|
107
|
+
### 四包统一发布
|
|
108
108
|
|
|
109
109
|
```bash
|
|
110
110
|
# 日常 beta:要求根版本含预发布标识,如 4.5.7-beta.2
|
|
@@ -113,11 +113,11 @@ yarn release:beta
|
|
|
113
113
|
# 周五正式版:要求根版本不含预发布标识,如 4.5.7
|
|
114
114
|
yarn release
|
|
115
115
|
|
|
116
|
-
# 校验、构建、跑完组件/MCP/Scene 测试并预览 pack,不发布
|
|
116
|
+
# 校验、构建、跑完组件/MCP/Scene/CLI 测试并预览 pack,不发布
|
|
117
117
|
yarn release:check
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
-
发布前只需手工修改根 `package.json` 的 `version`。命令会同步 MCP、Scene
|
|
120
|
+
发布前只需手工修改根 `package.json` 的 `version`。命令会同步 MCP、Scene、CLI、文档和契约版本,再按组件库 → MCP → Scene → CLI 发布。发布模式会先查询四包的精确版本:已存在的包直接跳过该包的生成、测试、pack 和 publish,仅对缺失包执行所需的构建与校验;`release:check` 则仍执行完整预检且不发布。`release:beta` 中 CLI 同样使用 `beta` 标签,`release` 中使用 `latest`。安装可继续使用 npmmirror,发布固定走 `https://registry.npmjs.org/`。npm 的浏览器登录/2FA 提示保持原样;中途失败后重跑同一命令,会快速跳过已经存在的同版本包并继续。
|
|
121
121
|
|
|
122
122
|
## 技术栈
|
|
123
123
|
|