@kitconcept/volto-light-theme 7.0.0-alpha.27 → 7.0.0-alpha.28
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 +3 -3
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/config/blocks.tsx +2 -1
- package/src/theme/blocks/_slider.scss +2 -2
package/.changelog.draft
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
## 7.0.0-alpha.
|
|
1
|
+
## 7.0.0-alpha.28 (2025-09-08)
|
|
2
2
|
|
|
3
3
|
### Bugfix
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
5
|
+
- Change the icon for eventCalendar block from description to calendar svg. @iFlameing
|
|
6
|
+
- Fix alignment bug in simple slider variant @Tishasoumya-02
|
|
7
7
|
|
|
8
8
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 7.0.0-alpha.28 (2025-09-08)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Change the icon for eventCalendar block from description to calendar svg. @iFlameing
|
|
16
|
+
- Fix alignment bug in simple slider variant @Tishasoumya-02
|
|
17
|
+
|
|
11
18
|
## 7.0.0-alpha.27 (2025-09-04)
|
|
12
19
|
|
|
13
20
|
### Bugfix
|
package/package.json
CHANGED
package/src/config/blocks.tsx
CHANGED
|
@@ -34,6 +34,7 @@ import { searchBlockSchemaEnhancer } from '../components/Blocks/Search/schema';
|
|
|
34
34
|
import gridSVG from '../icons/block_icn_grid.svg';
|
|
35
35
|
import accordionSVG from '../icons/block_icn_accordion.svg';
|
|
36
36
|
import descriptionSVG from '@plone/volto/icons/description.svg';
|
|
37
|
+
import calendarSVG from '@plone/volto/icons/calendar.svg';
|
|
37
38
|
|
|
38
39
|
import { tocBlockSchemaEnhancer } from '../components/Blocks/Toc/schema';
|
|
39
40
|
import { mapsBlockSchemaEnhancer } from '../components/Blocks/Maps/schema';
|
|
@@ -189,7 +190,7 @@ export default function install(config: ConfigType) {
|
|
|
189
190
|
config.blocks.blocksConfig.eventCalendar = {
|
|
190
191
|
id: 'eventCalendar',
|
|
191
192
|
title: 'Event Calendar',
|
|
192
|
-
icon:
|
|
193
|
+
icon: calendarSVG,
|
|
193
194
|
group: 'common',
|
|
194
195
|
view: SearchBlockViewEvent,
|
|
195
196
|
edit: SearchBlockEditEvent,
|
|
@@ -150,11 +150,11 @@ $sliderImagesAspectRatio: var(--slider-images-aspect-ratio, 16/9);
|
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
&.has--slider--flagAlign--right {
|
|
153
|
-
grid-template-areas: 'images
|
|
153
|
+
grid-template-areas: 'content images';
|
|
154
154
|
grid-template-columns: clamp(300px, 40vw, 600px) auto;
|
|
155
155
|
}
|
|
156
156
|
&.has--slider--flagAlign--left {
|
|
157
|
-
grid-template-areas: 'content
|
|
157
|
+
grid-template-areas: 'images content';
|
|
158
158
|
grid-template-columns: auto clamp(300px, 40vw, 600px);
|
|
159
159
|
}
|
|
160
160
|
|