diff --git a/CHANGELOG.md b/CHANGELOG.md index da20e9af9..1c329965c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,35 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-beta.16](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-06-17) + + +### Bug Fixes + +* **cdk:resize:** performance problem ([#963](https://github.com/IDuxFE/idux/issues/963)) ([52e2eb8](https://github.com/IDuxFE/idux/commit/52e2eb8029d78c2fd5273727cef46f5e402b6785)) +* **comp:button:** danger mode style error ([#957](https://github.com/IDuxFE/idux/issues/957)) ([6fef486](https://github.com/IDuxFE/idux/commit/6fef486cd8527835ef9d61eec55497c10cbe2464)), closes [#955](https://github.com/IDuxFE/idux/issues/955) +* **comp:header:** prefix or suffix is empty str, expect no render vnode ([#954](https://github.com/IDuxFE/idux/issues/954)) ([f9fb28b](https://github.com/IDuxFE/idux/commit/f9fb28b27e2187c0d09bc76c1e28f09d08d03067)) +* **comp:modal:** fix loading stop before hide ([#961](https://github.com/IDuxFE/idux/issues/961)) ([8f3f696](https://github.com/IDuxFE/idux/commit/8f3f696268e85cdf3eb6bf3a58e47740fd47c5cf)) +* **comp:table:** calculate the scroll postion when container resize ([#956](https://github.com/IDuxFE/idux/issues/956)) ([5fffb9b](https://github.com/IDuxFE/idux/commit/5fffb9b74f448c90d9478e26aaf1cbdf8a322a00)) +* **comp:table:** set expandable trigger button type ([#962](https://github.com/IDuxFE/idux/issues/962)) ([a59b764](https://github.com/IDuxFE/idux/commit/a59b7641306a1d4d64d02a170bcc148adbb53c33)) +* **comp:time-picker:** fix time range input ([#959](https://github.com/IDuxFE/idux/issues/959)) ([56bd1b2](https://github.com/IDuxFE/idux/commit/56bd1b28d01c6ad4b234e0cd59ed4455a018c75e)) +* **comp:tree:** data display error after search clearing ([#952](https://github.com/IDuxFE/idux/issues/952)) ([2f502f6](https://github.com/IDuxFE/idux/commit/2f502f6ec4375d0e01bad4725531ae0e4ceafeee)) +* **pro:transfer:** fix flat tree transfer render when labelKey provided ([#958](https://github.com/IDuxFE/idux/issues/958)) ([8319ac0](https://github.com/IDuxFE/idux/commit/8319ac00e34fe10e5fa7bab888ae2792b71f2150)) + + +### Features + +* **comp:select:** extract IxSelectPanel component ([#938](https://github.com/IDuxFE/idux/issues/938)) ([3724675](https://github.com/IDuxFE/idux/commit/3724675812d47fb1bcebc486ad8f3ab2a8704ad9)) + + +### BREAKING CHANGES + +* **pro:transfer:** TransferBindings provide getKey as ComputedRef instead of getRowKey + + + + + # [1.0.0-beta.15](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-06-13) diff --git a/lerna.json b/lerna.json index 7f2c1d7be..5640670df 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "command": { "publish": { "allowBranch": ["main", "next", "hotfix"], diff --git a/packages/cdk/CHANGELOG.md b/packages/cdk/CHANGELOG.md index 3494e2571..68f524c77 100644 --- a/packages/cdk/CHANGELOG.md +++ b/packages/cdk/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-beta.16](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-06-17) + + +### Bug Fixes + +* **cdk:resize:** performance problem ([#963](https://github.com/IDuxFE/idux/issues/963)) ([52e2eb8](https://github.com/IDuxFE/idux/commit/52e2eb8029d78c2fd5273727cef46f5e402b6785)) + + + + + # [1.0.0-beta.15](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-06-13) diff --git a/packages/cdk/package.json b/packages/cdk/package.json index e7736a964..230b09c1c 100644 --- a/packages/cdk/package.json +++ b/packages/cdk/package.json @@ -1,6 +1,6 @@ { "name": "@idux/cdk", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "description": "A UI Component Development Kit for Vue 3.x", "keywords": [ "vue", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index dc2ab1368..e9da0e0fb 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-beta.16](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-06-17) + + +### Bug Fixes + +* **comp:button:** danger mode style error ([#957](https://github.com/IDuxFE/idux/issues/957)) ([6fef486](https://github.com/IDuxFE/idux/commit/6fef486cd8527835ef9d61eec55497c10cbe2464)), closes [#955](https://github.com/IDuxFE/idux/issues/955) +* **comp:header:** prefix or suffix is empty str, expect no render vnode ([#954](https://github.com/IDuxFE/idux/issues/954)) ([f9fb28b](https://github.com/IDuxFE/idux/commit/f9fb28b27e2187c0d09bc76c1e28f09d08d03067)) +* **comp:modal:** fix loading stop before hide ([#961](https://github.com/IDuxFE/idux/issues/961)) ([8f3f696](https://github.com/IDuxFE/idux/commit/8f3f696268e85cdf3eb6bf3a58e47740fd47c5cf)) +* **comp:table:** calculate the scroll postion when container resize ([#956](https://github.com/IDuxFE/idux/issues/956)) ([5fffb9b](https://github.com/IDuxFE/idux/commit/5fffb9b74f448c90d9478e26aaf1cbdf8a322a00)) +* **comp:table:** set expandable trigger button type ([#962](https://github.com/IDuxFE/idux/issues/962)) ([a59b764](https://github.com/IDuxFE/idux/commit/a59b7641306a1d4d64d02a170bcc148adbb53c33)) +* **comp:time-picker:** fix time range input ([#959](https://github.com/IDuxFE/idux/issues/959)) ([56bd1b2](https://github.com/IDuxFE/idux/commit/56bd1b28d01c6ad4b234e0cd59ed4455a018c75e)) +* **comp:tree:** data display error after search clearing ([#952](https://github.com/IDuxFE/idux/issues/952)) ([2f502f6](https://github.com/IDuxFE/idux/commit/2f502f6ec4375d0e01bad4725531ae0e4ceafeee)) +* **pro:transfer:** fix flat tree transfer render when labelKey provided ([#958](https://github.com/IDuxFE/idux/issues/958)) ([8319ac0](https://github.com/IDuxFE/idux/commit/8319ac00e34fe10e5fa7bab888ae2792b71f2150)) + + +### Features + +* **comp:select:** extract IxSelectPanel component ([#938](https://github.com/IDuxFE/idux/issues/938)) ([3724675](https://github.com/IDuxFE/idux/commit/3724675812d47fb1bcebc486ad8f3ab2a8704ad9)) + + +### BREAKING CHANGES + +* **pro:transfer:** TransferBindings provide getKey as ComputedRef instead of getRowKey + + + + + # [1.0.0-beta.15](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-06-13) diff --git a/packages/components/package.json b/packages/components/package.json index 32abdffdf..f7ad29806 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@idux/components", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "description": "A UI Component Library for Vue 3.x", "keywords": [ "vue", @@ -34,7 +34,7 @@ }, "scripts": {}, "dependencies": { - "@idux/cdk": "^1.0.0-beta.15", + "@idux/cdk": "^1.0.0-beta.16", "date-fns": "^2.27.0", "lodash-es": "^4.17.0", "vue-types": "^3.0.0" diff --git a/packages/pro/CHANGELOG.md b/packages/pro/CHANGELOG.md index 477f7e8cb..758ff648d 100644 --- a/packages/pro/CHANGELOG.md +++ b/packages/pro/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-beta.16](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-06-17) + + +### Bug Fixes + +* **cdk:resize:** performance problem ([#963](https://github.com/IDuxFE/idux/issues/963)) ([52e2eb8](https://github.com/IDuxFE/idux/commit/52e2eb8029d78c2fd5273727cef46f5e402b6785)) +* **pro:transfer:** fix flat tree transfer render when labelKey provided ([#958](https://github.com/IDuxFE/idux/issues/958)) ([8319ac0](https://github.com/IDuxFE/idux/commit/8319ac00e34fe10e5fa7bab888ae2792b71f2150)) + + +### BREAKING CHANGES + +* **pro:transfer:** TransferBindings provide getKey as ComputedRef instead of getRowKey + + + + + # [1.0.0-beta.15](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-06-13) diff --git a/packages/pro/package.json b/packages/pro/package.json index bbb76c202..d952930c3 100644 --- a/packages/pro/package.json +++ b/packages/pro/package.json @@ -1,6 +1,6 @@ { "name": "@idux/pro", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "description": "A higher level of abstraction UI component library for Vue 3.x", "keywords": [ "vue", @@ -32,8 +32,8 @@ "jsdelivr": "./index.full.js", "scripts": {}, "dependencies": { - "@idux/cdk": "^1.0.0-beta.15", - "@idux/components": "^1.0.0-beta.15", + "@idux/cdk": "^1.0.0-beta.16", + "@idux/components": "^1.0.0-beta.16", "lodash-es": "^4.17.0" }, "devDependencies": { diff --git a/packages/site/CHANGELOG.md b/packages/site/CHANGELOG.md index e691ffdb8..fe1968de1 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.0.0-beta.16](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-06-17) + +**Note:** Version bump only for package @idux/site + + + + + # [1.0.0-beta.15](https://github.com/IDuxFE/idux/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-06-13) **Note:** Version bump only for package @idux/site diff --git a/packages/site/package.json b/packages/site/package.json index b094051d3..6de30c76d 100644 --- a/packages/site/package.json +++ b/packages/site/package.json @@ -1,6 +1,6 @@ { "name": "@idux/site", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "private": true, "description": "A website for @idux", "license": "MIT", @@ -10,9 +10,9 @@ "build": "vite build" }, "dependencies": { - "@idux/cdk": "^1.0.0-beta.15", - "@idux/components": "^1.0.0-beta.15", - "@idux/pro": "^1.0.0-beta.15", + "@idux/cdk": "^1.0.0-beta.16", + "@idux/components": "^1.0.0-beta.16", + "@idux/pro": "^1.0.0-beta.16", "codesandbox": "^2.2.3", "lodash-es": "^4.17.21", "vue": "^3.2.29",