diff --git a/CHANGELOG.md b/CHANGELOG.md index 55033d0a2..f13fc72ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,29 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.11.0](https://github.com/IDuxFE/idux/compare/v1.10.2...v1.11.0) (2023-10-07) + + +### Bug Fixes + +* **comp:radio:** radio dot size and position shouldn't be constant ([#1707](https://github.com/IDuxFE/idux/issues/1707)) ([840eefe](https://github.com/IDuxFE/idux/commit/840eefef03633b2ecf5c9a481ddb36f63888cc8e)) +* **comp:text:** native tooltip should show when not ellipsised ([#1709](https://github.com/IDuxFE/idux/issues/1709)) ([8513cd9](https://github.com/IDuxFE/idux/commit/8513cd92aad47081dd9ef160897bd388a88ffa68)) +* **comp:text:** text blinks when content doesn't exceed one row ([#1706](https://github.com/IDuxFE/idux/issues/1706)) ([5afea2f](https://github.com/IDuxFE/idux/commit/5afea2f36f6a3a53c1d72fa37804f58a8f134a62)) +* **comp:text:** use css ellipsis at one row to improve performance ([#1705](https://github.com/IDuxFE/idux/issues/1705)) ([271ef83](https://github.com/IDuxFE/idux/commit/271ef83dd5d88afff84e8007439e9b5a8d5546b0)) +* **pro:search:** key duplication after controlled value change ([#1708](https://github.com/IDuxFE/idux/issues/1708)) ([3ae8dd2](https://github.com/IDuxFE/idux/commit/3ae8dd2a825483ce530abbf57a24cfb6fa99fa29)) +* **pro:textarea:** readonly not working ([#1704](https://github.com/IDuxFE/idux/issues/1704)) ([6e82eb4](https://github.com/IDuxFE/idux/commit/6e82eb4cbc5a8a2b20f5d7315b8c0cedbfd96110)) + + +### Features + +* **comp:card:** `shadow` supports global config now ([#1696](https://github.com/IDuxFE/idux/issues/1696)) ([d3672cc](https://github.com/IDuxFE/idux/commit/d3672ccd8ba53f126b6ce7643fa3141e25b88c0e)) +* **pro:search:** quickSelect prop supports object option ([#1697](https://github.com/IDuxFE/idux/issues/1697)) ([5259671](https://github.com/IDuxFE/idux/commit/52596710afee111bc5d98d145f4af5c3a516cd15)) +* **pro:search:** searchField supports `keywordFallback` option ([#1698](https://github.com/IDuxFE/idux/issues/1698)) ([430c740](https://github.com/IDuxFE/idux/commit/430c74094cae6d99e27517d4060839f0d24a3670)) + + + + + ## [1.10.2](https://github.com/IDuxFE/idux/compare/v1.10.1...v1.10.2) (2023-09-25) diff --git a/lerna.json b/lerna.json index 3f99792ae..c49f95306 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "1.10.2", + "version": "1.11.0", "command": { "publish": { "allowBranch": ["main", "release", "next", "hotfix"], diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index d9d4b22ed..cd696aeee 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.11.0](https://github.com/IDuxFE/idux/compare/v1.10.2...v1.11.0) (2023-10-07) + + +### Bug Fixes + +* **comp:radio:** radio dot size and position shouldn't be constant ([#1707](https://github.com/IDuxFE/idux/issues/1707)) ([840eefe](https://github.com/IDuxFE/idux/commit/840eefef03633b2ecf5c9a481ddb36f63888cc8e)) +* **comp:text:** native tooltip should show when not ellipsised ([#1709](https://github.com/IDuxFE/idux/issues/1709)) ([8513cd9](https://github.com/IDuxFE/idux/commit/8513cd92aad47081dd9ef160897bd388a88ffa68)) +* **comp:text:** text blinks when content doesn't exceed one row ([#1706](https://github.com/IDuxFE/idux/issues/1706)) ([5afea2f](https://github.com/IDuxFE/idux/commit/5afea2f36f6a3a53c1d72fa37804f58a8f134a62)) +* **comp:text:** use css ellipsis at one row to improve performance ([#1705](https://github.com/IDuxFE/idux/issues/1705)) ([271ef83](https://github.com/IDuxFE/idux/commit/271ef83dd5d88afff84e8007439e9b5a8d5546b0)) + + +### Features + +* **comp:card:** `shadow` supports global config now ([#1696](https://github.com/IDuxFE/idux/issues/1696)) ([d3672cc](https://github.com/IDuxFE/idux/commit/d3672ccd8ba53f126b6ce7643fa3141e25b88c0e)) +* **pro:search:** searchField supports `keywordFallback` option ([#1698](https://github.com/IDuxFE/idux/issues/1698)) ([430c740](https://github.com/IDuxFE/idux/commit/430c74094cae6d99e27517d4060839f0d24a3670)) + + + + + ## [1.10.2](https://github.com/IDuxFE/idux/compare/v1.10.1...v1.10.2) (2023-09-25) diff --git a/packages/components/package.json b/packages/components/package.json index 84cafe8f2..7ce997319 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@idux/components", - "version": "1.10.2", + "version": "1.11.0", "description": "A UI Component Library for Vue 3.x", "keywords": [ "vue", diff --git a/packages/pro/CHANGELOG.md b/packages/pro/CHANGELOG.md index c78543e8c..bd52ceecd 100644 --- a/packages/pro/CHANGELOG.md +++ b/packages/pro/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.11.0](https://github.com/IDuxFE/idux/compare/v1.10.2...v1.11.0) (2023-10-07) + + +### Bug Fixes + +* **pro:search:** key duplication after controlled value change ([#1708](https://github.com/IDuxFE/idux/issues/1708)) ([3ae8dd2](https://github.com/IDuxFE/idux/commit/3ae8dd2a825483ce530abbf57a24cfb6fa99fa29)) +* **pro:textarea:** readonly not working ([#1704](https://github.com/IDuxFE/idux/issues/1704)) ([6e82eb4](https://github.com/IDuxFE/idux/commit/6e82eb4cbc5a8a2b20f5d7315b8c0cedbfd96110)) + + +### Features + +* **pro:search:** quickSelect prop supports object option ([#1697](https://github.com/IDuxFE/idux/issues/1697)) ([5259671](https://github.com/IDuxFE/idux/commit/52596710afee111bc5d98d145f4af5c3a516cd15)) +* **pro:search:** searchField supports `keywordFallback` option ([#1698](https://github.com/IDuxFE/idux/issues/1698)) ([430c740](https://github.com/IDuxFE/idux/commit/430c74094cae6d99e27517d4060839f0d24a3670)) + + + + + ## [1.10.2](https://github.com/IDuxFE/idux/compare/v1.10.1...v1.10.2) (2023-09-25) **Note:** Version bump only for package @idux/pro diff --git a/packages/pro/package.json b/packages/pro/package.json index ba7d99800..83200823b 100644 --- a/packages/pro/package.json +++ b/packages/pro/package.json @@ -1,6 +1,6 @@ { "name": "@idux/pro", - "version": "1.10.2", + "version": "1.11.0", "description": "A higher level of abstraction UI component library for Vue 3.x", "keywords": [ "vue", @@ -39,7 +39,7 @@ }, "dependencies": { "@idux/cdk": "1.9.4", - "@idux/components": "1.10.2", + "@idux/components": "1.11.0", "ajv": "^8.11.0", "ajv-formats": "^3.0.0-rc.0", "lodash-es": "^4.17.0" diff --git a/packages/site/CHANGELOG.md b/packages/site/CHANGELOG.md index abf64dd4d..ad2118199 100644 --- a/packages/site/CHANGELOG.md +++ b/packages/site/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.11.0](https://github.com/IDuxFE/idux/compare/v1.10.2...v1.11.0) (2023-10-07) + +**Note:** Version bump only for package @idux/site + + + + + ## [1.10.2](https://github.com/IDuxFE/idux/compare/v1.10.1...v1.10.2) (2023-09-25) **Note:** Version bump only for package @idux/site diff --git a/packages/site/package.json b/packages/site/package.json index 9ddb32feb..a4ea3507d 100644 --- a/packages/site/package.json +++ b/packages/site/package.json @@ -1,6 +1,6 @@ { "name": "@idux/site", - "version": "1.10.2", + "version": "1.11.0", "private": true, "description": "A website for @idux", "license": "MIT", @@ -13,8 +13,8 @@ }, "dependencies": { "@idux/cdk": "1.9.4", - "@idux/components": "1.10.2", - "@idux/pro": "1.10.2", + "@idux/components": "1.11.0", + "@idux/pro": "1.11.0", "codesandbox": "^2.2.3", "lodash-es": "^4.17.21", "vue": "^3.2.29",