@atlaskit/tmp-editor-statsig 83.0.0 → 84.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 +19 -0
- package/dist/cjs/experiments-config.js +8 -17
- package/dist/es2019/experiments-config.js +8 -17
- package/dist/esm/experiments-config.js +8 -17
- 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,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 84.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`5e34be0ba10b6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5e34be0ba10b6) -
|
|
8
|
+
Cleanup show diff experiments
|
|
9
|
+
|
|
10
|
+
## 83.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`96b390b511102`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/96b390b511102) -
|
|
15
|
+
Add the `platform_editor_per_plugin_error_boundary` experiment and use it to isolate editor
|
|
16
|
+
PluginSlot failures to the failing plugin.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 83.0.0
|
|
4
23
|
|
|
5
24
|
### Major Changes
|
|
@@ -309,6 +309,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
309
309
|
param: 'isEnabled',
|
|
310
310
|
defaultValue: false
|
|
311
311
|
}),
|
|
312
|
+
// Added 2026-05-15
|
|
313
|
+
platform_editor_per_plugin_error_boundary: (0, _experimentBuilders.createBooleanExperiment)({
|
|
314
|
+
productKeys: {
|
|
315
|
+
confluence: 'platform_editor_per_plugin_error_boundary'
|
|
316
|
+
},
|
|
317
|
+
param: 'isEnabled',
|
|
318
|
+
defaultValue: false
|
|
319
|
+
}),
|
|
312
320
|
// Added 2024-09-07
|
|
313
321
|
platform_editor_exp_lazy_node_views: (0, _experimentBuilders.createBooleanExperiment)({
|
|
314
322
|
productKeys: {
|
|
@@ -1680,15 +1688,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1680
1688
|
param: 'isEnabled',
|
|
1681
1689
|
defaultValue: false
|
|
1682
1690
|
}),
|
|
1683
|
-
// Added 2026-03-11
|
|
1684
|
-
platform_editor_are_nodes_equal_ignore_mark_order: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1685
|
-
productKeys: {
|
|
1686
|
-
confluence: 'platform_editor_are_nodes_equal_ignore_mark_order',
|
|
1687
|
-
jira: 'platform_editor_are_nodes_equal_ignore_mark_order'
|
|
1688
|
-
},
|
|
1689
|
-
param: 'isEnabled',
|
|
1690
|
-
defaultValue: false
|
|
1691
|
-
}),
|
|
1692
1691
|
platform_editor_table_fit_to_content_auto_convert: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1693
1692
|
productKeys: {
|
|
1694
1693
|
confluence: 'platform_editor_table_fit_to_content_auto_convert'
|
|
@@ -2210,14 +2209,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2210
2209
|
param: 'isEnabled',
|
|
2211
2210
|
defaultValue: false
|
|
2212
2211
|
}),
|
|
2213
|
-
// Added 2026-05-13
|
|
2214
|
-
platform_editor_show_diff_improvements: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2215
|
-
productKeys: {
|
|
2216
|
-
confluence: 'platform_editor_show_diff_improvements'
|
|
2217
|
-
},
|
|
2218
|
-
param: 'isEnabled',
|
|
2219
|
-
defaultValue: false
|
|
2220
|
-
}),
|
|
2221
2212
|
// Added 2026-05-18
|
|
2222
2213
|
platform_editor_nest_table_in_panel: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2223
2214
|
productKeys: {
|
|
@@ -303,6 +303,14 @@ export const editorExperimentsConfig = {
|
|
|
303
303
|
param: 'isEnabled',
|
|
304
304
|
defaultValue: false
|
|
305
305
|
}),
|
|
306
|
+
// Added 2026-05-15
|
|
307
|
+
platform_editor_per_plugin_error_boundary: createBooleanExperiment({
|
|
308
|
+
productKeys: {
|
|
309
|
+
confluence: 'platform_editor_per_plugin_error_boundary'
|
|
310
|
+
},
|
|
311
|
+
param: 'isEnabled',
|
|
312
|
+
defaultValue: false
|
|
313
|
+
}),
|
|
306
314
|
// Added 2024-09-07
|
|
307
315
|
platform_editor_exp_lazy_node_views: createBooleanExperiment({
|
|
308
316
|
productKeys: {
|
|
@@ -1674,15 +1682,6 @@ export const editorExperimentsConfig = {
|
|
|
1674
1682
|
param: 'isEnabled',
|
|
1675
1683
|
defaultValue: false
|
|
1676
1684
|
}),
|
|
1677
|
-
// Added 2026-03-11
|
|
1678
|
-
platform_editor_are_nodes_equal_ignore_mark_order: createBooleanExperiment({
|
|
1679
|
-
productKeys: {
|
|
1680
|
-
confluence: 'platform_editor_are_nodes_equal_ignore_mark_order',
|
|
1681
|
-
jira: 'platform_editor_are_nodes_equal_ignore_mark_order'
|
|
1682
|
-
},
|
|
1683
|
-
param: 'isEnabled',
|
|
1684
|
-
defaultValue: false
|
|
1685
|
-
}),
|
|
1686
1685
|
platform_editor_table_fit_to_content_auto_convert: createBooleanExperiment({
|
|
1687
1686
|
productKeys: {
|
|
1688
1687
|
confluence: 'platform_editor_table_fit_to_content_auto_convert'
|
|
@@ -2204,14 +2203,6 @@ export const editorExperimentsConfig = {
|
|
|
2204
2203
|
param: 'isEnabled',
|
|
2205
2204
|
defaultValue: false
|
|
2206
2205
|
}),
|
|
2207
|
-
// Added 2026-05-13
|
|
2208
|
-
platform_editor_show_diff_improvements: createBooleanExperiment({
|
|
2209
|
-
productKeys: {
|
|
2210
|
-
confluence: 'platform_editor_show_diff_improvements'
|
|
2211
|
-
},
|
|
2212
|
-
param: 'isEnabled',
|
|
2213
|
-
defaultValue: false
|
|
2214
|
-
}),
|
|
2215
2206
|
// Added 2026-05-18
|
|
2216
2207
|
platform_editor_nest_table_in_panel: createBooleanExperiment({
|
|
2217
2208
|
productKeys: {
|
|
@@ -303,6 +303,14 @@ export var editorExperimentsConfig = {
|
|
|
303
303
|
param: 'isEnabled',
|
|
304
304
|
defaultValue: false
|
|
305
305
|
}),
|
|
306
|
+
// Added 2026-05-15
|
|
307
|
+
platform_editor_per_plugin_error_boundary: createBooleanExperiment({
|
|
308
|
+
productKeys: {
|
|
309
|
+
confluence: 'platform_editor_per_plugin_error_boundary'
|
|
310
|
+
},
|
|
311
|
+
param: 'isEnabled',
|
|
312
|
+
defaultValue: false
|
|
313
|
+
}),
|
|
306
314
|
// Added 2024-09-07
|
|
307
315
|
platform_editor_exp_lazy_node_views: createBooleanExperiment({
|
|
308
316
|
productKeys: {
|
|
@@ -1674,15 +1682,6 @@ export var editorExperimentsConfig = {
|
|
|
1674
1682
|
param: 'isEnabled',
|
|
1675
1683
|
defaultValue: false
|
|
1676
1684
|
}),
|
|
1677
|
-
// Added 2026-03-11
|
|
1678
|
-
platform_editor_are_nodes_equal_ignore_mark_order: createBooleanExperiment({
|
|
1679
|
-
productKeys: {
|
|
1680
|
-
confluence: 'platform_editor_are_nodes_equal_ignore_mark_order',
|
|
1681
|
-
jira: 'platform_editor_are_nodes_equal_ignore_mark_order'
|
|
1682
|
-
},
|
|
1683
|
-
param: 'isEnabled',
|
|
1684
|
-
defaultValue: false
|
|
1685
|
-
}),
|
|
1686
1685
|
platform_editor_table_fit_to_content_auto_convert: createBooleanExperiment({
|
|
1687
1686
|
productKeys: {
|
|
1688
1687
|
confluence: 'platform_editor_table_fit_to_content_auto_convert'
|
|
@@ -2204,14 +2203,6 @@ export var editorExperimentsConfig = {
|
|
|
2204
2203
|
param: 'isEnabled',
|
|
2205
2204
|
defaultValue: false
|
|
2206
2205
|
}),
|
|
2207
|
-
// Added 2026-05-13
|
|
2208
|
-
platform_editor_show_diff_improvements: createBooleanExperiment({
|
|
2209
|
-
productKeys: {
|
|
2210
|
-
confluence: 'platform_editor_show_diff_improvements'
|
|
2211
|
-
},
|
|
2212
|
-
param: 'isEnabled',
|
|
2213
|
-
defaultValue: false
|
|
2214
|
-
}),
|
|
2215
2206
|
// Added 2026-05-18
|
|
2216
2207
|
platform_editor_nest_table_in_panel: createBooleanExperiment({
|
|
2217
2208
|
productKeys: {
|
|
@@ -125,6 +125,12 @@ export declare const editorExperimentsConfig: {
|
|
|
125
125
|
productKeys?: ProductKeys;
|
|
126
126
|
typeGuard: IsBooleanType;
|
|
127
127
|
};
|
|
128
|
+
platform_editor_per_plugin_error_boundary: {
|
|
129
|
+
defaultValue: boolean;
|
|
130
|
+
param: string;
|
|
131
|
+
productKeys?: ProductKeys;
|
|
132
|
+
typeGuard: IsBooleanType;
|
|
133
|
+
};
|
|
128
134
|
cc_editor_interactivity_monitoring: {
|
|
129
135
|
defaultValue: boolean;
|
|
130
136
|
param: string;
|
|
@@ -1297,12 +1303,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1297
1303
|
productKeys?: ProductKeys;
|
|
1298
1304
|
typeGuard: IsBooleanType;
|
|
1299
1305
|
};
|
|
1300
|
-
platform_editor_are_nodes_equal_ignore_mark_order: {
|
|
1301
|
-
defaultValue: boolean;
|
|
1302
|
-
param: string;
|
|
1303
|
-
productKeys?: ProductKeys;
|
|
1304
|
-
typeGuard: IsBooleanType;
|
|
1305
|
-
};
|
|
1306
1306
|
platform_editor_remove_collab_step_metrics: {
|
|
1307
1307
|
defaultValue: boolean;
|
|
1308
1308
|
param: string;
|
|
@@ -1603,12 +1603,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1603
1603
|
productKeys?: ProductKeys;
|
|
1604
1604
|
typeGuard: IsBooleanType;
|
|
1605
1605
|
};
|
|
1606
|
-
platform_editor_show_diff_improvements: {
|
|
1607
|
-
defaultValue: boolean;
|
|
1608
|
-
param: string;
|
|
1609
|
-
productKeys?: ProductKeys;
|
|
1610
|
-
typeGuard: IsBooleanType;
|
|
1611
|
-
};
|
|
1612
1606
|
platform_editor_fix_sticky_header_malfunction: {
|
|
1613
1607
|
defaultValue: boolean;
|
|
1614
1608
|
param: string;
|
|
@@ -125,6 +125,12 @@ export declare const editorExperimentsConfig: {
|
|
|
125
125
|
productKeys?: ProductKeys;
|
|
126
126
|
typeGuard: IsBooleanType;
|
|
127
127
|
};
|
|
128
|
+
platform_editor_per_plugin_error_boundary: {
|
|
129
|
+
defaultValue: boolean;
|
|
130
|
+
param: string;
|
|
131
|
+
productKeys?: ProductKeys;
|
|
132
|
+
typeGuard: IsBooleanType;
|
|
133
|
+
};
|
|
128
134
|
cc_editor_interactivity_monitoring: {
|
|
129
135
|
defaultValue: boolean;
|
|
130
136
|
param: string;
|
|
@@ -1297,12 +1303,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1297
1303
|
productKeys?: ProductKeys;
|
|
1298
1304
|
typeGuard: IsBooleanType;
|
|
1299
1305
|
};
|
|
1300
|
-
platform_editor_are_nodes_equal_ignore_mark_order: {
|
|
1301
|
-
defaultValue: boolean;
|
|
1302
|
-
param: string;
|
|
1303
|
-
productKeys?: ProductKeys;
|
|
1304
|
-
typeGuard: IsBooleanType;
|
|
1305
|
-
};
|
|
1306
1306
|
platform_editor_remove_collab_step_metrics: {
|
|
1307
1307
|
defaultValue: boolean;
|
|
1308
1308
|
param: string;
|
|
@@ -1603,12 +1603,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1603
1603
|
productKeys?: ProductKeys;
|
|
1604
1604
|
typeGuard: IsBooleanType;
|
|
1605
1605
|
};
|
|
1606
|
-
platform_editor_show_diff_improvements: {
|
|
1607
|
-
defaultValue: boolean;
|
|
1608
|
-
param: string;
|
|
1609
|
-
productKeys?: ProductKeys;
|
|
1610
|
-
typeGuard: IsBooleanType;
|
|
1611
|
-
};
|
|
1612
1606
|
platform_editor_fix_sticky_header_malfunction: {
|
|
1613
1607
|
defaultValue: boolean;
|
|
1614
1608
|
param: string;
|
package/package.json
CHANGED