@eeacms/volto-hero-block 0.1.2 → 0.1.3

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,8 +4,15 @@ 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
+ #### [0.1.3](https://github.com/eea/volto-hero-block/compare/0.1.2...0.1.3)
8
+
9
+ - Cleanup themeing options [`1832d55`](https://github.com/eea/volto-hero-block/commit/1832d551c96f02dd1905e8acc1b1c31c09caf38d)
10
+
7
11
  #### [0.1.2](https://github.com/eea/volto-hero-block/compare/0.1.1...0.1.2)
8
12
 
13
+ > 16 June 2022
14
+
15
+ - Release [`#3`](https://github.com/eea/volto-hero-block/pull/3)
9
16
  - change(hero): wrap hero-block-image within a wrapper class [`2802c41`](https://github.com/eea/volto-hero-block/commit/2802c41ee8eba4c34bf6d4b4766ebafb24056602)
10
17
  - change(hero): added spaced and inverted options to the main schema [`b6865cd`](https://github.com/eea/volto-hero-block/commit/b6865cdc6dfae0d486f43fccfb31fa555af3a536)
11
18
  - change(hero): output h2 from slate instead of p tag [`0b2a4c5`](https://github.com/eea/volto-hero-block/commit/0b2a4c5070cc2bf97f31ff4cf74ade0e27434d91)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-hero-block",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "@eeacms/volto-hero-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -102,7 +102,6 @@ export const stylingSchema = ({ intl }) => ({
102
102
  ['tertiary', 'Tertiary'],
103
103
  ['grey', 'Grey'],
104
104
  ],
105
- defaultValue: 'primary',
106
105
  },
107
106
  textVariant: {
108
107
  title: 'Text theme',
@@ -110,18 +109,15 @@ export const stylingSchema = ({ intl }) => ({
110
109
  ['primary', 'Primary'],
111
110
  ['secondary', 'Secondary'],
112
111
  ['tertiary', 'Tertiary'],
113
- ['white', 'White'],
114
112
  ],
115
- defaultValue: 'white',
116
113
  },
117
114
  buttonVariant: {
118
115
  title: 'Button theme',
119
116
  choices: [
120
- ['default', 'Default'],
121
117
  ['primary', 'Primary'],
122
118
  ['secondary', 'Secondary'],
119
+ ['tertiary', 'Tertiary'],
123
120
  ],
124
- defaultValue: 'default',
125
121
  },
126
122
  },
127
123
  required: [],