Skip to content

Commit 8a3ae76

Browse files
authored
Merge branch 'main' into disable-person-link
2 parents 275e396 + 711a779 commit 8a3ae76

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

backend/news/91.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update to plone.volto 5.2.4. Adds getRemoteUrl to default summary serialization. @jackahl @davisagli

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ constraint-dependencies = [
292292
"plone.transformchain==3.0.2",
293293
"plone.uuid==2.0.2",
294294
"plone.versioncheck==1.8.2",
295-
"plone.volto==5.2.2",
295+
"plone.volto==5.2.4",
296296
"plone.z3cform==2.0.5",
297297
"Plone==6.1.3",
298298
"plonetheme.barceloneta==3.3.1",

backend/uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/docs/reference/frontend-styleguide.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,26 @@ and declare it in the root `package.json` as a dependency:
159159
}
160160
```
161161

162+
Also add these overrides to the root `package.json`:
163+
164+
```json
165+
"pnpm": {
166+
"overrides": {
167+
// other overrides
168+
"@kitconcept/volto-light-theme": "workspace:*",
169+
"@kitconcept/volto-bm3-compat": "1.0.0-alpha.1"
170+
},
171+
// other pnpm packages
172+
}
173+
```
174+
175+
After that in the `volto.config.js` add @kitconcept/volto-light-theme to the addons and the thee like this:
176+
177+
```js
178+
const addons = ['volto-vlt-test-styleguide', '@kitconcept/volto-light-theme'];
179+
const theme = '@kitconcept/volto-light-theme';
180+
```
181+
162182
in the add-on's `tsconfig.json`, declare it as a path mapping:
163183

164184
```json
@@ -167,7 +187,7 @@ in the add-on's `tsconfig.json`, declare it as a path mapping:
167187
"compilerOptions": {
168188
// other existing options...
169189
"paths": {
170-
"@kitconcept/volto-light-theme/*": ["../volto-light-theme/src/*"]
190+
"@kitconcept/volto-light-theme/*": ["../volto-light-theme/frontend/packages/volto-light-theme/src/*"]
171191
}
172192
}
173193
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated the instructions to install VLT via the styleguide. @TimoBroeskamp

0 commit comments

Comments
 (0)