@inveniosoftware/react-invenio-app-ils 1.0.0-alpha.65 → 1.0.0-alpha.68
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/CHANGES.md +13 -0
- package/dist/cjs/index.js +6 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +6 -5
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
Version 1.0.0-alpha.68 (released 2022-03-10)
|
|
4
|
+
|
|
5
|
+
- backoffice: fix series details volumes search phrase
|
|
6
|
+
|
|
7
|
+
Version 1.0.0-alpha.67 (released 2022-03-09)
|
|
8
|
+
|
|
9
|
+
- series details: search for exact pid for volumes list
|
|
10
|
+
|
|
11
|
+
Version 1.0.0-alpha.66 (released 2022-02-24)
|
|
12
|
+
|
|
13
|
+
- DocumentConference: pass needed props to overridable context so users
|
|
14
|
+
can access the props when they override the component
|
|
15
|
+
|
|
3
16
|
Version 1.0.0-alpha.65 (released 2022-02-21)
|
|
4
17
|
|
|
5
18
|
- other authors: fix `et al.` display across the site
|
package/dist/cjs/index.js
CHANGED
|
@@ -4595,9 +4595,9 @@ var QueryBuilder$9 = /*#__PURE__*/function () {
|
|
|
4595
4595
|
}
|
|
4596
4596
|
|
|
4597
4597
|
if (moi === 'SERIAL') {
|
|
4598
|
-
this.withSeriesQuery.push("relations.serial.pid_value
|
|
4598
|
+
this.withSeriesQuery.push("relations.serial.pid_value:\"".concat(prepareSumQuery(seriesPid), "\""));
|
|
4599
4599
|
} else {
|
|
4600
|
-
this.withSeriesQuery.push("relations.multipart_monograph.pid_value
|
|
4600
|
+
this.withSeriesQuery.push("relations.multipart_monograph.pid_value:\"".concat(prepareSumQuery(seriesPid), "\""));
|
|
4601
4601
|
}
|
|
4602
4602
|
|
|
4603
4603
|
return this;
|
|
@@ -51765,7 +51765,8 @@ var DocumentConferenceCmp = /*#__PURE__*/function (_Component) {
|
|
|
51765
51765
|
value: function render() {
|
|
51766
51766
|
var conference = this.props.conference;
|
|
51767
51767
|
return /*#__PURE__*/React__default["default"].createElement(Overridable__default["default"], {
|
|
51768
|
-
id: "DocumentConference.layout"
|
|
51768
|
+
id: "DocumentConference.layout",
|
|
51769
|
+
conference: conference
|
|
51769
51770
|
}, /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement(semanticUiReact.Divider, {
|
|
51770
51771
|
horizontal: true
|
|
51771
51772
|
}, "Conference information"), _isEmpty__default["default"](conference) && 'No conference information.', conference.map(function (conf) {
|
|
@@ -56939,11 +56940,11 @@ function _get(target, property, receiver) {
|
|
|
56939
56940
|
var qsBuilderForSeries = function qsBuilderForSeries(seriesMetadata) {
|
|
56940
56941
|
var pidValue = seriesMetadata.pid; // MM can have has children only documents
|
|
56941
56942
|
|
|
56942
|
-
var relationsQuery = "relations.multipart_monograph.pid_value
|
|
56943
|
+
var relationsQuery = "relations.multipart_monograph.pid_value:\"".concat(pidValue, "\"");
|
|
56943
56944
|
|
|
56944
56945
|
if (seriesMetadata.mode_of_issuance === 'SERIAL') {
|
|
56945
56946
|
// serials can have as children serials or MM
|
|
56946
|
-
relationsQuery = "(relations.serial.pid_value
|
|
56947
|
+
relationsQuery = "(relations.serial.pid_value:\"".concat(pidValue, "\" OR ").concat(relationsQuery, ")");
|
|
56947
56948
|
}
|
|
56948
56949
|
/**
|
|
56949
56950
|
* Custom serializer to change the query string and retrieve all records that have
|