@atlaskit/tmp-editor-statsig 90.3.0 → 91.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 +15 -0
- package/dist/cjs/experiments-config.js +9 -25
- package/dist/es2019/experiments-config.js +9 -25
- package/dist/esm/experiments-config.js +9 -25
- package/dist/types/experiments-config.d.ts +6 -18
- package/dist/types-ts4.5/experiments-config.d.ts +6 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 91.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`f7faa21a01fc7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f7faa21a01fc7) -
|
|
8
|
+
Cleanup stale feature gates and experiments now that they have shipped. The following
|
|
9
|
+
gates/experiments have been removed and their enabled paths kept as the permanent behaviour:
|
|
10
|
+
platform_editor_fix_scrolling_popup_position, platform_editor_table_resize_chromeless,
|
|
11
|
+
platform_editor_chromeless_akeditor_class, create_work_item_modernization_exp.
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`dbe0d03cebcd7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dbe0d03cebcd7) -
|
|
16
|
+
Added fix_copy_paste_external_media_renderer_to_editor experiment
|
|
17
|
+
|
|
3
18
|
## 90.3.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -1260,23 +1260,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1260
1260
|
param: 'isEnabled',
|
|
1261
1261
|
defaultValue: false
|
|
1262
1262
|
}),
|
|
1263
|
-
// Added 2026-04-23
|
|
1264
|
-
platform_editor_fix_scrolling_popup_position: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1265
|
-
productKeys: {
|
|
1266
|
-
confluence: 'platform_editor_fix_scrolling_popup_position',
|
|
1267
|
-
jira: 'platform_editor_fix_scrolling_popup_position'
|
|
1268
|
-
},
|
|
1269
|
-
param: 'isEnabled',
|
|
1270
|
-
defaultValue: false
|
|
1271
|
-
}),
|
|
1272
|
-
// Added 2026-04-28
|
|
1273
|
-
create_work_item_modernization_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1274
|
-
productKeys: {
|
|
1275
|
-
jira: 'create_work_item_modernization_exp'
|
|
1276
|
-
},
|
|
1277
|
-
param: 'isEnabled',
|
|
1278
|
-
defaultValue: false
|
|
1279
|
-
}),
|
|
1280
1263
|
// Added 2026-01-30
|
|
1281
1264
|
platform_editor_fix_cross_origin_editor_focus: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1282
1265
|
productKeys: {
|
|
@@ -1349,14 +1332,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1349
1332
|
param: 'isEnabled',
|
|
1350
1333
|
defaultValue: false
|
|
1351
1334
|
}),
|
|
1352
|
-
platform_editor_table_resize_chromeless: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1353
|
-
productKeys: {
|
|
1354
|
-
confluence: 'platform_editor_table_resize_chromeless',
|
|
1355
|
-
jira: 'platform_editor_table_resize_chromeless'
|
|
1356
|
-
},
|
|
1357
|
-
param: 'isEnabled',
|
|
1358
|
-
defaultValue: false
|
|
1359
|
-
}),
|
|
1360
1335
|
// Added 2026-02-05
|
|
1361
1336
|
platform_editor_toolbar_split_button_ui: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1362
1337
|
productKeys: {
|
|
@@ -2210,6 +2185,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2210
2185
|
param: 'isEnabled',
|
|
2211
2186
|
defaultValue: false
|
|
2212
2187
|
}),
|
|
2188
|
+
// Added 2026-06-05
|
|
2189
|
+
fix_copy_paste_external_media_renderer_to_editor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2190
|
+
productKeys: {
|
|
2191
|
+
confluence: 'fix_copy_paste_external_media_renderer_to_editor',
|
|
2192
|
+
jira: 'fix_copy_paste_external_media_renderer_to_editor'
|
|
2193
|
+
},
|
|
2194
|
+
param: 'isEnabled',
|
|
2195
|
+
defaultValue: false
|
|
2196
|
+
}),
|
|
2213
2197
|
// Added 2026-04-30
|
|
2214
2198
|
platform_editor_insert_menu_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2215
2199
|
productKeys: {
|
|
@@ -1254,23 +1254,6 @@ export const editorExperimentsConfig = {
|
|
|
1254
1254
|
param: 'isEnabled',
|
|
1255
1255
|
defaultValue: false
|
|
1256
1256
|
}),
|
|
1257
|
-
// Added 2026-04-23
|
|
1258
|
-
platform_editor_fix_scrolling_popup_position: createBooleanExperiment({
|
|
1259
|
-
productKeys: {
|
|
1260
|
-
confluence: 'platform_editor_fix_scrolling_popup_position',
|
|
1261
|
-
jira: 'platform_editor_fix_scrolling_popup_position'
|
|
1262
|
-
},
|
|
1263
|
-
param: 'isEnabled',
|
|
1264
|
-
defaultValue: false
|
|
1265
|
-
}),
|
|
1266
|
-
// Added 2026-04-28
|
|
1267
|
-
create_work_item_modernization_exp: createBooleanExperiment({
|
|
1268
|
-
productKeys: {
|
|
1269
|
-
jira: 'create_work_item_modernization_exp'
|
|
1270
|
-
},
|
|
1271
|
-
param: 'isEnabled',
|
|
1272
|
-
defaultValue: false
|
|
1273
|
-
}),
|
|
1274
1257
|
// Added 2026-01-30
|
|
1275
1258
|
platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
|
|
1276
1259
|
productKeys: {
|
|
@@ -1343,14 +1326,6 @@ export const editorExperimentsConfig = {
|
|
|
1343
1326
|
param: 'isEnabled',
|
|
1344
1327
|
defaultValue: false
|
|
1345
1328
|
}),
|
|
1346
|
-
platform_editor_table_resize_chromeless: createBooleanExperiment({
|
|
1347
|
-
productKeys: {
|
|
1348
|
-
confluence: 'platform_editor_table_resize_chromeless',
|
|
1349
|
-
jira: 'platform_editor_table_resize_chromeless'
|
|
1350
|
-
},
|
|
1351
|
-
param: 'isEnabled',
|
|
1352
|
-
defaultValue: false
|
|
1353
|
-
}),
|
|
1354
1329
|
// Added 2026-02-05
|
|
1355
1330
|
platform_editor_toolbar_split_button_ui: createBooleanExperiment({
|
|
1356
1331
|
productKeys: {
|
|
@@ -2204,6 +2179,15 @@ export const editorExperimentsConfig = {
|
|
|
2204
2179
|
param: 'isEnabled',
|
|
2205
2180
|
defaultValue: false
|
|
2206
2181
|
}),
|
|
2182
|
+
// Added 2026-06-05
|
|
2183
|
+
fix_copy_paste_external_media_renderer_to_editor: createBooleanExperiment({
|
|
2184
|
+
productKeys: {
|
|
2185
|
+
confluence: 'fix_copy_paste_external_media_renderer_to_editor',
|
|
2186
|
+
jira: 'fix_copy_paste_external_media_renderer_to_editor'
|
|
2187
|
+
},
|
|
2188
|
+
param: 'isEnabled',
|
|
2189
|
+
defaultValue: false
|
|
2190
|
+
}),
|
|
2207
2191
|
// Added 2026-04-30
|
|
2208
2192
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2209
2193
|
productKeys: {
|
|
@@ -1254,23 +1254,6 @@ export var editorExperimentsConfig = {
|
|
|
1254
1254
|
param: 'isEnabled',
|
|
1255
1255
|
defaultValue: false
|
|
1256
1256
|
}),
|
|
1257
|
-
// Added 2026-04-23
|
|
1258
|
-
platform_editor_fix_scrolling_popup_position: createBooleanExperiment({
|
|
1259
|
-
productKeys: {
|
|
1260
|
-
confluence: 'platform_editor_fix_scrolling_popup_position',
|
|
1261
|
-
jira: 'platform_editor_fix_scrolling_popup_position'
|
|
1262
|
-
},
|
|
1263
|
-
param: 'isEnabled',
|
|
1264
|
-
defaultValue: false
|
|
1265
|
-
}),
|
|
1266
|
-
// Added 2026-04-28
|
|
1267
|
-
create_work_item_modernization_exp: createBooleanExperiment({
|
|
1268
|
-
productKeys: {
|
|
1269
|
-
jira: 'create_work_item_modernization_exp'
|
|
1270
|
-
},
|
|
1271
|
-
param: 'isEnabled',
|
|
1272
|
-
defaultValue: false
|
|
1273
|
-
}),
|
|
1274
1257
|
// Added 2026-01-30
|
|
1275
1258
|
platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
|
|
1276
1259
|
productKeys: {
|
|
@@ -1343,14 +1326,6 @@ export var editorExperimentsConfig = {
|
|
|
1343
1326
|
param: 'isEnabled',
|
|
1344
1327
|
defaultValue: false
|
|
1345
1328
|
}),
|
|
1346
|
-
platform_editor_table_resize_chromeless: createBooleanExperiment({
|
|
1347
|
-
productKeys: {
|
|
1348
|
-
confluence: 'platform_editor_table_resize_chromeless',
|
|
1349
|
-
jira: 'platform_editor_table_resize_chromeless'
|
|
1350
|
-
},
|
|
1351
|
-
param: 'isEnabled',
|
|
1352
|
-
defaultValue: false
|
|
1353
|
-
}),
|
|
1354
1329
|
// Added 2026-02-05
|
|
1355
1330
|
platform_editor_toolbar_split_button_ui: createBooleanExperiment({
|
|
1356
1331
|
productKeys: {
|
|
@@ -2204,6 +2179,15 @@ export var editorExperimentsConfig = {
|
|
|
2204
2179
|
param: 'isEnabled',
|
|
2205
2180
|
defaultValue: false
|
|
2206
2181
|
}),
|
|
2182
|
+
// Added 2026-06-05
|
|
2183
|
+
fix_copy_paste_external_media_renderer_to_editor: createBooleanExperiment({
|
|
2184
|
+
productKeys: {
|
|
2185
|
+
confluence: 'fix_copy_paste_external_media_renderer_to_editor',
|
|
2186
|
+
jira: 'fix_copy_paste_external_media_renderer_to_editor'
|
|
2187
|
+
},
|
|
2188
|
+
param: 'isEnabled',
|
|
2189
|
+
defaultValue: false
|
|
2190
|
+
}),
|
|
2207
2191
|
// Added 2026-04-30
|
|
2208
2192
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2209
2193
|
productKeys: {
|
|
@@ -936,12 +936,6 @@ export declare const editorExperimentsConfig: {
|
|
|
936
936
|
productKeys?: ProductKeys;
|
|
937
937
|
typeGuard: IsBooleanType;
|
|
938
938
|
};
|
|
939
|
-
platform_editor_fix_scrolling_popup_position: {
|
|
940
|
-
defaultValue: boolean;
|
|
941
|
-
param: string;
|
|
942
|
-
productKeys?: ProductKeys;
|
|
943
|
-
typeGuard: IsBooleanType;
|
|
944
|
-
};
|
|
945
939
|
platform_editor_ai_fix_insert_after_selection: {
|
|
946
940
|
defaultValue: boolean;
|
|
947
941
|
param: string;
|
|
@@ -1004,12 +998,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1004
998
|
productKeys?: ProductKeys;
|
|
1005
999
|
typeGuard: IsBooleanType;
|
|
1006
1000
|
};
|
|
1007
|
-
platform_editor_table_resize_chromeless: {
|
|
1008
|
-
defaultValue: boolean;
|
|
1009
|
-
param: string;
|
|
1010
|
-
productKeys?: ProductKeys;
|
|
1011
|
-
typeGuard: IsBooleanType;
|
|
1012
|
-
};
|
|
1013
1001
|
platform_editor_toolbar_split_button_ui: {
|
|
1014
1002
|
defaultValue: boolean;
|
|
1015
1003
|
param: string;
|
|
@@ -1520,12 +1508,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1520
1508
|
productKeys?: ProductKeys;
|
|
1521
1509
|
typeGuard: IsBooleanType;
|
|
1522
1510
|
};
|
|
1523
|
-
create_work_item_modernization_exp: {
|
|
1524
|
-
defaultValue: boolean;
|
|
1525
|
-
param: string;
|
|
1526
|
-
productKeys?: ProductKeys;
|
|
1527
|
-
typeGuard: IsBooleanType;
|
|
1528
|
-
};
|
|
1529
1511
|
improve_3p_smart_link_resolve_rate: {
|
|
1530
1512
|
defaultValue: boolean;
|
|
1531
1513
|
param: string;
|
|
@@ -1634,6 +1616,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1634
1616
|
productKeys?: ProductKeys;
|
|
1635
1617
|
typeGuard: IsBooleanType;
|
|
1636
1618
|
};
|
|
1619
|
+
fix_copy_paste_external_media_renderer_to_editor: {
|
|
1620
|
+
defaultValue: boolean;
|
|
1621
|
+
param: string;
|
|
1622
|
+
productKeys?: ProductKeys;
|
|
1623
|
+
typeGuard: IsBooleanType;
|
|
1624
|
+
};
|
|
1637
1625
|
platform_editor_show_diff_fix_missing_attrs: {
|
|
1638
1626
|
defaultValue: boolean;
|
|
1639
1627
|
param: string;
|
|
@@ -936,12 +936,6 @@ export declare const editorExperimentsConfig: {
|
|
|
936
936
|
productKeys?: ProductKeys;
|
|
937
937
|
typeGuard: IsBooleanType;
|
|
938
938
|
};
|
|
939
|
-
platform_editor_fix_scrolling_popup_position: {
|
|
940
|
-
defaultValue: boolean;
|
|
941
|
-
param: string;
|
|
942
|
-
productKeys?: ProductKeys;
|
|
943
|
-
typeGuard: IsBooleanType;
|
|
944
|
-
};
|
|
945
939
|
platform_editor_ai_fix_insert_after_selection: {
|
|
946
940
|
defaultValue: boolean;
|
|
947
941
|
param: string;
|
|
@@ -1004,12 +998,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1004
998
|
productKeys?: ProductKeys;
|
|
1005
999
|
typeGuard: IsBooleanType;
|
|
1006
1000
|
};
|
|
1007
|
-
platform_editor_table_resize_chromeless: {
|
|
1008
|
-
defaultValue: boolean;
|
|
1009
|
-
param: string;
|
|
1010
|
-
productKeys?: ProductKeys;
|
|
1011
|
-
typeGuard: IsBooleanType;
|
|
1012
|
-
};
|
|
1013
1001
|
platform_editor_toolbar_split_button_ui: {
|
|
1014
1002
|
defaultValue: boolean;
|
|
1015
1003
|
param: string;
|
|
@@ -1520,12 +1508,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1520
1508
|
productKeys?: ProductKeys;
|
|
1521
1509
|
typeGuard: IsBooleanType;
|
|
1522
1510
|
};
|
|
1523
|
-
create_work_item_modernization_exp: {
|
|
1524
|
-
defaultValue: boolean;
|
|
1525
|
-
param: string;
|
|
1526
|
-
productKeys?: ProductKeys;
|
|
1527
|
-
typeGuard: IsBooleanType;
|
|
1528
|
-
};
|
|
1529
1511
|
improve_3p_smart_link_resolve_rate: {
|
|
1530
1512
|
defaultValue: boolean;
|
|
1531
1513
|
param: string;
|
|
@@ -1634,6 +1616,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1634
1616
|
productKeys?: ProductKeys;
|
|
1635
1617
|
typeGuard: IsBooleanType;
|
|
1636
1618
|
};
|
|
1619
|
+
fix_copy_paste_external_media_renderer_to_editor: {
|
|
1620
|
+
defaultValue: boolean;
|
|
1621
|
+
param: string;
|
|
1622
|
+
productKeys?: ProductKeys;
|
|
1623
|
+
typeGuard: IsBooleanType;
|
|
1624
|
+
};
|
|
1637
1625
|
platform_editor_show_diff_fix_missing_attrs: {
|
|
1638
1626
|
defaultValue: boolean;
|
|
1639
1627
|
param: string;
|
package/package.json
CHANGED