Skip to content

Commit

Permalink
Release 18.0.0-alpha.27
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Apr 5, 2024
1 parent 139eb64 commit 8aa167a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
7 changes: 7 additions & 0 deletions docs/source/release-notes/index.md
Expand Up @@ -17,6 +17,13 @@ myst:

<!-- towncrier release notes start -->

## 18.0.0-alpha.27 (2024-04-05)

### Bugfix

- Enhanced navigation reducer in Volto to keep items extra-data sent from the navigation endpoint @Hrittik20 [#5772](https://github.com/plone/volto/issues/5772)
- Improve `ColorPickerWidget` typings @sneridagh [#5948](https://github.com/plone/volto/issues/5948)

## 18.0.0-alpha.26 (2024-04-03)

### Breaking
Expand Down
7 changes: 7 additions & 0 deletions packages/volto/CHANGELOG.md
Expand Up @@ -17,6 +17,13 @@ myst:

<!-- towncrier release notes start -->

## 18.0.0-alpha.27 (2024-04-05)

### Bugfix

- Enhanced navigation reducer in Volto to keep items extra-data sent from the navigation endpoint @Hrittik20 [#5772](https://github.com/plone/volto/issues/5772)
- Improve `ColorPickerWidget` typings @sneridagh [#5948](https://github.com/plone/volto/issues/5948)

## 18.0.0-alpha.26 (2024-04-03)

### Breaking
Expand Down
1 change: 0 additions & 1 deletion packages/volto/news/5772.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/5948.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion packages/volto/package.json
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "18.0.0-alpha.26",
"version": "18.0.0-alpha.27",
"repository": {
"type": "git",
"url": "git@github.com:plone/volto.git"
Expand Down
Expand Up @@ -10,11 +10,11 @@ type Color = {
export type ColorPickerWidgetProps = {
id: string;
title: string;
value: string;
default: string;
required: boolean;
missing_value: unknown;
className: string;
value?: string;
default?: string | object;
required?: boolean;
missing_value?: unknown;
className?: string;
onChange: (id: string, value: any) => void;
colors: Color[];
};
Expand Down

0 comments on commit 8aa167a

Please sign in to comment.