@atlaskit/tmp-editor-statsig 35.1.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,22 @@
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
+
11
+ ## 35.2.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`9e9a406ad71a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9e9a406ad71a9) -
16
+ [EDITOR-1682] add new experiment `platform_editor_analyse_table_with_merged_cells` to config file
17
+ - [`5d27d5dc155ff`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d27d5dc155ff) -
18
+ Editor-5020: Fix the column drop hint not visible inside sync block
19
+
3
20
  ## 35.1.0
4
21
 
5
22
  ### 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: {
@@ -1639,5 +1647,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1639
1647
  },
1640
1648
  param: 'isEnabled',
1641
1649
  defaultValue: false
1650
+ }),
1651
+ // Added 2026-03-10
1652
+ platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
1653
+ productKeys: {
1654
+ confluence: 'platform_editor_analyse_table_with_merged_cells'
1655
+ },
1656
+ param: 'isEnabled',
1657
+ defaultValue: false
1642
1658
  })
1643
1659
  };
@@ -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: {
@@ -1633,5 +1641,13 @@ export const editorExperimentsConfig = {
1633
1641
  },
1634
1642
  param: 'isEnabled',
1635
1643
  defaultValue: false
1644
+ }),
1645
+ // Added 2026-03-10
1646
+ platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
1647
+ productKeys: {
1648
+ confluence: 'platform_editor_analyse_table_with_merged_cells'
1649
+ },
1650
+ param: 'isEnabled',
1651
+ defaultValue: false
1636
1652
  })
1637
1653
  };
@@ -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: {
@@ -1633,5 +1641,13 @@ export var editorExperimentsConfig = {
1633
1641
  },
1634
1642
  param: 'isEnabled',
1635
1643
  defaultValue: false
1644
+ }),
1645
+ // Added 2026-03-10
1646
+ platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
1647
+ productKeys: {
1648
+ confluence: 'platform_editor_analyse_table_with_merged_cells'
1649
+ },
1650
+ param: 'isEnabled',
1651
+ defaultValue: false
1636
1652
  })
1637
1653
  };
@@ -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;
@@ -1206,5 +1212,11 @@ export declare const editorExperimentsConfig: {
1206
1212
  productKeys?: ProductKeys;
1207
1213
  typeGuard: IsBooleanType;
1208
1214
  };
1215
+ platform_editor_analyse_table_with_merged_cells: {
1216
+ defaultValue: boolean;
1217
+ param: string;
1218
+ productKeys?: ProductKeys;
1219
+ typeGuard: IsBooleanType;
1220
+ };
1209
1221
  };
1210
1222
  export {};
@@ -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;
@@ -1206,5 +1212,11 @@ export declare const editorExperimentsConfig: {
1206
1212
  productKeys?: ProductKeys;
1207
1213
  typeGuard: IsBooleanType;
1208
1214
  };
1215
+ platform_editor_analyse_table_with_merged_cells: {
1216
+ defaultValue: boolean;
1217
+ param: string;
1218
+ productKeys?: ProductKeys;
1219
+ typeGuard: IsBooleanType;
1220
+ };
1209
1221
  };
1210
1222
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "35.1.0",
3
+ "version": "35.3.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",