@atlaskit/tmp-editor-statsig 7.1.0 → 8.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 +22 -0
- package/dist/cjs/experiments-config.js +16 -16
- package/dist/es2019/experiments-config.js +16 -16
- package/dist/esm/experiments-config.js +16 -16
- package/dist/types/editor-experiments-test-utils.d.ts +10 -10
- package/dist/types/experiments-config.d.ts +9 -9
- package/dist/types/setup.d.ts +2 -2
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +10 -10
- package/dist/types-ts4.5/experiments-config.d.ts +9 -9
- package/dist/types-ts4.5/setup.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#174513](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174513)
|
|
8
|
+
[`9190f78c5c704`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9190f78c5c704) -
|
|
9
|
+
Remove platform_editor_exp_disable_lnv experiment key.
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#173957](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/173957)
|
|
14
|
+
[`21b6ca0e1a353`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/21b6ca0e1a353) -
|
|
15
|
+
EDITOR-896 Added improve writing in ADF experiment.
|
|
16
|
+
|
|
17
|
+
## 7.2.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [#173357](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/173357)
|
|
22
|
+
[`f17a667b25b42`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f17a667b25b42) -
|
|
23
|
+
enable merging of prosemirror steps for single player sessions
|
|
24
|
+
|
|
3
25
|
## 7.1.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
@@ -392,14 +392,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
392
392
|
param: 'isEnabled',
|
|
393
393
|
defaultValue: false
|
|
394
394
|
}),
|
|
395
|
-
// Added 2025-05-30
|
|
396
|
-
platform_editor_exp_disable_lnv: (0, _experimentBuilders.createBooleanExperiment)({
|
|
397
|
-
productKeys: {
|
|
398
|
-
confluence: 'platform_editor_exp_disable_lnv'
|
|
399
|
-
},
|
|
400
|
-
param: 'isEnabled',
|
|
401
|
-
defaultValue: false
|
|
402
|
-
}),
|
|
403
395
|
// Added 2025-05-07
|
|
404
396
|
platform_editor_ai_quickstart_command: (0, _experimentBuilders.createBooleanExperiment)({
|
|
405
397
|
productKeys: {
|
|
@@ -438,14 +430,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
438
430
|
param: 'isEnabled',
|
|
439
431
|
defaultValue: false
|
|
440
432
|
}),
|
|
441
|
-
// Added 2025-05-30
|
|
442
|
-
platform_editor_ai_iw_full_page_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
443
|
-
productKeys: {
|
|
444
|
-
confluence: 'platform_editor_ai_iw_full_page_adf_streaming'
|
|
445
|
-
},
|
|
446
|
-
param: 'isEnabled',
|
|
447
|
-
defaultValue: false
|
|
448
|
-
}),
|
|
449
433
|
// Added 2025-06-05
|
|
450
434
|
platform_editor_block_controls_perf_optimization: (0, _experimentBuilders.createBooleanExperiment)({
|
|
451
435
|
productKeys: {
|
|
@@ -461,5 +445,21 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
461
445
|
},
|
|
462
446
|
param: 'isEnabled',
|
|
463
447
|
defaultValue: false
|
|
448
|
+
}),
|
|
449
|
+
// Added 2025-06-16
|
|
450
|
+
platform_editor_enable_single_player_step_merging: (0, _experimentBuilders.createBooleanExperiment)({
|
|
451
|
+
productKeys: {
|
|
452
|
+
confluence: 'platform_editor_enable_single_player_step_merging'
|
|
453
|
+
},
|
|
454
|
+
param: 'isEnabled',
|
|
455
|
+
defaultValue: false
|
|
456
|
+
}),
|
|
457
|
+
// Added 2025-06-18
|
|
458
|
+
platform_editor_ai_iw_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
459
|
+
productKeys: {
|
|
460
|
+
confluence: 'platform_editor_ai_iw_adf_streaming'
|
|
461
|
+
},
|
|
462
|
+
param: 'isEnabled',
|
|
463
|
+
defaultValue: false
|
|
464
464
|
})
|
|
465
465
|
};
|
|
@@ -386,14 +386,6 @@ export const editorExperimentsConfig = {
|
|
|
386
386
|
param: 'isEnabled',
|
|
387
387
|
defaultValue: false
|
|
388
388
|
}),
|
|
389
|
-
// Added 2025-05-30
|
|
390
|
-
platform_editor_exp_disable_lnv: createBooleanExperiment({
|
|
391
|
-
productKeys: {
|
|
392
|
-
confluence: 'platform_editor_exp_disable_lnv'
|
|
393
|
-
},
|
|
394
|
-
param: 'isEnabled',
|
|
395
|
-
defaultValue: false
|
|
396
|
-
}),
|
|
397
389
|
// Added 2025-05-07
|
|
398
390
|
platform_editor_ai_quickstart_command: createBooleanExperiment({
|
|
399
391
|
productKeys: {
|
|
@@ -432,14 +424,6 @@ export const editorExperimentsConfig = {
|
|
|
432
424
|
param: 'isEnabled',
|
|
433
425
|
defaultValue: false
|
|
434
426
|
}),
|
|
435
|
-
// Added 2025-05-30
|
|
436
|
-
platform_editor_ai_iw_full_page_adf_streaming: createBooleanExperiment({
|
|
437
|
-
productKeys: {
|
|
438
|
-
confluence: 'platform_editor_ai_iw_full_page_adf_streaming'
|
|
439
|
-
},
|
|
440
|
-
param: 'isEnabled',
|
|
441
|
-
defaultValue: false
|
|
442
|
-
}),
|
|
443
427
|
// Added 2025-06-05
|
|
444
428
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
445
429
|
productKeys: {
|
|
@@ -455,5 +439,21 @@ export const editorExperimentsConfig = {
|
|
|
455
439
|
},
|
|
456
440
|
param: 'isEnabled',
|
|
457
441
|
defaultValue: false
|
|
442
|
+
}),
|
|
443
|
+
// Added 2025-06-16
|
|
444
|
+
platform_editor_enable_single_player_step_merging: createBooleanExperiment({
|
|
445
|
+
productKeys: {
|
|
446
|
+
confluence: 'platform_editor_enable_single_player_step_merging'
|
|
447
|
+
},
|
|
448
|
+
param: 'isEnabled',
|
|
449
|
+
defaultValue: false
|
|
450
|
+
}),
|
|
451
|
+
// Added 2025-06-18
|
|
452
|
+
platform_editor_ai_iw_adf_streaming: createBooleanExperiment({
|
|
453
|
+
productKeys: {
|
|
454
|
+
confluence: 'platform_editor_ai_iw_adf_streaming'
|
|
455
|
+
},
|
|
456
|
+
param: 'isEnabled',
|
|
457
|
+
defaultValue: false
|
|
458
458
|
})
|
|
459
459
|
};
|
|
@@ -386,14 +386,6 @@ export var editorExperimentsConfig = {
|
|
|
386
386
|
param: 'isEnabled',
|
|
387
387
|
defaultValue: false
|
|
388
388
|
}),
|
|
389
|
-
// Added 2025-05-30
|
|
390
|
-
platform_editor_exp_disable_lnv: createBooleanExperiment({
|
|
391
|
-
productKeys: {
|
|
392
|
-
confluence: 'platform_editor_exp_disable_lnv'
|
|
393
|
-
},
|
|
394
|
-
param: 'isEnabled',
|
|
395
|
-
defaultValue: false
|
|
396
|
-
}),
|
|
397
389
|
// Added 2025-05-07
|
|
398
390
|
platform_editor_ai_quickstart_command: createBooleanExperiment({
|
|
399
391
|
productKeys: {
|
|
@@ -432,14 +424,6 @@ export var editorExperimentsConfig = {
|
|
|
432
424
|
param: 'isEnabled',
|
|
433
425
|
defaultValue: false
|
|
434
426
|
}),
|
|
435
|
-
// Added 2025-05-30
|
|
436
|
-
platform_editor_ai_iw_full_page_adf_streaming: createBooleanExperiment({
|
|
437
|
-
productKeys: {
|
|
438
|
-
confluence: 'platform_editor_ai_iw_full_page_adf_streaming'
|
|
439
|
-
},
|
|
440
|
-
param: 'isEnabled',
|
|
441
|
-
defaultValue: false
|
|
442
|
-
}),
|
|
443
427
|
// Added 2025-06-05
|
|
444
428
|
platform_editor_block_controls_perf_optimization: createBooleanExperiment({
|
|
445
429
|
productKeys: {
|
|
@@ -455,5 +439,21 @@ export var editorExperimentsConfig = {
|
|
|
455
439
|
},
|
|
456
440
|
param: 'isEnabled',
|
|
457
441
|
defaultValue: false
|
|
442
|
+
}),
|
|
443
|
+
// Added 2025-06-16
|
|
444
|
+
platform_editor_enable_single_player_step_merging: createBooleanExperiment({
|
|
445
|
+
productKeys: {
|
|
446
|
+
confluence: 'platform_editor_enable_single_player_step_merging'
|
|
447
|
+
},
|
|
448
|
+
param: 'isEnabled',
|
|
449
|
+
defaultValue: false
|
|
450
|
+
}),
|
|
451
|
+
// Added 2025-06-18
|
|
452
|
+
platform_editor_ai_iw_adf_streaming: createBooleanExperiment({
|
|
453
|
+
productKeys: {
|
|
454
|
+
confluence: 'platform_editor_ai_iw_adf_streaming'
|
|
455
|
+
},
|
|
456
|
+
param: 'isEnabled',
|
|
457
|
+
defaultValue: false
|
|
458
458
|
})
|
|
459
459
|
};
|
|
@@ -45,7 +45,7 @@ declare function eeTest<ExperimentName extends keyof EditorExperimentsConfig>(ex
|
|
|
45
45
|
false: DescribeBody;
|
|
46
46
|
}, otherExperiments?: EditorExperimentOverrides): void;
|
|
47
47
|
declare namespace eeTest {
|
|
48
|
-
var describe: <ExperimentName extends "platform_editor_reduce_noisy_steps_ncs" | "platform_editor_memoized_node_check" | "platform_editor_media_card_vc_wrapper_attribute" | "platform_editor_block_control_optimise_render" | "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "platform_editor_stable_editorview_classname" | "platform_editor_controls_performance_fixes" | "platform_editor_prevent_toolbar_layout_shifts" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_smart_link_cmd_ctrl_click" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "editor_ai_comment_freegen_rovo" | "platform_editor_no_cursor_on_edit_page_init" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "
|
|
48
|
+
var describe: <ExperimentName extends "platform_editor_reduce_noisy_steps_ncs" | "platform_editor_memoized_node_check" | "platform_editor_media_card_vc_wrapper_attribute" | "platform_editor_block_control_optimise_render" | "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "platform_editor_stable_editorview_classname" | "platform_editor_controls_performance_fixes" | "platform_editor_prevent_toolbar_layout_shifts" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_smart_link_cmd_ctrl_click" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "editor_ai_comment_freegen_rovo" | "platform_editor_no_cursor_on_edit_page_init" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "platform_editor_hide_floating_toolbar_in_ssr" | "platform_editor_smart_card_open_overlay_perf" | "platform_editor_toolbar_rerender_optimization_exp" | "platform_editor_controls_toolbar_pinning_exp" | "platform_editor_block_controls_perf_optimization" | "platform_editor_defer_shadow_calculations" | "platform_editor_enable_single_player_step_merging" | "platform_editor_ai_iw_adf_streaming">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
51
51
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
@@ -331,12 +331,6 @@ declare namespace eeTest {
|
|
|
331
331
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
332
332
|
param: string;
|
|
333
333
|
};
|
|
334
|
-
platform_editor_exp_disable_lnv: {
|
|
335
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
336
|
-
defaultValue: boolean;
|
|
337
|
-
productKeys?: import("./types").ProductKeys | undefined;
|
|
338
|
-
param: string;
|
|
339
|
-
};
|
|
340
334
|
platform_editor_ai_quickstart_command: {
|
|
341
335
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
342
336
|
defaultValue: boolean;
|
|
@@ -367,19 +361,25 @@ declare namespace eeTest {
|
|
|
367
361
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
368
362
|
param: string;
|
|
369
363
|
};
|
|
370
|
-
|
|
364
|
+
platform_editor_block_controls_perf_optimization: {
|
|
371
365
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
372
366
|
defaultValue: boolean;
|
|
373
367
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
374
368
|
param: string;
|
|
375
369
|
};
|
|
376
|
-
|
|
370
|
+
platform_editor_defer_shadow_calculations: {
|
|
377
371
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
378
372
|
defaultValue: boolean;
|
|
379
373
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
380
374
|
param: string;
|
|
381
375
|
};
|
|
382
|
-
|
|
376
|
+
platform_editor_enable_single_player_step_merging: {
|
|
377
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
378
|
+
defaultValue: boolean;
|
|
379
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
380
|
+
param: string;
|
|
381
|
+
};
|
|
382
|
+
platform_editor_ai_iw_adf_streaming: {
|
|
383
383
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
384
384
|
defaultValue: boolean;
|
|
385
385
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
@@ -289,12 +289,6 @@ export declare const editorExperimentsConfig: {
|
|
|
289
289
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
290
290
|
param: string;
|
|
291
291
|
};
|
|
292
|
-
platform_editor_exp_disable_lnv: {
|
|
293
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
294
|
-
defaultValue: boolean;
|
|
295
|
-
productKeys?: import("./types").ProductKeys | undefined;
|
|
296
|
-
param: string;
|
|
297
|
-
};
|
|
298
292
|
platform_editor_ai_quickstart_command: {
|
|
299
293
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
300
294
|
defaultValue: boolean;
|
|
@@ -325,19 +319,25 @@ export declare const editorExperimentsConfig: {
|
|
|
325
319
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
326
320
|
param: string;
|
|
327
321
|
};
|
|
328
|
-
|
|
322
|
+
platform_editor_block_controls_perf_optimization: {
|
|
329
323
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
330
324
|
defaultValue: boolean;
|
|
331
325
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
332
326
|
param: string;
|
|
333
327
|
};
|
|
334
|
-
|
|
328
|
+
platform_editor_defer_shadow_calculations: {
|
|
335
329
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
336
330
|
defaultValue: boolean;
|
|
337
331
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
338
332
|
param: string;
|
|
339
333
|
};
|
|
340
|
-
|
|
334
|
+
platform_editor_enable_single_player_step_merging: {
|
|
335
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
336
|
+
defaultValue: boolean;
|
|
337
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
338
|
+
param: string;
|
|
339
|
+
};
|
|
340
|
+
platform_editor_ai_iw_adf_streaming: {
|
|
341
341
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
342
342
|
defaultValue: boolean;
|
|
343
343
|
productKeys?: import("./types").ProductKeys | undefined;
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -54,15 +54,15 @@ export declare let _overrides: Partial<{
|
|
|
54
54
|
confluence_p2m_style_recalc_and_expand_joint_exp: boolean;
|
|
55
55
|
platform_editor_nodevisibility: boolean;
|
|
56
56
|
platform_editor_breakout_resizing: boolean;
|
|
57
|
-
platform_editor_exp_disable_lnv: boolean;
|
|
58
57
|
platform_editor_ai_quickstart_command: boolean;
|
|
59
58
|
platform_editor_hide_floating_toolbar_in_ssr: boolean;
|
|
60
59
|
platform_editor_smart_card_open_overlay_perf: boolean;
|
|
61
60
|
platform_editor_toolbar_rerender_optimization_exp: boolean;
|
|
62
61
|
platform_editor_controls_toolbar_pinning_exp: boolean;
|
|
63
|
-
platform_editor_ai_iw_full_page_adf_streaming: boolean;
|
|
64
62
|
platform_editor_block_controls_perf_optimization: boolean;
|
|
65
63
|
platform_editor_defer_shadow_calculations: boolean;
|
|
64
|
+
platform_editor_enable_single_player_step_merging: boolean;
|
|
65
|
+
platform_editor_ai_iw_adf_streaming: boolean;
|
|
66
66
|
}>;
|
|
67
67
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
68
68
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
@@ -45,7 +45,7 @@ declare function eeTest<ExperimentName extends keyof EditorExperimentsConfig>(ex
|
|
|
45
45
|
false: DescribeBody;
|
|
46
46
|
}, otherExperiments?: EditorExperimentOverrides): void;
|
|
47
47
|
declare namespace eeTest {
|
|
48
|
-
var describe: <ExperimentName extends "platform_editor_reduce_noisy_steps_ncs" | "platform_editor_memoized_node_check" | "platform_editor_media_card_vc_wrapper_attribute" | "platform_editor_block_control_optimise_render" | "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "platform_editor_stable_editorview_classname" | "platform_editor_controls_performance_fixes" | "platform_editor_prevent_toolbar_layout_shifts" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_smart_link_cmd_ctrl_click" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "editor_ai_comment_freegen_rovo" | "platform_editor_no_cursor_on_edit_page_init" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "
|
|
48
|
+
var describe: <ExperimentName extends "platform_editor_reduce_noisy_steps_ncs" | "platform_editor_memoized_node_check" | "platform_editor_media_card_vc_wrapper_attribute" | "platform_editor_block_control_optimise_render" | "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "platform_editor_stable_editorview_classname" | "platform_editor_controls_performance_fixes" | "platform_editor_prevent_toolbar_layout_shifts" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_smart_link_cmd_ctrl_click" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "editor_ai_comment_freegen_rovo" | "platform_editor_no_cursor_on_edit_page_init" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "platform_editor_hide_floating_toolbar_in_ssr" | "platform_editor_smart_card_open_overlay_perf" | "platform_editor_toolbar_rerender_optimization_exp" | "platform_editor_controls_toolbar_pinning_exp" | "platform_editor_block_controls_perf_optimization" | "platform_editor_defer_shadow_calculations" | "platform_editor_enable_single_player_step_merging" | "platform_editor_ai_iw_adf_streaming">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
51
51
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
@@ -331,12 +331,6 @@ declare namespace eeTest {
|
|
|
331
331
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
332
332
|
param: string;
|
|
333
333
|
};
|
|
334
|
-
platform_editor_exp_disable_lnv: {
|
|
335
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
336
|
-
defaultValue: boolean;
|
|
337
|
-
productKeys?: import("./types").ProductKeys | undefined;
|
|
338
|
-
param: string;
|
|
339
|
-
};
|
|
340
334
|
platform_editor_ai_quickstart_command: {
|
|
341
335
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
342
336
|
defaultValue: boolean;
|
|
@@ -367,19 +361,25 @@ declare namespace eeTest {
|
|
|
367
361
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
368
362
|
param: string;
|
|
369
363
|
};
|
|
370
|
-
|
|
364
|
+
platform_editor_block_controls_perf_optimization: {
|
|
371
365
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
372
366
|
defaultValue: boolean;
|
|
373
367
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
374
368
|
param: string;
|
|
375
369
|
};
|
|
376
|
-
|
|
370
|
+
platform_editor_defer_shadow_calculations: {
|
|
377
371
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
378
372
|
defaultValue: boolean;
|
|
379
373
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
380
374
|
param: string;
|
|
381
375
|
};
|
|
382
|
-
|
|
376
|
+
platform_editor_enable_single_player_step_merging: {
|
|
377
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
378
|
+
defaultValue: boolean;
|
|
379
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
380
|
+
param: string;
|
|
381
|
+
};
|
|
382
|
+
platform_editor_ai_iw_adf_streaming: {
|
|
383
383
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
384
384
|
defaultValue: boolean;
|
|
385
385
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
@@ -289,12 +289,6 @@ export declare const editorExperimentsConfig: {
|
|
|
289
289
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
290
290
|
param: string;
|
|
291
291
|
};
|
|
292
|
-
platform_editor_exp_disable_lnv: {
|
|
293
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
294
|
-
defaultValue: boolean;
|
|
295
|
-
productKeys?: import("./types").ProductKeys | undefined;
|
|
296
|
-
param: string;
|
|
297
|
-
};
|
|
298
292
|
platform_editor_ai_quickstart_command: {
|
|
299
293
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
300
294
|
defaultValue: boolean;
|
|
@@ -325,19 +319,25 @@ export declare const editorExperimentsConfig: {
|
|
|
325
319
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
326
320
|
param: string;
|
|
327
321
|
};
|
|
328
|
-
|
|
322
|
+
platform_editor_block_controls_perf_optimization: {
|
|
329
323
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
330
324
|
defaultValue: boolean;
|
|
331
325
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
332
326
|
param: string;
|
|
333
327
|
};
|
|
334
|
-
|
|
328
|
+
platform_editor_defer_shadow_calculations: {
|
|
335
329
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
336
330
|
defaultValue: boolean;
|
|
337
331
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
338
332
|
param: string;
|
|
339
333
|
};
|
|
340
|
-
|
|
334
|
+
platform_editor_enable_single_player_step_merging: {
|
|
335
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
336
|
+
defaultValue: boolean;
|
|
337
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
338
|
+
param: string;
|
|
339
|
+
};
|
|
340
|
+
platform_editor_ai_iw_adf_streaming: {
|
|
341
341
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
342
342
|
defaultValue: boolean;
|
|
343
343
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
@@ -54,15 +54,15 @@ export declare let _overrides: Partial<{
|
|
|
54
54
|
confluence_p2m_style_recalc_and_expand_joint_exp: boolean;
|
|
55
55
|
platform_editor_nodevisibility: boolean;
|
|
56
56
|
platform_editor_breakout_resizing: boolean;
|
|
57
|
-
platform_editor_exp_disable_lnv: boolean;
|
|
58
57
|
platform_editor_ai_quickstart_command: boolean;
|
|
59
58
|
platform_editor_hide_floating_toolbar_in_ssr: boolean;
|
|
60
59
|
platform_editor_smart_card_open_overlay_perf: boolean;
|
|
61
60
|
platform_editor_toolbar_rerender_optimization_exp: boolean;
|
|
62
61
|
platform_editor_controls_toolbar_pinning_exp: boolean;
|
|
63
|
-
platform_editor_ai_iw_full_page_adf_streaming: boolean;
|
|
64
62
|
platform_editor_block_controls_perf_optimization: boolean;
|
|
65
63
|
platform_editor_defer_shadow_calculations: boolean;
|
|
64
|
+
platform_editor_enable_single_player_step_merging: boolean;
|
|
65
|
+
platform_editor_ai_iw_adf_streaming: boolean;
|
|
66
66
|
}>;
|
|
67
67
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
68
68
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
package/package.json
CHANGED