@atlaskit/tmp-editor-statsig 65.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 +30 -0
- package/dist/cjs/experiments-config.js +18 -8
- package/dist/es2019/experiments-config.js +18 -8
- package/dist/esm/experiments-config.js +18 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
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
|
+
|
|
20
|
+
## 66.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes
|
|
23
|
+
|
|
24
|
+
- [`f25ff7f70d948`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f25ff7f70d948) -
|
|
25
|
+
FFCLEANUP-91667 Remove shipped limited-mode experiment from Statsig config; use fixed document
|
|
26
|
+
thresholds in editor-common for limited-mode detection.
|
|
27
|
+
|
|
28
|
+
### Minor Changes
|
|
29
|
+
|
|
30
|
+
- [`344eb4664c404`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/344eb4664c404) -
|
|
31
|
+
Add platform_editor_ai_chromeless_akEditor_class experiment config
|
|
32
|
+
|
|
3
33
|
## 65.0.0
|
|
4
34
|
|
|
5
35
|
### Major Changes
|
|
@@ -736,14 +736,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
736
736
|
param: 'isEnabled',
|
|
737
737
|
defaultValue: false
|
|
738
738
|
}),
|
|
739
|
-
// Added 2026-01-19
|
|
740
|
-
cc_editor_limited_mode_expanded: (0, _experimentBuilders.createBooleanExperiment)({
|
|
741
|
-
productKeys: {
|
|
742
|
-
confluence: 'cc_editor_limited_mode_expanded'
|
|
743
|
-
},
|
|
744
|
-
param: 'isEnabled',
|
|
745
|
-
defaultValue: false
|
|
746
|
-
}),
|
|
747
739
|
// Added 2026-03-11
|
|
748
740
|
platform_editor_native_embeds: (0, _experimentBuilders.createBooleanExperiment)({
|
|
749
741
|
productKeys: {
|
|
@@ -1229,6 +1221,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1229
1221
|
param: 'isEnabled',
|
|
1230
1222
|
defaultValue: false
|
|
1231
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
|
+
}),
|
|
1232
1233
|
// Added 2026-01-30
|
|
1233
1234
|
platform_editor_fix_cross_origin_editor_focus: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1234
1235
|
productKeys: {
|
|
@@ -2026,5 +2027,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2026
2027
|
},
|
|
2027
2028
|
param: 'isEnabled',
|
|
2028
2029
|
defaultValue: false
|
|
2030
|
+
}),
|
|
2031
|
+
// Added 2026-04-23
|
|
2032
|
+
platform_editor_ai_chromeless_akEditor_class: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2033
|
+
productKeys: {
|
|
2034
|
+
confluence: 'platform_editor_ai_chromeless_akEditor_class',
|
|
2035
|
+
jira: 'platform_editor_ai_chromeless_akEditor_class'
|
|
2036
|
+
},
|
|
2037
|
+
param: 'isEnabled',
|
|
2038
|
+
defaultValue: false
|
|
2029
2039
|
})
|
|
2030
2040
|
};
|
|
@@ -730,14 +730,6 @@ export const editorExperimentsConfig = {
|
|
|
730
730
|
param: 'isEnabled',
|
|
731
731
|
defaultValue: false
|
|
732
732
|
}),
|
|
733
|
-
// Added 2026-01-19
|
|
734
|
-
cc_editor_limited_mode_expanded: createBooleanExperiment({
|
|
735
|
-
productKeys: {
|
|
736
|
-
confluence: 'cc_editor_limited_mode_expanded'
|
|
737
|
-
},
|
|
738
|
-
param: 'isEnabled',
|
|
739
|
-
defaultValue: false
|
|
740
|
-
}),
|
|
741
733
|
// Added 2026-03-11
|
|
742
734
|
platform_editor_native_embeds: createBooleanExperiment({
|
|
743
735
|
productKeys: {
|
|
@@ -1223,6 +1215,15 @@ export const editorExperimentsConfig = {
|
|
|
1223
1215
|
param: 'isEnabled',
|
|
1224
1216
|
defaultValue: false
|
|
1225
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
|
+
}),
|
|
1226
1227
|
// Added 2026-01-30
|
|
1227
1228
|
platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
|
|
1228
1229
|
productKeys: {
|
|
@@ -2020,5 +2021,14 @@ export const editorExperimentsConfig = {
|
|
|
2020
2021
|
},
|
|
2021
2022
|
param: 'isEnabled',
|
|
2022
2023
|
defaultValue: false
|
|
2024
|
+
}),
|
|
2025
|
+
// Added 2026-04-23
|
|
2026
|
+
platform_editor_ai_chromeless_akEditor_class: createBooleanExperiment({
|
|
2027
|
+
productKeys: {
|
|
2028
|
+
confluence: 'platform_editor_ai_chromeless_akEditor_class',
|
|
2029
|
+
jira: 'platform_editor_ai_chromeless_akEditor_class'
|
|
2030
|
+
},
|
|
2031
|
+
param: 'isEnabled',
|
|
2032
|
+
defaultValue: false
|
|
2023
2033
|
})
|
|
2024
2034
|
};
|
|
@@ -730,14 +730,6 @@ export var editorExperimentsConfig = {
|
|
|
730
730
|
param: 'isEnabled',
|
|
731
731
|
defaultValue: false
|
|
732
732
|
}),
|
|
733
|
-
// Added 2026-01-19
|
|
734
|
-
cc_editor_limited_mode_expanded: createBooleanExperiment({
|
|
735
|
-
productKeys: {
|
|
736
|
-
confluence: 'cc_editor_limited_mode_expanded'
|
|
737
|
-
},
|
|
738
|
-
param: 'isEnabled',
|
|
739
|
-
defaultValue: false
|
|
740
|
-
}),
|
|
741
733
|
// Added 2026-03-11
|
|
742
734
|
platform_editor_native_embeds: createBooleanExperiment({
|
|
743
735
|
productKeys: {
|
|
@@ -1223,6 +1215,15 @@ export var editorExperimentsConfig = {
|
|
|
1223
1215
|
param: 'isEnabled',
|
|
1224
1216
|
defaultValue: false
|
|
1225
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
|
+
}),
|
|
1226
1227
|
// Added 2026-01-30
|
|
1227
1228
|
platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
|
|
1228
1229
|
productKeys: {
|
|
@@ -2020,5 +2021,14 @@ export var editorExperimentsConfig = {
|
|
|
2020
2021
|
},
|
|
2021
2022
|
param: 'isEnabled',
|
|
2022
2023
|
defaultValue: false
|
|
2024
|
+
}),
|
|
2025
|
+
// Added 2026-04-23
|
|
2026
|
+
platform_editor_ai_chromeless_akEditor_class: createBooleanExperiment({
|
|
2027
|
+
productKeys: {
|
|
2028
|
+
confluence: 'platform_editor_ai_chromeless_akEditor_class',
|
|
2029
|
+
jira: 'platform_editor_ai_chromeless_akEditor_class'
|
|
2030
|
+
},
|
|
2031
|
+
param: 'isEnabled',
|
|
2032
|
+
defaultValue: false
|
|
2023
2033
|
})
|
|
2024
2034
|
};
|
|
@@ -100,12 +100,6 @@ export declare const editorExperimentsConfig: {
|
|
|
100
100
|
productKeys?: ProductKeys;
|
|
101
101
|
typeGuard: IsBooleanType;
|
|
102
102
|
};
|
|
103
|
-
cc_editor_limited_mode_expanded: {
|
|
104
|
-
defaultValue: boolean;
|
|
105
|
-
param: string;
|
|
106
|
-
productKeys?: ProductKeys;
|
|
107
|
-
typeGuard: IsBooleanType;
|
|
108
|
-
};
|
|
109
103
|
confluence_load_editor_title_on_transition: {
|
|
110
104
|
defaultValue: boolean;
|
|
111
105
|
param: string;
|
|
@@ -905,6 +899,12 @@ export declare const editorExperimentsConfig: {
|
|
|
905
899
|
productKeys?: ProductKeys;
|
|
906
900
|
typeGuard: IsBooleanType;
|
|
907
901
|
};
|
|
902
|
+
platform_editor_fix_scrolling_popup_position: {
|
|
903
|
+
defaultValue: boolean;
|
|
904
|
+
param: string;
|
|
905
|
+
productKeys?: ProductKeys;
|
|
906
|
+
typeGuard: IsBooleanType;
|
|
907
|
+
};
|
|
908
908
|
platform_editor_ai_fix_insert_after_selection: {
|
|
909
909
|
defaultValue: boolean;
|
|
910
910
|
param: string;
|
|
@@ -1490,5 +1490,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1490
1490
|
productKeys?: ProductKeys;
|
|
1491
1491
|
typeGuard: IsBooleanType;
|
|
1492
1492
|
};
|
|
1493
|
+
platform_editor_ai_chromeless_akEditor_class: {
|
|
1494
|
+
defaultValue: boolean;
|
|
1495
|
+
param: string;
|
|
1496
|
+
productKeys?: ProductKeys;
|
|
1497
|
+
typeGuard: IsBooleanType;
|
|
1498
|
+
};
|
|
1493
1499
|
};
|
|
1494
1500
|
export {};
|
|
@@ -100,12 +100,6 @@ export declare const editorExperimentsConfig: {
|
|
|
100
100
|
productKeys?: ProductKeys;
|
|
101
101
|
typeGuard: IsBooleanType;
|
|
102
102
|
};
|
|
103
|
-
cc_editor_limited_mode_expanded: {
|
|
104
|
-
defaultValue: boolean;
|
|
105
|
-
param: string;
|
|
106
|
-
productKeys?: ProductKeys;
|
|
107
|
-
typeGuard: IsBooleanType;
|
|
108
|
-
};
|
|
109
103
|
confluence_load_editor_title_on_transition: {
|
|
110
104
|
defaultValue: boolean;
|
|
111
105
|
param: string;
|
|
@@ -905,6 +899,12 @@ export declare const editorExperimentsConfig: {
|
|
|
905
899
|
productKeys?: ProductKeys;
|
|
906
900
|
typeGuard: IsBooleanType;
|
|
907
901
|
};
|
|
902
|
+
platform_editor_fix_scrolling_popup_position: {
|
|
903
|
+
defaultValue: boolean;
|
|
904
|
+
param: string;
|
|
905
|
+
productKeys?: ProductKeys;
|
|
906
|
+
typeGuard: IsBooleanType;
|
|
907
|
+
};
|
|
908
908
|
platform_editor_ai_fix_insert_after_selection: {
|
|
909
909
|
defaultValue: boolean;
|
|
910
910
|
param: string;
|
|
@@ -1490,5 +1490,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1490
1490
|
productKeys?: ProductKeys;
|
|
1491
1491
|
typeGuard: IsBooleanType;
|
|
1492
1492
|
};
|
|
1493
|
+
platform_editor_ai_chromeless_akEditor_class: {
|
|
1494
|
+
defaultValue: boolean;
|
|
1495
|
+
param: string;
|
|
1496
|
+
productKeys?: ProductKeys;
|
|
1497
|
+
typeGuard: IsBooleanType;
|
|
1498
|
+
};
|
|
1493
1499
|
};
|
|
1494
1500
|
export {};
|
package/package.json
CHANGED