@atlaskit/tmp-editor-statsig 9.12.0 → 9.14.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 +23 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/editor-experiments-test-utils.d.ts +19 -1
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types/setup.d.ts +3 -0
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +19 -1
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/setup.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 9.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#189832](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/189832)
|
|
8
|
+
[`a3b339a1e6839`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a3b339a1e6839) -
|
|
9
|
+
[ux] ED-28512 Update styling to fix card flickering issue in bodiedExtension
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#190588](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/190588)
|
|
14
|
+
[`b22e308cfd320`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b22e308cfd320) -
|
|
15
|
+
Replace experiment key platform_editor_useSharedPluginStateSelector with
|
|
16
|
+
platform_editor_useSharedPluginStateWithSelector
|
|
17
|
+
|
|
18
|
+
## 9.13.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [#191209](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/191209)
|
|
23
|
+
[`814220fd4e624`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/814220fd4e624) -
|
|
24
|
+
EDITOR-1151 Enable ADF support for change tone and spelling and grammar.
|
|
25
|
+
|
|
3
26
|
## 9.12.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -46,7 +46,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
46
46
|
platform_editor_offline_editing_web: false,
|
|
47
47
|
platform_editor_tables_drag_and_drop: false,
|
|
48
48
|
platform_editor_tables_table_selector: false,
|
|
49
|
-
platform_editor_usesharedpluginstateselector: false,
|
|
50
49
|
platform_editor_media_floating_toolbar_early_exit: false,
|
|
51
50
|
platform_renderer_fix_analytics_memo_callback: false,
|
|
52
51
|
platform_editor_stop_width_reflows: false,
|
|
@@ -287,6 +287,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
287
287
|
param: 'isEnabled',
|
|
288
288
|
defaultValue: false
|
|
289
289
|
}),
|
|
290
|
+
// Added 2025-07-24
|
|
291
|
+
platform_editor_usesharedpluginstatewithselector: (0, _experimentBuilders.createBooleanExperiment)({
|
|
292
|
+
productKeys: {
|
|
293
|
+
confluence: 'platform_editor_usesharedpluginstatewithselector'
|
|
294
|
+
},
|
|
295
|
+
param: 'isEnabled',
|
|
296
|
+
defaultValue: false
|
|
297
|
+
}),
|
|
290
298
|
// Added 2025-07-14
|
|
291
299
|
platform_editor_media_floating_toolbar_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
|
|
292
300
|
productKeys: {
|
|
@@ -399,6 +407,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
399
407
|
param: 'isEnabled',
|
|
400
408
|
defaultValue: false
|
|
401
409
|
}),
|
|
410
|
+
// Added 2025-06-18
|
|
411
|
+
platform_editor_ai_ct_sg_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
412
|
+
productKeys: {
|
|
413
|
+
confluence: 'platform_editor_ai_ct_sg_adf_streaming'
|
|
414
|
+
},
|
|
415
|
+
param: 'isEnabled',
|
|
416
|
+
defaultValue: false
|
|
417
|
+
}),
|
|
402
418
|
// Added 2025-07-07
|
|
403
419
|
platform_editor_ai_remove_trivial_prompts_cc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
404
420
|
productKeys: {
|
|
@@ -407,6 +423,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
407
423
|
param: 'isEnabled',
|
|
408
424
|
defaultValue: false
|
|
409
425
|
}),
|
|
426
|
+
//Added 2025-07-25
|
|
427
|
+
platform_editor_extension_styles: (0, _experimentBuilders.createBooleanExperiment)({
|
|
428
|
+
productKeys: {
|
|
429
|
+
confluence: 'platform_editor_extension_styles'
|
|
430
|
+
},
|
|
431
|
+
param: 'isEnabled',
|
|
432
|
+
defaultValue: false
|
|
433
|
+
}),
|
|
410
434
|
// Added 2025-06-20
|
|
411
435
|
confluence_whiteboards_quick_insert_aa: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
412
436
|
productKeys: {
|
|
@@ -40,7 +40,6 @@ export const testBooleanOverrides = {
|
|
|
40
40
|
platform_editor_offline_editing_web: false,
|
|
41
41
|
platform_editor_tables_drag_and_drop: false,
|
|
42
42
|
platform_editor_tables_table_selector: false,
|
|
43
|
-
platform_editor_usesharedpluginstateselector: false,
|
|
44
43
|
platform_editor_media_floating_toolbar_early_exit: false,
|
|
45
44
|
platform_renderer_fix_analytics_memo_callback: false,
|
|
46
45
|
platform_editor_stop_width_reflows: false,
|
|
@@ -281,6 +281,14 @@ export const editorExperimentsConfig = {
|
|
|
281
281
|
param: 'isEnabled',
|
|
282
282
|
defaultValue: false
|
|
283
283
|
}),
|
|
284
|
+
// Added 2025-07-24
|
|
285
|
+
platform_editor_usesharedpluginstatewithselector: createBooleanExperiment({
|
|
286
|
+
productKeys: {
|
|
287
|
+
confluence: 'platform_editor_usesharedpluginstatewithselector'
|
|
288
|
+
},
|
|
289
|
+
param: 'isEnabled',
|
|
290
|
+
defaultValue: false
|
|
291
|
+
}),
|
|
284
292
|
// Added 2025-07-14
|
|
285
293
|
platform_editor_media_floating_toolbar_early_exit: createBooleanExperiment({
|
|
286
294
|
productKeys: {
|
|
@@ -393,6 +401,14 @@ export const editorExperimentsConfig = {
|
|
|
393
401
|
param: 'isEnabled',
|
|
394
402
|
defaultValue: false
|
|
395
403
|
}),
|
|
404
|
+
// Added 2025-06-18
|
|
405
|
+
platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
|
|
406
|
+
productKeys: {
|
|
407
|
+
confluence: 'platform_editor_ai_ct_sg_adf_streaming'
|
|
408
|
+
},
|
|
409
|
+
param: 'isEnabled',
|
|
410
|
+
defaultValue: false
|
|
411
|
+
}),
|
|
396
412
|
// Added 2025-07-07
|
|
397
413
|
platform_editor_ai_remove_trivial_prompts_cc: createBooleanExperiment({
|
|
398
414
|
productKeys: {
|
|
@@ -401,6 +417,14 @@ export const editorExperimentsConfig = {
|
|
|
401
417
|
param: 'isEnabled',
|
|
402
418
|
defaultValue: false
|
|
403
419
|
}),
|
|
420
|
+
//Added 2025-07-25
|
|
421
|
+
platform_editor_extension_styles: createBooleanExperiment({
|
|
422
|
+
productKeys: {
|
|
423
|
+
confluence: 'platform_editor_extension_styles'
|
|
424
|
+
},
|
|
425
|
+
param: 'isEnabled',
|
|
426
|
+
defaultValue: false
|
|
427
|
+
}),
|
|
404
428
|
// Added 2025-06-20
|
|
405
429
|
confluence_whiteboards_quick_insert_aa: createMultivariateExperiment({
|
|
406
430
|
productKeys: {
|
|
@@ -40,7 +40,6 @@ export var testBooleanOverrides = {
|
|
|
40
40
|
platform_editor_offline_editing_web: false,
|
|
41
41
|
platform_editor_tables_drag_and_drop: false,
|
|
42
42
|
platform_editor_tables_table_selector: false,
|
|
43
|
-
platform_editor_usesharedpluginstateselector: false,
|
|
44
43
|
platform_editor_media_floating_toolbar_early_exit: false,
|
|
45
44
|
platform_renderer_fix_analytics_memo_callback: false,
|
|
46
45
|
platform_editor_stop_width_reflows: false,
|
|
@@ -281,6 +281,14 @@ export var editorExperimentsConfig = {
|
|
|
281
281
|
param: 'isEnabled',
|
|
282
282
|
defaultValue: false
|
|
283
283
|
}),
|
|
284
|
+
// Added 2025-07-24
|
|
285
|
+
platform_editor_usesharedpluginstatewithselector: createBooleanExperiment({
|
|
286
|
+
productKeys: {
|
|
287
|
+
confluence: 'platform_editor_usesharedpluginstatewithselector'
|
|
288
|
+
},
|
|
289
|
+
param: 'isEnabled',
|
|
290
|
+
defaultValue: false
|
|
291
|
+
}),
|
|
284
292
|
// Added 2025-07-14
|
|
285
293
|
platform_editor_media_floating_toolbar_early_exit: createBooleanExperiment({
|
|
286
294
|
productKeys: {
|
|
@@ -393,6 +401,14 @@ export var editorExperimentsConfig = {
|
|
|
393
401
|
param: 'isEnabled',
|
|
394
402
|
defaultValue: false
|
|
395
403
|
}),
|
|
404
|
+
// Added 2025-06-18
|
|
405
|
+
platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
|
|
406
|
+
productKeys: {
|
|
407
|
+
confluence: 'platform_editor_ai_ct_sg_adf_streaming'
|
|
408
|
+
},
|
|
409
|
+
param: 'isEnabled',
|
|
410
|
+
defaultValue: false
|
|
411
|
+
}),
|
|
396
412
|
// Added 2025-07-07
|
|
397
413
|
platform_editor_ai_remove_trivial_prompts_cc: createBooleanExperiment({
|
|
398
414
|
productKeys: {
|
|
@@ -401,6 +417,14 @@ export var editorExperimentsConfig = {
|
|
|
401
417
|
param: 'isEnabled',
|
|
402
418
|
defaultValue: false
|
|
403
419
|
}),
|
|
420
|
+
//Added 2025-07-25
|
|
421
|
+
platform_editor_extension_styles: createBooleanExperiment({
|
|
422
|
+
productKeys: {
|
|
423
|
+
confluence: 'platform_editor_extension_styles'
|
|
424
|
+
},
|
|
425
|
+
param: 'isEnabled',
|
|
426
|
+
defaultValue: false
|
|
427
|
+
}),
|
|
404
428
|
// Added 2025-06-20
|
|
405
429
|
confluence_whiteboards_quick_insert_aa: createMultivariateExperiment({
|
|
406
430
|
productKeys: {
|
|
@@ -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_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" | "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_editor_media_floating_toolbar_early_exit" | "platform_renderer_fix_analytics_memo_callback" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "platform_editor_no_cursor_on_edit_page_init" | "jira-work-sync-desc-comment-summary" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "platform_editor_toolbar_rerender_optimization_exp" | "platform_editor_block_controls_perf_optimization" | "platform_editor_enable_single_player_step_merging" | "platform_editor_ai_iw_adf_streaming" | "platform_editor_ai_remove_trivial_prompts_cc" | "confluence_whiteboards_quick_insert_aa" | "platform_editor_find_and_replace_improvements" | "confluence_whiteboards_quick_insert" | "cc_editor_ufo_hold_table_till_resize_complete" | "platform_editor_feedback_mandatory_rating" | "platform_editor_toggle_expand_on_match_found" | "platform_editor_smart_card_otp" | "platform_editor_preview_panel_responsiveness" | "platform_editor_renderer_breakout_fix" | "editor_enghealth_hyperlink_toolbar_aria_values" | "cc_editor_interactions_trigger_traceufointeraction" | "platform_editor_add_orange_highlight_color" | "platform_editor_toolbar_aifc" | "platform_editor_enghealth_table_plugin_lable_rule">(experimentName: ExperimentName, describeName: string) => {
|
|
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_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" | "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_editor_usesharedpluginstatewithselector" | "platform_editor_media_floating_toolbar_early_exit" | "platform_renderer_fix_analytics_memo_callback" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "platform_editor_no_cursor_on_edit_page_init" | "jira-work-sync-desc-comment-summary" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "platform_editor_toolbar_rerender_optimization_exp" | "platform_editor_block_controls_perf_optimization" | "platform_editor_enable_single_player_step_merging" | "platform_editor_ai_iw_adf_streaming" | "platform_editor_ai_ct_sg_adf_streaming" | "platform_editor_ai_remove_trivial_prompts_cc" | "platform_editor_extension_styles" | "confluence_whiteboards_quick_insert_aa" | "platform_editor_find_and_replace_improvements" | "confluence_whiteboards_quick_insert" | "cc_editor_ufo_hold_table_till_resize_complete" | "platform_editor_feedback_mandatory_rating" | "platform_editor_toggle_expand_on_match_found" | "platform_editor_smart_card_otp" | "platform_editor_preview_panel_responsiveness" | "platform_editor_renderer_breakout_fix" | "editor_enghealth_hyperlink_toolbar_aria_values" | "cc_editor_interactions_trigger_traceufointeraction" | "platform_editor_add_orange_highlight_color" | "platform_editor_toolbar_aifc" | "platform_editor_enghealth_table_plugin_lable_rule">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
51
51
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
@@ -251,6 +251,12 @@ declare namespace eeTest {
|
|
|
251
251
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
252
252
|
param: string;
|
|
253
253
|
};
|
|
254
|
+
platform_editor_usesharedpluginstatewithselector: {
|
|
255
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
|
+
defaultValue: boolean;
|
|
257
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
258
|
+
param: string;
|
|
259
|
+
};
|
|
254
260
|
platform_editor_media_floating_toolbar_early_exit: {
|
|
255
261
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
262
|
defaultValue: boolean;
|
|
@@ -335,12 +341,24 @@ declare namespace eeTest {
|
|
|
335
341
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
336
342
|
param: string;
|
|
337
343
|
};
|
|
344
|
+
platform_editor_ai_ct_sg_adf_streaming: {
|
|
345
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
346
|
+
defaultValue: boolean;
|
|
347
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
348
|
+
param: string;
|
|
349
|
+
};
|
|
338
350
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
339
351
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
340
352
|
defaultValue: boolean;
|
|
341
353
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
342
354
|
param: string;
|
|
343
355
|
};
|
|
356
|
+
platform_editor_extension_styles: {
|
|
357
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
358
|
+
defaultValue: boolean;
|
|
359
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
360
|
+
param: string;
|
|
361
|
+
};
|
|
344
362
|
confluence_whiteboards_quick_insert_aa: {
|
|
345
363
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
346
364
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
@@ -209,6 +209,12 @@ export declare const editorExperimentsConfig: {
|
|
|
209
209
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
210
210
|
param: string;
|
|
211
211
|
};
|
|
212
|
+
platform_editor_usesharedpluginstatewithselector: {
|
|
213
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
214
|
+
defaultValue: boolean;
|
|
215
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
216
|
+
param: string;
|
|
217
|
+
};
|
|
212
218
|
platform_editor_media_floating_toolbar_early_exit: {
|
|
213
219
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
214
220
|
defaultValue: boolean;
|
|
@@ -293,12 +299,24 @@ export declare const editorExperimentsConfig: {
|
|
|
293
299
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
294
300
|
param: string;
|
|
295
301
|
};
|
|
302
|
+
platform_editor_ai_ct_sg_adf_streaming: {
|
|
303
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
304
|
+
defaultValue: boolean;
|
|
305
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
306
|
+
param: string;
|
|
307
|
+
};
|
|
296
308
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
297
309
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
298
310
|
defaultValue: boolean;
|
|
299
311
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
300
312
|
param: string;
|
|
301
313
|
};
|
|
314
|
+
platform_editor_extension_styles: {
|
|
315
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
316
|
+
defaultValue: boolean;
|
|
317
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
318
|
+
param: string;
|
|
319
|
+
};
|
|
302
320
|
confluence_whiteboards_quick_insert_aa: {
|
|
303
321
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
304
322
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export declare let _overrides: Partial<{
|
|
|
41
41
|
platform_editor_tables_drag_and_drop: boolean;
|
|
42
42
|
platform_editor_tables_table_selector: boolean;
|
|
43
43
|
platform_editor_usesharedpluginstateselector: boolean;
|
|
44
|
+
platform_editor_usesharedpluginstatewithselector: boolean;
|
|
44
45
|
platform_editor_media_floating_toolbar_early_exit: boolean;
|
|
45
46
|
platform_renderer_fix_analytics_memo_callback: boolean;
|
|
46
47
|
platform_editor_stop_width_reflows: boolean;
|
|
@@ -55,7 +56,9 @@ export declare let _overrides: Partial<{
|
|
|
55
56
|
platform_editor_block_controls_perf_optimization: boolean;
|
|
56
57
|
platform_editor_enable_single_player_step_merging: boolean;
|
|
57
58
|
platform_editor_ai_iw_adf_streaming: boolean;
|
|
59
|
+
platform_editor_ai_ct_sg_adf_streaming: boolean;
|
|
58
60
|
platform_editor_ai_remove_trivial_prompts_cc: boolean;
|
|
61
|
+
platform_editor_extension_styles: boolean;
|
|
59
62
|
confluence_whiteboards_quick_insert_aa: "control" | "test_blank" | "test_diagram";
|
|
60
63
|
platform_editor_find_and_replace_improvements: boolean;
|
|
61
64
|
confluence_whiteboards_quick_insert: "control" | "test_blank" | "test_diagram";
|
|
@@ -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_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" | "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_editor_media_floating_toolbar_early_exit" | "platform_renderer_fix_analytics_memo_callback" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "platform_editor_no_cursor_on_edit_page_init" | "jira-work-sync-desc-comment-summary" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "platform_editor_toolbar_rerender_optimization_exp" | "platform_editor_block_controls_perf_optimization" | "platform_editor_enable_single_player_step_merging" | "platform_editor_ai_iw_adf_streaming" | "platform_editor_ai_remove_trivial_prompts_cc" | "confluence_whiteboards_quick_insert_aa" | "platform_editor_find_and_replace_improvements" | "confluence_whiteboards_quick_insert" | "cc_editor_ufo_hold_table_till_resize_complete" | "platform_editor_feedback_mandatory_rating" | "platform_editor_toggle_expand_on_match_found" | "platform_editor_smart_card_otp" | "platform_editor_preview_panel_responsiveness" | "platform_editor_renderer_breakout_fix" | "editor_enghealth_hyperlink_toolbar_aria_values" | "cc_editor_interactions_trigger_traceufointeraction" | "platform_editor_add_orange_highlight_color" | "platform_editor_toolbar_aifc" | "platform_editor_enghealth_table_plugin_lable_rule">(experimentName: ExperimentName, describeName: string) => {
|
|
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_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" | "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_editor_usesharedpluginstatewithselector" | "platform_editor_media_floating_toolbar_early_exit" | "platform_renderer_fix_analytics_memo_callback" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "platform_editor_core_static_emotion_non_central" | "platform_editor_no_cursor_on_edit_page_init" | "jira-work-sync-desc-comment-summary" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "platform_editor_toolbar_rerender_optimization_exp" | "platform_editor_block_controls_perf_optimization" | "platform_editor_enable_single_player_step_merging" | "platform_editor_ai_iw_adf_streaming" | "platform_editor_ai_ct_sg_adf_streaming" | "platform_editor_ai_remove_trivial_prompts_cc" | "platform_editor_extension_styles" | "confluence_whiteboards_quick_insert_aa" | "platform_editor_find_and_replace_improvements" | "confluence_whiteboards_quick_insert" | "cc_editor_ufo_hold_table_till_resize_complete" | "platform_editor_feedback_mandatory_rating" | "platform_editor_toggle_expand_on_match_found" | "platform_editor_smart_card_otp" | "platform_editor_preview_panel_responsiveness" | "platform_editor_renderer_breakout_fix" | "editor_enghealth_hyperlink_toolbar_aria_values" | "cc_editor_interactions_trigger_traceufointeraction" | "platform_editor_add_orange_highlight_color" | "platform_editor_toolbar_aifc" | "platform_editor_enghealth_table_plugin_lable_rule">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
51
51
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
@@ -251,6 +251,12 @@ declare namespace eeTest {
|
|
|
251
251
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
252
252
|
param: string;
|
|
253
253
|
};
|
|
254
|
+
platform_editor_usesharedpluginstatewithselector: {
|
|
255
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
|
+
defaultValue: boolean;
|
|
257
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
258
|
+
param: string;
|
|
259
|
+
};
|
|
254
260
|
platform_editor_media_floating_toolbar_early_exit: {
|
|
255
261
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
262
|
defaultValue: boolean;
|
|
@@ -335,12 +341,24 @@ declare namespace eeTest {
|
|
|
335
341
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
336
342
|
param: string;
|
|
337
343
|
};
|
|
344
|
+
platform_editor_ai_ct_sg_adf_streaming: {
|
|
345
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
346
|
+
defaultValue: boolean;
|
|
347
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
348
|
+
param: string;
|
|
349
|
+
};
|
|
338
350
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
339
351
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
340
352
|
defaultValue: boolean;
|
|
341
353
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
342
354
|
param: string;
|
|
343
355
|
};
|
|
356
|
+
platform_editor_extension_styles: {
|
|
357
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
358
|
+
defaultValue: boolean;
|
|
359
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
360
|
+
param: string;
|
|
361
|
+
};
|
|
344
362
|
confluence_whiteboards_quick_insert_aa: {
|
|
345
363
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
346
364
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
@@ -209,6 +209,12 @@ export declare const editorExperimentsConfig: {
|
|
|
209
209
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
210
210
|
param: string;
|
|
211
211
|
};
|
|
212
|
+
platform_editor_usesharedpluginstatewithselector: {
|
|
213
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
214
|
+
defaultValue: boolean;
|
|
215
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
216
|
+
param: string;
|
|
217
|
+
};
|
|
212
218
|
platform_editor_media_floating_toolbar_early_exit: {
|
|
213
219
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
214
220
|
defaultValue: boolean;
|
|
@@ -293,12 +299,24 @@ export declare const editorExperimentsConfig: {
|
|
|
293
299
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
294
300
|
param: string;
|
|
295
301
|
};
|
|
302
|
+
platform_editor_ai_ct_sg_adf_streaming: {
|
|
303
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
304
|
+
defaultValue: boolean;
|
|
305
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
306
|
+
param: string;
|
|
307
|
+
};
|
|
296
308
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
297
309
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
298
310
|
defaultValue: boolean;
|
|
299
311
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
300
312
|
param: string;
|
|
301
313
|
};
|
|
314
|
+
platform_editor_extension_styles: {
|
|
315
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
316
|
+
defaultValue: boolean;
|
|
317
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
318
|
+
param: string;
|
|
319
|
+
};
|
|
302
320
|
confluence_whiteboards_quick_insert_aa: {
|
|
303
321
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
304
322
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
@@ -41,6 +41,7 @@ export declare let _overrides: Partial<{
|
|
|
41
41
|
platform_editor_tables_drag_and_drop: boolean;
|
|
42
42
|
platform_editor_tables_table_selector: boolean;
|
|
43
43
|
platform_editor_usesharedpluginstateselector: boolean;
|
|
44
|
+
platform_editor_usesharedpluginstatewithselector: boolean;
|
|
44
45
|
platform_editor_media_floating_toolbar_early_exit: boolean;
|
|
45
46
|
platform_renderer_fix_analytics_memo_callback: boolean;
|
|
46
47
|
platform_editor_stop_width_reflows: boolean;
|
|
@@ -55,7 +56,9 @@ export declare let _overrides: Partial<{
|
|
|
55
56
|
platform_editor_block_controls_perf_optimization: boolean;
|
|
56
57
|
platform_editor_enable_single_player_step_merging: boolean;
|
|
57
58
|
platform_editor_ai_iw_adf_streaming: boolean;
|
|
59
|
+
platform_editor_ai_ct_sg_adf_streaming: boolean;
|
|
58
60
|
platform_editor_ai_remove_trivial_prompts_cc: boolean;
|
|
61
|
+
platform_editor_extension_styles: boolean;
|
|
59
62
|
confluence_whiteboards_quick_insert_aa: "control" | "test_blank" | "test_diagram";
|
|
60
63
|
platform_editor_find_and_replace_improvements: boolean;
|
|
61
64
|
confluence_whiteboards_quick_insert: "control" | "test_blank" | "test_diagram";
|
package/package.json
CHANGED