@atlaskit/tmp-editor-statsig 16.25.0 → 16.26.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 +16 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/experiments-config.js +8 -16
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/experiments-config.js +8 -16
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/experiments-config.js +8 -16
- package/dist/types/experiments-config.d.ts +6 -12
- package/dist/types-ts4.5/experiments-config.d.ts +6 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.26.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b1b42a9017633`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b1b42a9017633) -
|
|
8
|
+
[EDITOR-4562] Set up experiment edit modal for unsupported content
|
|
9
|
+
|
|
10
|
+
## 16.25.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`a5727f82cae80`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a5727f82cae80) -
|
|
15
|
+
[NO-ISSUE] Cleans up experiment platform_editor_scroll_gutter_fix
|
|
16
|
+
- [`d29ff5aa0dcec`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d29ff5aa0dcec) -
|
|
17
|
+
[NO-ISSUE] cleans up experiment platform_editor_reduce_toolbar_vc_impact
|
|
18
|
+
|
|
3
19
|
## 16.25.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -25,7 +25,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
25
25
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
26
26
|
};
|
|
27
27
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
28
|
-
confluence_load_editor_title_on_transition: false,
|
|
29
28
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
30
29
|
platform_editor_feedback_mandatory_rating: false,
|
|
31
30
|
platform_editor_preview_panel_responsiveness: false,
|
|
@@ -1126,14 +1126,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1126
1126
|
param: 'isEnabled',
|
|
1127
1127
|
defaultValue: false
|
|
1128
1128
|
}),
|
|
1129
|
-
// Added 2025-12-04
|
|
1130
|
-
platform_editor_scroll_gutter_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1131
|
-
productKeys: {
|
|
1132
|
-
confluence: 'platform_editor_scroll_gutter_fix'
|
|
1133
|
-
},
|
|
1134
|
-
param: 'isEnabled',
|
|
1135
|
-
defaultValue: false
|
|
1136
|
-
}),
|
|
1137
1129
|
// Added 2025-12-08
|
|
1138
1130
|
platform_editor_add_image_editing: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1139
1131
|
productKeys: {
|
|
@@ -1142,14 +1134,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1142
1134
|
param: 'isEnabled',
|
|
1143
1135
|
defaultValue: false
|
|
1144
1136
|
}),
|
|
1145
|
-
// Added 2025-12-08
|
|
1146
|
-
platform_editor_reduce_toolbar_vc_impact: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1147
|
-
productKeys: {
|
|
1148
|
-
confluence: 'platform_editor_reduce_toolbar_vc_impact'
|
|
1149
|
-
},
|
|
1150
|
-
param: 'isEnabled',
|
|
1151
|
-
defaultValue: false
|
|
1152
|
-
}),
|
|
1153
1137
|
// Added 2025-12-15
|
|
1154
1138
|
platform_editor_ai_exp_inline_date_year_refresh: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1155
1139
|
productKeys: {
|
|
@@ -1247,5 +1231,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1247
1231
|
},
|
|
1248
1232
|
param: 'isEnabled',
|
|
1249
1233
|
defaultValue: false
|
|
1234
|
+
}),
|
|
1235
|
+
// Added 2026-01-16
|
|
1236
|
+
platform_editor_ai_edit_unsupported_content: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1237
|
+
productKeys: {
|
|
1238
|
+
confluence: 'platform_editor_ai_edit_unsupported_content'
|
|
1239
|
+
},
|
|
1240
|
+
param: 'isEnabled',
|
|
1241
|
+
defaultValue: false
|
|
1250
1242
|
})
|
|
1251
1243
|
};
|
|
@@ -19,7 +19,6 @@ export const testMultivariateOverrides = {
|
|
|
19
19
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
20
20
|
};
|
|
21
21
|
export const testBooleanOverrides = {
|
|
22
|
-
confluence_load_editor_title_on_transition: false,
|
|
23
22
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
24
23
|
platform_editor_feedback_mandatory_rating: false,
|
|
25
24
|
platform_editor_preview_panel_responsiveness: false,
|
|
@@ -1120,14 +1120,6 @@ export const editorExperimentsConfig = {
|
|
|
1120
1120
|
param: 'isEnabled',
|
|
1121
1121
|
defaultValue: false
|
|
1122
1122
|
}),
|
|
1123
|
-
// Added 2025-12-04
|
|
1124
|
-
platform_editor_scroll_gutter_fix: createBooleanExperiment({
|
|
1125
|
-
productKeys: {
|
|
1126
|
-
confluence: 'platform_editor_scroll_gutter_fix'
|
|
1127
|
-
},
|
|
1128
|
-
param: 'isEnabled',
|
|
1129
|
-
defaultValue: false
|
|
1130
|
-
}),
|
|
1131
1123
|
// Added 2025-12-08
|
|
1132
1124
|
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1133
1125
|
productKeys: {
|
|
@@ -1136,14 +1128,6 @@ export const editorExperimentsConfig = {
|
|
|
1136
1128
|
param: 'isEnabled',
|
|
1137
1129
|
defaultValue: false
|
|
1138
1130
|
}),
|
|
1139
|
-
// Added 2025-12-08
|
|
1140
|
-
platform_editor_reduce_toolbar_vc_impact: createBooleanExperiment({
|
|
1141
|
-
productKeys: {
|
|
1142
|
-
confluence: 'platform_editor_reduce_toolbar_vc_impact'
|
|
1143
|
-
},
|
|
1144
|
-
param: 'isEnabled',
|
|
1145
|
-
defaultValue: false
|
|
1146
|
-
}),
|
|
1147
1131
|
// Added 2025-12-15
|
|
1148
1132
|
platform_editor_ai_exp_inline_date_year_refresh: createBooleanExperiment({
|
|
1149
1133
|
productKeys: {
|
|
@@ -1241,5 +1225,13 @@ export const editorExperimentsConfig = {
|
|
|
1241
1225
|
},
|
|
1242
1226
|
param: 'isEnabled',
|
|
1243
1227
|
defaultValue: false
|
|
1228
|
+
}),
|
|
1229
|
+
// Added 2026-01-16
|
|
1230
|
+
platform_editor_ai_edit_unsupported_content: createBooleanExperiment({
|
|
1231
|
+
productKeys: {
|
|
1232
|
+
confluence: 'platform_editor_ai_edit_unsupported_content'
|
|
1233
|
+
},
|
|
1234
|
+
param: 'isEnabled',
|
|
1235
|
+
defaultValue: false
|
|
1244
1236
|
})
|
|
1245
1237
|
};
|
|
@@ -19,7 +19,6 @@ export var testMultivariateOverrides = {
|
|
|
19
19
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
20
20
|
};
|
|
21
21
|
export var testBooleanOverrides = {
|
|
22
|
-
confluence_load_editor_title_on_transition: false,
|
|
23
22
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
24
23
|
platform_editor_feedback_mandatory_rating: false,
|
|
25
24
|
platform_editor_preview_panel_responsiveness: false,
|
|
@@ -1120,14 +1120,6 @@ export var editorExperimentsConfig = {
|
|
|
1120
1120
|
param: 'isEnabled',
|
|
1121
1121
|
defaultValue: false
|
|
1122
1122
|
}),
|
|
1123
|
-
// Added 2025-12-04
|
|
1124
|
-
platform_editor_scroll_gutter_fix: createBooleanExperiment({
|
|
1125
|
-
productKeys: {
|
|
1126
|
-
confluence: 'platform_editor_scroll_gutter_fix'
|
|
1127
|
-
},
|
|
1128
|
-
param: 'isEnabled',
|
|
1129
|
-
defaultValue: false
|
|
1130
|
-
}),
|
|
1131
1123
|
// Added 2025-12-08
|
|
1132
1124
|
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1133
1125
|
productKeys: {
|
|
@@ -1136,14 +1128,6 @@ export var editorExperimentsConfig = {
|
|
|
1136
1128
|
param: 'isEnabled',
|
|
1137
1129
|
defaultValue: false
|
|
1138
1130
|
}),
|
|
1139
|
-
// Added 2025-12-08
|
|
1140
|
-
platform_editor_reduce_toolbar_vc_impact: createBooleanExperiment({
|
|
1141
|
-
productKeys: {
|
|
1142
|
-
confluence: 'platform_editor_reduce_toolbar_vc_impact'
|
|
1143
|
-
},
|
|
1144
|
-
param: 'isEnabled',
|
|
1145
|
-
defaultValue: false
|
|
1146
|
-
}),
|
|
1147
1131
|
// Added 2025-12-15
|
|
1148
1132
|
platform_editor_ai_exp_inline_date_year_refresh: createBooleanExperiment({
|
|
1149
1133
|
productKeys: {
|
|
@@ -1241,5 +1225,13 @@ export var editorExperimentsConfig = {
|
|
|
1241
1225
|
},
|
|
1242
1226
|
param: 'isEnabled',
|
|
1243
1227
|
defaultValue: false
|
|
1228
|
+
}),
|
|
1229
|
+
// Added 2026-01-16
|
|
1230
|
+
platform_editor_ai_edit_unsupported_content: createBooleanExperiment({
|
|
1231
|
+
productKeys: {
|
|
1232
|
+
confluence: 'platform_editor_ai_edit_unsupported_content'
|
|
1233
|
+
},
|
|
1234
|
+
param: 'isEnabled',
|
|
1235
|
+
defaultValue: false
|
|
1244
1236
|
})
|
|
1245
1237
|
};
|
|
@@ -830,12 +830,6 @@ export declare const editorExperimentsConfig: {
|
|
|
830
830
|
productKeys?: ProductKeys;
|
|
831
831
|
typeGuard: IsBooleanType;
|
|
832
832
|
};
|
|
833
|
-
platform_editor_reduce_toolbar_vc_impact: {
|
|
834
|
-
defaultValue: boolean;
|
|
835
|
-
param: string;
|
|
836
|
-
productKeys?: ProductKeys;
|
|
837
|
-
typeGuard: IsBooleanType;
|
|
838
|
-
};
|
|
839
833
|
platform_editor_toolbar_delay_render_fix: {
|
|
840
834
|
defaultValue: boolean;
|
|
841
835
|
param: string;
|
|
@@ -848,12 +842,6 @@ export declare const editorExperimentsConfig: {
|
|
|
848
842
|
productKeys?: ProductKeys;
|
|
849
843
|
typeGuard: IsBooleanType;
|
|
850
844
|
};
|
|
851
|
-
platform_editor_scroll_gutter_fix: {
|
|
852
|
-
defaultValue: boolean;
|
|
853
|
-
param: string;
|
|
854
|
-
productKeys?: ProductKeys;
|
|
855
|
-
typeGuard: IsBooleanType;
|
|
856
|
-
};
|
|
857
845
|
platform_editor_ai_exp_inline_date_year_refresh: {
|
|
858
846
|
defaultValue: boolean;
|
|
859
847
|
param: string;
|
|
@@ -920,5 +908,11 @@ export declare const editorExperimentsConfig: {
|
|
|
920
908
|
productKeys?: ProductKeys;
|
|
921
909
|
typeGuard: IsBooleanType;
|
|
922
910
|
};
|
|
911
|
+
platform_editor_ai_edit_unsupported_content: {
|
|
912
|
+
defaultValue: boolean;
|
|
913
|
+
param: string;
|
|
914
|
+
productKeys?: ProductKeys;
|
|
915
|
+
typeGuard: IsBooleanType;
|
|
916
|
+
};
|
|
923
917
|
};
|
|
924
918
|
export {};
|
|
@@ -830,12 +830,6 @@ export declare const editorExperimentsConfig: {
|
|
|
830
830
|
productKeys?: ProductKeys;
|
|
831
831
|
typeGuard: IsBooleanType;
|
|
832
832
|
};
|
|
833
|
-
platform_editor_reduce_toolbar_vc_impact: {
|
|
834
|
-
defaultValue: boolean;
|
|
835
|
-
param: string;
|
|
836
|
-
productKeys?: ProductKeys;
|
|
837
|
-
typeGuard: IsBooleanType;
|
|
838
|
-
};
|
|
839
833
|
platform_editor_toolbar_delay_render_fix: {
|
|
840
834
|
defaultValue: boolean;
|
|
841
835
|
param: string;
|
|
@@ -848,12 +842,6 @@ export declare const editorExperimentsConfig: {
|
|
|
848
842
|
productKeys?: ProductKeys;
|
|
849
843
|
typeGuard: IsBooleanType;
|
|
850
844
|
};
|
|
851
|
-
platform_editor_scroll_gutter_fix: {
|
|
852
|
-
defaultValue: boolean;
|
|
853
|
-
param: string;
|
|
854
|
-
productKeys?: ProductKeys;
|
|
855
|
-
typeGuard: IsBooleanType;
|
|
856
|
-
};
|
|
857
845
|
platform_editor_ai_exp_inline_date_year_refresh: {
|
|
858
846
|
defaultValue: boolean;
|
|
859
847
|
param: string;
|
|
@@ -920,5 +908,11 @@ export declare const editorExperimentsConfig: {
|
|
|
920
908
|
productKeys?: ProductKeys;
|
|
921
909
|
typeGuard: IsBooleanType;
|
|
922
910
|
};
|
|
911
|
+
platform_editor_ai_edit_unsupported_content: {
|
|
912
|
+
defaultValue: boolean;
|
|
913
|
+
param: string;
|
|
914
|
+
productKeys?: ProductKeys;
|
|
915
|
+
typeGuard: IsBooleanType;
|
|
916
|
+
};
|
|
923
917
|
};
|
|
924
918
|
export {};
|
package/package.json
CHANGED