@atlaskit/tmp-editor-statsig 5.14.1 → 6.1.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/experiments-config.js +15 -8
- package/dist/es2019/experiments-config.js +15 -8
- package/dist/esm/experiments-config.js +15 -8
- package/dist/types/editor-experiments-test-utils.d.ts +13 -7
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types/setup.d.ts +2 -1
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +13 -7
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/setup.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#168742](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/168742)
|
|
8
|
+
[`43b55fe50be89`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/43b55fe50be89) -
|
|
9
|
+
Add experiment to show no cursor on initial edit page
|
|
10
|
+
|
|
11
|
+
## 6.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- [#166402](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/166402)
|
|
16
|
+
[`86b124543d340`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/86b124543d340) -
|
|
17
|
+
NO-ISSUE: Convert from experiment (editor_ai_in_editor_streaming) to feature gate
|
|
18
|
+
(platform_editor_ai_in_editor_streaming)
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [#167123](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/167123)
|
|
23
|
+
[`8baa50249f460`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8baa50249f460) -
|
|
24
|
+
fix: stable class name for EditorView.dom
|
|
25
|
+
|
|
3
26
|
## 5.14.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -87,6 +87,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
87
87
|
param: 'isEnabled',
|
|
88
88
|
defaultValue: false
|
|
89
89
|
}),
|
|
90
|
+
platform_editor_stable_editorview_classname: (0, _experimentBuilders.createBooleanExperiment)({
|
|
91
|
+
productKeys: {
|
|
92
|
+
confluence: 'platform_editor_stable_editorview_classname'
|
|
93
|
+
},
|
|
94
|
+
param: 'isEnabled',
|
|
95
|
+
defaultValue: false
|
|
96
|
+
}),
|
|
90
97
|
// Added 2025-05-28
|
|
91
98
|
platform_editor_controls_performance_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
92
99
|
productKeys: {
|
|
@@ -346,6 +353,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
346
353
|
param: 'isEnabled',
|
|
347
354
|
defaultValue: false
|
|
348
355
|
}),
|
|
356
|
+
// Added 2025-06-10
|
|
357
|
+
platform_editor_no_cursor_on_edit_page_init: (0, _experimentBuilders.createBooleanExperiment)({
|
|
358
|
+
productKeys: {
|
|
359
|
+
confluence: 'platform_editor_no_cursor_on_edit_page_init'
|
|
360
|
+
},
|
|
361
|
+
param: 'isEnabled',
|
|
362
|
+
defaultValue: false
|
|
363
|
+
}),
|
|
349
364
|
// Added 2025-05-15
|
|
350
365
|
confluence_p2m_style_recalc_and_expand_joint_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
351
366
|
productKeys: {
|
|
@@ -386,14 +401,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
386
401
|
param: 'isEnabled',
|
|
387
402
|
defaultValue: false
|
|
388
403
|
}),
|
|
389
|
-
// Added 2025-05-22
|
|
390
|
-
editor_ai_in_editor_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
391
|
-
productKeys: {
|
|
392
|
-
confluence: 'editor_ai_in_editor_streaming'
|
|
393
|
-
},
|
|
394
|
-
param: 'isEnabled',
|
|
395
|
-
defaultValue: false
|
|
396
|
-
}),
|
|
397
404
|
platform_editor_hide_floating_toolbar_in_ssr: (0, _experimentBuilders.createBooleanExperiment)({
|
|
398
405
|
productKeys: {
|
|
399
406
|
confluence: 'platform_editor_hide_floating_toolbar_in_ssr'
|
|
@@ -81,6 +81,13 @@ export const editorExperimentsConfig = {
|
|
|
81
81
|
param: 'isEnabled',
|
|
82
82
|
defaultValue: false
|
|
83
83
|
}),
|
|
84
|
+
platform_editor_stable_editorview_classname: createBooleanExperiment({
|
|
85
|
+
productKeys: {
|
|
86
|
+
confluence: 'platform_editor_stable_editorview_classname'
|
|
87
|
+
},
|
|
88
|
+
param: 'isEnabled',
|
|
89
|
+
defaultValue: false
|
|
90
|
+
}),
|
|
84
91
|
// Added 2025-05-28
|
|
85
92
|
platform_editor_controls_performance_fixes: createBooleanExperiment({
|
|
86
93
|
productKeys: {
|
|
@@ -340,6 +347,14 @@ export const editorExperimentsConfig = {
|
|
|
340
347
|
param: 'isEnabled',
|
|
341
348
|
defaultValue: false
|
|
342
349
|
}),
|
|
350
|
+
// Added 2025-06-10
|
|
351
|
+
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
352
|
+
productKeys: {
|
|
353
|
+
confluence: 'platform_editor_no_cursor_on_edit_page_init'
|
|
354
|
+
},
|
|
355
|
+
param: 'isEnabled',
|
|
356
|
+
defaultValue: false
|
|
357
|
+
}),
|
|
343
358
|
// Added 2025-05-15
|
|
344
359
|
confluence_p2m_style_recalc_and_expand_joint_exp: createBooleanExperiment({
|
|
345
360
|
productKeys: {
|
|
@@ -380,14 +395,6 @@ export const editorExperimentsConfig = {
|
|
|
380
395
|
param: 'isEnabled',
|
|
381
396
|
defaultValue: false
|
|
382
397
|
}),
|
|
383
|
-
// Added 2025-05-22
|
|
384
|
-
editor_ai_in_editor_streaming: createBooleanExperiment({
|
|
385
|
-
productKeys: {
|
|
386
|
-
confluence: 'editor_ai_in_editor_streaming'
|
|
387
|
-
},
|
|
388
|
-
param: 'isEnabled',
|
|
389
|
-
defaultValue: false
|
|
390
|
-
}),
|
|
391
398
|
platform_editor_hide_floating_toolbar_in_ssr: createBooleanExperiment({
|
|
392
399
|
productKeys: {
|
|
393
400
|
confluence: 'platform_editor_hide_floating_toolbar_in_ssr'
|
|
@@ -81,6 +81,13 @@ export var editorExperimentsConfig = {
|
|
|
81
81
|
param: 'isEnabled',
|
|
82
82
|
defaultValue: false
|
|
83
83
|
}),
|
|
84
|
+
platform_editor_stable_editorview_classname: createBooleanExperiment({
|
|
85
|
+
productKeys: {
|
|
86
|
+
confluence: 'platform_editor_stable_editorview_classname'
|
|
87
|
+
},
|
|
88
|
+
param: 'isEnabled',
|
|
89
|
+
defaultValue: false
|
|
90
|
+
}),
|
|
84
91
|
// Added 2025-05-28
|
|
85
92
|
platform_editor_controls_performance_fixes: createBooleanExperiment({
|
|
86
93
|
productKeys: {
|
|
@@ -340,6 +347,14 @@ export var editorExperimentsConfig = {
|
|
|
340
347
|
param: 'isEnabled',
|
|
341
348
|
defaultValue: false
|
|
342
349
|
}),
|
|
350
|
+
// Added 2025-06-10
|
|
351
|
+
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
352
|
+
productKeys: {
|
|
353
|
+
confluence: 'platform_editor_no_cursor_on_edit_page_init'
|
|
354
|
+
},
|
|
355
|
+
param: 'isEnabled',
|
|
356
|
+
defaultValue: false
|
|
357
|
+
}),
|
|
343
358
|
// Added 2025-05-15
|
|
344
359
|
confluence_p2m_style_recalc_and_expand_joint_exp: createBooleanExperiment({
|
|
345
360
|
productKeys: {
|
|
@@ -380,14 +395,6 @@ export var editorExperimentsConfig = {
|
|
|
380
395
|
param: 'isEnabled',
|
|
381
396
|
defaultValue: false
|
|
382
397
|
}),
|
|
383
|
-
// Added 2025-05-22
|
|
384
|
-
editor_ai_in_editor_streaming: createBooleanExperiment({
|
|
385
|
-
productKeys: {
|
|
386
|
-
confluence: 'editor_ai_in_editor_streaming'
|
|
387
|
-
},
|
|
388
|
-
param: 'isEnabled',
|
|
389
|
-
defaultValue: false
|
|
390
|
-
}),
|
|
391
398
|
platform_editor_hide_floating_toolbar_in_ssr: createBooleanExperiment({
|
|
392
399
|
productKeys: {
|
|
393
400
|
confluence: 'platform_editor_hide_floating_toolbar_in_ssr'
|
|
@@ -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_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" | "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" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "editor_ai_comment_freegen_rovo" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_exp_disable_lnv" | "platform_editor_ai_quickstart_command" | "
|
|
48
|
+
var describe: <ExperimentName extends "platform_editor_reduce_noisy_steps_ncs" | "platform_editor_memoized_node_check" | "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" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "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_exp_disable_lnv" | "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_ai_iw_full_page_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;
|
|
@@ -102,6 +102,12 @@ declare namespace eeTest {
|
|
|
102
102
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
103
103
|
param: string;
|
|
104
104
|
};
|
|
105
|
+
platform_editor_stable_editorview_classname: {
|
|
106
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
107
|
+
defaultValue: boolean;
|
|
108
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
109
|
+
param: string;
|
|
110
|
+
};
|
|
105
111
|
platform_editor_controls_performance_fixes: {
|
|
106
112
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
107
113
|
defaultValue: boolean;
|
|
@@ -295,37 +301,37 @@ declare namespace eeTest {
|
|
|
295
301
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
296
302
|
param: string;
|
|
297
303
|
};
|
|
298
|
-
|
|
304
|
+
platform_editor_no_cursor_on_edit_page_init: {
|
|
299
305
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
300
306
|
defaultValue: boolean;
|
|
301
307
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
302
308
|
param: string;
|
|
303
309
|
};
|
|
304
|
-
|
|
310
|
+
confluence_p2m_style_recalc_and_expand_joint_exp: {
|
|
305
311
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
306
312
|
defaultValue: boolean;
|
|
307
313
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
308
314
|
param: string;
|
|
309
315
|
};
|
|
310
|
-
|
|
316
|
+
platform_editor_nodevisibility: {
|
|
311
317
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
312
318
|
defaultValue: boolean;
|
|
313
319
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
314
320
|
param: string;
|
|
315
321
|
};
|
|
316
|
-
|
|
322
|
+
platform_editor_breakout_resizing: {
|
|
317
323
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
318
324
|
defaultValue: boolean;
|
|
319
325
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
320
326
|
param: string;
|
|
321
327
|
};
|
|
322
|
-
|
|
328
|
+
platform_editor_exp_disable_lnv: {
|
|
323
329
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
324
330
|
defaultValue: boolean;
|
|
325
331
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
326
332
|
param: string;
|
|
327
333
|
};
|
|
328
|
-
|
|
334
|
+
platform_editor_ai_quickstart_command: {
|
|
329
335
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
330
336
|
defaultValue: boolean;
|
|
331
337
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
@@ -60,6 +60,12 @@ export declare const editorExperimentsConfig: {
|
|
|
60
60
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
61
61
|
param: string;
|
|
62
62
|
};
|
|
63
|
+
platform_editor_stable_editorview_classname: {
|
|
64
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
65
|
+
defaultValue: boolean;
|
|
66
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
67
|
+
param: string;
|
|
68
|
+
};
|
|
63
69
|
platform_editor_controls_performance_fixes: {
|
|
64
70
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
65
71
|
defaultValue: boolean;
|
|
@@ -253,37 +259,37 @@ export declare const editorExperimentsConfig: {
|
|
|
253
259
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
254
260
|
param: string;
|
|
255
261
|
};
|
|
256
|
-
|
|
262
|
+
platform_editor_no_cursor_on_edit_page_init: {
|
|
257
263
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
258
264
|
defaultValue: boolean;
|
|
259
265
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
260
266
|
param: string;
|
|
261
267
|
};
|
|
262
|
-
|
|
268
|
+
confluence_p2m_style_recalc_and_expand_joint_exp: {
|
|
263
269
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
264
270
|
defaultValue: boolean;
|
|
265
271
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
266
272
|
param: string;
|
|
267
273
|
};
|
|
268
|
-
|
|
274
|
+
platform_editor_nodevisibility: {
|
|
269
275
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
270
276
|
defaultValue: boolean;
|
|
271
277
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
272
278
|
param: string;
|
|
273
279
|
};
|
|
274
|
-
|
|
280
|
+
platform_editor_breakout_resizing: {
|
|
275
281
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
276
282
|
defaultValue: boolean;
|
|
277
283
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
278
284
|
param: string;
|
|
279
285
|
};
|
|
280
|
-
|
|
286
|
+
platform_editor_exp_disable_lnv: {
|
|
281
287
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
282
288
|
defaultValue: boolean;
|
|
283
289
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
284
290
|
param: string;
|
|
285
291
|
};
|
|
286
|
-
|
|
292
|
+
platform_editor_ai_quickstart_command: {
|
|
287
293
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
288
294
|
defaultValue: boolean;
|
|
289
295
|
productKeys?: import("./types").ProductKeys | undefined;
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare let _overrides: Partial<{
|
|
|
17
17
|
support_table_in_comment: boolean;
|
|
18
18
|
platform_editor_exp_lazy_node_views: boolean;
|
|
19
19
|
platform_renderer_table_sticky_scrollbar: boolean;
|
|
20
|
+
platform_editor_stable_editorview_classname: boolean;
|
|
20
21
|
platform_editor_controls_performance_fixes: boolean;
|
|
21
22
|
platform_editor_prevent_toolbar_layout_shifts: boolean;
|
|
22
23
|
comment_on_bodied_extensions: boolean;
|
|
@@ -48,12 +49,12 @@ export declare let _overrides: Partial<{
|
|
|
48
49
|
platform_editor_stop_width_reflows: boolean;
|
|
49
50
|
platform_editor_core_static_emotion: boolean;
|
|
50
51
|
editor_ai_comment_freegen_rovo: boolean;
|
|
52
|
+
platform_editor_no_cursor_on_edit_page_init: boolean;
|
|
51
53
|
confluence_p2m_style_recalc_and_expand_joint_exp: boolean;
|
|
52
54
|
platform_editor_nodevisibility: boolean;
|
|
53
55
|
platform_editor_breakout_resizing: boolean;
|
|
54
56
|
platform_editor_exp_disable_lnv: boolean;
|
|
55
57
|
platform_editor_ai_quickstart_command: boolean;
|
|
56
|
-
editor_ai_in_editor_streaming: boolean;
|
|
57
58
|
platform_editor_hide_floating_toolbar_in_ssr: boolean;
|
|
58
59
|
platform_editor_smart_card_open_overlay_perf: boolean;
|
|
59
60
|
platform_editor_toolbar_rerender_optimization_exp: boolean;
|
|
@@ -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_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" | "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" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "editor_ai_comment_freegen_rovo" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_nodevisibility" | "platform_editor_breakout_resizing" | "platform_editor_exp_disable_lnv" | "platform_editor_ai_quickstart_command" | "
|
|
48
|
+
var describe: <ExperimentName extends "platform_editor_reduce_noisy_steps_ncs" | "platform_editor_memoized_node_check" | "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" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_stop_width_reflows" | "platform_editor_core_static_emotion" | "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_exp_disable_lnv" | "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_ai_iw_full_page_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;
|
|
@@ -102,6 +102,12 @@ declare namespace eeTest {
|
|
|
102
102
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
103
103
|
param: string;
|
|
104
104
|
};
|
|
105
|
+
platform_editor_stable_editorview_classname: {
|
|
106
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
107
|
+
defaultValue: boolean;
|
|
108
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
109
|
+
param: string;
|
|
110
|
+
};
|
|
105
111
|
platform_editor_controls_performance_fixes: {
|
|
106
112
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
107
113
|
defaultValue: boolean;
|
|
@@ -295,37 +301,37 @@ declare namespace eeTest {
|
|
|
295
301
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
296
302
|
param: string;
|
|
297
303
|
};
|
|
298
|
-
|
|
304
|
+
platform_editor_no_cursor_on_edit_page_init: {
|
|
299
305
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
300
306
|
defaultValue: boolean;
|
|
301
307
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
302
308
|
param: string;
|
|
303
309
|
};
|
|
304
|
-
|
|
310
|
+
confluence_p2m_style_recalc_and_expand_joint_exp: {
|
|
305
311
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
306
312
|
defaultValue: boolean;
|
|
307
313
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
308
314
|
param: string;
|
|
309
315
|
};
|
|
310
|
-
|
|
316
|
+
platform_editor_nodevisibility: {
|
|
311
317
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
312
318
|
defaultValue: boolean;
|
|
313
319
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
314
320
|
param: string;
|
|
315
321
|
};
|
|
316
|
-
|
|
322
|
+
platform_editor_breakout_resizing: {
|
|
317
323
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
318
324
|
defaultValue: boolean;
|
|
319
325
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
320
326
|
param: string;
|
|
321
327
|
};
|
|
322
|
-
|
|
328
|
+
platform_editor_exp_disable_lnv: {
|
|
323
329
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
324
330
|
defaultValue: boolean;
|
|
325
331
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
326
332
|
param: string;
|
|
327
333
|
};
|
|
328
|
-
|
|
334
|
+
platform_editor_ai_quickstart_command: {
|
|
329
335
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
330
336
|
defaultValue: boolean;
|
|
331
337
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
@@ -60,6 +60,12 @@ export declare const editorExperimentsConfig: {
|
|
|
60
60
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
61
61
|
param: string;
|
|
62
62
|
};
|
|
63
|
+
platform_editor_stable_editorview_classname: {
|
|
64
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
65
|
+
defaultValue: boolean;
|
|
66
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
67
|
+
param: string;
|
|
68
|
+
};
|
|
63
69
|
platform_editor_controls_performance_fixes: {
|
|
64
70
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
65
71
|
defaultValue: boolean;
|
|
@@ -253,37 +259,37 @@ export declare const editorExperimentsConfig: {
|
|
|
253
259
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
254
260
|
param: string;
|
|
255
261
|
};
|
|
256
|
-
|
|
262
|
+
platform_editor_no_cursor_on_edit_page_init: {
|
|
257
263
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
258
264
|
defaultValue: boolean;
|
|
259
265
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
260
266
|
param: string;
|
|
261
267
|
};
|
|
262
|
-
|
|
268
|
+
confluence_p2m_style_recalc_and_expand_joint_exp: {
|
|
263
269
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
264
270
|
defaultValue: boolean;
|
|
265
271
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
266
272
|
param: string;
|
|
267
273
|
};
|
|
268
|
-
|
|
274
|
+
platform_editor_nodevisibility: {
|
|
269
275
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
270
276
|
defaultValue: boolean;
|
|
271
277
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
272
278
|
param: string;
|
|
273
279
|
};
|
|
274
|
-
|
|
280
|
+
platform_editor_breakout_resizing: {
|
|
275
281
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
276
282
|
defaultValue: boolean;
|
|
277
283
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
278
284
|
param: string;
|
|
279
285
|
};
|
|
280
|
-
|
|
286
|
+
platform_editor_exp_disable_lnv: {
|
|
281
287
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
282
288
|
defaultValue: boolean;
|
|
283
289
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
284
290
|
param: string;
|
|
285
291
|
};
|
|
286
|
-
|
|
292
|
+
platform_editor_ai_quickstart_command: {
|
|
287
293
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
288
294
|
defaultValue: boolean;
|
|
289
295
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
@@ -17,6 +17,7 @@ export declare let _overrides: Partial<{
|
|
|
17
17
|
support_table_in_comment: boolean;
|
|
18
18
|
platform_editor_exp_lazy_node_views: boolean;
|
|
19
19
|
platform_renderer_table_sticky_scrollbar: boolean;
|
|
20
|
+
platform_editor_stable_editorview_classname: boolean;
|
|
20
21
|
platform_editor_controls_performance_fixes: boolean;
|
|
21
22
|
platform_editor_prevent_toolbar_layout_shifts: boolean;
|
|
22
23
|
comment_on_bodied_extensions: boolean;
|
|
@@ -48,12 +49,12 @@ export declare let _overrides: Partial<{
|
|
|
48
49
|
platform_editor_stop_width_reflows: boolean;
|
|
49
50
|
platform_editor_core_static_emotion: boolean;
|
|
50
51
|
editor_ai_comment_freegen_rovo: boolean;
|
|
52
|
+
platform_editor_no_cursor_on_edit_page_init: boolean;
|
|
51
53
|
confluence_p2m_style_recalc_and_expand_joint_exp: boolean;
|
|
52
54
|
platform_editor_nodevisibility: boolean;
|
|
53
55
|
platform_editor_breakout_resizing: boolean;
|
|
54
56
|
platform_editor_exp_disable_lnv: boolean;
|
|
55
57
|
platform_editor_ai_quickstart_command: boolean;
|
|
56
|
-
editor_ai_in_editor_streaming: boolean;
|
|
57
58
|
platform_editor_hide_floating_toolbar_in_ssr: boolean;
|
|
58
59
|
platform_editor_smart_card_open_overlay_perf: boolean;
|
|
59
60
|
platform_editor_toolbar_rerender_optimization_exp: boolean;
|
package/package.json
CHANGED