colonel-kurtz
Advanced tools
Changelog
2.23.0
group
property will display as a dropdown in
the BlockType creator menu.All changes are non-breaking. For those not including the Colonel
Kurtz stylesheet via node_modules
, you will need to update your
stylesheet in order to benefit from the new focus state on the
BlockType creator menu
BlockTypes can be grouped! To do this, add a group
property to your
block type like so:
let blockTypes = [
{
id: 'youtube',
group: 'Embedded'
// other props
},
{
id: 'twitter',
group: 'Embedded'
// other props
},
{
id: 'facebook',
group: 'Embedded'
// other props
}
]
Changelog
2.22.0
hint
property the <Field />
uid
dependency to generate unique ids for <Field />
hints<Embeddable />
to allow hint text on its
<Field />
component<Field />
label to handle very long
labels colliding with menu button.There are small style updates to <Field />
those not pulling in the
style sheet from node_modules should update theirs accordingly.
Changelog
2.21.0
<Field />
component is no longer a controlled input<Field />
component label now wraps its input