@atlaskit/react-ufo 3.14.4 → 3.14.5
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,13 @@
|
|
|
1
1
|
# @atlaskit/ufo-interaction-ignore
|
|
2
2
|
|
|
3
|
+
## 3.14.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#179205](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/179205)
|
|
8
|
+
[`69957bbb117c8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/69957bbb117c8) -
|
|
9
|
+
Enable media as part of TTVC v3 calculation
|
|
10
|
+
|
|
3
11
|
## 3.14.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -25,6 +25,9 @@ var getConsideredEntryTypes = function getConsideredEntryTypes() {
|
|
|
25
25
|
if (!(0, _platformFeatureFlags.fg)('platform_ufo_exclude_3p_elements_from_ttvc')) {
|
|
26
26
|
entryTypes.push('mutation:third-party-element');
|
|
27
27
|
}
|
|
28
|
+
if ((0, _platformFeatureFlags.fg)('platform_ufo_enable_media_for_ttvc_v3')) {
|
|
29
|
+
entryTypes.push('mutation:media');
|
|
30
|
+
}
|
|
28
31
|
return entryTypes;
|
|
29
32
|
};
|
|
30
33
|
|
|
@@ -11,6 +11,9 @@ const getConsideredEntryTypes = () => {
|
|
|
11
11
|
if (!fg('platform_ufo_exclude_3p_elements_from_ttvc')) {
|
|
12
12
|
entryTypes.push('mutation:third-party-element');
|
|
13
13
|
}
|
|
14
|
+
if (fg('platform_ufo_enable_media_for_ttvc_v3')) {
|
|
15
|
+
entryTypes.push('mutation:media');
|
|
16
|
+
}
|
|
14
17
|
return entryTypes;
|
|
15
18
|
};
|
|
16
19
|
|
|
@@ -18,6 +18,9 @@ var getConsideredEntryTypes = function getConsideredEntryTypes() {
|
|
|
18
18
|
if (!fg('platform_ufo_exclude_3p_elements_from_ttvc')) {
|
|
19
19
|
entryTypes.push('mutation:third-party-element');
|
|
20
20
|
}
|
|
21
|
+
if (fg('platform_ufo_enable_media_for_ttvc_v3')) {
|
|
22
|
+
entryTypes.push('mutation:media');
|
|
23
|
+
}
|
|
21
24
|
return entryTypes;
|
|
22
25
|
};
|
|
23
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-ufo",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.5",
|
|
4
4
|
"description": "Parts of React UFO that are publicly available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -137,6 +137,9 @@
|
|
|
137
137
|
"platform_ufo_report_memory_usage": {
|
|
138
138
|
"type": "boolean"
|
|
139
139
|
},
|
|
140
|
+
"platform_ufo_enable_media_for_ttvc_v3": {
|
|
141
|
+
"type": "boolean"
|
|
142
|
+
},
|
|
140
143
|
"platform_ufo_emit_vc_debug_data": {
|
|
141
144
|
"type": "boolean"
|
|
142
145
|
},
|