Skip to content

Commit

Permalink
Release 18.0.0-alpha.30
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed May 2, 2024
1 parent 8b5447c commit ca286aa
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 15 deletions.
14 changes: 14 additions & 0 deletions docs/source/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ myst:

<!-- towncrier release notes start -->

## 18.0.0-alpha.30 (2024-05-02)

### Bugfix

- Fix image disappears after pressing the Enter key on title field in image content-type. @iFlameing [#5973](https://github.com/plone/volto/issues/5973)
- Defines the last 4 parameters of the `asyncConnect` function with optional. @wesleybl [#5985](https://github.com/plone/volto/issues/5985)
- Fix server side sidebar rendering @sneridagh [#5993](https://github.com/plone/volto/issues/5993)

### Internal

- Update to use Plone 6.0.11 @sneridagh [#5989](https://github.com/plone/volto/issues/5989)
- Flexibilize the pins for all ESlint deps, in Volto and generators @sneridagh [#5991](https://github.com/plone/volto/issues/5991)
- Cleaned up useless injectIntl in DefaultView @pnicolli [#5994](https://github.com/plone/volto/issues/5994)

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

### Feature
Expand Down
14 changes: 14 additions & 0 deletions packages/volto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ myst:

<!-- towncrier release notes start -->

## 18.0.0-alpha.30 (2024-05-02)

### Bugfix

- Fix image disappears after pressing the Enter key on title field in image content-type. @iFlameing [#5973](https://github.com/plone/volto/issues/5973)
- Defines the last 4 parameters of the `asyncConnect` function with optional. @wesleybl [#5985](https://github.com/plone/volto/issues/5985)
- Fix server side sidebar rendering @sneridagh [#5993](https://github.com/plone/volto/issues/5993)

### Internal

- Update to use Plone 6.0.11 @sneridagh [#5989](https://github.com/plone/volto/issues/5989)
- Flexibilize the pins for all ESlint deps, in Volto and generators @sneridagh [#5991](https://github.com/plone/volto/issues/5991)
- Cleaned up useless injectIntl in DefaultView @pnicolli [#5994](https://github.com/plone/volto/issues/5994)

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

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/5989.internal

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/5991.internal

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/5994.internal

This file was deleted.

2 changes: 1 addition & 1 deletion packages/volto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "18.0.0-alpha.29",
"version": "18.0.0-alpha.30",
"repository": {
"type": "git",
"url": "git@github.com:plone/volto.git"
Expand Down
18 changes: 13 additions & 5 deletions packages/volto/types/components/theme/View/DefaultView.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
declare const _default: React.FC<import("react-intl").WithIntlProps<any>> & {
WrappedComponent: React.ComponentType<any>;
};
export default _default;
import React from 'react';
export default DefaultView;
/**
* Component to display the default view.
* @function DefaultView
* @param {Object} content Content object.
* @returns {string} Markup of the component.
*/
declare function DefaultView(props: any): string;
declare namespace DefaultView {
namespace propTypes {
let content: any;
}
}
5 changes: 2 additions & 3 deletions packages/volto/types/config/Views.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ export const contentTypesViews: {
};
Event: import("@loadable/component").LoadableComponent<any>;
};
export const defaultView: import("react").FC<import("react-intl").WithIntlProps<any>> & {
WrappedComponent: import("react").ComponentType<any>;
};
export function defaultView(props: any): string;
export namespace defaultView { }
export const errorViews: {
404: (props: any) => import("react/jsx-runtime").JSX.Element;
401: (props: any) => import("react/jsx-runtime").JSX.Element;
Expand Down

0 comments on commit ca286aa

Please sign in to comment.