@eeacms/volto-block-style
Advanced tools
Comparing version 3.5.15 to 3.5.16
@@ -7,4 +7,11 @@ ### Changelog | ||
#### [3.5.16](https://github.com/eea/volto-block-style/compare/3.5.15...3.5.16) | ||
- Add element height [`#48`](https://github.com/eea/volto-block-style/pull/48) | ||
#### [3.5.15](https://github.com/eea/volto-block-style/compare/3.5.14...3.5.15) | ||
> 13 January 2022 | ||
- Improvements for stretch [`#47`](https://github.com/eea/volto-block-style/pull/47) | ||
- lintfix2 [`34486d3`](https://github.com/eea/volto-block-style/commit/34486d3ed88b3bc34db8076fd5226df6f5095137) | ||
@@ -11,0 +18,0 @@ - Lint fix [`7e4f055`](https://github.com/eea/volto-block-style/commit/7e4f055c26944a731e99a384c01dc8b0cb998385) |
{ | ||
"name": "@eeacms/volto-block-style", | ||
"version": "3.5.15", | ||
"version": "3.5.16", | ||
"description": "volto-block-style: Volto add-on", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -51,2 +51,3 @@ import colorscheme from './EEAColorscheme'; | ||
'hidden', | ||
'height', | ||
'isScreenHeight', | ||
@@ -102,2 +103,7 @@ 'customClass', | ||
}, | ||
height: { | ||
title: 'Element height', | ||
widget: 'text', | ||
description: 'Element height, expressed as CSS dimmension', | ||
}, | ||
isScreenHeight: { | ||
@@ -104,0 +110,0 @@ title: 'Screen height', |
@@ -57,2 +57,3 @@ import React from 'react'; | ||
: {}), | ||
...(data.height ? { height: data.height } : {}), | ||
...(data.isScreenHeight && props.screen.height | ||
@@ -59,0 +60,0 @@ ? { |
136365
2525