Skip to content

Commit

Permalink
📝 feat: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangchu committed Nov 23, 2023
2 parents 76fd25f + d13b430 commit 75a6e4e
Show file tree
Hide file tree
Showing 7 changed files with 92 additions and 5 deletions.
75 changes: 75 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,80 @@
# Changelog

### [Version 0.12.1](https://github.com/ant-design/pro-flow/compare/v0.12.0...v0.12.1)

<sup>Released on **2023-11-22**</sup>

#### 🐛 修复

- Update link.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### What's fixed

- Update link ([14a5ecc](https://github.com/ant-design/pro-flow/commit/14a5ecc))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>

## [Version&nbsp;0.12.0](https://github.com/ant-design/pro-flow/compare/v0.11.1...v0.12.0)

<sup>Released on **2023-11-09**</sup>

#### ✨ 新特性

- **docs**: 补全文档 & 提供 useFlowViewer hooks.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### What's improved

- **docs**: 补全文档 & 提供 useFlowViewer hooks, closes [#29](https://github.com/ant-design/pro-flow/issues/29) ([e5679ab](https://github.com/ant-design/pro-flow/commit/e5679ab))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>

### [Version&nbsp;0.11.1](https://github.com/ant-design/pro-flow/compare/v0.11.0...v0.11.1)

<sup>Released on **2023-11-07**</sup>

#### 🐛 修复

- Doc build.

<br/>

<details>
<summary><kbd>Improvements and Fixes</kbd></summary>

#### What's fixed

- Doc build, closes [#28](https://github.com/ant-design/pro-flow/issues/28) ([174be34](https://github.com/ant-design/pro-flow/commit/174be34))

</details>

<div align="right">

[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)

</div>

## [Version&nbsp;0.11.0](https://github.com/ant-design/pro-flow/compare/v0.10.7...v0.11.0)

<sup>Released on **2023-11-07**</sup>
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pnpm i @ant-design/pro-flow -S

<!-- CONTRIBUTION GROUP -->

> 📊 Total: <kbd>**5**</kbd>
> 📊 Total: <kbd>**6**</kbd>
<a href="https://github.com/arvinxx" title="arvinxx">
<img src="https://avatars.githubusercontent.com/u/28616219?v=4" width="50" />
Expand All @@ -93,6 +93,9 @@ pnpm i @ant-design/pro-flow -S
<a href="https://github.com/meganjohnson96" title="meganjohnson96">
<img src="https://avatars.githubusercontent.com/u/136729222?v=4" width="50" />
</a>
<a href="https://github.com/KazooTTT" title="KazooTTT">
<img src="https://avatars.githubusercontent.com/u/31075337?v=4" width="50" />
</a>

<!-- CONTRIBUTION END -->

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ hero:
description: 一款功能强大、易用灵活的流程编辑器框架,帮助你轻松构建复杂的工作流和流程产品。
actions:
- text: 快速上手
link: /guide
link: /use-docs/quick-doc
- text: Github
link: https://github.com/ant-design/pro-flow
---
Expand Down
10 changes: 10 additions & 0 deletions docs/useDocs/drawer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
nav: 使用文档
group:
title: 进阶使用
order: 3
title: 侧边栏
description:
---

正在加急编写中...
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ant-design/pro-flow",
"version": "0.11.0",
"version": "0.12.1",
"description": "A React based Flow components",
"keywords": [
"flow",
Expand Down
1 change: 1 addition & 0 deletions src/FlowEditor/container/FlowEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ const FlowEditor = forwardRef<any, FlowEditorAppProps>(
} else {
instance.setViewport(defaultViewport);
}
console.log(nodesInitialized);

// 然后设定初始化节点的相关状态
if (nodesInitialized) {
Expand Down
2 changes: 0 additions & 2 deletions src/FlowPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,3 @@ export default (props: PanelProps) => {

return <Panel position={position}>{children}</Panel>;
};

export { PanelPosition };

0 comments on commit 75a6e4e

Please sign in to comment.