From 5c3a45f7d983db291b00611a8779d03c458ba2bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 5 Nov 2024 13:04:38 +0000 Subject: [PATCH] Version Packages (alpha) --- .changeset/pre.json | 9 ++++++++- packages/components/CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ packages/components/package.json | 2 +- packages/core/CHANGELOG.md | 12 ++++++++++++ packages/core/package.json | 2 +- packages/plugins/CHANGELOG.md | 9 +++++++++ packages/plugins/package.json | 2 +- packages/react/CHANGELOG.md | 9 +++++++++ packages/react/package.json | 2 +- packages/theme/CHANGELOG.md | 13 +++++++++++++ packages/theme/package.json | 2 +- packages/utils/CHANGELOG.md | 7 +++++++ packages/utils/package.json | 2 +- 13 files changed, 95 insertions(+), 7 deletions(-) create mode 100644 packages/components/CHANGELOG.md create mode 100644 packages/core/CHANGELOG.md create mode 100644 packages/plugins/CHANGELOG.md create mode 100644 packages/react/CHANGELOG.md create mode 100644 packages/theme/CHANGELOG.md create mode 100644 packages/utils/CHANGELOG.md diff --git a/.changeset/pre.json b/.changeset/pre.json index 0ce07d48..a7f393fc 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -9,5 +9,12 @@ "@lun-web/theme": "0.0.1-alpha.2", "@lun-web/utils": "0.0.1-alpha.2" }, - "changesets": [] + "changesets": [ + "components", + "core", + "plugins", + "react", + "theme", + "utils" + ] } diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md new file mode 100644 index 00000000..9cb1fb28 --- /dev/null +++ b/packages/components/CHANGELOG.md @@ -0,0 +1,31 @@ +# @lun-web/components + +## 0.0.1-alpha.3 + +### Patch Changes + +- 2aa0076: ## Features + + - `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util function + - `components/dialog`: add custom renderer for header, remove `title` prop + - `components/message`: support string param for `Message.open` + - `components/switch`: add `beforeUpdate` to asynchronously determine whether to update checked status + + ## Changes + + - `colorPriority` of `GlobalStaticConfig`: + - previous: resolve color and status value from all sources and then determine, that means: if we set success status on a component, as it can resolve color from theme context, it will still use context color instead status from props first + - now: color and status are resolved from different sources and determine respectively. We should always respect props first, then parent props, and last theme context. + + ## Bug Fixes + + - `components/tree`: fix check methods are not working + - `components/tree`: fix wrong expose type; fix items processing issue + - `components/tabs`: fix transition issue when switching tabs + +- Updated dependencies [2aa0076] +- Updated dependencies [2aa0076] +- Updated dependencies [2aa0076] + - @lun-web/core@0.0.1-alpha.3 + - @lun-web/plugins@0.0.1-alpha.3 + - @lun-web/utils@0.0.1-alpha.3 diff --git a/packages/components/package.json b/packages/components/package.json index f15efb04..8f2b97ef 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@lun-web/components", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.3", "description": "A full-featured web components library based on Vue3", "keywords": [ "web-components", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md new file mode 100644 index 00000000..f4508ab9 --- /dev/null +++ b/packages/core/CHANGELOG.md @@ -0,0 +1,12 @@ +# @lun-web/core + +## 0.0.1-alpha.3 + +### Patch Changes + +- 2aa0076: ## Bug Fixes + + - `core/createCollector`: parent element can be undefined when adding item; invoke getParentEl if collectOnSetup is true + +- Updated dependencies [2aa0076] + - @lun-web/utils@0.0.1-alpha.3 diff --git a/packages/core/package.json b/packages/core/package.json index af50682a..9a855a8e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lun-web/core", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.3", "description": "Hooks and utils for developing components for Vue3", "keywords": [], "type": "module", diff --git a/packages/plugins/CHANGELOG.md b/packages/plugins/CHANGELOG.md new file mode 100644 index 00000000..53203cf7 --- /dev/null +++ b/packages/plugins/CHANGELOG.md @@ -0,0 +1,9 @@ +# @lun-web/plugins + +## 0.0.1-alpha.3 + +### Patch Changes + +- 2aa0076: +- Updated dependencies [2aa0076] + - @lun-web/utils@0.0.1-alpha.3 diff --git a/packages/plugins/package.json b/packages/plugins/package.json index a9341c45..9543cf18 100644 --- a/packages/plugins/package.json +++ b/packages/plugins/package.json @@ -1,6 +1,6 @@ { "name": "@lun-web/plugins", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.3", "description": "Directive plugins for Vue template or Vue JSX", "keywords": [], "type": "module", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md new file mode 100644 index 00000000..cfdde2da --- /dev/null +++ b/packages/react/CHANGELOG.md @@ -0,0 +1,9 @@ +# @lun-web/react + +## 0.0.1-alpha.3 + +### Patch Changes + +- 2aa0076: +- Updated dependencies [2aa0076] + - @lun-web/components@0.0.1-alpha.3 diff --git a/packages/react/package.json b/packages/react/package.json index dd8535d8..fcb02c5e 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lun-web/react", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.3", "description": "Compatible @lun-web/components layer for versions before React19", "keywords": [ "web-components", diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md new file mode 100644 index 00000000..239d6a80 --- /dev/null +++ b/packages/theme/CHANGELOG.md @@ -0,0 +1,13 @@ +# @lun-web/theme + +## 0.0.1-alpha.3 + +### Patch Changes + +- 2aa0076: ## Bug Fixes + + - `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item + - `theme/tabs`: fix transition issue when switching tabs; fix active tab can be covered by hidden tab panels + +- Updated dependencies [2aa0076] + - @lun-web/components@0.0.1-alpha.3 diff --git a/packages/theme/package.json b/packages/theme/package.json index 6b424d47..10b28973 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,6 +1,6 @@ { "name": "@lun-web/theme", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.3", "description": "Beautiful preset theme for @lun-web/components", "keywords": [ "ui", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md new file mode 100644 index 00000000..02e4e15d --- /dev/null +++ b/packages/utils/CHANGELOG.md @@ -0,0 +1,7 @@ +# @lun-web/utils + +## 0.0.1-alpha.3 + +### Patch Changes + +- 2aa0076: diff --git a/packages/utils/package.json b/packages/utils/package.json index 7facaa99..1aa680e9 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@lun-web/utils", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.3", "description": "A set of javascript utils", "keywords": [ "javascript-utils"