@atlaskit/tmp-editor-statsig 28.0.0 → 29.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 +23 -0
- package/dist/cjs/experiments-config.js +15 -8
- package/dist/es2019/experiments-config.js +15 -8
- package/dist/esm/experiments-config.js +15 -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,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 29.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`48b6616a3fefc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/48b6616a3fefc) -
|
|
8
|
+
Add new logic to detect scrollable containers when calculating position for selection toolbar.
|
|
9
|
+
This fixes issues when used inside modals and other surfaces.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 29.0.0
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- [`d3d133a22950e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3d133a22950e) -
|
|
20
|
+
[CLEANUP] Cleanup platform_editor_ai_exp_suggestion_date_comma_delim
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
3
26
|
## 28.0.0
|
|
4
27
|
|
|
5
28
|
### Major Changes
|
|
@@ -679,6 +679,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
679
679
|
param: 'isEnabled',
|
|
680
680
|
defaultValue: false
|
|
681
681
|
}),
|
|
682
|
+
platform_editor_sel_toolbar_scroll_pos_fix_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
683
|
+
productKeys: {
|
|
684
|
+
confluence: 'platform_editor_sel_toolbar_scroll_pos_fix_exp',
|
|
685
|
+
jira: 'platform_editor_sel_toolbar_scroll_pos_fix_exp'
|
|
686
|
+
},
|
|
687
|
+
param: 'isEnabled',
|
|
688
|
+
defaultValue: false
|
|
689
|
+
}),
|
|
682
690
|
// Added 2025-07-31
|
|
683
691
|
platform_editor_breakout_interaction_rerender: (0, _experimentBuilders.createBooleanExperiment)({
|
|
684
692
|
productKeys: {
|
|
@@ -957,6 +965,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
957
965
|
param: 'isEnabled',
|
|
958
966
|
defaultValue: false
|
|
959
967
|
}),
|
|
968
|
+
platform_editor_flex_based_centering: (0, _experimentBuilders.createBooleanExperiment)({
|
|
969
|
+
productKeys: {
|
|
970
|
+
confluence: 'platform_editor_flex_based_centering'
|
|
971
|
+
},
|
|
972
|
+
param: 'isEnabled',
|
|
973
|
+
defaultValue: false
|
|
974
|
+
}),
|
|
960
975
|
// Added 2025-12-18
|
|
961
976
|
platform_editor_blockquote_zero_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
962
977
|
productKeys: {
|
|
@@ -1041,14 +1056,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1041
1056
|
param: 'isEnabled',
|
|
1042
1057
|
defaultValue: false
|
|
1043
1058
|
}),
|
|
1044
|
-
// Added 2025-12-15
|
|
1045
|
-
platform_editor_ai_exp_suggestion_date_comma_delim: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1046
|
-
productKeys: {
|
|
1047
|
-
confluence: 'platform_editor_ai_exp_suggestion_date_comma_delim'
|
|
1048
|
-
},
|
|
1049
|
-
param: 'isEnabled',
|
|
1050
|
-
defaultValue: false
|
|
1051
|
-
}),
|
|
1052
1059
|
platform_editor_sel_toolbar_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1053
1060
|
productKeys: {
|
|
1054
1061
|
confluence: 'platform_editor_sel_toolbar_fix',
|
|
@@ -673,6 +673,14 @@ export const editorExperimentsConfig = {
|
|
|
673
673
|
param: 'isEnabled',
|
|
674
674
|
defaultValue: false
|
|
675
675
|
}),
|
|
676
|
+
platform_editor_sel_toolbar_scroll_pos_fix_exp: createBooleanExperiment({
|
|
677
|
+
productKeys: {
|
|
678
|
+
confluence: 'platform_editor_sel_toolbar_scroll_pos_fix_exp',
|
|
679
|
+
jira: 'platform_editor_sel_toolbar_scroll_pos_fix_exp'
|
|
680
|
+
},
|
|
681
|
+
param: 'isEnabled',
|
|
682
|
+
defaultValue: false
|
|
683
|
+
}),
|
|
676
684
|
// Added 2025-07-31
|
|
677
685
|
platform_editor_breakout_interaction_rerender: createBooleanExperiment({
|
|
678
686
|
productKeys: {
|
|
@@ -951,6 +959,13 @@ export const editorExperimentsConfig = {
|
|
|
951
959
|
param: 'isEnabled',
|
|
952
960
|
defaultValue: false
|
|
953
961
|
}),
|
|
962
|
+
platform_editor_flex_based_centering: createBooleanExperiment({
|
|
963
|
+
productKeys: {
|
|
964
|
+
confluence: 'platform_editor_flex_based_centering'
|
|
965
|
+
},
|
|
966
|
+
param: 'isEnabled',
|
|
967
|
+
defaultValue: false
|
|
968
|
+
}),
|
|
954
969
|
// Added 2025-12-18
|
|
955
970
|
platform_editor_blockquote_zero_padding: createBooleanExperiment({
|
|
956
971
|
productKeys: {
|
|
@@ -1035,14 +1050,6 @@ export const editorExperimentsConfig = {
|
|
|
1035
1050
|
param: 'isEnabled',
|
|
1036
1051
|
defaultValue: false
|
|
1037
1052
|
}),
|
|
1038
|
-
// Added 2025-12-15
|
|
1039
|
-
platform_editor_ai_exp_suggestion_date_comma_delim: createBooleanExperiment({
|
|
1040
|
-
productKeys: {
|
|
1041
|
-
confluence: 'platform_editor_ai_exp_suggestion_date_comma_delim'
|
|
1042
|
-
},
|
|
1043
|
-
param: 'isEnabled',
|
|
1044
|
-
defaultValue: false
|
|
1045
|
-
}),
|
|
1046
1053
|
platform_editor_sel_toolbar_fix: createBooleanExperiment({
|
|
1047
1054
|
productKeys: {
|
|
1048
1055
|
confluence: 'platform_editor_sel_toolbar_fix',
|
|
@@ -673,6 +673,14 @@ export var editorExperimentsConfig = {
|
|
|
673
673
|
param: 'isEnabled',
|
|
674
674
|
defaultValue: false
|
|
675
675
|
}),
|
|
676
|
+
platform_editor_sel_toolbar_scroll_pos_fix_exp: createBooleanExperiment({
|
|
677
|
+
productKeys: {
|
|
678
|
+
confluence: 'platform_editor_sel_toolbar_scroll_pos_fix_exp',
|
|
679
|
+
jira: 'platform_editor_sel_toolbar_scroll_pos_fix_exp'
|
|
680
|
+
},
|
|
681
|
+
param: 'isEnabled',
|
|
682
|
+
defaultValue: false
|
|
683
|
+
}),
|
|
676
684
|
// Added 2025-07-31
|
|
677
685
|
platform_editor_breakout_interaction_rerender: createBooleanExperiment({
|
|
678
686
|
productKeys: {
|
|
@@ -951,6 +959,13 @@ export var editorExperimentsConfig = {
|
|
|
951
959
|
param: 'isEnabled',
|
|
952
960
|
defaultValue: false
|
|
953
961
|
}),
|
|
962
|
+
platform_editor_flex_based_centering: createBooleanExperiment({
|
|
963
|
+
productKeys: {
|
|
964
|
+
confluence: 'platform_editor_flex_based_centering'
|
|
965
|
+
},
|
|
966
|
+
param: 'isEnabled',
|
|
967
|
+
defaultValue: false
|
|
968
|
+
}),
|
|
954
969
|
// Added 2025-12-18
|
|
955
970
|
platform_editor_blockquote_zero_padding: createBooleanExperiment({
|
|
956
971
|
productKeys: {
|
|
@@ -1035,14 +1050,6 @@ export var editorExperimentsConfig = {
|
|
|
1035
1050
|
param: 'isEnabled',
|
|
1036
1051
|
defaultValue: false
|
|
1037
1052
|
}),
|
|
1038
|
-
// Added 2025-12-15
|
|
1039
|
-
platform_editor_ai_exp_suggestion_date_comma_delim: createBooleanExperiment({
|
|
1040
|
-
productKeys: {
|
|
1041
|
-
confluence: 'platform_editor_ai_exp_suggestion_date_comma_delim'
|
|
1042
|
-
},
|
|
1043
|
-
param: 'isEnabled',
|
|
1044
|
-
defaultValue: false
|
|
1045
|
-
}),
|
|
1046
1053
|
platform_editor_sel_toolbar_fix: createBooleanExperiment({
|
|
1047
1054
|
productKeys: {
|
|
1048
1055
|
confluence: 'platform_editor_sel_toolbar_fix',
|
|
@@ -112,6 +112,12 @@ export declare const editorExperimentsConfig: {
|
|
|
112
112
|
productKeys?: ProductKeys;
|
|
113
113
|
typeGuard: IsBooleanType;
|
|
114
114
|
};
|
|
115
|
+
platform_editor_flex_based_centering: {
|
|
116
|
+
defaultValue: boolean;
|
|
117
|
+
param: string;
|
|
118
|
+
productKeys?: ProductKeys;
|
|
119
|
+
typeGuard: IsBooleanType;
|
|
120
|
+
};
|
|
115
121
|
platform_editor_render_bodied_extension_as_inline: {
|
|
116
122
|
defaultValue: boolean;
|
|
117
123
|
param: string;
|
|
@@ -142,6 +148,12 @@ export declare const editorExperimentsConfig: {
|
|
|
142
148
|
productKeys?: ProductKeys;
|
|
143
149
|
typeGuard: IsBooleanType;
|
|
144
150
|
};
|
|
151
|
+
'platform_editor_sel_toolbar_scroll_pos_fix_exp': {
|
|
152
|
+
defaultValue: boolean;
|
|
153
|
+
param: string;
|
|
154
|
+
productKeys?: ProductKeys;
|
|
155
|
+
typeGuard: IsBooleanType;
|
|
156
|
+
};
|
|
145
157
|
editor_enable_image_alignment_in_expand: {
|
|
146
158
|
defaultValue: boolean;
|
|
147
159
|
param: string;
|
|
@@ -779,12 +791,6 @@ export declare const editorExperimentsConfig: {
|
|
|
779
791
|
productKeys?: ProductKeys;
|
|
780
792
|
typeGuard: IsBooleanType;
|
|
781
793
|
};
|
|
782
|
-
platform_editor_ai_exp_suggestion_date_comma_delim: {
|
|
783
|
-
defaultValue: boolean;
|
|
784
|
-
param: string;
|
|
785
|
-
productKeys?: ProductKeys;
|
|
786
|
-
typeGuard: IsBooleanType;
|
|
787
|
-
};
|
|
788
794
|
platform_editor_sel_toolbar_fix: {
|
|
789
795
|
defaultValue: boolean;
|
|
790
796
|
param: string;
|
|
@@ -112,6 +112,12 @@ export declare const editorExperimentsConfig: {
|
|
|
112
112
|
productKeys?: ProductKeys;
|
|
113
113
|
typeGuard: IsBooleanType;
|
|
114
114
|
};
|
|
115
|
+
platform_editor_flex_based_centering: {
|
|
116
|
+
defaultValue: boolean;
|
|
117
|
+
param: string;
|
|
118
|
+
productKeys?: ProductKeys;
|
|
119
|
+
typeGuard: IsBooleanType;
|
|
120
|
+
};
|
|
115
121
|
platform_editor_render_bodied_extension_as_inline: {
|
|
116
122
|
defaultValue: boolean;
|
|
117
123
|
param: string;
|
|
@@ -142,6 +148,12 @@ export declare const editorExperimentsConfig: {
|
|
|
142
148
|
productKeys?: ProductKeys;
|
|
143
149
|
typeGuard: IsBooleanType;
|
|
144
150
|
};
|
|
151
|
+
'platform_editor_sel_toolbar_scroll_pos_fix_exp': {
|
|
152
|
+
defaultValue: boolean;
|
|
153
|
+
param: string;
|
|
154
|
+
productKeys?: ProductKeys;
|
|
155
|
+
typeGuard: IsBooleanType;
|
|
156
|
+
};
|
|
145
157
|
editor_enable_image_alignment_in_expand: {
|
|
146
158
|
defaultValue: boolean;
|
|
147
159
|
param: string;
|
|
@@ -779,12 +791,6 @@ export declare const editorExperimentsConfig: {
|
|
|
779
791
|
productKeys?: ProductKeys;
|
|
780
792
|
typeGuard: IsBooleanType;
|
|
781
793
|
};
|
|
782
|
-
platform_editor_ai_exp_suggestion_date_comma_delim: {
|
|
783
|
-
defaultValue: boolean;
|
|
784
|
-
param: string;
|
|
785
|
-
productKeys?: ProductKeys;
|
|
786
|
-
typeGuard: IsBooleanType;
|
|
787
|
-
};
|
|
788
794
|
platform_editor_sel_toolbar_fix: {
|
|
789
795
|
defaultValue: boolean;
|
|
790
796
|
param: string;
|
package/package.json
CHANGED