@kitconcept/volto-light-theme 7.0.0 → 7.2.0
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 +9 -3
- package/CHANGELOG.md +30 -0
- package/locales/eu/LC_MESSAGES/volto.po +103 -122
- package/package.json +7 -4
- package/src/components/Blocks/EventCalendar/Search/components/DateRangePicker.tsx +9 -3
- package/src/components/Blocks/Teaser/DefaultBody.test.tsx +50 -0
- package/src/components/Summary/DefaultSummary.tsx +4 -1
- package/src/components/Summary/EventSummary.tsx +4 -1
- package/src/components/Summary/FileSummary.tsx +4 -1
- package/src/components/Summary/NewsItemSummary.tsx +4 -1
- package/src/components/Summary/PersonSummary.tsx +4 -2
- package/src/components/Summary/Summary.stories.tsx +18 -0
- package/src/components/Tags/Tags.jsx +2 -1
- package/src/config/blocks.tsx +4 -1
- package/src/helpers/smartText.test.tsx +95 -0
- package/src/helpers/smartText.tsx +46 -0
- package/src/helpers/useLiveData.ts +9 -4
- package/src/theme/_bgcolor-blocks-layout.scss +3 -1
- package/src/theme/_footer.scss +9 -6
- package/src/theme/_layout.scss +1 -1
- package/src/theme/blocks/_eventSearch.scss +22 -0
- package/src/theme/card.scss +3 -0
- package/tsconfig.json +1 -0
- package/vitest.config.mjs +9 -2
package/.changelog.draft
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
## 7.
|
|
1
|
+
## 7.2.0 (2025-10-01)
|
|
2
|
+
|
|
3
|
+
### Feature
|
|
4
|
+
|
|
5
|
+
- Added smartTextRenderer helper for rendering markdown formatted links in plain text. @sneridagh [#679.1](https://github.com/kitconcept/volto-light-theme/pull/679.1)
|
|
6
|
+
- Link support in descriptions in summaries via a custom mardown parser (smartText). @sneridagh [#679.2](https://github.com/kitconcept/volto-light-theme/pull/679.2)
|
|
2
7
|
|
|
3
8
|
### Bugfix
|
|
4
9
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
10
|
+
- Fixed icons and spacing in calendar event range widget. @sneridagh [#680](https://github.com/kitconcept/volto-light-theme/pull/680)
|
|
11
|
+
- Added card img 100% width for account for small images. @sneridagh [#681](https://github.com/kitconcept/volto-light-theme/pull/681)
|
|
12
|
+
- Fixed regression for contained teasers applying a margin only meant for contained ones. @sneridagh [#683](https://github.com/kitconcept/volto-light-theme/pull/683)
|
|
7
13
|
|
|
8
14
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,36 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 7.2.0 (2025-10-01)
|
|
12
|
+
|
|
13
|
+
### Feature
|
|
14
|
+
|
|
15
|
+
- Added smartTextRenderer helper for rendering markdown formatted links in plain text. @sneridagh [#679.1](https://github.com/kitconcept/volto-light-theme/pull/679.1)
|
|
16
|
+
- Link support in descriptions in summaries via a custom mardown parser (smartText). @sneridagh [#679.2](https://github.com/kitconcept/volto-light-theme/pull/679.2)
|
|
17
|
+
|
|
18
|
+
### Bugfix
|
|
19
|
+
|
|
20
|
+
- Fixed icons and spacing in calendar event range widget. @sneridagh [#680](https://github.com/kitconcept/volto-light-theme/pull/680)
|
|
21
|
+
- Added card img 100% width for account for small images. @sneridagh [#681](https://github.com/kitconcept/volto-light-theme/pull/681)
|
|
22
|
+
- Fixed regression for contained teasers applying a margin only meant for contained ones. @sneridagh [#683](https://github.com/kitconcept/volto-light-theme/pull/683)
|
|
23
|
+
|
|
24
|
+
## 7.1.0 (2025-09-29)
|
|
25
|
+
|
|
26
|
+
### Feature
|
|
27
|
+
|
|
28
|
+
- Add Basque translation @erral [#675](https://github.com/kitconcept/volto-light-theme/pull/675)
|
|
29
|
+
|
|
30
|
+
### Bugfix
|
|
31
|
+
|
|
32
|
+
- Fix use Sass interpolation for CSS variable fallbacks @iRohitSingh [#673](https://github.com/kitconcept/volto-light-theme/pull/673)
|
|
33
|
+
- Fix vertical spacing for first block in case that there is a change of color from default. @sneridagh [#676](https://github.com/kitconcept/volto-light-theme/pull/676)
|
|
34
|
+
- Don't show parent tags when adding the child. @iFlameing
|
|
35
|
+
|
|
36
|
+
### Internal
|
|
37
|
+
|
|
38
|
+
- Fix cypress test for calendar block. @iFlameing [#calendar-cypress](https://github.com/kitconcept/volto-light-theme/pull/calendar-cypress)
|
|
39
|
+
- Misc bugfixes. Upgrade to Volto 18.27.2. @sneridagh
|
|
40
|
+
|
|
11
41
|
## 7.0.0 (2025-09-25)
|
|
12
42
|
|
|
13
43
|
### Bugfix
|