Skip to content
Merged
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
8 changes: 6 additions & 2 deletions packages/dms-kit/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@ nav:

# changelog

## 0.0.2
- 该版本主要为版本号更新,无代码变更。
## 1.0.0
- 正式发布 @actiontech/dms-kit

## 1.0.1

- [修复 可用区相关 hooks(useRecentlySelectedZone)逻辑错误](https://github.com/actiontech/dms-ui/pull/749)
2 changes: 1 addition & 1 deletion packages/dms-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actiontech/dms-kit",
"version": "1.0.0",
"version": "1.0.1",
"description": "DMS Kit - React UI Components Library",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/icons/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ nav:

# changelog

## 0.0.2
- 该版本主要为版本号更新,无代码变更。
## 1.0.0
- 正式发布 @actiontech/icons
14 changes: 14 additions & 0 deletions packages/icons/docs/icon/Common.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,13 @@ import { TokenFilled } from '@actiontech/icons';
export default () => <TokenFilled width={32} height={32} />
```

## TransferFilled
```jsx
import { TransferFilled } from '@actiontech/icons';

export default () => <TransferFilled width={32} height={32} />
```

## UserCircleFilled
```jsx
import { UserCircleFilled } from '@actiontech/icons';
Expand Down Expand Up @@ -375,6 +382,13 @@ import { FilterOutlined } from '@actiontech/icons';
export default () => <FilterOutlined width={32} height={32} />
```

## FullScreenOutlined
```jsx
import { FullScreenOutlined } from '@actiontech/icons';

export default () => <FullScreenOutlined width={32} height={32} />
```

## HexagonOutlined
```jsx
import { HexagonOutlined } from '@actiontech/icons';
Expand Down
7 changes: 7 additions & 0 deletions packages/icons/docs/icon/Suggestive.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ import { RingPieFilled } from '@actiontech/icons';
export default () => <RingPieFilled width={32} height={32} />
```

## RocketFilled
```jsx
import { RocketFilled } from '@actiontech/icons';

export default () => <RocketFilled width={32} height={32} />
```

## ThunderBulbFilled
```jsx
import { ThunderBulbFilled } from '@actiontech/icons';
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@actiontech/icons",
"version": "0.0.1-rc.7",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
Expand Down