@kitconcept/core 1.0.0-alpha.1 → 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,10 +1,15 @@
1
- ## 1.0.0-alpha.1 (2025-05-09)
1
+ ## 1.0.0-alpha.3 (2025-05-15)
2
2
 
3
3
  ### Feature
4
4
 
5
- - Add @kitconcept/volto-light-theme as dependency. @ericof
6
- - Add @plonegovbr/socialmedia as dependency. @ericof
7
- - Add volto-form-block as dependency. @ericof
8
- - Use @plone/volto version 18.19.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
10
+
11
+ ### Internal
12
+
13
+ - Set `filterBlobs` to true in mrs.developer.json. @sneridagh
9
14
 
10
15
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,30 @@
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
+
25
+ ## 1.0.0-alpha.2 (2025-05-13)
26
+
27
+ ### Feature
28
+
29
+ - Upgrade @plone/volto to version 18.20.0. @ericof
30
+
31
+ ### Internal
32
+
33
+ - Rename packages/core to packages/kitconcept-core to avoid confusion with Volto core checkout. @ericof [#5](https://github.com/kitconcept/kitconcept-core/issue/5)
34
+
11
35
  ## 1.0.0-alpha.1 (2025-05-09)
12
36
 
13
37
  ### Feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/core",
3
- "version": "1.0.0-alpha.1",
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
  }