@artsy/cohesion 4.207.0 → 4.208.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.208.0 (Fri Oct 18 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat(DIA-815): added "tap" to AuthTrigger [#532](https://github.com/artsy/cohesion/pull/532) ([@iskounen](https://github.com/iskounen))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Adam Iskounen ([@iskounen](https://github.com/iskounen))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.207.0 (Wed Sep 25 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -149,7 +149,7 @@ export declare enum AuthModalType {
|
|
|
149
149
|
/**
|
|
150
150
|
* The type of action that opened the authentication modal
|
|
151
151
|
*/
|
|
152
|
-
export type AuthTrigger = "click" | "timed" | "scroll";
|
|
152
|
+
export type AuthTrigger = "click" | "tap" | "timed" | "scroll";
|
|
153
153
|
/**
|
|
154
154
|
* the service the user used to authenticate
|
|
155
155
|
*/
|