@artsy/cohesion 4.23.0 → 4.24.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
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.24.0 (Mon Nov 29 2021)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- [FX-3344] Remove deprecated clickedArticleGroup helper [#267](https://github.com/artsy/cohesion/pull/267) ([@lidimayra](https://github.com/lidimayra))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Lidiane Taquehara ([@lidimayra](https://github.com/lidimayra))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.23.0 (Tue Nov 23 2021)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export * from "./AddToCalendar";
|
|
2
2
|
export * from "./Share";
|
|
3
3
|
export * from "./Click/ClickedAppDownload";
|
|
4
|
-
export * from "./Click/ClickedArticleGroup";
|
|
5
4
|
export * from "./Click/ClickedArtistSeriesGroup";
|
|
6
5
|
export * from "./Click/ClickedCollectionGroup";
|
|
7
6
|
export * from "./Click/ClickedEntityGroup";
|
|
@@ -40,18 +40,6 @@ Object.keys(_ClickedAppDownload).forEach(function (key) {
|
|
|
40
40
|
});
|
|
41
41
|
});
|
|
42
42
|
|
|
43
|
-
var _ClickedArticleGroup = require("./Click/ClickedArticleGroup");
|
|
44
|
-
|
|
45
|
-
Object.keys(_ClickedArticleGroup).forEach(function (key) {
|
|
46
|
-
if (key === "default" || key === "__esModule") return;
|
|
47
|
-
Object.defineProperty(exports, key, {
|
|
48
|
-
enumerable: true,
|
|
49
|
-
get: function get() {
|
|
50
|
-
return _ClickedArticleGroup[key];
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
});
|
|
54
|
-
|
|
55
43
|
var _ClickedArtistSeriesGroup = require("./Click/ClickedArtistSeriesGroup");
|
|
56
44
|
|
|
57
45
|
Object.keys(_ClickedArtistSeriesGroup).forEach(function (key) {
|
package/package.json
CHANGED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.clickedArticleGroup = void 0;
|
|
7
|
-
|
|
8
|
-
var _Schema = require("../../Schema");
|
|
9
|
-
|
|
10
|
-
var clickedArticleGroup = function clickedArticleGroup(props) {
|
|
11
|
-
return {
|
|
12
|
-
action: _Schema.ActionType.clickedArticleGroup,
|
|
13
|
-
context_module: _Schema.ContextModule.relatedArticles,
|
|
14
|
-
context_page_owner_type: props.context_page_owner_type,
|
|
15
|
-
destination_page_owner_id: props.destination_page_owner_id,
|
|
16
|
-
destination_page_owner_slug: props.destination_page_owner_slug,
|
|
17
|
-
destination_page_owner_type: props.destination_page_owner_type,
|
|
18
|
-
type: "thumbnail"
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
exports.clickedArticleGroup = clickedArticleGroup;
|