@atlaskit/react-ufo 4.5.10 → 4.5.11
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,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/ufo-interaction-ignore
|
|
2
2
|
|
|
3
|
+
## 4.5.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4b87ec99869df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4b87ec99869df) -
|
|
8
|
+
Added data-vc information to unknown interactions
|
|
9
|
+
|
|
3
10
|
## 4.5.10
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -25,6 +25,8 @@ function getTestIdName(memoizedProps) {
|
|
|
25
25
|
return "[data-testid=".concat(memoizedProps['data-testid'], "]");
|
|
26
26
|
} else if (memoizedProps['data-test-id']) {
|
|
27
27
|
return "[data-test-id=".concat(memoizedProps['data-testid'], "]");
|
|
28
|
+
} else if (memoizedProps['data-vc']) {
|
|
29
|
+
return "[data-vc=".concat(memoizedProps['data-vc'], "]");
|
|
28
30
|
}
|
|
29
31
|
return null;
|
|
30
32
|
}
|
|
@@ -12,6 +12,8 @@ function getTestIdName(memoizedProps) {
|
|
|
12
12
|
return `[data-testid=${memoizedProps['data-testid']}]`;
|
|
13
13
|
} else if (memoizedProps['data-test-id']) {
|
|
14
14
|
return `[data-test-id=${memoizedProps['data-testid']}]`;
|
|
15
|
+
} else if (memoizedProps['data-vc']) {
|
|
16
|
+
return `[data-vc=${memoizedProps['data-vc']}]`;
|
|
15
17
|
}
|
|
16
18
|
return null;
|
|
17
19
|
}
|
|
@@ -18,6 +18,8 @@ function getTestIdName(memoizedProps) {
|
|
|
18
18
|
return "[data-testid=".concat(memoizedProps['data-testid'], "]");
|
|
19
19
|
} else if (memoizedProps['data-test-id']) {
|
|
20
20
|
return "[data-test-id=".concat(memoizedProps['data-testid'], "]");
|
|
21
|
+
} else if (memoizedProps['data-vc']) {
|
|
22
|
+
return "[data-vc=".concat(memoizedProps['data-vc'], "]");
|
|
21
23
|
}
|
|
22
24
|
return null;
|
|
23
25
|
}
|