Skip to content

Commit

Permalink
Release 17.15.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Mar 7, 2024
1 parent 2fe016b commit 2604b57
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 53 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ myst:

<!-- towncrier release notes start -->

## 17.15.5 (2024-03-07)

### Bugfix

- Fix other occurrences of mutable (referenced) objects when assigning the default inner `blocksConfig` object for the `grid` block, pass by value instead. sneridagh [#5859](https://github.com/plone/volto/issues/5859)

## 17.15.4 (2024-03-06)

### Bugfix
Expand Down
6 changes: 6 additions & 0 deletions docs/source/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ myst:

<!-- towncrier release notes start -->

## 17.15.5 (2024-03-07)

### Bugfix

- Fix other occurrences of mutable (referenced) objects when assigning the default inner `blocksConfig` object for the `grid` block, pass by value instead. sneridagh [#5859](https://github.com/plone/volto/issues/5859)

## 17.15.4 (2024-03-06)

### Bugfix
Expand Down
1 change: 0 additions & 1 deletion news/5859.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "17.15.4",
"version": "17.15.5",
"repository": {
"type": "git",
"url": "[email protected]:plone/volto.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/volto-slate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plone/volto-slate",
"version": "17.15.4",
"version": "17.15.5",
"description": "Slate.js integration with Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
50 changes: 0 additions & 50 deletions types/config/Blocks.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,64 +8,14 @@ export namespace blocksConfig {
namespace blocksConfig {
namespace teaser {
export { gridTeaserDisableStylingSchema as schemaEnhancer };
export let id: string;
export let title: string;
export { imagesSVG as icon };
export let group: string;
export { TeaserViewBlock as view };
export { TeaserEditBlock as edit };
export let restricted: boolean;
export let mostUsed: boolean;
export let sidebarTab: number;
export { TeaserSchema as blockSchema };
export { TeaserBlockDataAdapter as dataAdapter };
export let variations: {
id: string;
isDefault: boolean;
title: string;
template: {
(props: any): JSX.Element;
propTypes: {
data: import("prop-types").Validator<{
[x: string]: any;
}>;
isEditMode: import("prop-types").Requireable<boolean>;
};
};
}[];
}
namespace image {
export { gridImageDisableSizeAndPositionHandlersSchema as schemaEnhancer };
let id_1: string;
export { id_1 as id };
let title_1: string;
export { title_1 as title };
export { cameraSVG as icon };
let group_1: string;
export { group_1 as group };
export { ViewImageBlock as view };
export { EditImageBlock as edit };
export { ImageSettingsSchema as schema };
let restricted_1: boolean;
export { restricted_1 as restricted };
let mostUsed_1: boolean;
export { mostUsed_1 as mostUsed };
let sidebarTab_1: number;
export { sidebarTab_1 as sidebarTab };
export { getImageBlockSizes as getSizes };
}
}
}
}
export const initialBlocks: {};
export const initialBlocksFocus: {};
import { gridTeaserDisableStylingSchema } from '@plone/volto/components/manage/Blocks/Teaser/schema';
import TeaserViewBlock from '@plone/volto/components/manage/Blocks/Teaser/View';
import TeaserEditBlock from '@plone/volto/components/manage/Blocks/Teaser/Edit';
import { TeaserSchema } from '@plone/volto/components/manage/Blocks/Teaser/schema';
import { TeaserBlockDataAdapter } from '@plone/volto/components/manage/Blocks/Teaser/adapter';
import { gridImageDisableSizeAndPositionHandlersSchema } from '@plone/volto/components/manage/Blocks/Image/schema';
import ViewImageBlock from '@plone/volto/components/manage/Blocks/Image/View';
import EditImageBlock from '@plone/volto/components/manage/Blocks/Image/Edit';
import ImageSettingsSchema from '@plone/volto/components/manage/Blocks/Image/LayoutSchema';
import { getImageBlockSizes } from '@plone/volto/components/manage/Blocks/Image/utils';

0 comments on commit 2604b57

Please sign in to comment.