@contentful/field-editor-reference 5.1.8 → 5.2.0
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 +6 -0
- package/dist/field-editor-reference.cjs.development.js +5 -1
- package/dist/field-editor-reference.cjs.development.js.map +1 -1
- package/dist/field-editor-reference.cjs.production.min.js +1 -1
- package/dist/field-editor-reference.cjs.production.min.js.map +1 -1
- package/dist/field-editor-reference.esm.js +5 -1
- package/dist/field-editor-reference.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -2977,12 +2977,16 @@ function WrappedEntryCard(props) {
|
|
|
2977
2977
|
onClick: function onClick() {
|
|
2978
2978
|
props.onRemove && props.onRemove();
|
|
2979
2979
|
}
|
|
2980
|
-
}, "Remove") : null, props.hasCardMoveActions && (props.onMoveTop || props.onMoveBottom) ? createElement(MenuDivider,
|
|
2980
|
+
}, "Remove") : null, props.hasCardMoveActions && (props.onMoveTop || props.onMoveBottom) ? createElement(MenuDivider, {
|
|
2981
|
+
key: "divider"
|
|
2982
|
+
}) : null, props.hasCardMoveActions && props.onMoveTop ? createElement(MenuItem, {
|
|
2983
|
+
key: "move-top",
|
|
2981
2984
|
onClick: function onClick() {
|
|
2982
2985
|
return props.onMoveTop && props.onMoveTop();
|
|
2983
2986
|
},
|
|
2984
2987
|
testId: "move-top"
|
|
2985
2988
|
}, "Move to top") : null, props.hasCardMoveActions && props.onMoveBottom ? createElement(MenuItem, {
|
|
2989
|
+
key: "move-bottom",
|
|
2986
2990
|
onClick: function onClick() {
|
|
2987
2991
|
return props.onMoveBottom && props.onMoveBottom();
|
|
2988
2992
|
},
|