@kitconcept/core 1.0.0-alpha.2 → 1.0.0-alpha.3

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,11 +1,15 @@
1
- ## 1.0.0-alpha.2 (2025-05-13)
1
+ ## 1.0.0-alpha.3 (2025-05-15)
2
2
 
3
3
  ### Feature
4
4
 
5
- - Upgrade @plone/volto to version 18.20.0. @ericof
5
+ - Update @kitconcept/volto-light-theme to version 6.0.1 @sneridagh
6
+
7
+ ### Bugfix
8
+
9
+ - Set `config.settings.supportedLanguages` to 'en' and 'de'. @sneridagh
6
10
 
7
11
  ### Internal
8
12
 
9
- - Rename packages/core to packages/kitconcept-core to avoid confusion with Volto core checkout. @ericof [#5](https://github.com/kitconcept/kitconcept-core/issue/5)
13
+ - Set `filterBlobs` to true in mrs.developer.json. @sneridagh
10
14
 
11
15
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 1.0.0-alpha.3 (2025-05-15)
12
+
13
+ ### Feature
14
+
15
+ - Update @kitconcept/volto-light-theme to version 6.0.1 @sneridagh
16
+
17
+ ### Bugfix
18
+
19
+ - Set `config.settings.supportedLanguages` to 'en' and 'de'. @sneridagh
20
+
21
+ ### Internal
22
+
23
+ - Set `filterBlobs` to true in mrs.developer.json. @sneridagh
24
+
11
25
  ## 1.0.0-alpha.2 (2025-05-13)
12
26
 
13
27
  ### Feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/core",
3
- "version": "1.0.0-alpha.2",
3
+ "version": "1.0.0-alpha.3",
4
4
  "description": "Core setup for kitconcept GmbH distributions built on top of Plone",
5
5
  "main": "src/index.ts",
6
6
  "license": "MIT",
@@ -31,15 +31,12 @@
31
31
  "@mbarde/volto-image-crop-widget",
32
32
  "@plonegovbr/volto-social-media",
33
33
  "@plone-collective/volto-authomatic",
34
- "volto-form-block",
35
34
  "@kitconcept/volto-light-theme"
36
35
  ],
37
36
  "dependencies": {
38
37
  "@plone-collective/volto-authomatic": "3.0.0-alpha.1",
39
- "@kitconcept/volto-light-theme": "6.0.0-alpha.24",
38
+ "@kitconcept/volto-light-theme": "6.0.1",
40
39
  "@mbarde/volto-image-crop-widget": "^0.5.1",
41
- "@plonegovbr/volto-social-media": "^2.0.0-alpha.5",
42
- "volto-form-block": "^3.12.0",
43
40
  "@kitconcept/volto-banner-block": "^1.0.1",
44
41
  "@plone/components": "3.0.2"
45
42
  },
@@ -49,7 +46,9 @@
49
46
  },
50
47
  "devDependencies": {
51
48
  "@plone/scripts": "^3.6.1",
52
- "release-it": "^17.1.1",
49
+ "@types/react": "^18.3.12",
50
+ "@types/react-dom": "^18.3.1",
51
+ "release-it": "^18.1.2",
53
52
  "@plone/types": "1.4.4"
54
53
  },
55
54
  "scripts": {
@@ -3,6 +3,7 @@ import type { ConfigType } from '@plone/registry';
3
3
  export default function install(config: ConfigType) {
4
4
  // Language is Deutsch
5
5
  config.settings.defaultLanguage = 'de';
6
+ config.settings.supportedLanguages = ['en', 'de'];
6
7
 
7
8
  return config;
8
9
  }