@artsy/cohesion 4.386.0 → 4.387.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,28 @@
|
|
|
1
|
+
# v4.387.0 (Mon Jul 27 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: add searchPageResults context module [#734](https://github.com/artsy/cohesion/pull/734) ([@nickskalkin](https://github.com/nickskalkin))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Nikita Skalkin ([@nickskalkin](https://github.com/nickskalkin))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.386.1 (Tue Jul 14 2026)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- feat: add "fairs" as a SelectedFromDrawerSubject [#732](https://github.com/artsy/cohesion/pull/732) ([@claude](https://github.com/claude) [@MounirDhahri](https://github.com/MounirDhahri))
|
|
18
|
+
|
|
19
|
+
#### Authors: 2
|
|
20
|
+
|
|
21
|
+
- Claude ([@claude](https://github.com/claude))
|
|
22
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v4.386.0 (Fri Jul 10 2026)
|
|
2
27
|
|
|
3
28
|
#### 🚀 Enhancement
|
|
@@ -68,7 +68,7 @@ export interface TappedArtworkList {
|
|
|
68
68
|
* }
|
|
69
69
|
* ```
|
|
70
70
|
*/
|
|
71
|
-
export type SelectedFromDrawerSubject = "artists" | "
|
|
71
|
+
export type SelectedFromDrawerSubject = "artists" | "categories" | "fairs" | "galleries" | "shows";
|
|
72
72
|
export interface SelectedFromDrawer {
|
|
73
73
|
action: ActionType.selectedFromDrawer;
|
|
74
74
|
context_screen: OwnerType.favoritesFollows;
|
|
@@ -242,6 +242,7 @@ export declare enum ContextModule {
|
|
|
242
242
|
relatedWorksRail = "relatedWorksRail",
|
|
243
243
|
saves = "saves",
|
|
244
244
|
saveWorksCTA = "saveWorksCTA",
|
|
245
|
+
searchPageResults = "searchPageResults",
|
|
245
246
|
sell = "sell",
|
|
246
247
|
sellFooter = "sellFooter",
|
|
247
248
|
sellHeader = "sellHeader",
|
|
@@ -256,6 +256,7 @@ exports.ContextModule = ContextModule;
|
|
|
256
256
|
ContextModule["relatedWorksRail"] = "relatedWorksRail";
|
|
257
257
|
ContextModule["saves"] = "saves";
|
|
258
258
|
ContextModule["saveWorksCTA"] = "saveWorksCTA";
|
|
259
|
+
ContextModule["searchPageResults"] = "searchPageResults";
|
|
259
260
|
ContextModule["sell"] = "sell";
|
|
260
261
|
ContextModule["sellFooter"] = "sellFooter";
|
|
261
262
|
ContextModule["sellHeader"] = "sellHeader";
|