Skip to content
Merged

Dev #58

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/flow-approval-presenter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-approval-presenter

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-approval-presenter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-approval-presenter",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine approval presenter framework ",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-core

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-core",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine core lib framework ",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-design/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-design

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-design/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-design",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine design components ",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-icons

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-icons",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine icons ",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-mobile/flow-mobile-approval/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-mobile-approval

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-mobile/flow-mobile-approval/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-mobile-approval",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine pc mobile approval components",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-mobile/flow-mobile-form/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-mobile-form

## 0.2.7

### Patch Changes

- 修复合并待办列表“发起人/提交人”字段映射颠倒:“发起人”改取 `createdOperatorName`、“提交人”取 `submitOperatorName`,与后端语义及 PC 端展示保持一致(codingapi/flow-frontend#57)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-mobile/flow-mobile-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-mobile-form",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine mobile form engine",
"type": "module",
"sideEffects": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export const FlowMultipleList: React.FC<FlowMultipleListProps> = (props) => {
value={item.recordId}
description={(
<Space>
<span>发起人: {item.submitOperatorName}</span>
<span>提交人: {item.createdOperatorName}</span>
<span>发起人: {item.createdOperatorName}</span>
<span>提交人: {item.submitOperatorName}</span>
<span>时间: {dayjs(item.createTime).format('YYYY-DD-MM HH:mm:ss')}</span>
</Space>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export const FlowSingleList: React.FC<FlowSingleListProps> = (props) => {
}}
description={(
<Space>
<span>发起人: {item.submitOperatorName}</span>
<span>提交人: {item.createdOperatorName}</span>
<span>发起人: {item.createdOperatorName}</span>
<span>提交人: {item.submitOperatorName}</span>
<span>时间: {dayjs(item.createTime).format('YYYY-DD-MM HH:mm:ss')}</span>
</Space>
)}
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-mobile/flow-mobile-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-mobile-ui

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-mobile/flow-mobile-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-mobile-ui",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine mobile ui components",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-pc/flow-pc-approval/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-pc-approval

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-pc/flow-pc-approval/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-pc-approval",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine pc form approval components",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-pc/flow-pc-form/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-pc-form

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-pc/flow-pc-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-pc-form",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine pc form engine",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-pc/flow-pc-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-pc-ui

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-pc/flow-pc-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-pc-ui",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine pc ui components",
"type": "module",
"sideEffects": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flow-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coding-flow/flow-types

## 0.2.7

### Patch Changes

- 版本升级至 0.2.7(配合 flow-mobile-form 合并待办字段映射修复发布,本包无功能变更)

## 0.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coding-flow/flow-types",
"version": "0.2.6",
"version": "0.2.7",
"description": "flow-engine types",
"type": "module",
"sideEffects": [
Expand Down
Loading