@kitconcept/volto-light-theme 6.0.0 → 6.1.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 +6 -1
- package/CHANGELOG.md +13 -0
- package/package.json +2 -2
- package/src/components/Footer/Footer.tsx +3 -1
- package/src/components/Footer/slots/Colophon.tsx +16 -4
- package/src/components/Footer/slots/CoreFooter.tsx +1 -1
- package/src/theme/_footer.scss +47 -8
- package/src/types.d.ts +1 -0
package/.changelog.draft
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 6.1.0 (2025-05-20)
|
|
12
|
+
|
|
13
|
+
### Feature
|
|
14
|
+
|
|
15
|
+
- Improve Footer color handling. @danalvrz [#551](https://github.com/kitconcept/volto-light-theme/pull/551)
|
|
16
|
+
- Added support for a customizable colophon footer. @sneridagh
|
|
17
|
+
|
|
18
|
+
## 6.0.1 (2025-05-15)
|
|
19
|
+
|
|
20
|
+
### Bugfix
|
|
21
|
+
|
|
22
|
+
- Removed background color specification in the whole footer. We only want it in some areas of it, and depending if some sections are present or not. @sneridagh
|
|
23
|
+
|
|
11
24
|
## 6.0.0 (2025-05-14)
|
|
12
25
|
|
|
13
26
|
## 6.0.0-alpha.25 (2025-05-14)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@types/react": "^18.3.12",
|
|
34
34
|
"@types/react-dom": "^18.3.1",
|
|
35
35
|
"release-it": "^17.7.0",
|
|
36
|
-
"@plone/types": "1.4.
|
|
36
|
+
"@plone/types": "1.4.5"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@dnd-kit/core": "6.0.8",
|
|
@@ -20,7 +20,9 @@ const Footer = () => {
|
|
|
20
20
|
|
|
21
21
|
return (
|
|
22
22
|
<footer id="footer">
|
|
23
|
-
<
|
|
23
|
+
<div className="pre-footer">
|
|
24
|
+
<SlotRenderer name="preFooter" content={content} />
|
|
25
|
+
</div>
|
|
24
26
|
<SlotRenderer name="footer" content={content} />
|
|
25
27
|
<Container className="post-footer">
|
|
26
28
|
<SlotRenderer name="postFooter" content={content} />
|
|
@@ -3,7 +3,7 @@ import Copyright from './Copyright';
|
|
|
3
3
|
import Logo from '../../Logo/Logo';
|
|
4
4
|
import type { Content } from '@plone/types';
|
|
5
5
|
import { useLiveData } from '@kitconcept/volto-light-theme/helpers/useLiveData';
|
|
6
|
-
import type { SiteHeaderSettings } from '../../../types';
|
|
6
|
+
import type { SiteFooterSettings, SiteHeaderSettings } from '../../../types';
|
|
7
7
|
|
|
8
8
|
const Colophon = ({ content }: { content: Content }) => {
|
|
9
9
|
const logo = useLiveData<SiteHeaderSettings['logo']>(
|
|
@@ -12,11 +12,23 @@ const Colophon = ({ content }: { content: Content }) => {
|
|
|
12
12
|
'logo',
|
|
13
13
|
);
|
|
14
14
|
|
|
15
|
+
const footer_colophon_text = useLiveData<
|
|
16
|
+
SiteFooterSettings['footer_colophon_text']
|
|
17
|
+
>(content, 'voltolighttheme.footer', 'footer_colophon_text');
|
|
18
|
+
|
|
15
19
|
return (
|
|
16
20
|
<Container className="colophon">
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
{footer_colophon_text ? (
|
|
22
|
+
<>{footer_colophon_text}</>
|
|
23
|
+
) : (
|
|
24
|
+
<>
|
|
25
|
+
<div className="powered-by">
|
|
26
|
+
Powered by Plone and Volto Light Theme
|
|
27
|
+
</div>
|
|
28
|
+
<Copyright />
|
|
29
|
+
{!logo && <Logo />}
|
|
30
|
+
</>
|
|
31
|
+
)}
|
|
20
32
|
</Container>
|
|
21
33
|
);
|
|
22
34
|
};
|
|
@@ -34,7 +34,7 @@ const CoreFooter = ({ content }: { content: Content }) => {
|
|
|
34
34
|
>(content, 'kitconcept.footer', 'footer_column_right');
|
|
35
35
|
|
|
36
36
|
return (
|
|
37
|
-
<Container className="footer">
|
|
37
|
+
<Container className="main-footer">
|
|
38
38
|
<Container className="default">
|
|
39
39
|
<div className="footer-grid">
|
|
40
40
|
<div className="address-column">
|
package/src/theme/_footer.scss
CHANGED
|
@@ -1,22 +1,41 @@
|
|
|
1
1
|
#footer {
|
|
2
|
-
|
|
2
|
+
margin-top: 1rem;
|
|
3
|
+
|
|
3
4
|
background: var(--footer-background);
|
|
5
|
+
color: var(--footer-foreground, $black);
|
|
4
6
|
text-align: center;
|
|
5
7
|
|
|
8
|
+
&:has(.main-footer) {
|
|
9
|
+
--footer-background: var(--primary-color, $white);
|
|
10
|
+
--footer-foreground: var(--primary-foreground-color, $black);
|
|
11
|
+
}
|
|
12
|
+
|
|
6
13
|
.container {
|
|
7
14
|
padding: 0 1rem;
|
|
8
15
|
}
|
|
9
16
|
|
|
10
|
-
|
|
11
|
-
padding: $spacing-
|
|
12
|
-
|
|
17
|
+
& > :first-child:not(:empty) {
|
|
18
|
+
padding-top: $footer-vertical-spacing-top;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.pre-footer {
|
|
22
|
+
&:has(.logos-container) {
|
|
23
|
+
--footer-background: var(--primary-color, $white);
|
|
24
|
+
--footer-foreground: var(--primary-foreground-color, $black);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
background: var(--footer-background, $white);
|
|
13
28
|
color: var(--footer-foreground, $black);
|
|
14
|
-
font-size: 18px;
|
|
15
29
|
}
|
|
16
30
|
|
|
17
|
-
.footer {
|
|
31
|
+
.main-footer {
|
|
32
|
+
--footer-background: var(--secondary-color, $white);
|
|
33
|
+
--footer-foreground: var(--secondary-foreground-color, $black);
|
|
34
|
+
|
|
18
35
|
padding: $spacing-xlarge 2rem;
|
|
36
|
+
background: var(--footer-background);
|
|
19
37
|
color: var(--footer-foreground, $black);
|
|
38
|
+
|
|
20
39
|
font-size: 18px;
|
|
21
40
|
|
|
22
41
|
a {
|
|
@@ -57,6 +76,18 @@
|
|
|
57
76
|
justify-content: center;
|
|
58
77
|
}
|
|
59
78
|
}
|
|
79
|
+
.address-column {
|
|
80
|
+
& > a:has(img) {
|
|
81
|
+
display: block;
|
|
82
|
+
max-width: 200px;
|
|
83
|
+
|
|
84
|
+
img {
|
|
85
|
+
max-width: 100%;
|
|
86
|
+
height: auto;
|
|
87
|
+
object-fit: contain;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
60
91
|
|
|
61
92
|
.logo {
|
|
62
93
|
display: flex;
|
|
@@ -133,6 +164,13 @@
|
|
|
133
164
|
}
|
|
134
165
|
}
|
|
135
166
|
|
|
167
|
+
.post-footer {
|
|
168
|
+
padding: $spacing-xlarge 2rem;
|
|
169
|
+
background: var(--footer-background);
|
|
170
|
+
color: var(--footer-foreground, $black);
|
|
171
|
+
font-size: 18px;
|
|
172
|
+
}
|
|
173
|
+
|
|
136
174
|
.follow-us-links-and-logo {
|
|
137
175
|
display: flex;
|
|
138
176
|
margin-bottom: 50px;
|
|
@@ -300,8 +338,9 @@
|
|
|
300
338
|
}
|
|
301
339
|
}
|
|
302
340
|
|
|
303
|
-
.footer + .post-footer {
|
|
304
|
-
background-color:
|
|
341
|
+
.main-footer + .post-footer {
|
|
342
|
+
background-color: var(--primary-color, $white);
|
|
343
|
+
color: var(--primary-foreground-color, $black);
|
|
305
344
|
}
|
|
306
345
|
}
|
|
307
346
|
|