@atlaskit/tmp-editor-statsig 66.0.0 → 67.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 CHANGED
@@ -1,5 +1,36 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 67.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`e6835136c4227`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e6835136c4227) -
8
+ [FFCLEANUP-98435] remove stale experiment `platform_editor_a11y_typeahead_tab_keypress`
9
+ - [`f7d7098ecbcbf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f7d7098ecbcbf) -
10
+ Cleanup exp platform_editor_copy_paste_issue_fix
11
+
12
+ ### Minor Changes
13
+
14
+ - [`245a43ebad095`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/245a43ebad095) -
15
+ [EDITOR-4550] add new experiment to config
16
+
17
+ ## 66.1.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [`019540f8c0a67`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/019540f8c0a67) -
22
+ Fix editor popup scroll parent detection for chromeless editor in modals.
23
+
24
+ When the `platform_editor_fix_scrolling_popup_position` experiment is enabled, the Popup component
25
+ now prefers an explicitly provided `scrollableElement` prop over the auto-detected DOM ancestor.
26
+ This fixes popup positioning (code block language selector, table options, selection toolbar) in
27
+ chromeless editors embedded within modals, where the scroll container uses `overflow: auto` and
28
+ cannot be found by the existing `findOverflowScrollParent` utility.
29
+
30
+ The pre-computed scroll parent is also threaded through to `calculateVerticalStickTop` and
31
+ `calculateVerticalStickBottom` to avoid redundant DOM traversal and ensure position calculations
32
+ use the same element as the scroll event listener.
33
+
3
34
  ## 66.0.0
4
35
 
5
36
  ### Major Changes
@@ -1155,14 +1155,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1155
1155
  param: 'isEnabled',
1156
1156
  defaultValue: false
1157
1157
  }),
1158
- // Added 2026-01-19
1159
- platform_editor_copy_paste_issue_fix: (0, _experimentBuilders.createBooleanExperiment)({
1160
- productKeys: {
1161
- confluence: 'platform_editor_copy_paste_issue_fix'
1162
- },
1163
- param: 'isEnabled',
1164
- defaultValue: false
1165
- }),
1166
1158
  // Added 2026-01-27 - AI create-page expand collapse fix
1167
1159
  platform_editor_aifc_expand_collapses_oncreate_fix: (0, _experimentBuilders.createBooleanExperiment)({
1168
1160
  productKeys: {
@@ -1221,6 +1213,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1221
1213
  param: 'isEnabled',
1222
1214
  defaultValue: false
1223
1215
  }),
1216
+ // Added 2026-04-23
1217
+ platform_editor_fix_scrolling_popup_position: (0, _experimentBuilders.createBooleanExperiment)({
1218
+ productKeys: {
1219
+ confluence: 'platform_editor_fix_scrolling_popup_position',
1220
+ jira: 'platform_editor_fix_scrolling_popup_position'
1221
+ },
1222
+ param: 'isEnabled',
1223
+ defaultValue: false
1224
+ }),
1224
1225
  // Added 2026-01-30
1225
1226
  platform_editor_fix_cross_origin_editor_focus: (0, _experimentBuilders.createBooleanExperiment)({
1226
1227
  productKeys: {
@@ -1490,14 +1491,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1490
1491
  param: 'isEnabled',
1491
1492
  defaultValue: false
1492
1493
  }),
1493
- // Added 2026-02-25
1494
- platform_editor_a11y_typeahead_tab_keypress: (0, _experimentBuilders.createBooleanExperiment)({
1495
- productKeys: {
1496
- confluence: 'platform_editor_a11y_typeahead_tab_keypress'
1497
- },
1498
- param: 'isEnabled',
1499
- defaultValue: false
1500
- }),
1501
1494
  // Added 2026-02-27
1502
1495
  platform_editor_early_exit_return_draft: (0, _experimentBuilders.createBooleanExperiment)({
1503
1496
  productKeys: {
@@ -2027,5 +2020,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2027
2020
  },
2028
2021
  param: 'isEnabled',
2029
2022
  defaultValue: false
2023
+ }),
2024
+ // Added 2026-04-23
2025
+ platform_editor_emojis_in_renderer_smart_links: (0, _experimentBuilders.createBooleanExperiment)({
2026
+ productKeys: {
2027
+ confluence: 'platform_editor_emojis_in_renderer_smart_links'
2028
+ },
2029
+ param: 'isEnabled',
2030
+ defaultValue: false
2030
2031
  })
2031
2032
  };
@@ -1149,14 +1149,6 @@ export const editorExperimentsConfig = {
1149
1149
  param: 'isEnabled',
1150
1150
  defaultValue: false
1151
1151
  }),
1152
- // Added 2026-01-19
1153
- platform_editor_copy_paste_issue_fix: createBooleanExperiment({
1154
- productKeys: {
1155
- confluence: 'platform_editor_copy_paste_issue_fix'
1156
- },
1157
- param: 'isEnabled',
1158
- defaultValue: false
1159
- }),
1160
1152
  // Added 2026-01-27 - AI create-page expand collapse fix
1161
1153
  platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
1162
1154
  productKeys: {
@@ -1215,6 +1207,15 @@ export const editorExperimentsConfig = {
1215
1207
  param: 'isEnabled',
1216
1208
  defaultValue: false
1217
1209
  }),
1210
+ // Added 2026-04-23
1211
+ platform_editor_fix_scrolling_popup_position: createBooleanExperiment({
1212
+ productKeys: {
1213
+ confluence: 'platform_editor_fix_scrolling_popup_position',
1214
+ jira: 'platform_editor_fix_scrolling_popup_position'
1215
+ },
1216
+ param: 'isEnabled',
1217
+ defaultValue: false
1218
+ }),
1218
1219
  // Added 2026-01-30
1219
1220
  platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
1220
1221
  productKeys: {
@@ -1484,14 +1485,6 @@ export const editorExperimentsConfig = {
1484
1485
  param: 'isEnabled',
1485
1486
  defaultValue: false
1486
1487
  }),
1487
- // Added 2026-02-25
1488
- platform_editor_a11y_typeahead_tab_keypress: createBooleanExperiment({
1489
- productKeys: {
1490
- confluence: 'platform_editor_a11y_typeahead_tab_keypress'
1491
- },
1492
- param: 'isEnabled',
1493
- defaultValue: false
1494
- }),
1495
1488
  // Added 2026-02-27
1496
1489
  platform_editor_early_exit_return_draft: createBooleanExperiment({
1497
1490
  productKeys: {
@@ -2021,5 +2014,13 @@ export const editorExperimentsConfig = {
2021
2014
  },
2022
2015
  param: 'isEnabled',
2023
2016
  defaultValue: false
2017
+ }),
2018
+ // Added 2026-04-23
2019
+ platform_editor_emojis_in_renderer_smart_links: createBooleanExperiment({
2020
+ productKeys: {
2021
+ confluence: 'platform_editor_emojis_in_renderer_smart_links'
2022
+ },
2023
+ param: 'isEnabled',
2024
+ defaultValue: false
2024
2025
  })
2025
2026
  };
@@ -1149,14 +1149,6 @@ export var editorExperimentsConfig = {
1149
1149
  param: 'isEnabled',
1150
1150
  defaultValue: false
1151
1151
  }),
1152
- // Added 2026-01-19
1153
- platform_editor_copy_paste_issue_fix: createBooleanExperiment({
1154
- productKeys: {
1155
- confluence: 'platform_editor_copy_paste_issue_fix'
1156
- },
1157
- param: 'isEnabled',
1158
- defaultValue: false
1159
- }),
1160
1152
  // Added 2026-01-27 - AI create-page expand collapse fix
1161
1153
  platform_editor_aifc_expand_collapses_oncreate_fix: createBooleanExperiment({
1162
1154
  productKeys: {
@@ -1215,6 +1207,15 @@ export var editorExperimentsConfig = {
1215
1207
  param: 'isEnabled',
1216
1208
  defaultValue: false
1217
1209
  }),
1210
+ // Added 2026-04-23
1211
+ platform_editor_fix_scrolling_popup_position: createBooleanExperiment({
1212
+ productKeys: {
1213
+ confluence: 'platform_editor_fix_scrolling_popup_position',
1214
+ jira: 'platform_editor_fix_scrolling_popup_position'
1215
+ },
1216
+ param: 'isEnabled',
1217
+ defaultValue: false
1218
+ }),
1218
1219
  // Added 2026-01-30
1219
1220
  platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
1220
1221
  productKeys: {
@@ -1484,14 +1485,6 @@ export var editorExperimentsConfig = {
1484
1485
  param: 'isEnabled',
1485
1486
  defaultValue: false
1486
1487
  }),
1487
- // Added 2026-02-25
1488
- platform_editor_a11y_typeahead_tab_keypress: createBooleanExperiment({
1489
- productKeys: {
1490
- confluence: 'platform_editor_a11y_typeahead_tab_keypress'
1491
- },
1492
- param: 'isEnabled',
1493
- defaultValue: false
1494
- }),
1495
1488
  // Added 2026-02-27
1496
1489
  platform_editor_early_exit_return_draft: createBooleanExperiment({
1497
1490
  productKeys: {
@@ -2021,5 +2014,13 @@ export var editorExperimentsConfig = {
2021
2014
  },
2022
2015
  param: 'isEnabled',
2023
2016
  defaultValue: false
2017
+ }),
2018
+ // Added 2026-04-23
2019
+ platform_editor_emojis_in_renderer_smart_links: createBooleanExperiment({
2020
+ productKeys: {
2021
+ confluence: 'platform_editor_emojis_in_renderer_smart_links'
2022
+ },
2023
+ param: 'isEnabled',
2024
+ defaultValue: false
2024
2025
  })
2025
2026
  };
@@ -845,12 +845,6 @@ export declare const editorExperimentsConfig: {
845
845
  productKeys?: ProductKeys;
846
846
  typeGuard: IsBooleanType;
847
847
  };
848
- platform_editor_copy_paste_issue_fix: {
849
- defaultValue: boolean;
850
- param: string;
851
- productKeys?: ProductKeys;
852
- typeGuard: IsBooleanType;
853
- };
854
848
  platform_editor_aifc_expand_collapses_oncreate_fix: {
855
849
  defaultValue: boolean;
856
850
  param: string;
@@ -899,6 +893,12 @@ export declare const editorExperimentsConfig: {
899
893
  productKeys?: ProductKeys;
900
894
  typeGuard: IsBooleanType;
901
895
  };
896
+ platform_editor_fix_scrolling_popup_position: {
897
+ defaultValue: boolean;
898
+ param: string;
899
+ productKeys?: ProductKeys;
900
+ typeGuard: IsBooleanType;
901
+ };
902
902
  platform_editor_ai_fix_insert_after_selection: {
903
903
  defaultValue: boolean;
904
904
  param: string;
@@ -1118,12 +1118,6 @@ export declare const editorExperimentsConfig: {
1118
1118
  productKeys?: ProductKeys;
1119
1119
  typeGuard: IsBooleanType;
1120
1120
  };
1121
- platform_editor_a11y_typeahead_tab_keypress: {
1122
- defaultValue: boolean;
1123
- param: string;
1124
- productKeys?: ProductKeys;
1125
- typeGuard: IsBooleanType;
1126
- };
1127
1121
  platform_editor_early_exit_return_draft: {
1128
1122
  defaultValue: boolean;
1129
1123
  param: string;
@@ -1490,5 +1484,11 @@ export declare const editorExperimentsConfig: {
1490
1484
  productKeys?: ProductKeys;
1491
1485
  typeGuard: IsBooleanType;
1492
1486
  };
1487
+ platform_editor_emojis_in_renderer_smart_links: {
1488
+ defaultValue: boolean;
1489
+ param: string;
1490
+ productKeys?: ProductKeys;
1491
+ typeGuard: IsBooleanType;
1492
+ };
1493
1493
  };
1494
1494
  export {};
@@ -845,12 +845,6 @@ export declare const editorExperimentsConfig: {
845
845
  productKeys?: ProductKeys;
846
846
  typeGuard: IsBooleanType;
847
847
  };
848
- platform_editor_copy_paste_issue_fix: {
849
- defaultValue: boolean;
850
- param: string;
851
- productKeys?: ProductKeys;
852
- typeGuard: IsBooleanType;
853
- };
854
848
  platform_editor_aifc_expand_collapses_oncreate_fix: {
855
849
  defaultValue: boolean;
856
850
  param: string;
@@ -899,6 +893,12 @@ export declare const editorExperimentsConfig: {
899
893
  productKeys?: ProductKeys;
900
894
  typeGuard: IsBooleanType;
901
895
  };
896
+ platform_editor_fix_scrolling_popup_position: {
897
+ defaultValue: boolean;
898
+ param: string;
899
+ productKeys?: ProductKeys;
900
+ typeGuard: IsBooleanType;
901
+ };
902
902
  platform_editor_ai_fix_insert_after_selection: {
903
903
  defaultValue: boolean;
904
904
  param: string;
@@ -1118,12 +1118,6 @@ export declare const editorExperimentsConfig: {
1118
1118
  productKeys?: ProductKeys;
1119
1119
  typeGuard: IsBooleanType;
1120
1120
  };
1121
- platform_editor_a11y_typeahead_tab_keypress: {
1122
- defaultValue: boolean;
1123
- param: string;
1124
- productKeys?: ProductKeys;
1125
- typeGuard: IsBooleanType;
1126
- };
1127
1121
  platform_editor_early_exit_return_draft: {
1128
1122
  defaultValue: boolean;
1129
1123
  param: string;
@@ -1490,5 +1484,11 @@ export declare const editorExperimentsConfig: {
1490
1484
  productKeys?: ProductKeys;
1491
1485
  typeGuard: IsBooleanType;
1492
1486
  };
1487
+ platform_editor_emojis_in_renderer_smart_links: {
1488
+ defaultValue: boolean;
1489
+ param: string;
1490
+ productKeys?: ProductKeys;
1491
+ typeGuard: IsBooleanType;
1492
+ };
1493
1493
  };
1494
1494
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "66.0.0",
3
+ "version": "67.0.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",