@kitconcept/website 2.0.0-beta.7 → 2.0.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.changelog.draft CHANGED
@@ -1,3 +1,12 @@
1
- ## 2.0.0-beta.7 (2026-07-14)
1
+ ## 2.0.0-beta.8 (2026-07-28)
2
+
3
+ ### Feature
4
+
5
+ - Add control panel for GDPR / DSGVO settings. @davisagli
6
+ - Add tracker, tracker options and privacy URL fields to the DSGVO control panel. @iFlameing
7
+
8
+ ### Internal
9
+
10
+ - Upgrade to @kitconcept/core 2.0.0-beta.7 @ericof [#81](https://gitlab.kitconcept.io/kitconcept/distribution-kitconcept-website/-/work_items/81)
2
11
 
3
12
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,17 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 2.0.0-beta.8 (2026-07-28)
12
+
13
+ ### Feature
14
+
15
+ - Add control panel for GDPR / DSGVO settings. @davisagli
16
+ - Add tracker, tracker options and privacy URL fields to the DSGVO control panel. @iFlameing
17
+
18
+ ### Internal
19
+
20
+ - Upgrade to @kitconcept/core 2.0.0-beta.7 @ericof [#81](https://gitlab.kitconcept.io/kitconcept/distribution-kitconcept-website/-/work_items/81)
21
+
11
22
  ## 2.0.0-beta.7 (2026-07-14)
12
23
 
13
24
  ## 2.0.0-beta.6 (2026-07-10)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/website",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.0-beta.8",
4
4
  "description": "A CMS solution for public websites. Created by kitconcept.",
5
5
  "main": "src/index.ts",
6
6
  "license": "MIT",
@@ -62,20 +62,20 @@
62
62
  "@plone/volto-form-block": "^1.0.0-alpha.3",
63
63
  "@plone-collective/volto-image-editor": "1.0.1",
64
64
  "@kitconcept/volto-bm3-compat": "1.0.0-alpha.1",
65
- "@kitconcept/core": "2.0.0-beta.3",
66
65
  "@kitconcept/volto-banner-block": "1.2.0",
67
- "@kitconcept/volto-button-block": "5.0.0-alpha.2",
68
66
  "@kitconcept/volto-contact-block": "1.0.0-alpha.5",
69
- "@kitconcept/volto-carousel-block": "3.0.0-alpha.1",
67
+ "@kitconcept/core": "2.0.0-beta.7",
70
68
  "@kitconcept/volto-heading-block": "2.5.0",
71
- "@kitconcept/volto-highlight-block": "5.0.0-alpha.0",
72
- "@kitconcept/volto-light-theme": "8.0.0-alpha.30",
73
- "@kitconcept/volto-logos-block": "4.0.0-alpha.1",
74
69
  "@kitconcept/volto-calendar-block": "1.0.0-alpha.9",
75
- "@kitconcept/volto-slider-block": "7.0.0-alpha.1",
76
- "@kitconcept/volto-separator-block": "5.0.0-alpha.0",
70
+ "@kitconcept/volto-carousel-block": "3.0.0-alpha.1",
71
+ "@kitconcept/volto-button-block": "5.0.0-alpha.2",
72
+ "@kitconcept/volto-light-theme": "8.0.0-alpha.31",
73
+ "@kitconcept/volto-highlight-block": "5.0.0-alpha.2",
74
+ "@kitconcept/volto-dsgvo-banner": "4.0.0-alpha.2",
77
75
  "@kitconcept/volto-introduction-block": "1.4.1",
78
- "@kitconcept/volto-dsgvo-banner": "4.0.0-alpha.1"
76
+ "@kitconcept/volto-logos-block": "4.0.0-alpha.1",
77
+ "@kitconcept/volto-separator-block": "5.0.0-alpha.0",
78
+ "@kitconcept/volto-slider-block": "7.0.0-alpha.1"
79
79
  },
80
80
  "volto_version": "19.1.5",
81
81
  "scripts": {
@@ -1,8 +1,20 @@
1
1
  import { ConfigType } from '@plone/registry';
2
+ import newsSVG from '@plone/volto/icons/news.svg';
2
3
 
3
4
  export default function install(config: ConfigType) {
4
5
  config.settings.supportedLanguages = ['de', 'en'];
5
6
 
7
+ // Clear DSGVO add-on settings so it gets them from the `@site` endpoint
8
+ const dsgvoSettings = config.settings.DSGVOBanner as {
9
+ showBanner?: boolean;
10
+ modules?: Array<string>;
11
+ };
12
+ delete dsgvoSettings.showBanner;
13
+ delete dsgvoSettings.modules;
14
+ delete dsgvoSettings.tracker;
15
+ delete dsgvoSettings.privacy_url;
16
+ config.settings.controlPanelsIcons['dsgvo-settings'] = newsSVG;
17
+
6
18
  // Volto Light Theme Configuration
7
19
  config.settings.siteHeader = true;
8
20
  config.settings.siteLabel = 'Site';
package/towncrier.toml CHANGED
@@ -5,7 +5,7 @@ title_format = "## {version} ({project_date})"
5
5
  underlines = ["", "", ""]
6
6
  template = "./node_modules/@plone/scripts/templates/towncrier_template.jinja"
7
7
  start_string = "<!-- towncrier release notes start -->\n"
8
- issue_format = "[#{issue}](https://github.com/kitconcept/kitconcept-website/issue/{issue})"
8
+ issue_format = "[#{issue}](https://gitlab.kitconcept.io/kitconcept/distribution-kitconcept-website/-/work_items/{issue})"
9
9
 
10
10
  [[tool.towncrier.type]]
11
11
  directory = "breaking"