Skip to content

Commit 5a467ae

Browse files
committed
chore: release 18.3.0
1 parent 7506017 commit 5a467ae

10 files changed

+57
-5
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [18.3.0](https://github.com/DevCloudFE/react-devui/compare/v18.2.0...v18.3.0) (2023-02-17)
6+
7+
### Bug Fixes
8+
9+
- **platform:** should `useQueryParams` only change `query` ([634556b](https://github.com/DevCloudFE/react-devui/commit/634556bdac657db2f21df17036502590c67bbc79))
10+
- **ui:** fix miss `flexShrink` in virtual-scroll's fill element ([1c2cdf3](https://github.com/DevCloudFE/react-devui/commit/1c2cdf30886ac296c0499e0d089fafa9cf183b5f))
11+
12+
### Code Refactoring
13+
14+
- **ui:** remove `dExpandAll` api ([f51cd58](https://github.com/DevCloudFE/react-devui/commit/f51cd58cbf77b7408e2da6e08779ffebb930f9d7))
15+
16+
### Features
17+
18+
- **platform:** add `skipRenderLink` to breadcrumb ([7506017](https://github.com/DevCloudFE/react-devui/commit/7506017e6031691b1045a2fe8488dc47c2a786da))
19+
- **ui:** add `dVirtual` for all virtual-scroll ([2b7e268](https://github.com/DevCloudFE/react-devui/commit/2b7e268e5ef912f7e2d6f551d888f094a2654fd2))
20+
- **ui:** support custom dropdown for tabs ([862effe](https://github.com/DevCloudFE/react-devui/commit/862effe59bf0945b43d200e6b65811528890e7d8))
21+
22+
### BREAKING CHANGES
23+
24+
- **ui:** use `dExpandAll` usually not as expected.
25+
526
# [18.2.0](https://github.com/DevCloudFE/react-devui/compare/v18.1.4...v18.2.0) (2023-02-10)
627

728
### Bug Fixes

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useNx": true,
44
"packages": ["packages/hooks", "packages/icons", "packages/ui", "packages/utils"],
5-
"version": "18.2.0",
5+
"version": "18.3.0",
66
"command": {
77
"version": {
88
"conventionalCommits": true,

packages/hooks/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [18.3.0](https://github.com/DevCloudFE/react-devui/compare/v18.2.0...v18.3.0) (2023-02-17)
6+
7+
**Note:** Version bump only for package @react-devui/hooks
8+
59
# [18.2.0](https://github.com/DevCloudFE/react-devui/compare/v18.1.4...v18.2.0) (2023-02-10)
610

711
**Note:** Version bump only for package @react-devui/hooks

packages/hooks/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-devui/hooks",
3-
"version": "18.2.0",
3+
"version": "18.3.0",
44
"description": "DevUI hooks based on React",
55
"keywords": [
66
"ui",

packages/icons/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [18.3.0](https://github.com/DevCloudFE/react-devui/compare/v18.2.0...v18.3.0) (2023-02-17)
6+
7+
**Note:** Version bump only for package @react-devui/icons
8+
59
# [18.2.0](https://github.com/DevCloudFE/react-devui/compare/v18.1.4...v18.2.0) (2023-02-10)
610

711
**Note:** Version bump only for package @react-devui/icons

packages/icons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-devui/icons",
3-
"version": "18.2.0",
3+
"version": "18.3.0",
44
"description": "DevUI icons based on React",
55
"keywords": [
66
"ui",

packages/ui/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [18.3.0](https://github.com/DevCloudFE/react-devui/compare/v18.2.0...v18.3.0) (2023-02-17)
6+
7+
### Bug Fixes
8+
9+
- **ui:** fix miss `flexShrink` in virtual-scroll's fill element ([1c2cdf3](https://github.com/DevCloudFE/react-devui/commit/1c2cdf30886ac296c0499e0d089fafa9cf183b5f))
10+
11+
### Code Refactoring
12+
13+
- **ui:** remove `dExpandAll` api ([f51cd58](https://github.com/DevCloudFE/react-devui/commit/f51cd58cbf77b7408e2da6e08779ffebb930f9d7))
14+
15+
### Features
16+
17+
- **ui:** add `dVirtual` for all virtual-scroll ([2b7e268](https://github.com/DevCloudFE/react-devui/commit/2b7e268e5ef912f7e2d6f551d888f094a2654fd2))
18+
- **ui:** support custom dropdown for tabs ([862effe](https://github.com/DevCloudFE/react-devui/commit/862effe59bf0945b43d200e6b65811528890e7d8))
19+
20+
### BREAKING CHANGES
21+
22+
- **ui:** use `dExpandAll` usually not as expected.
23+
524
# [18.2.0](https://github.com/DevCloudFE/react-devui/compare/v18.1.4...v18.2.0) (2023-02-10)
625

726
### Code Refactoring

packages/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-devui/ui",
3-
"version": "18.2.0",
3+
"version": "18.3.0",
44
"description": "DevUI components based on React",
55
"keywords": [
66
"ui",

packages/utils/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
44

5+
# [18.3.0](https://github.com/DevCloudFE/react-devui/compare/v18.2.0...v18.3.0) (2023-02-17)
6+
7+
**Note:** Version bump only for package @react-devui/utils
8+
59
# [18.2.0](https://github.com/DevCloudFE/react-devui/compare/v18.1.4...v18.2.0) (2023-02-10)
610

711
**Note:** Version bump only for package @react-devui/utils

packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-devui/utils",
3-
"version": "18.2.0",
3+
"version": "18.3.0",
44
"description": "DevUI utils based on React",
55
"keywords": [
66
"ui",

0 commit comments

Comments
 (0)