@contentful/field-editor-reference 5.1.8 → 5.2.1
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/field-editor-reference.cjs.development.js +6 -2
- 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 +6 -2
- package/dist/field-editor-reference.esm.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.2.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@5.2.0...@contentful/field-editor-reference@5.2.1) (2022-09-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- increase pqueue concurrency in entitystore ([#1237](https://github.com/contentful/field-editors/issues/1237)) ([f81da79](https://github.com/contentful/field-editors/commit/f81da798ac61a2b609aefe3bc64450c3e942e6bf))
|
|
11
|
+
|
|
12
|
+
# [5.2.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@5.1.8...@contentful/field-editor-reference@5.2.0) (2022-09-14)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- date editor with new f36 datepicker, do yarn deduplicate for f36-components [BAU-696] ([#1225](https://github.com/contentful/field-editors/issues/1225)) ([bc142a3](https://github.com/contentful/field-editors/commit/bc142a3522b7e55666eb3796f69f6cfcbab9a574))
|
|
17
|
+
|
|
6
18
|
## [5.1.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@5.1.7...@contentful/field-editor-reference@5.1.8) (2022-09-12)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
|
@@ -1926,7 +1926,7 @@ var _excluded$1 = ["priority"],
|
|
|
1926
1926
|
_excluded2 = ["children"];
|
|
1927
1927
|
|
|
1928
1928
|
var globalQueue = /*#__PURE__*/new PQueue({
|
|
1929
|
-
concurrency:
|
|
1929
|
+
concurrency: 50
|
|
1930
1930
|
});
|
|
1931
1931
|
var UnsupportedError = /*#__PURE__*/function (_Error) {
|
|
1932
1932
|
_inheritsLoose(UnsupportedError, _Error);
|
|
@@ -2984,12 +2984,16 @@ function WrappedEntryCard(props) {
|
|
|
2984
2984
|
onClick: function onClick() {
|
|
2985
2985
|
props.onRemove && props.onRemove();
|
|
2986
2986
|
}
|
|
2987
|
-
}, "Remove") : null, props.hasCardMoveActions && (props.onMoveTop || props.onMoveBottom) ? React.createElement(f36Components.MenuDivider,
|
|
2987
|
+
}, "Remove") : null, props.hasCardMoveActions && (props.onMoveTop || props.onMoveBottom) ? React.createElement(f36Components.MenuDivider, {
|
|
2988
|
+
key: "divider"
|
|
2989
|
+
}) : null, props.hasCardMoveActions && props.onMoveTop ? React.createElement(f36Components.MenuItem, {
|
|
2990
|
+
key: "move-top",
|
|
2988
2991
|
onClick: function onClick() {
|
|
2989
2992
|
return props.onMoveTop && props.onMoveTop();
|
|
2990
2993
|
},
|
|
2991
2994
|
testId: "move-top"
|
|
2992
2995
|
}, "Move to top") : null, props.hasCardMoveActions && props.onMoveBottom ? React.createElement(f36Components.MenuItem, {
|
|
2996
|
+
key: "move-bottom",
|
|
2993
2997
|
onClick: function onClick() {
|
|
2994
2998
|
return props.onMoveBottom && props.onMoveBottom();
|
|
2995
2999
|
},
|