@contentful/field-editor-reference 5.8.0 → 5.8.2
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 +12 -0
- package/dist/assets/WrappedAssetCard/WrappedAssetLink.d.ts +1 -1
- package/dist/field-editor-reference.cjs.development.js +16 -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 +16 -1
- package/dist/field-editor-reference.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -3363,7 +3363,7 @@ var styles$3 = {
|
|
|
3363
3363
|
}),
|
|
3364
3364
|
item: /*#__PURE__*/css({
|
|
3365
3365
|
marginBottom: tokens.spacingM,
|
|
3366
|
-
zIndex: tokens.
|
|
3366
|
+
zIndex: tokens.zIndexModal // setting this to an index above 99 fixes dragged item disappearing issue. Should not be higher than 100 so it does not overlap the asset modal.
|
|
3367
3367
|
|
|
3368
3368
|
})
|
|
3369
3369
|
};
|
|
@@ -3603,6 +3603,15 @@ var WrappedAssetCard = function WrappedAssetCard(props) {
|
|
|
3603
3603
|
e.preventDefault();
|
|
3604
3604
|
onEdit && onEdit();
|
|
3605
3605
|
} : undefined,
|
|
3606
|
+
|
|
3607
|
+
/* todo - remove this when onKeyDown is allowed as a prop for BaseCard in forma 36
|
|
3608
|
+
// @ts-expect-error */
|
|
3609
|
+
onKeyDown: isClickable ? function (e) {
|
|
3610
|
+
if (e.key === 'Enter' && onEdit) {
|
|
3611
|
+
e.preventDefault();
|
|
3612
|
+
onEdit();
|
|
3613
|
+
}
|
|
3614
|
+
} : undefined,
|
|
3606
3615
|
dragHandleRender: props.renderDragHandle,
|
|
3607
3616
|
withDragHandle: !!props.renderDragHandle,
|
|
3608
3617
|
actions: [].concat(renderActions({
|
|
@@ -3673,6 +3682,12 @@ var WrappedAssetLink = function WrappedAssetLink(props) {
|
|
|
3673
3682
|
e.preventDefault();
|
|
3674
3683
|
onEdit();
|
|
3675
3684
|
},
|
|
3685
|
+
onKeyDown: function onKeyDown(e) {
|
|
3686
|
+
if (e.key === 'Enter' && onEdit) {
|
|
3687
|
+
e.preventDefault();
|
|
3688
|
+
onEdit();
|
|
3689
|
+
}
|
|
3690
|
+
},
|
|
3676
3691
|
dragHandleRender: props.renderDragHandle,
|
|
3677
3692
|
withDragHandle: !!props.renderDragHandle,
|
|
3678
3693
|
actions: [renderActions({
|