@atlaskit/tmp-editor-statsig 35.2.0 → 35.3.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,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 35.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`83792cc1d590e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/83792cc1d590e) -
|
|
8
|
+
Abort UFO measurements when user interacts with the editor during VC90 load tracking, gated behind
|
|
9
|
+
platform_editor_abort_ufo_on_user_interaction experiment
|
|
10
|
+
|
|
3
11
|
## 35.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -897,6 +897,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
897
897
|
param: 'isEnabled',
|
|
898
898
|
defaultValue: false
|
|
899
899
|
}),
|
|
900
|
+
// Added 2026-03-05
|
|
901
|
+
platform_editor_abort_ufo_on_user_interaction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
902
|
+
productKeys: {
|
|
903
|
+
confluence: 'platform_editor_abort_ufo_on_user_interaction'
|
|
904
|
+
},
|
|
905
|
+
param: 'isEnabled',
|
|
906
|
+
defaultValue: false
|
|
907
|
+
}),
|
|
900
908
|
// Added 2025-09-11
|
|
901
909
|
platform_editor_add_aria_checked_to_inline_img_btn: (0, _experimentBuilders.createBooleanExperiment)({
|
|
902
910
|
productKeys: {
|
|
@@ -891,6 +891,14 @@ export const editorExperimentsConfig = {
|
|
|
891
891
|
param: 'isEnabled',
|
|
892
892
|
defaultValue: false
|
|
893
893
|
}),
|
|
894
|
+
// Added 2026-03-05
|
|
895
|
+
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
896
|
+
productKeys: {
|
|
897
|
+
confluence: 'platform_editor_abort_ufo_on_user_interaction'
|
|
898
|
+
},
|
|
899
|
+
param: 'isEnabled',
|
|
900
|
+
defaultValue: false
|
|
901
|
+
}),
|
|
894
902
|
// Added 2025-09-11
|
|
895
903
|
platform_editor_add_aria_checked_to_inline_img_btn: createBooleanExperiment({
|
|
896
904
|
productKeys: {
|
|
@@ -891,6 +891,14 @@ export var editorExperimentsConfig = {
|
|
|
891
891
|
param: 'isEnabled',
|
|
892
892
|
defaultValue: false
|
|
893
893
|
}),
|
|
894
|
+
// Added 2026-03-05
|
|
895
|
+
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
896
|
+
productKeys: {
|
|
897
|
+
confluence: 'platform_editor_abort_ufo_on_user_interaction'
|
|
898
|
+
},
|
|
899
|
+
param: 'isEnabled',
|
|
900
|
+
defaultValue: false
|
|
901
|
+
}),
|
|
894
902
|
// Added 2025-09-11
|
|
895
903
|
platform_editor_add_aria_checked_to_inline_img_btn: createBooleanExperiment({
|
|
896
904
|
productKeys: {
|
|
@@ -257,6 +257,12 @@ export declare const editorExperimentsConfig: {
|
|
|
257
257
|
productKeys?: ProductKeys;
|
|
258
258
|
typeGuard: IsBooleanType;
|
|
259
259
|
};
|
|
260
|
+
platform_editor_abort_ufo_on_user_interaction: {
|
|
261
|
+
defaultValue: boolean;
|
|
262
|
+
param: string;
|
|
263
|
+
productKeys?: ProductKeys;
|
|
264
|
+
typeGuard: IsBooleanType;
|
|
265
|
+
};
|
|
260
266
|
platform_editor_add_aria_checked_to_inline_img_btn: {
|
|
261
267
|
defaultValue: boolean;
|
|
262
268
|
param: string;
|
|
@@ -257,6 +257,12 @@ export declare const editorExperimentsConfig: {
|
|
|
257
257
|
productKeys?: ProductKeys;
|
|
258
258
|
typeGuard: IsBooleanType;
|
|
259
259
|
};
|
|
260
|
+
platform_editor_abort_ufo_on_user_interaction: {
|
|
261
|
+
defaultValue: boolean;
|
|
262
|
+
param: string;
|
|
263
|
+
productKeys?: ProductKeys;
|
|
264
|
+
typeGuard: IsBooleanType;
|
|
265
|
+
};
|
|
260
266
|
platform_editor_add_aria_checked_to_inline_img_btn: {
|
|
261
267
|
defaultValue: boolean;
|
|
262
268
|
param: string;
|
package/package.json
CHANGED