@atlaskit/react-ufo 4.17.0 → 5.0.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 +14 -0
- package/dist/cjs/create-payload/index.js +2 -2
- package/dist/cjs/interaction-id-context/index.js +2 -2
- package/dist/cjs/typing-performance-tracing/index.js +29 -6
- package/dist/cjs/vc/index.js +1 -3
- package/dist/cjs/vc/vc-observer-new/index.js +55 -67
- package/dist/cjs/vc/vc-observer-new/metric-calculator/fy26_04/index.js +2 -1
- package/dist/cjs/vc/vc-observer-new/metric-calculator/vc-next/index.js +42 -0
- package/dist/es2019/create-payload/index.js +2 -2
- package/dist/es2019/interaction-id-context/index.js +2 -2
- package/dist/es2019/typing-performance-tracing/index.js +27 -6
- package/dist/es2019/vc/index.js +1 -3
- package/dist/es2019/vc/vc-observer-new/index.js +59 -81
- package/dist/es2019/vc/vc-observer-new/metric-calculator/fy26_04/index.js +2 -2
- package/dist/es2019/vc/vc-observer-new/metric-calculator/vc-next/index.js +21 -0
- package/dist/esm/create-payload/index.js +2 -2
- package/dist/esm/interaction-id-context/index.js +2 -2
- package/dist/esm/typing-performance-tracing/index.js +29 -6
- package/dist/esm/vc/index.js +1 -3
- package/dist/esm/vc/vc-observer-new/index.js +53 -65
- package/dist/esm/vc/vc-observer-new/metric-calculator/fy26_04/index.js +2 -1
- package/dist/esm/vc/vc-observer-new/metric-calculator/vc-next/index.js +36 -0
- package/dist/types/interaction-id-context/index.d.ts +2 -2
- package/dist/types/vc/vc-observer-new/metric-calculator/fy26_04/index.d.ts +1 -1
- package/dist/types/vc/vc-observer-new/metric-calculator/vc-next/index.d.ts +6 -0
- package/dist/types-ts4.5/interaction-id-context/index.d.ts +2 -2
- package/dist/types-ts4.5/vc/vc-observer-new/metric-calculator/fy26_04/index.d.ts +1 -1
- package/dist/types-ts4.5/vc/vc-observer-new/metric-calculator/vc-next/index.d.ts +6 -0
- package/package.json +5 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { VCObserverEntry } from '../../types';
|
|
2
2
|
import VCCalculator_FY25_03 from '../fy25_03';
|
|
3
3
|
export default class VCCalculator_FY26_04 extends VCCalculator_FY25_03 {
|
|
4
|
-
constructor();
|
|
4
|
+
constructor(revisionNo?: string);
|
|
5
5
|
protected isEntryIncluded(entry: VCObserverEntry, include3p?: boolean, excludeSmartAnswersInSearch?: boolean): boolean;
|
|
6
6
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { VCObserverEntry } from "../../types";
|
|
2
|
+
import VCCalculator_FY26_04 from "../fy26_04";
|
|
3
|
+
export default class VCCalculator_Next extends VCCalculator_FY26_04 {
|
|
4
|
+
constructor();
|
|
5
|
+
protected isEntryIncluded(entry: VCObserverEntry, include3p?: boolean, excludeSmartAnswersInSearch?: boolean): boolean;
|
|
6
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/react-ufo",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Parts of React UFO that are publicly available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"platform_ufo_segment_critical_metrics": {
|
|
130
130
|
"type": "boolean"
|
|
131
131
|
},
|
|
132
|
-
"
|
|
132
|
+
"platform_ufo_vcnext_for_ttvc_v5": {
|
|
133
133
|
"type": "boolean"
|
|
134
134
|
},
|
|
135
135
|
"platform_ufo_v4_fix_nested_ssr_placeholder": {
|
|
@@ -192,9 +192,6 @@
|
|
|
192
192
|
"platform_ufo_enable_vc_raw_data": {
|
|
193
193
|
"type": "boolean"
|
|
194
194
|
},
|
|
195
|
-
"platform_ufo_enable_trimmed_payload": {
|
|
196
|
-
"type": "boolean"
|
|
197
|
-
},
|
|
198
195
|
"platform_mark_ufo_segment_first_load": {
|
|
199
196
|
"type": "boolean"
|
|
200
197
|
},
|
|
@@ -212,6 +209,9 @@
|
|
|
212
209
|
},
|
|
213
210
|
"rovo_search_page_ttvc_ignoring_smart_answers_fix": {
|
|
214
211
|
"type": "boolean"
|
|
212
|
+
},
|
|
213
|
+
"jfp-magma-ufo-event-listener-error": {
|
|
214
|
+
"type": "boolean"
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
}
|