@kitconcept/volto-light-theme 7.8.0 → 7.8.1
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 +2 -9
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/razzle.extend.js +6 -1
package/.changelog.draft
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
|
-
## 7.8.
|
|
2
|
-
|
|
3
|
-
### Feature
|
|
4
|
-
|
|
5
|
-
- Remove empty space when next element has a grey background color and add blockWidth widget @Tishasoumya-02 [#758](https://github.com/kitconcept/volto-light-theme/pull/758)
|
|
1
|
+
## 7.8.1 (2026-02-25)
|
|
6
2
|
|
|
7
3
|
### Bugfix
|
|
8
4
|
|
|
9
|
-
- Fix
|
|
10
|
-
- Fix color in language selector, and remove extra margin between Teaser and Button blocks. @danalvrz
|
|
11
|
-
- Fix sticky menu not clickable at default zoom setting @Tishasoumya-02
|
|
12
|
-
- Move the head title after the date in NewsView and EventView, making it consistent with the listing view. @iFlameing
|
|
5
|
+
- Fix SCSS compilation when used with Volto 19. @mpalomaki @sneridagh [#801](https://github.com/kitconcept/volto-light-theme/pull/801)
|
|
13
6
|
|
|
14
7
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 7.8.1 (2026-02-25)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Fix SCSS compilation when used with Volto 19. @mpalomaki @sneridagh [#801](https://github.com/kitconcept/volto-light-theme/pull/801)
|
|
16
|
+
|
|
11
17
|
## 7.8.0 (2026-02-23)
|
|
12
18
|
|
|
13
19
|
### Feature
|
package/package.json
CHANGED
package/razzle.extend.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
const plugins = (defaultPlugins) => {
|
|
2
|
-
const newPlugins = defaultPlugins.filter((plugin) =>
|
|
2
|
+
const newPlugins = defaultPlugins.filter((plugin) => {
|
|
3
|
+
if (typeof plugin === 'string') return plugin !== 'scss';
|
|
4
|
+
if (typeof plugin === 'object' && plugin !== null && plugin.name === 'scss')
|
|
5
|
+
return false;
|
|
6
|
+
return true;
|
|
7
|
+
});
|
|
3
8
|
newPlugins.push({
|
|
4
9
|
name: 'scss',
|
|
5
10
|
options: {
|