Skip to content

Commit

Permalink
Version Packages (alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 4, 2024
1 parent 0091cba commit 06d767c
Show file tree
Hide file tree
Showing 13 changed files with 182 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
"@lun-web/theme": "0.0.1-alpha.2",
"@lun-web/utils": "0.0.1-alpha.2"
},
"changesets": []
"changesets": [
"curvy-brooms-kiss"
]
}
31 changes: 31 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# @lun-web/components

## 0.0.1-alpha.3

### Patch Changes

- d7bee5d: ## Features

- `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util
- `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

Check notice on line 14 in packages/components/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/components/CHANGELOG.md#L14

Headings must start at the beginning of the line

- `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

Check notice on line 20 in packages/components/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/components/CHANGELOG.md#L20

Headings must start at the beginning of the line

- `components/tree`: fix check methods are not working
- `components/tree`: fix wrong expose type; fix items processing issue
- `core/createCollector`: parent element can be undefined when adding item; invode getParentEl if collectOnSetup is true
- `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item
- `components/tabs`: fix transition issue when switching tabs

- Updated dependencies [d7bee5d]
- @lun-web/core@0.0.1-alpha.3
- @lun-web/plugins@0.0.1-alpha.3
- @lun-web/utils@0.0.1-alpha.3
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
29 changes: 29 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# @lun-web/core

## 0.0.1-alpha.3

### Patch Changes

- d7bee5d: ## Features

- `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util
- `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

Check notice on line 14 in packages/core/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/core/CHANGELOG.md#L14

Headings must start at the beginning of the line

- `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

Check notice on line 20 in packages/core/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/core/CHANGELOG.md#L20

Headings must start at the beginning of the line

- `components/tree`: fix check methods are not working
- `components/tree`: fix wrong expose type; fix items processing issue
- `core/createCollector`: parent element can be undefined when adding item; invode getParentEl if collectOnSetup is true
- `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item
- `components/tabs`: fix transition issue when switching tabs

- Updated dependencies [d7bee5d]
- @lun-web/utils@0.0.1-alpha.3
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
29 changes: 29 additions & 0 deletions packages/plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# @lun-web/plugins

## 0.0.1-alpha.3

### Patch Changes

- d7bee5d: ## Features

- `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util
- `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

Check notice on line 14 in packages/plugins/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/plugins/CHANGELOG.md#L14

Headings must start at the beginning of the line

- `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

Check notice on line 20 in packages/plugins/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/plugins/CHANGELOG.md#L20

Headings must start at the beginning of the line

- `components/tree`: fix check methods are not working
- `components/tree`: fix wrong expose type; fix items processing issue
- `core/createCollector`: parent element can be undefined when adding item; invode getParentEl if collectOnSetup is true
- `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item
- `components/tabs`: fix transition issue when switching tabs

- Updated dependencies [d7bee5d]
- @lun-web/utils@0.0.1-alpha.3
2 changes: 1 addition & 1 deletion packages/plugins/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
29 changes: 29 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# @lun-web/react

## 0.0.1-alpha.3

### Patch Changes

- d7bee5d: ## Features

- `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util
- `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

Check notice on line 14 in packages/react/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/react/CHANGELOG.md#L14

Headings must start at the beginning of the line

- `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

Check notice on line 20 in packages/react/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/react/CHANGELOG.md#L20

Headings must start at the beginning of the line

- `components/tree`: fix check methods are not working
- `components/tree`: fix wrong expose type; fix items processing issue
- `core/createCollector`: parent element can be undefined when adding item; invode getParentEl if collectOnSetup is true
- `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item
- `components/tabs`: fix transition issue when switching tabs

- Updated dependencies [d7bee5d]
- @lun-web/components@0.0.1-alpha.3
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
29 changes: 29 additions & 0 deletions packages/theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# @lun-web/theme

## 0.0.1-alpha.3

### Patch Changes

- d7bee5d: ## Features

- `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util
- `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

Check notice on line 14 in packages/theme/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/theme/CHANGELOG.md#L14

Headings must start at the beginning of the line

- `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

Check notice on line 20 in packages/theme/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/theme/CHANGELOG.md#L20

Headings must start at the beginning of the line

- `components/tree`: fix check methods are not working
- `components/tree`: fix wrong expose type; fix items processing issue
- `core/createCollector`: parent element can be undefined when adding item; invode getParentEl if collectOnSetup is true
- `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item
- `components/tabs`: fix transition issue when switching tabs

- Updated dependencies [d7bee5d]
- @lun-web/components@0.0.1-alpha.3
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
26 changes: 26 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# @lun-web/utils

## 0.0.1-alpha.3

### Patch Changes

- d7bee5d: ## Features

- `components/config`: add `transitionRegistry` and `transitions` global context config; add `useTransition` hook and `registerTransition` util
- `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

Check notice on line 14 in packages/utils/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/utils/CHANGELOG.md#L14

Headings must start at the beginning of the line

- `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

Check notice on line 20 in packages/utils/CHANGELOG.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

packages/utils/CHANGELOG.md#L20

Headings must start at the beginning of the line

- `components/tree`: fix check methods are not working
- `components/tree`: fix wrong expose type; fix items processing issue
- `core/createCollector`: parent element can be undefined when adding item; invode getParentEl if collectOnSetup is true
- `theme/form-item`: fix vertical align issue of checkbox-group and radio-group in form-item
- `components/tabs`: fix transition issue when switching tabs
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 06d767c

Please sign in to comment.