@kitconcept/volto-light-theme 7.0.0-alpha.16 → 7.0.0-alpha.17

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,17 +1,3 @@
1
- ## 7.0.0-alpha.16 (2025-07-23)
2
-
3
- ### Feature
4
-
5
- - Add query support in eventCalendar Block. @iFlameing [#609](https://github.com/kitconcept/volto-light-theme/pull/609)
6
- - Added support for the blocks configuration TTW behavior. @sneridagh [#614](https://github.com/kitconcept/volto-light-theme/pull/614)
7
- - Update carousel block version, example content and cypress @iRohitSingh [#616](https://github.com/kitconcept/volto-light-theme/pull/616)
8
-
9
- ### Bugfix
10
-
11
- - Fixed missing hide_description prop in the Summary component within
12
- TeaserDefaultBodyTemplate and add cypress test for carousel block @iRohitSingh [#610](https://github.com/kitconcept/volto-light-theme/pull/610)
13
- - Fix the layout of eventCalendar block. @iFlameing [#612](https://github.com/kitconcept/volto-light-theme/pull/612)
14
- - Fix extra request in edit mode of event calendar block. @iFlameing [#613](https://github.com/kitconcept/volto-light-theme/pull/613)
15
- - Fix extra request in view mode of event calendar block. @iFlameing [#615](https://github.com/kitconcept/volto-light-theme/pull/615)
1
+ ## 7.0.0-alpha.17 (2025-07-23)
16
2
 
17
3
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,8 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 7.0.0-alpha.17 (2025-07-23)
12
+
11
13
  ## 7.0.0-alpha.16 (2025-07-23)
12
14
 
13
15
  ### Feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "7.0.0-alpha.16",
3
+ "version": "7.0.0-alpha.17",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -1,31 +0,0 @@
1
- {
2
- "plugins": {
3
- "../../core/packages/scripts/prepublish.js": {}
4
- },
5
- "hooks": {
6
- "after:bump": [
7
- "pipx run towncrier build --draft --yes --version ${version} > .changelog.draft",
8
- "pipx run towncrier build --yes --version ${version}",
9
- "cp ../../README.md ./ && cp CHANGELOG.md ../../CHANGELOG.md",
10
- "python3 -c 'import json; data = json.load(open(\"../../package.json\")); data[\"version\"] = \"${version}\"; json.dump(data, open(\"../../package.json\", \"w\"), indent=2)'",
11
- "git add ../../CHANGELOG.md ../../package.json"
12
- ],
13
- "after:release": "rm .changelog.draft README.md"
14
- },
15
- "npm": {
16
- "publish": false
17
- },
18
- "git": {
19
- "changelog": "pipx run towncrier build --draft --yes --version 0.0.0",
20
- "requireUpstream": false,
21
- "requireCleanWorkingDir": false,
22
- "commitMessage": "Release ${version}",
23
- "tagName": "${version}",
24
- "tagAnnotation": "Release ${version}"
25
- },
26
- "github": {
27
- "release": true,
28
- "releaseName": "${version}",
29
- "releaseNotes": "cat .changelog.draft"
30
- }
31
- }