@atlaskit/tmp-editor-statsig 9.3.0 → 9.5.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 9.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#184968](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/184968)
8
+ [`a52007f9eed36`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a52007f9eed36) -
9
+ Introduce a performance experiment to avoid running media floating toolbar code unless selected.
10
+
11
+ ## 9.4.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#184563](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/184563)
16
+ [`d5b7a19b7e9ad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d5b7a19b7e9ad) -
17
+ Adds UFO holds to the table component on load
18
+
3
19
  ## 9.3.0
4
20
 
5
21
  ### Minor Changes
@@ -92,23 +92,22 @@ function eeTest(experimentName, cases, otherExperiments) {
92
92
  /**
93
93
  * eeTest.describe() Wrapper utility for describe() that runs a test with a editor experiment overides.
94
94
  *
95
- * @example Single experiment
95
+ * @example
96
96
  * ```ts
97
- * eeTest.describe('Description of test "suite" containing nested suites and tests.', { 'example-boolean': true }, () => {
98
- * it('should do the thing', () => {
99
- * expect(editorExperiment('example-boolean', true)).toBe(true);
100
- * });
101
- * });
97
+ * eeTest.describe('exp-name', 'description of test').variant(true, () => {
98
+ * it('should do the thing', () => {
99
+ * expect(editorExperiment('example-boolean', true)).toBe(true);
100
+ * });
101
+ * })
102
102
  * ```
103
103
  *
104
- *
105
- * @example Multiple experiment
104
+ * @example
106
105
  * ```ts
107
- * eeTest.describe('Description of test "suite" containing nested suites and tests.', { 'example-boolean': true, 'example-multivariate': 'three' }, () => {
108
- * it('should do the thing', () => {
109
- * expect(editorExperiment('example-boolean', true)).toBe(true);
110
- * });
111
- * });
106
+ * eeTest.describe('exp-name', 'description of test').each(() => {
107
+ * it('should do the thing', () => {
108
+ * expect(editorExperiment('example-boolean', true)).toBe(true);
109
+ * });
110
+ * })
112
111
  * ```
113
112
  *
114
113
  * API based on next gen ffTest API
@@ -287,6 +287,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
287
287
  param: 'isEnabled',
288
288
  defaultValue: false
289
289
  }),
290
+ // Added 2025-07-14
291
+ platform_editor_media_floating_toolbar_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
292
+ productKeys: {
293
+ confluence: 'platform_editor_media_floating_toolbar_early_exit'
294
+ },
295
+ param: 'isEnabled',
296
+ defaultValue: false
297
+ }),
290
298
  // Added 2025-04-23
291
299
  platform_renderer_fix_analytics_memo_callback: (0, _experimentBuilders.createBooleanExperiment)({
292
300
  productKeys: {
@@ -441,6 +449,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
441
449
  values: ['control', 'test_blank', 'test_diagram'],
442
450
  defaultValue: 'control'
443
451
  }),
452
+ // added out of order to avoid known conflict that will occur otherwise
453
+ // Added 2025-07-11
454
+ cc_editor_ufo_hold_table_till_resize_complete: (0, _experimentBuilders.createBooleanExperiment)({
455
+ productKeys: {
456
+ confluence: 'cc_editor_ufo_hold_table_till_resize_complete'
457
+ },
458
+ param: 'isEnabled',
459
+ defaultValue: false
460
+ }),
444
461
  // Added 2025-07-07
445
462
  platform_editor_toggle_expand_on_match_found: (0, _experimentBuilders.createBooleanExperiment)({
446
463
  productKeys: {
@@ -448,5 +465,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
448
465
  },
449
466
  param: 'isEnabled',
450
467
  defaultValue: false
468
+ }),
469
+ // Added 2025-07-011
470
+ cc_editor_interactions_trigger_traceufointeraction: (0, _experimentBuilders.createMultivariateExperiment)({
471
+ productKeys: {
472
+ confluence: 'cc_editor_interactions_trigger_traceufointeraction'
473
+ },
474
+ param: 'cohort',
475
+ values: ['control', 'all_events', 'only_mousedown_event'],
476
+ defaultValue: 'control'
451
477
  })
452
478
  };
@@ -73,23 +73,22 @@ function eeTest(experimentName, cases, otherExperiments) {
73
73
  /**
74
74
  * eeTest.describe() Wrapper utility for describe() that runs a test with a editor experiment overides.
75
75
  *
76
- * @example Single experiment
76
+ * @example
77
77
  * ```ts
78
- * eeTest.describe('Description of test "suite" containing nested suites and tests.', { 'example-boolean': true }, () => {
79
- * it('should do the thing', () => {
80
- * expect(editorExperiment('example-boolean', true)).toBe(true);
81
- * });
82
- * });
78
+ * eeTest.describe('exp-name', 'description of test').variant(true, () => {
79
+ * it('should do the thing', () => {
80
+ * expect(editorExperiment('example-boolean', true)).toBe(true);
81
+ * });
82
+ * })
83
83
  * ```
84
84
  *
85
- *
86
- * @example Multiple experiment
85
+ * @example
87
86
  * ```ts
88
- * eeTest.describe('Description of test "suite" containing nested suites and tests.', { 'example-boolean': true, 'example-multivariate': 'three' }, () => {
89
- * it('should do the thing', () => {
90
- * expect(editorExperiment('example-boolean', true)).toBe(true);
91
- * });
92
- * });
87
+ * eeTest.describe('exp-name', 'description of test').each(() => {
88
+ * it('should do the thing', () => {
89
+ * expect(editorExperiment('example-boolean', true)).toBe(true);
90
+ * });
91
+ * })
93
92
  * ```
94
93
  *
95
94
  * API based on next gen ffTest API
@@ -281,6 +281,14 @@ export const editorExperimentsConfig = {
281
281
  param: 'isEnabled',
282
282
  defaultValue: false
283
283
  }),
284
+ // Added 2025-07-14
285
+ platform_editor_media_floating_toolbar_early_exit: createBooleanExperiment({
286
+ productKeys: {
287
+ confluence: 'platform_editor_media_floating_toolbar_early_exit'
288
+ },
289
+ param: 'isEnabled',
290
+ defaultValue: false
291
+ }),
284
292
  // Added 2025-04-23
285
293
  platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
286
294
  productKeys: {
@@ -435,6 +443,15 @@ export const editorExperimentsConfig = {
435
443
  values: ['control', 'test_blank', 'test_diagram'],
436
444
  defaultValue: 'control'
437
445
  }),
446
+ // added out of order to avoid known conflict that will occur otherwise
447
+ // Added 2025-07-11
448
+ cc_editor_ufo_hold_table_till_resize_complete: createBooleanExperiment({
449
+ productKeys: {
450
+ confluence: 'cc_editor_ufo_hold_table_till_resize_complete'
451
+ },
452
+ param: 'isEnabled',
453
+ defaultValue: false
454
+ }),
438
455
  // Added 2025-07-07
439
456
  platform_editor_toggle_expand_on_match_found: createBooleanExperiment({
440
457
  productKeys: {
@@ -442,5 +459,14 @@ export const editorExperimentsConfig = {
442
459
  },
443
460
  param: 'isEnabled',
444
461
  defaultValue: false
462
+ }),
463
+ // Added 2025-07-011
464
+ cc_editor_interactions_trigger_traceufointeraction: createMultivariateExperiment({
465
+ productKeys: {
466
+ confluence: 'cc_editor_interactions_trigger_traceufointeraction'
467
+ },
468
+ param: 'cohort',
469
+ values: ['control', 'all_events', 'only_mousedown_event'],
470
+ defaultValue: 'control'
445
471
  })
446
472
  };
@@ -89,23 +89,22 @@ function eeTest(experimentName, cases, otherExperiments) {
89
89
  /**
90
90
  * eeTest.describe() Wrapper utility for describe() that runs a test with a editor experiment overides.
91
91
  *
92
- * @example Single experiment
92
+ * @example
93
93
  * ```ts
94
- * eeTest.describe('Description of test "suite" containing nested suites and tests.', { 'example-boolean': true }, () => {
95
- * it('should do the thing', () => {
96
- * expect(editorExperiment('example-boolean', true)).toBe(true);
97
- * });
98
- * });
94
+ * eeTest.describe('exp-name', 'description of test').variant(true, () => {
95
+ * it('should do the thing', () => {
96
+ * expect(editorExperiment('example-boolean', true)).toBe(true);
97
+ * });
98
+ * })
99
99
  * ```
100
100
  *
101
- *
102
- * @example Multiple experiment
101
+ * @example
103
102
  * ```ts
104
- * eeTest.describe('Description of test "suite" containing nested suites and tests.', { 'example-boolean': true, 'example-multivariate': 'three' }, () => {
105
- * it('should do the thing', () => {
106
- * expect(editorExperiment('example-boolean', true)).toBe(true);
107
- * });
108
- * });
103
+ * eeTest.describe('exp-name', 'description of test').each(() => {
104
+ * it('should do the thing', () => {
105
+ * expect(editorExperiment('example-boolean', true)).toBe(true);
106
+ * });
107
+ * })
109
108
  * ```
110
109
  *
111
110
  * API based on next gen ffTest API
@@ -281,6 +281,14 @@ export var editorExperimentsConfig = {
281
281
  param: 'isEnabled',
282
282
  defaultValue: false
283
283
  }),
284
+ // Added 2025-07-14
285
+ platform_editor_media_floating_toolbar_early_exit: createBooleanExperiment({
286
+ productKeys: {
287
+ confluence: 'platform_editor_media_floating_toolbar_early_exit'
288
+ },
289
+ param: 'isEnabled',
290
+ defaultValue: false
291
+ }),
284
292
  // Added 2025-04-23
285
293
  platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
286
294
  productKeys: {
@@ -435,6 +443,15 @@ export var editorExperimentsConfig = {
435
443
  values: ['control', 'test_blank', 'test_diagram'],
436
444
  defaultValue: 'control'
437
445
  }),
446
+ // added out of order to avoid known conflict that will occur otherwise
447
+ // Added 2025-07-11
448
+ cc_editor_ufo_hold_table_till_resize_complete: createBooleanExperiment({
449
+ productKeys: {
450
+ confluence: 'cc_editor_ufo_hold_table_till_resize_complete'
451
+ },
452
+ param: 'isEnabled',
453
+ defaultValue: false
454
+ }),
438
455
  // Added 2025-07-07
439
456
  platform_editor_toggle_expand_on_match_found: createBooleanExperiment({
440
457
  productKeys: {
@@ -442,5 +459,14 @@ export var editorExperimentsConfig = {
442
459
  },
443
460
  param: 'isEnabled',
444
461
  defaultValue: false
462
+ }),
463
+ // Added 2025-07-011
464
+ cc_editor_interactions_trigger_traceufointeraction: createMultivariateExperiment({
465
+ productKeys: {
466
+ confluence: 'cc_editor_interactions_trigger_traceufointeraction'
467
+ },
468
+ param: 'cohort',
469
+ values: ['control', 'all_events', 'only_mousedown_event'],
470
+ defaultValue: 'control'
445
471
  })
446
472
  };
@@ -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_renderer_fix_analytics_memo_callback" | "editor_ai_converge_free_gen_on_rovo" | "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_controls_toolbar_pinning_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" | "platform_editor_toggle_expand_on_match_found">(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_media_floating_toolbar_early_exit" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_converge_free_gen_on_rovo" | "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_controls_toolbar_pinning_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_toggle_expand_on_match_found" | "cc_editor_interactions_trigger_traceufointeraction">(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_media_floating_toolbar_early_exit: {
255
+ typeGuard: typeof import("./type-guards").isBoolean;
256
+ defaultValue: boolean;
257
+ productKeys?: import("./types").ProductKeys | undefined;
258
+ param: string;
259
+ };
254
260
  platform_renderer_fix_analytics_memo_callback: {
255
261
  typeGuard: typeof import("./type-guards").isBoolean;
256
262
  defaultValue: boolean;
@@ -367,12 +373,25 @@ declare namespace eeTest {
367
373
  productKeys?: import("./types").ProductKeys | undefined;
368
374
  param: string;
369
375
  };
376
+ cc_editor_ufo_hold_table_till_resize_complete: {
377
+ typeGuard: typeof import("./type-guards").isBoolean;
378
+ defaultValue: boolean;
379
+ productKeys?: import("./types").ProductKeys | undefined;
380
+ param: string;
381
+ };
370
382
  platform_editor_toggle_expand_on_match_found: {
371
383
  typeGuard: typeof import("./type-guards").isBoolean;
372
384
  defaultValue: boolean;
373
385
  productKeys?: import("./types").ProductKeys | undefined;
374
386
  param: string;
375
387
  };
388
+ cc_editor_interactions_trigger_traceufointeraction: {
389
+ values: ("control" | "all_events" | "only_mousedown_event")[];
390
+ typeGuard: (value: unknown) => value is "control" | "all_events" | "only_mousedown_event";
391
+ defaultValue: "control" | "all_events" | "only_mousedown_event";
392
+ productKeys?: import("./types").ProductKeys | undefined;
393
+ param: string;
394
+ };
376
395
  }[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
377
396
  each: (describeBody: jest.EmptyFunction) => void;
378
397
  };
@@ -209,6 +209,12 @@ export declare const editorExperimentsConfig: {
209
209
  productKeys?: import("./types").ProductKeys | undefined;
210
210
  param: string;
211
211
  };
212
+ platform_editor_media_floating_toolbar_early_exit: {
213
+ typeGuard: typeof import("./type-guards").isBoolean;
214
+ defaultValue: boolean;
215
+ productKeys?: import("./types").ProductKeys | undefined;
216
+ param: string;
217
+ };
212
218
  platform_renderer_fix_analytics_memo_callback: {
213
219
  typeGuard: typeof import("./type-guards").isBoolean;
214
220
  defaultValue: boolean;
@@ -325,10 +331,23 @@ export declare const editorExperimentsConfig: {
325
331
  productKeys?: import("./types").ProductKeys | undefined;
326
332
  param: string;
327
333
  };
334
+ cc_editor_ufo_hold_table_till_resize_complete: {
335
+ typeGuard: typeof import("./type-guards").isBoolean;
336
+ defaultValue: boolean;
337
+ productKeys?: import("./types").ProductKeys | undefined;
338
+ param: string;
339
+ };
328
340
  platform_editor_toggle_expand_on_match_found: {
329
341
  typeGuard: typeof import("./type-guards").isBoolean;
330
342
  defaultValue: boolean;
331
343
  productKeys?: import("./types").ProductKeys | undefined;
332
344
  param: string;
333
345
  };
346
+ cc_editor_interactions_trigger_traceufointeraction: {
347
+ values: ("control" | "all_events" | "only_mousedown_event")[];
348
+ typeGuard: (value: unknown) => value is "control" | "all_events" | "only_mousedown_event";
349
+ defaultValue: "control" | "all_events" | "only_mousedown_event";
350
+ productKeys?: import("./types").ProductKeys | undefined;
351
+ param: string;
352
+ };
334
353
  };
@@ -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_media_floating_toolbar_early_exit: boolean;
44
45
  platform_renderer_fix_analytics_memo_callback: boolean;
45
46
  editor_ai_converge_free_gen_on_rovo: boolean;
46
47
  platform_editor_stop_width_reflows: boolean;
@@ -60,7 +61,9 @@ export declare let _overrides: Partial<{
60
61
  confluence_whiteboards_quick_insert_aa: "control" | "test_blank" | "test_diagram";
61
62
  platform_editor_find_and_replace_improvements: boolean;
62
63
  confluence_whiteboards_quick_insert: "control" | "test_blank" | "test_diagram";
64
+ cc_editor_ufo_hold_table_till_resize_complete: boolean;
63
65
  platform_editor_toggle_expand_on_match_found: boolean;
66
+ cc_editor_interactions_trigger_traceufointeraction: "control" | "all_events" | "only_mousedown_event";
64
67
  }>;
65
68
  export declare let _paramOverrides: EditorExperimentParamOverrides;
66
69
  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_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_renderer_fix_analytics_memo_callback" | "editor_ai_converge_free_gen_on_rovo" | "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_controls_toolbar_pinning_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" | "platform_editor_toggle_expand_on_match_found">(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_media_floating_toolbar_early_exit" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_converge_free_gen_on_rovo" | "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_controls_toolbar_pinning_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_toggle_expand_on_match_found" | "cc_editor_interactions_trigger_traceufointeraction">(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_media_floating_toolbar_early_exit: {
255
+ typeGuard: typeof import("./type-guards").isBoolean;
256
+ defaultValue: boolean;
257
+ productKeys?: import("./types").ProductKeys | undefined;
258
+ param: string;
259
+ };
254
260
  platform_renderer_fix_analytics_memo_callback: {
255
261
  typeGuard: typeof import("./type-guards").isBoolean;
256
262
  defaultValue: boolean;
@@ -367,12 +373,25 @@ declare namespace eeTest {
367
373
  productKeys?: import("./types").ProductKeys | undefined;
368
374
  param: string;
369
375
  };
376
+ cc_editor_ufo_hold_table_till_resize_complete: {
377
+ typeGuard: typeof import("./type-guards").isBoolean;
378
+ defaultValue: boolean;
379
+ productKeys?: import("./types").ProductKeys | undefined;
380
+ param: string;
381
+ };
370
382
  platform_editor_toggle_expand_on_match_found: {
371
383
  typeGuard: typeof import("./type-guards").isBoolean;
372
384
  defaultValue: boolean;
373
385
  productKeys?: import("./types").ProductKeys | undefined;
374
386
  param: string;
375
387
  };
388
+ cc_editor_interactions_trigger_traceufointeraction: {
389
+ values: ("control" | "all_events" | "only_mousedown_event")[];
390
+ typeGuard: (value: unknown) => value is "control" | "all_events" | "only_mousedown_event";
391
+ defaultValue: "control" | "all_events" | "only_mousedown_event";
392
+ productKeys?: import("./types").ProductKeys | undefined;
393
+ param: string;
394
+ };
376
395
  }[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
377
396
  each: (describeBody: jest.EmptyFunction) => void;
378
397
  };
@@ -209,6 +209,12 @@ export declare const editorExperimentsConfig: {
209
209
  productKeys?: import("./types").ProductKeys | undefined;
210
210
  param: string;
211
211
  };
212
+ platform_editor_media_floating_toolbar_early_exit: {
213
+ typeGuard: typeof import("./type-guards").isBoolean;
214
+ defaultValue: boolean;
215
+ productKeys?: import("./types").ProductKeys | undefined;
216
+ param: string;
217
+ };
212
218
  platform_renderer_fix_analytics_memo_callback: {
213
219
  typeGuard: typeof import("./type-guards").isBoolean;
214
220
  defaultValue: boolean;
@@ -325,10 +331,23 @@ export declare const editorExperimentsConfig: {
325
331
  productKeys?: import("./types").ProductKeys | undefined;
326
332
  param: string;
327
333
  };
334
+ cc_editor_ufo_hold_table_till_resize_complete: {
335
+ typeGuard: typeof import("./type-guards").isBoolean;
336
+ defaultValue: boolean;
337
+ productKeys?: import("./types").ProductKeys | undefined;
338
+ param: string;
339
+ };
328
340
  platform_editor_toggle_expand_on_match_found: {
329
341
  typeGuard: typeof import("./type-guards").isBoolean;
330
342
  defaultValue: boolean;
331
343
  productKeys?: import("./types").ProductKeys | undefined;
332
344
  param: string;
333
345
  };
346
+ cc_editor_interactions_trigger_traceufointeraction: {
347
+ values: ("control" | "all_events" | "only_mousedown_event")[];
348
+ typeGuard: (value: unknown) => value is "control" | "all_events" | "only_mousedown_event";
349
+ defaultValue: "control" | "all_events" | "only_mousedown_event";
350
+ productKeys?: import("./types").ProductKeys | undefined;
351
+ param: string;
352
+ };
334
353
  };
@@ -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_media_floating_toolbar_early_exit: boolean;
44
45
  platform_renderer_fix_analytics_memo_callback: boolean;
45
46
  editor_ai_converge_free_gen_on_rovo: boolean;
46
47
  platform_editor_stop_width_reflows: boolean;
@@ -60,7 +61,9 @@ export declare let _overrides: Partial<{
60
61
  confluence_whiteboards_quick_insert_aa: "control" | "test_blank" | "test_diagram";
61
62
  platform_editor_find_and_replace_improvements: boolean;
62
63
  confluence_whiteboards_quick_insert: "control" | "test_blank" | "test_diagram";
64
+ cc_editor_ufo_hold_table_till_resize_complete: boolean;
63
65
  platform_editor_toggle_expand_on_match_found: boolean;
66
+ cc_editor_interactions_trigger_traceufointeraction: "control" | "all_events" | "only_mousedown_event";
64
67
  }>;
65
68
  export declare let _paramOverrides: EditorExperimentParamOverrides;
66
69
  export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "9.3.0",
3
+ "version": "9.5.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",