@eeacms/volto-bise-policy 1.2.14 → 1.2.15
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.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.2.15](https://github.com/eea/volto-bise-policy/compare/1.2.14...1.2.15) - 13 May 2025
|
|
8
|
+
|
|
9
|
+
#### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
- feat(stylewrapper): add useAsPageHeader style option to all blocks refs#286320 [nileshgulia1 - [`09592ca`](https://github.com/eea/volto-bise-policy/commit/09592ca5077b19c1b421e39c6e391f7711117e87)]
|
|
12
|
+
|
|
13
|
+
#### :bug: Bug Fixes
|
|
14
|
+
|
|
15
|
+
- fix(toc): accordionToc list marker and fonts [nileshgulia1 - [`761354d`](https://github.com/eea/volto-bise-policy/commit/761354d8c94196339ffa2737a48d43bd08be5148)]
|
|
16
|
+
|
|
7
17
|
### [1.2.14](https://github.com/eea/volto-bise-policy/compare/1.2.13...1.2.14) - 11 December 2024
|
|
8
18
|
|
|
9
19
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -48,6 +48,7 @@ export const StyleSchema = () => {
|
|
|
48
48
|
id: 'advanced',
|
|
49
49
|
title: 'Advanced',
|
|
50
50
|
fields: [
|
|
51
|
+
'useAsPageHeader',
|
|
51
52
|
'theme',
|
|
52
53
|
'hidden',
|
|
53
54
|
'height',
|
|
@@ -164,6 +165,11 @@ export const StyleSchema = () => {
|
|
|
164
165
|
description: 'Hide this block',
|
|
165
166
|
type: 'boolean',
|
|
166
167
|
},
|
|
168
|
+
useAsPageHeader: {
|
|
169
|
+
title: 'Use as page header',
|
|
170
|
+
description: 'Use this block as page header',
|
|
171
|
+
type: 'boolean',
|
|
172
|
+
},
|
|
167
173
|
shadowDepth: {
|
|
168
174
|
widget: 'slider',
|
|
169
175
|
title: 'Shadow depth',
|
package/theme/extras/tocnav.less
CHANGED
|
@@ -121,6 +121,22 @@
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
// Table of contents - accordion menu
|
|
125
|
+
.table-of-contents.accordionMenu {
|
|
126
|
+
.ui.accordion {
|
|
127
|
+
.content {
|
|
128
|
+
.accordion-list-bulleted li::marker {
|
|
129
|
+
content: '\25CB';
|
|
130
|
+
color: @lightSecondaryColor;
|
|
131
|
+
font-size: 1.2em;
|
|
132
|
+
}
|
|
133
|
+
.title {
|
|
134
|
+
font-size: 1em;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
124
140
|
@media only screen and (min-width: 769px) {
|
|
125
141
|
.table-of-contents.horizontalMenu {
|
|
126
142
|
.ui.menu {
|