Releases: front/gutenberg-js
v0.2.0
Release notes
- Added
draggablePost
setting to blocks - Added Type of block select box to Stories panel in order to choose which block type will be dropped
v0.1.0
gutenberg-overrides
Changed
- MediaUpload component and implement the Media Library with existing images edit-post/hooks/components/media-upload/index.js)
v0.0.2
Release notes
- Small style fixes (blocks)
- Added
.babelrc
,.eslintignore
and.eslintrc
files to.npmignore
v0.0.1
Release notes
blocks
- Added Post, Row and Section blocks
components
- Added sidebar PostsPanel and TemplateSettingsPanel components
gutenberg-overrides
Added
-
getBlockAttribute
override to handle withdata
attributes when type isobject
(blocks/api/parser.js) -
data
attribute tocover-image
block and change onSelectImage function to setdata
atributes (core-blocks/cover-image/index.js) -
data
attribute togallery
onsave
(core-blocks/gallery/index.js) -
data
attribute to GalleryImage (core-blocks/gallery/edit.js) -
data
attribute to be set oncomponentDidUpdate
event and then rendered (core-blocks/gallery/gallery-image.js) -
data
attribute toimage
block and change onSelectImage function to setdata
atributes (core-blocks/image/index.js and image/edit.js) -
MediaUpload override edit-post/hooks/components/media-upload/index.js)
-
OPEN_GENERAL_SIDEBAR
andCLOSE_GENERAL_SIDEBAR
effects edit-post/store/effects.js) -
PluginDocumentSidebarPanel component and DocumentSidebar override to included PluginDocumentSidebarPanel (edit-post/components/sidebar/document-sidebar/index.js)
-
Exported the PluginDocumentSidebarPanel component (make it accessible from outside) (edit-post/index.js)
-
canPublish
,canSave
andcanAutosave
properties and default values toEDITOR_SETTINGS_DEFAULTS
(editor/store/defaults.js) -
insertDefaultBlock
override ([editor/store/actions.js](https://github.com/front/gutenberg-js/blob/v0.0.1/src/js/gutenberg-overrides/ -
ifCondition
to AutosaveMonitor, controlled bycanSave
andcanAutosave
settings (editor/components/autosave-monitor/index.js) -
ifCondition
to PostPublishPanelToggle, controlled bycanPublish
setting (editor/components/post-publish-panel/toggle.js) -
ifCondition
to PostSavedState, controlled bycanSave
setting (editor/components/post-saved-state/index.js) -
setContent
override (commentedbookmark
workaround) (editor/components/rich-text/index.js) -
onDrop
override in order to accept blocks from PostItemDraggable (editor/components/block-drop-zone/index.js) -
INSERTER_UTILITY_HIGH
,INSERTER_UTILITY_MEDIUM
andINSERTER_UTILITY_LOW
overrides withINSERTER_UTILITY_NONE
so there is no different levels of utility and consequently no Most Used panel (editor/store/selectors.js) -
data
property tomediaObject
and useget
function to obtain imagetitle
inmediaUpload
function (utils/mediaupload.js)