@atlaskit/tmp-editor-statsig 66.0.0 → 66.1.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
+ ## 66.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`019540f8c0a67`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/019540f8c0a67) -
8
+ Fix editor popup scroll parent detection for chromeless editor in modals.
9
+
10
+ When the `platform_editor_fix_scrolling_popup_position` experiment is enabled, the Popup component
11
+ now prefers an explicitly provided `scrollableElement` prop over the auto-detected DOM ancestor.
12
+ This fixes popup positioning (code block language selector, table options, selection toolbar) in
13
+ chromeless editors embedded within modals, where the scroll container uses `overflow: auto` and
14
+ cannot be found by the existing `findOverflowScrollParent` utility.
15
+
16
+ The pre-computed scroll parent is also threaded through to `calculateVerticalStickTop` and
17
+ `calculateVerticalStickBottom` to avoid redundant DOM traversal and ensure position calculations
18
+ use the same element as the scroll event listener.
19
+
3
20
  ## 66.0.0
4
21
 
5
22
  ### Major Changes
@@ -1221,6 +1221,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1221
1221
  param: 'isEnabled',
1222
1222
  defaultValue: false
1223
1223
  }),
1224
+ // Added 2026-04-23
1225
+ platform_editor_fix_scrolling_popup_position: (0, _experimentBuilders.createBooleanExperiment)({
1226
+ productKeys: {
1227
+ confluence: 'platform_editor_fix_scrolling_popup_position',
1228
+ jira: 'platform_editor_fix_scrolling_popup_position'
1229
+ },
1230
+ param: 'isEnabled',
1231
+ defaultValue: false
1232
+ }),
1224
1233
  // Added 2026-01-30
1225
1234
  platform_editor_fix_cross_origin_editor_focus: (0, _experimentBuilders.createBooleanExperiment)({
1226
1235
  productKeys: {
@@ -1215,6 +1215,15 @@ export const editorExperimentsConfig = {
1215
1215
  param: 'isEnabled',
1216
1216
  defaultValue: false
1217
1217
  }),
1218
+ // Added 2026-04-23
1219
+ platform_editor_fix_scrolling_popup_position: createBooleanExperiment({
1220
+ productKeys: {
1221
+ confluence: 'platform_editor_fix_scrolling_popup_position',
1222
+ jira: 'platform_editor_fix_scrolling_popup_position'
1223
+ },
1224
+ param: 'isEnabled',
1225
+ defaultValue: false
1226
+ }),
1218
1227
  // Added 2026-01-30
1219
1228
  platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
1220
1229
  productKeys: {
@@ -1215,6 +1215,15 @@ export var editorExperimentsConfig = {
1215
1215
  param: 'isEnabled',
1216
1216
  defaultValue: false
1217
1217
  }),
1218
+ // Added 2026-04-23
1219
+ platform_editor_fix_scrolling_popup_position: createBooleanExperiment({
1220
+ productKeys: {
1221
+ confluence: 'platform_editor_fix_scrolling_popup_position',
1222
+ jira: 'platform_editor_fix_scrolling_popup_position'
1223
+ },
1224
+ param: 'isEnabled',
1225
+ defaultValue: false
1226
+ }),
1218
1227
  // Added 2026-01-30
1219
1228
  platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
1220
1229
  productKeys: {
@@ -899,6 +899,12 @@ export declare const editorExperimentsConfig: {
899
899
  productKeys?: ProductKeys;
900
900
  typeGuard: IsBooleanType;
901
901
  };
902
+ platform_editor_fix_scrolling_popup_position: {
903
+ defaultValue: boolean;
904
+ param: string;
905
+ productKeys?: ProductKeys;
906
+ typeGuard: IsBooleanType;
907
+ };
902
908
  platform_editor_ai_fix_insert_after_selection: {
903
909
  defaultValue: boolean;
904
910
  param: string;
@@ -899,6 +899,12 @@ export declare const editorExperimentsConfig: {
899
899
  productKeys?: ProductKeys;
900
900
  typeGuard: IsBooleanType;
901
901
  };
902
+ platform_editor_fix_scrolling_popup_position: {
903
+ defaultValue: boolean;
904
+ param: string;
905
+ productKeys?: ProductKeys;
906
+ typeGuard: IsBooleanType;
907
+ };
902
908
  platform_editor_ai_fix_insert_after_selection: {
903
909
  defaultValue: boolean;
904
910
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "66.0.0",
3
+ "version": "66.1.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",