Skip to content

Commit 3989456

Browse files
authored
Merge branch 'main' into parent-tags
2 parents 62bfd2a + 8ff6950 commit 3989456

File tree

21 files changed

+178
-58
lines changed

21 files changed

+178
-58
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
# kitconcept's volto-light-theme Release Notes
22

33
<!-- towncrier release notes start -->
4+
## 7.0.0b7 (2025-09-24)
5+
6+
### Backend
7+
8+
No significant changes.
9+
10+
11+
12+
13+
### Frontend
14+
15+
#### Feature
16+
17+
- Make it possible for custom Summary components to disable being linked. @davisagli
18+
19+
#### Bugfix
20+
21+
- Enable add block button in accordion block @iRohitSingh [#668](https://github.com/kitconcept/volto-light-theme/pull/668)
22+
- Safely check for `voltolighttheme.theme` behavior on Theming component. @ericof [#671](https://github.com/kitconcept/volto-light-theme/pull/671)
23+
- Fix styles for person listing in Search block grid variation. @danalvrz
24+
25+
26+
27+
### Project
28+
29+
No significant changes.
30+
31+
32+
33+
434
## 7.0.0b6 (2025-09-22)
535

636
### Backend

backend/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
<!-- towncrier release notes start -->
44

5+
## 7.0.0b7 (2025-09-24)
6+
7+
No significant changes.
8+
9+
510
## 7.0.0b6 (2025-09-22)
611

712

backend/src/kitconcept/voltolighttheme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import logging
66

77

8-
__version__ = "7.0.0b6"
8+
__version__ = "7.0.0b7"
99

1010
PACKAGE_NAME = "kitconcept.voltolighttheme"
1111

docs/how-to-guides/summary.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,11 @@ const Summary =
117117

118118
return <Summary item={item} />;
119119
```
120+
121+
## Disable links
122+
123+
You can disable showing a link for a particular `Summary` component when it is used.
124+
125+
```jsx
126+
BlogPostSummary.hideLink = true;
127+
```

docs/reference/card.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ const Summary =
120120
}).component || DefaultSummary;
121121
```
122122

123+
If `Summary.hideLink` is true, you should not pass an `href` to the `Card` component.
124+
123125
VLT has registered a few variations of the `Summary` component (eg. Events, News, etc.).
124126

125127
### `Card.Actions`
@@ -138,7 +140,7 @@ You can pass any content to this slot.
138140

139141
```tsx
140142
<Card
141-
href={!isEditMode ? href['@id'] : null}
143+
href={(!Summary.hideLink && !isEditMode) ? href['@id'] : null}
142144
openLinkInNewTab={openLinkInNewTab}
143145
>
144146
<Card.Image

frontend/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@
88

99
<!-- towncrier release notes start -->
1010

11+
## 7.0.0-beta.7 (2025-09-24)
12+
13+
### Feature
14+
15+
- Make it possible for custom Summary components to disable being linked. @davisagli
16+
17+
### Bugfix
18+
19+
- Enable add block button in accordion block @iRohitSingh [#668](https://github.com/kitconcept/volto-light-theme/pull/668)
20+
- Safely check for `voltolighttheme.theme` behavior on Theming component. @ericof [#671](https://github.com/kitconcept/volto-light-theme/pull/671)
21+
- Fix styles for person listing in Search block grid variation. @danalvrz
22+
1123
## 7.0.0-beta.6 (2025-09-22)
1224

1325
### Bugfix

frontend/cypress/tests/main/blocks-calendar.cy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ describe('Event Calendar Block Tests', () => {
7272
.should('not.exist');
7373
});
7474

75-
it('Add Event Calendar block and test the daterange', () => {
75+
it.skip('Add Event Calendar block and test the daterange', () => {
7676
// Adding new event calendar block and setting the date of evet.
7777

7878
cy.addNewBlock('event');
@@ -243,7 +243,7 @@ describe('Event Calendar Block Tests', () => {
243243
});
244244
});
245245

246-
it('Test the daterange with facet and input', () => {
246+
it.skip('Test the daterange with facet and input', () => {
247247
// Adding new event calendar block and setting the two event content published.
248248
cy.setWorkflow({
249249
path: 'my-first-event',

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kitconcept/volto-light-theme-dev",
3-
"version": "7.0.0-beta.6",
3+
"version": "7.0.0-beta.7",
44
"description": "Volto Light Theme by kitconcept",
55
"main": "src/index.js",
66
"types": "src/types/index.d.ts",

frontend/packages/volto-light-theme/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@
88

99
<!-- towncrier release notes start -->
1010

11+
## 7.0.0-beta.7 (2025-09-24)
12+
13+
### Feature
14+
15+
- Make it possible for custom Summary components to disable being linked. @davisagli
16+
17+
### Bugfix
18+
19+
- Enable add block button in accordion block @iRohitSingh [#668](https://github.com/kitconcept/volto-light-theme/pull/668)
20+
- Safely check for `voltolighttheme.theme` behavior on Theming component. @ericof [#671](https://github.com/kitconcept/volto-light-theme/pull/671)
21+
- Fix styles for person listing in Search block grid variation. @danalvrz
22+
1123
## 7.0.0-beta.6 (2025-09-22)
1224

1325
### Bugfix

frontend/packages/volto-light-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kitconcept/volto-light-theme",
3-
"version": "7.0.0-beta.6",
3+
"version": "7.0.0-beta.7",
44
"description": "Volto Light Theme by kitconcept",
55
"main": "src/index.ts",
66
"types": "src/index.ts",

0 commit comments

Comments
 (0)