@atlaskit/tmp-editor-statsig 37.0.0 → 38.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 +13 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +9 -7
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +9 -7
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +9 -7
- package/dist/types/experiments-config.d.ts +6 -6
- package/dist/types-ts4.5/experiments-config.d.ts +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 38.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`815712ef26255`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/815712ef26255) -
|
|
8
|
+
Removed `platform_editor_deduplicate_mark_diff` experiment. The deduplication behavior is now
|
|
9
|
+
always enabled.
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`ddcd9f9430dfe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ddcd9f9430dfe) -
|
|
14
|
+
EDITOR-5602 Add position check when insertLocation is fired
|
|
15
|
+
|
|
3
16
|
## 37.0.0
|
|
4
17
|
|
|
5
18
|
### Major Changes
|
|
@@ -52,5 +52,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
52
52
|
platform_editor_prosemirror_rendered_data: false,
|
|
53
53
|
confluence_compact_text_format: false,
|
|
54
54
|
platform_editor_paste_actions_menu: false,
|
|
55
|
-
platform_editor_single_player_expand: false
|
|
55
|
+
platform_editor_single_player_expand: false,
|
|
56
|
+
platform_editor_diff_plugin_extended: false
|
|
56
57
|
};
|
|
@@ -420,13 +420,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
420
420
|
param: 'isEnabled',
|
|
421
421
|
defaultValue: false
|
|
422
422
|
}),
|
|
423
|
-
platform_editor_deduplicate_mark_diff: (0, _experimentBuilders.createBooleanExperiment)({
|
|
424
|
-
productKeys: {
|
|
425
|
-
confluence: 'platform_editor_deduplicate_mark_diff'
|
|
426
|
-
},
|
|
427
|
-
param: 'isEnabled',
|
|
428
|
-
defaultValue: false
|
|
429
|
-
}),
|
|
430
423
|
// Added 2025-09-03
|
|
431
424
|
platform_editor_hydratable_ui: (0, _experimentBuilders.createBooleanExperiment)({
|
|
432
425
|
productKeys: {
|
|
@@ -1691,6 +1684,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1691
1684
|
param: 'isEnabled',
|
|
1692
1685
|
defaultValue: false
|
|
1693
1686
|
}),
|
|
1687
|
+
// Added 2026-03-10
|
|
1688
|
+
platform_editor_insert_location_check: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1689
|
+
productKeys: {
|
|
1690
|
+
jira: 'platform_editor_insert_location_check',
|
|
1691
|
+
confluence: 'platform_editor_insert_location_check'
|
|
1692
|
+
},
|
|
1693
|
+
param: 'isEnabled',
|
|
1694
|
+
defaultValue: false
|
|
1695
|
+
}),
|
|
1694
1696
|
// Added 2026-03-05
|
|
1695
1697
|
cc_drag_and_drop_smart_link_from_content_to_tree: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1696
1698
|
productKeys: {
|
|
@@ -46,5 +46,6 @@ export const testBooleanOverrides = {
|
|
|
46
46
|
platform_editor_prosemirror_rendered_data: false,
|
|
47
47
|
confluence_compact_text_format: false,
|
|
48
48
|
platform_editor_paste_actions_menu: false,
|
|
49
|
-
platform_editor_single_player_expand: false
|
|
49
|
+
platform_editor_single_player_expand: false,
|
|
50
|
+
platform_editor_diff_plugin_extended: false
|
|
50
51
|
};
|
|
@@ -414,13 +414,6 @@ export const editorExperimentsConfig = {
|
|
|
414
414
|
param: 'isEnabled',
|
|
415
415
|
defaultValue: false
|
|
416
416
|
}),
|
|
417
|
-
platform_editor_deduplicate_mark_diff: createBooleanExperiment({
|
|
418
|
-
productKeys: {
|
|
419
|
-
confluence: 'platform_editor_deduplicate_mark_diff'
|
|
420
|
-
},
|
|
421
|
-
param: 'isEnabled',
|
|
422
|
-
defaultValue: false
|
|
423
|
-
}),
|
|
424
417
|
// Added 2025-09-03
|
|
425
418
|
platform_editor_hydratable_ui: createBooleanExperiment({
|
|
426
419
|
productKeys: {
|
|
@@ -1685,6 +1678,15 @@ export const editorExperimentsConfig = {
|
|
|
1685
1678
|
param: 'isEnabled',
|
|
1686
1679
|
defaultValue: false
|
|
1687
1680
|
}),
|
|
1681
|
+
// Added 2026-03-10
|
|
1682
|
+
platform_editor_insert_location_check: createBooleanExperiment({
|
|
1683
|
+
productKeys: {
|
|
1684
|
+
jira: 'platform_editor_insert_location_check',
|
|
1685
|
+
confluence: 'platform_editor_insert_location_check'
|
|
1686
|
+
},
|
|
1687
|
+
param: 'isEnabled',
|
|
1688
|
+
defaultValue: false
|
|
1689
|
+
}),
|
|
1688
1690
|
// Added 2026-03-05
|
|
1689
1691
|
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1690
1692
|
productKeys: {
|
|
@@ -46,5 +46,6 @@ export var testBooleanOverrides = {
|
|
|
46
46
|
platform_editor_prosemirror_rendered_data: false,
|
|
47
47
|
confluence_compact_text_format: false,
|
|
48
48
|
platform_editor_paste_actions_menu: false,
|
|
49
|
-
platform_editor_single_player_expand: false
|
|
49
|
+
platform_editor_single_player_expand: false,
|
|
50
|
+
platform_editor_diff_plugin_extended: false
|
|
50
51
|
};
|
|
@@ -414,13 +414,6 @@ export var editorExperimentsConfig = {
|
|
|
414
414
|
param: 'isEnabled',
|
|
415
415
|
defaultValue: false
|
|
416
416
|
}),
|
|
417
|
-
platform_editor_deduplicate_mark_diff: createBooleanExperiment({
|
|
418
|
-
productKeys: {
|
|
419
|
-
confluence: 'platform_editor_deduplicate_mark_diff'
|
|
420
|
-
},
|
|
421
|
-
param: 'isEnabled',
|
|
422
|
-
defaultValue: false
|
|
423
|
-
}),
|
|
424
417
|
// Added 2025-09-03
|
|
425
418
|
platform_editor_hydratable_ui: createBooleanExperiment({
|
|
426
419
|
productKeys: {
|
|
@@ -1685,6 +1678,15 @@ export var editorExperimentsConfig = {
|
|
|
1685
1678
|
param: 'isEnabled',
|
|
1686
1679
|
defaultValue: false
|
|
1687
1680
|
}),
|
|
1681
|
+
// Added 2026-03-10
|
|
1682
|
+
platform_editor_insert_location_check: createBooleanExperiment({
|
|
1683
|
+
productKeys: {
|
|
1684
|
+
jira: 'platform_editor_insert_location_check',
|
|
1685
|
+
confluence: 'platform_editor_insert_location_check'
|
|
1686
|
+
},
|
|
1687
|
+
param: 'isEnabled',
|
|
1688
|
+
defaultValue: false
|
|
1689
|
+
}),
|
|
1688
1690
|
// Added 2026-03-05
|
|
1689
1691
|
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1690
1692
|
productKeys: {
|
|
@@ -263,12 +263,6 @@ export declare const editorExperimentsConfig: {
|
|
|
263
263
|
productKeys?: ProductKeys;
|
|
264
264
|
typeGuard: IsBooleanType;
|
|
265
265
|
};
|
|
266
|
-
platform_editor_deduplicate_mark_diff: {
|
|
267
|
-
defaultValue: boolean;
|
|
268
|
-
param: string;
|
|
269
|
-
productKeys?: ProductKeys;
|
|
270
|
-
typeGuard: IsBooleanType;
|
|
271
|
-
};
|
|
272
266
|
platform_editor_abort_ufo_on_user_interaction: {
|
|
273
267
|
defaultValue: boolean;
|
|
274
268
|
param: string;
|
|
@@ -1230,6 +1224,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1230
1224
|
productKeys?: ProductKeys;
|
|
1231
1225
|
typeGuard: IsBooleanType;
|
|
1232
1226
|
};
|
|
1227
|
+
platform_editor_insert_location_check: {
|
|
1228
|
+
defaultValue: boolean;
|
|
1229
|
+
param: string;
|
|
1230
|
+
productKeys?: ProductKeys;
|
|
1231
|
+
typeGuard: IsBooleanType;
|
|
1232
|
+
};
|
|
1233
1233
|
platform_editor_table_resizer_extended_zone: {
|
|
1234
1234
|
defaultValue: boolean;
|
|
1235
1235
|
param: string;
|
|
@@ -263,12 +263,6 @@ export declare const editorExperimentsConfig: {
|
|
|
263
263
|
productKeys?: ProductKeys;
|
|
264
264
|
typeGuard: IsBooleanType;
|
|
265
265
|
};
|
|
266
|
-
platform_editor_deduplicate_mark_diff: {
|
|
267
|
-
defaultValue: boolean;
|
|
268
|
-
param: string;
|
|
269
|
-
productKeys?: ProductKeys;
|
|
270
|
-
typeGuard: IsBooleanType;
|
|
271
|
-
};
|
|
272
266
|
platform_editor_abort_ufo_on_user_interaction: {
|
|
273
267
|
defaultValue: boolean;
|
|
274
268
|
param: string;
|
|
@@ -1230,6 +1224,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1230
1224
|
productKeys?: ProductKeys;
|
|
1231
1225
|
typeGuard: IsBooleanType;
|
|
1232
1226
|
};
|
|
1227
|
+
platform_editor_insert_location_check: {
|
|
1228
|
+
defaultValue: boolean;
|
|
1229
|
+
param: string;
|
|
1230
|
+
productKeys?: ProductKeys;
|
|
1231
|
+
typeGuard: IsBooleanType;
|
|
1232
|
+
};
|
|
1233
1233
|
platform_editor_table_resizer_extended_zone: {
|
|
1234
1234
|
defaultValue: boolean;
|
|
1235
1235
|
param: string;
|
package/package.json
CHANGED