@atlaskit/tmp-editor-statsig 9.23.0 → 9.25.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,29 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 9.25.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#196697](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/196697)
8
+ [`18b5fbc52627b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/18b5fbc52627b) -
9
+ [ux] Adds block menu plugin for full-page preset and shows the menu when drag handle is clicked.
10
+
11
+ ### Patch Changes
12
+
13
+ - [#197019](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/197019)
14
+ [`a0cb47e879f31`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a0cb47e879f31) -
15
+ ENGHEALTH-32239 Only group as radio button if not explicitly set to false behind FG
16
+ - [`a0e6cdeb5a90c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a0e6cdeb5a90c) -
17
+ [ux] New experiment to unify the handling of panel insertion to more consistent behaviour.
18
+
19
+ ## 9.24.0
20
+
21
+ ### Minor Changes
22
+
23
+ - [#196046](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/196046)
24
+ [`b0dad85aa7c35`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b0dad85aa7c35) -
25
+ [ux] [ED-27974] Allow hyperlink plugin to change text to link on blur
26
+
3
27
  ## 9.23.0
4
28
 
5
29
  ### Minor Changes
@@ -521,6 +521,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
521
521
  param: 'isEnabled',
522
522
  defaultValue: false
523
523
  }),
524
+ // Added 2025--8-05
525
+ platform_editor_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
526
+ productKeys: {
527
+ confluence: 'platform_editor_block_menu'
528
+ },
529
+ param: 'isEnabled',
530
+ defaultValue: false
531
+ }),
524
532
  // Added 2025-07-23
525
533
  platform_editor_renderer_breakout_fix: (0, _experimentBuilders.createBooleanExperiment)({
526
534
  productKeys: {
@@ -580,6 +588,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
580
588
  param: 'isEnabled',
581
589
  defaultValue: false
582
590
  }),
591
+ // Added 2025-07-28
592
+ platform_editor_create_link_on_blur: (0, _experimentBuilders.createBooleanExperiment)({
593
+ productKeys: {
594
+ jira: 'platform_editor_create_link_on_blur'
595
+ },
596
+ param: 'isEnabled',
597
+ defaultValue: false
598
+ }),
583
599
  // Added 2025-07-29
584
600
  cc_comments_include_path_for_renderer_emojis: (0, _experimentBuilders.createBooleanExperiment)({
585
601
  productKeys: {
@@ -604,6 +620,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
604
620
  param: 'isEnabled',
605
621
  defaultValue: false
606
622
  }),
623
+ // Added 20205-07-28
624
+ platform_editor_fix_quick_insert_consistency_exp: (0, _experimentBuilders.createBooleanExperiment)({
625
+ productKeys: {
626
+ confluence: 'platform_editor_fix_quick_insert_consistency_exp'
627
+ },
628
+ param: 'isEnabled',
629
+ defaultValue: false
630
+ }),
607
631
  // Added 2025-07-31
608
632
  platform_editor_fix_a11y_aria_posinset_0: (0, _experimentBuilders.createBooleanExperiment)({
609
633
  productKeys: {
@@ -611,5 +635,21 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
611
635
  },
612
636
  param: 'isEnabled',
613
637
  defaultValue: false
638
+ }),
639
+ // Added 2025-08-05
640
+ platform_editor_tables_scaling_css: (0, _experimentBuilders.createBooleanExperiment)({
641
+ productKeys: {
642
+ confluence: 'platform_editor_tables_scaling_css'
643
+ },
644
+ param: 'isEnabled',
645
+ defaultValue: false
646
+ }),
647
+ // Added 2025-08-05
648
+ platform_editor_august_a11y: (0, _experimentBuilders.createBooleanExperiment)({
649
+ productKeys: {
650
+ confluence: 'platform_editor_august_a11y'
651
+ },
652
+ param: 'isEnabled',
653
+ defaultValue: false
614
654
  })
615
655
  };
@@ -515,6 +515,14 @@ export const editorExperimentsConfig = {
515
515
  param: 'isEnabled',
516
516
  defaultValue: false
517
517
  }),
518
+ // Added 2025--8-05
519
+ platform_editor_block_menu: createBooleanExperiment({
520
+ productKeys: {
521
+ confluence: 'platform_editor_block_menu'
522
+ },
523
+ param: 'isEnabled',
524
+ defaultValue: false
525
+ }),
518
526
  // Added 2025-07-23
519
527
  platform_editor_renderer_breakout_fix: createBooleanExperiment({
520
528
  productKeys: {
@@ -574,6 +582,14 @@ export const editorExperimentsConfig = {
574
582
  param: 'isEnabled',
575
583
  defaultValue: false
576
584
  }),
585
+ // Added 2025-07-28
586
+ platform_editor_create_link_on_blur: createBooleanExperiment({
587
+ productKeys: {
588
+ jira: 'platform_editor_create_link_on_blur'
589
+ },
590
+ param: 'isEnabled',
591
+ defaultValue: false
592
+ }),
577
593
  // Added 2025-07-29
578
594
  cc_comments_include_path_for_renderer_emojis: createBooleanExperiment({
579
595
  productKeys: {
@@ -598,6 +614,14 @@ export const editorExperimentsConfig = {
598
614
  param: 'isEnabled',
599
615
  defaultValue: false
600
616
  }),
617
+ // Added 20205-07-28
618
+ platform_editor_fix_quick_insert_consistency_exp: createBooleanExperiment({
619
+ productKeys: {
620
+ confluence: 'platform_editor_fix_quick_insert_consistency_exp'
621
+ },
622
+ param: 'isEnabled',
623
+ defaultValue: false
624
+ }),
601
625
  // Added 2025-07-31
602
626
  platform_editor_fix_a11y_aria_posinset_0: createBooleanExperiment({
603
627
  productKeys: {
@@ -605,5 +629,21 @@ export const editorExperimentsConfig = {
605
629
  },
606
630
  param: 'isEnabled',
607
631
  defaultValue: false
632
+ }),
633
+ // Added 2025-08-05
634
+ platform_editor_tables_scaling_css: createBooleanExperiment({
635
+ productKeys: {
636
+ confluence: 'platform_editor_tables_scaling_css'
637
+ },
638
+ param: 'isEnabled',
639
+ defaultValue: false
640
+ }),
641
+ // Added 2025-08-05
642
+ platform_editor_august_a11y: createBooleanExperiment({
643
+ productKeys: {
644
+ confluence: 'platform_editor_august_a11y'
645
+ },
646
+ param: 'isEnabled',
647
+ defaultValue: false
608
648
  })
609
649
  };
@@ -515,6 +515,14 @@ export var editorExperimentsConfig = {
515
515
  param: 'isEnabled',
516
516
  defaultValue: false
517
517
  }),
518
+ // Added 2025--8-05
519
+ platform_editor_block_menu: createBooleanExperiment({
520
+ productKeys: {
521
+ confluence: 'platform_editor_block_menu'
522
+ },
523
+ param: 'isEnabled',
524
+ defaultValue: false
525
+ }),
518
526
  // Added 2025-07-23
519
527
  platform_editor_renderer_breakout_fix: createBooleanExperiment({
520
528
  productKeys: {
@@ -574,6 +582,14 @@ export var editorExperimentsConfig = {
574
582
  param: 'isEnabled',
575
583
  defaultValue: false
576
584
  }),
585
+ // Added 2025-07-28
586
+ platform_editor_create_link_on_blur: createBooleanExperiment({
587
+ productKeys: {
588
+ jira: 'platform_editor_create_link_on_blur'
589
+ },
590
+ param: 'isEnabled',
591
+ defaultValue: false
592
+ }),
577
593
  // Added 2025-07-29
578
594
  cc_comments_include_path_for_renderer_emojis: createBooleanExperiment({
579
595
  productKeys: {
@@ -598,6 +614,14 @@ export var editorExperimentsConfig = {
598
614
  param: 'isEnabled',
599
615
  defaultValue: false
600
616
  }),
617
+ // Added 20205-07-28
618
+ platform_editor_fix_quick_insert_consistency_exp: createBooleanExperiment({
619
+ productKeys: {
620
+ confluence: 'platform_editor_fix_quick_insert_consistency_exp'
621
+ },
622
+ param: 'isEnabled',
623
+ defaultValue: false
624
+ }),
601
625
  // Added 2025-07-31
602
626
  platform_editor_fix_a11y_aria_posinset_0: createBooleanExperiment({
603
627
  productKeys: {
@@ -605,5 +629,21 @@ export var editorExperimentsConfig = {
605
629
  },
606
630
  param: 'isEnabled',
607
631
  defaultValue: false
632
+ }),
633
+ // Added 2025-08-05
634
+ platform_editor_tables_scaling_css: createBooleanExperiment({
635
+ productKeys: {
636
+ confluence: 'platform_editor_tables_scaling_css'
637
+ },
638
+ param: 'isEnabled',
639
+ defaultValue: false
640
+ }),
641
+ // Added 2025-08-05
642
+ platform_editor_august_a11y: createBooleanExperiment({
643
+ productKeys: {
644
+ confluence: 'platform_editor_august_a11y'
645
+ },
646
+ param: 'isEnabled',
647
+ defaultValue: false
608
648
  })
609
649
  };
@@ -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" | "editor_prevent_numbered_column_too_big_jira_1" | "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_controls_block_controls_state_fix" | "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_drag_handle_aria_label" | "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_floating_toolbar_button_aria_label" | "platform_editor_enghealth_table_plugin_lable_rule" | "cc_comments_include_path_for_renderer_emojis" | "platform_editor_breakout_interaction_rerender" | "platform_editor_pasting_nested_table_fix" | "platform_editor_fix_a11y_aria_posinset_0">(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" | "editor_prevent_numbered_column_too_big_jira_1" | "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_controls_block_controls_state_fix" | "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_drag_handle_aria_label" | "platform_editor_toggle_expand_on_match_found" | "platform_editor_smart_card_otp" | "platform_editor_preview_panel_responsiveness" | "platform_editor_block_menu" | "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_floating_toolbar_button_aria_label" | "platform_editor_enghealth_table_plugin_lable_rule" | "platform_editor_create_link_on_blur" | "cc_comments_include_path_for_renderer_emojis" | "platform_editor_breakout_interaction_rerender" | "platform_editor_pasting_nested_table_fix" | "platform_editor_fix_quick_insert_consistency_exp" | "platform_editor_fix_a11y_aria_posinset_0" | "platform_editor_tables_scaling_css" | "platform_editor_august_a11y">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  platform_editor_reduce_noisy_steps_ncs: {
51
51
  typeGuard: typeof import("./type-guards").isBoolean;
@@ -427,6 +427,12 @@ declare namespace eeTest {
427
427
  productKeys?: import("./types").ProductKeys | undefined;
428
428
  param: string;
429
429
  };
430
+ platform_editor_block_menu: {
431
+ typeGuard: typeof import("./type-guards").isBoolean;
432
+ defaultValue: boolean;
433
+ productKeys?: import("./types").ProductKeys | undefined;
434
+ param: string;
435
+ };
430
436
  platform_editor_renderer_breakout_fix: {
431
437
  typeGuard: typeof import("./type-guards").isBoolean;
432
438
  defaultValue: boolean;
@@ -471,6 +477,12 @@ declare namespace eeTest {
471
477
  productKeys?: import("./types").ProductKeys | undefined;
472
478
  param: string;
473
479
  };
480
+ platform_editor_create_link_on_blur: {
481
+ typeGuard: typeof import("./type-guards").isBoolean;
482
+ defaultValue: boolean;
483
+ productKeys?: import("./types").ProductKeys | undefined;
484
+ param: string;
485
+ };
474
486
  cc_comments_include_path_for_renderer_emojis: {
475
487
  typeGuard: typeof import("./type-guards").isBoolean;
476
488
  defaultValue: boolean;
@@ -489,12 +501,30 @@ declare namespace eeTest {
489
501
  productKeys?: import("./types").ProductKeys | undefined;
490
502
  param: string;
491
503
  };
504
+ platform_editor_fix_quick_insert_consistency_exp: {
505
+ typeGuard: typeof import("./type-guards").isBoolean;
506
+ defaultValue: boolean;
507
+ productKeys?: import("./types").ProductKeys | undefined;
508
+ param: string;
509
+ };
492
510
  platform_editor_fix_a11y_aria_posinset_0: {
493
511
  typeGuard: typeof import("./type-guards").isBoolean;
494
512
  defaultValue: boolean;
495
513
  productKeys?: import("./types").ProductKeys | undefined;
496
514
  param: string;
497
515
  };
516
+ platform_editor_tables_scaling_css: {
517
+ typeGuard: typeof import("./type-guards").isBoolean;
518
+ defaultValue: boolean;
519
+ productKeys?: import("./types").ProductKeys | undefined;
520
+ param: string;
521
+ };
522
+ platform_editor_august_a11y: {
523
+ typeGuard: typeof import("./type-guards").isBoolean;
524
+ defaultValue: boolean;
525
+ productKeys?: import("./types").ProductKeys | undefined;
526
+ param: string;
527
+ };
498
528
  }[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
499
529
  each: (describeBody: jest.EmptyFunction) => void;
500
530
  };
@@ -385,6 +385,12 @@ export declare const editorExperimentsConfig: {
385
385
  productKeys?: import("./types").ProductKeys | undefined;
386
386
  param: string;
387
387
  };
388
+ platform_editor_block_menu: {
389
+ typeGuard: typeof import("./type-guards").isBoolean;
390
+ defaultValue: boolean;
391
+ productKeys?: import("./types").ProductKeys | undefined;
392
+ param: string;
393
+ };
388
394
  platform_editor_renderer_breakout_fix: {
389
395
  typeGuard: typeof import("./type-guards").isBoolean;
390
396
  defaultValue: boolean;
@@ -429,6 +435,12 @@ export declare const editorExperimentsConfig: {
429
435
  productKeys?: import("./types").ProductKeys | undefined;
430
436
  param: string;
431
437
  };
438
+ platform_editor_create_link_on_blur: {
439
+ typeGuard: typeof import("./type-guards").isBoolean;
440
+ defaultValue: boolean;
441
+ productKeys?: import("./types").ProductKeys | undefined;
442
+ param: string;
443
+ };
432
444
  cc_comments_include_path_for_renderer_emojis: {
433
445
  typeGuard: typeof import("./type-guards").isBoolean;
434
446
  defaultValue: boolean;
@@ -447,10 +459,28 @@ export declare const editorExperimentsConfig: {
447
459
  productKeys?: import("./types").ProductKeys | undefined;
448
460
  param: string;
449
461
  };
462
+ platform_editor_fix_quick_insert_consistency_exp: {
463
+ typeGuard: typeof import("./type-guards").isBoolean;
464
+ defaultValue: boolean;
465
+ productKeys?: import("./types").ProductKeys | undefined;
466
+ param: string;
467
+ };
450
468
  platform_editor_fix_a11y_aria_posinset_0: {
451
469
  typeGuard: typeof import("./type-guards").isBoolean;
452
470
  defaultValue: boolean;
453
471
  productKeys?: import("./types").ProductKeys | undefined;
454
472
  param: string;
455
473
  };
474
+ platform_editor_tables_scaling_css: {
475
+ typeGuard: typeof import("./type-guards").isBoolean;
476
+ defaultValue: boolean;
477
+ productKeys?: import("./types").ProductKeys | undefined;
478
+ param: string;
479
+ };
480
+ platform_editor_august_a11y: {
481
+ typeGuard: typeof import("./type-guards").isBoolean;
482
+ defaultValue: boolean;
483
+ productKeys?: import("./types").ProductKeys | undefined;
484
+ param: string;
485
+ };
456
486
  };
@@ -70,6 +70,7 @@ export declare let _overrides: Partial<{
70
70
  platform_editor_toggle_expand_on_match_found: boolean;
71
71
  platform_editor_smart_card_otp: boolean;
72
72
  platform_editor_preview_panel_responsiveness: boolean;
73
+ platform_editor_block_menu: boolean;
73
74
  platform_editor_renderer_breakout_fix: boolean;
74
75
  editor_enghealth_hyperlink_toolbar_aria_values: boolean;
75
76
  cc_editor_interactions_trigger_traceufointeraction: "control" | "all_events" | "only_mousedown_event";
@@ -77,10 +78,14 @@ export declare let _overrides: Partial<{
77
78
  platform_editor_toolbar_aifc: boolean;
78
79
  platform_editor_floating_toolbar_button_aria_label: boolean;
79
80
  platform_editor_enghealth_table_plugin_lable_rule: boolean;
81
+ platform_editor_create_link_on_blur: boolean;
80
82
  cc_comments_include_path_for_renderer_emojis: boolean;
81
83
  platform_editor_breakout_interaction_rerender: boolean;
82
84
  platform_editor_pasting_nested_table_fix: boolean;
85
+ platform_editor_fix_quick_insert_consistency_exp: boolean;
83
86
  platform_editor_fix_a11y_aria_posinset_0: boolean;
87
+ platform_editor_tables_scaling_css: boolean;
88
+ platform_editor_august_a11y: boolean;
84
89
  }>;
85
90
  export declare let _paramOverrides: EditorExperimentParamOverrides;
86
91
  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" | "editor_prevent_numbered_column_too_big_jira_1" | "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_controls_block_controls_state_fix" | "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_drag_handle_aria_label" | "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_floating_toolbar_button_aria_label" | "platform_editor_enghealth_table_plugin_lable_rule" | "cc_comments_include_path_for_renderer_emojis" | "platform_editor_breakout_interaction_rerender" | "platform_editor_pasting_nested_table_fix" | "platform_editor_fix_a11y_aria_posinset_0">(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" | "editor_prevent_numbered_column_too_big_jira_1" | "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_controls_block_controls_state_fix" | "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_drag_handle_aria_label" | "platform_editor_toggle_expand_on_match_found" | "platform_editor_smart_card_otp" | "platform_editor_preview_panel_responsiveness" | "platform_editor_block_menu" | "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_floating_toolbar_button_aria_label" | "platform_editor_enghealth_table_plugin_lable_rule" | "platform_editor_create_link_on_blur" | "cc_comments_include_path_for_renderer_emojis" | "platform_editor_breakout_interaction_rerender" | "platform_editor_pasting_nested_table_fix" | "platform_editor_fix_quick_insert_consistency_exp" | "platform_editor_fix_a11y_aria_posinset_0" | "platform_editor_tables_scaling_css" | "platform_editor_august_a11y">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  platform_editor_reduce_noisy_steps_ncs: {
51
51
  typeGuard: typeof import("./type-guards").isBoolean;
@@ -427,6 +427,12 @@ declare namespace eeTest {
427
427
  productKeys?: import("./types").ProductKeys | undefined;
428
428
  param: string;
429
429
  };
430
+ platform_editor_block_menu: {
431
+ typeGuard: typeof import("./type-guards").isBoolean;
432
+ defaultValue: boolean;
433
+ productKeys?: import("./types").ProductKeys | undefined;
434
+ param: string;
435
+ };
430
436
  platform_editor_renderer_breakout_fix: {
431
437
  typeGuard: typeof import("./type-guards").isBoolean;
432
438
  defaultValue: boolean;
@@ -471,6 +477,12 @@ declare namespace eeTest {
471
477
  productKeys?: import("./types").ProductKeys | undefined;
472
478
  param: string;
473
479
  };
480
+ platform_editor_create_link_on_blur: {
481
+ typeGuard: typeof import("./type-guards").isBoolean;
482
+ defaultValue: boolean;
483
+ productKeys?: import("./types").ProductKeys | undefined;
484
+ param: string;
485
+ };
474
486
  cc_comments_include_path_for_renderer_emojis: {
475
487
  typeGuard: typeof import("./type-guards").isBoolean;
476
488
  defaultValue: boolean;
@@ -489,12 +501,30 @@ declare namespace eeTest {
489
501
  productKeys?: import("./types").ProductKeys | undefined;
490
502
  param: string;
491
503
  };
504
+ platform_editor_fix_quick_insert_consistency_exp: {
505
+ typeGuard: typeof import("./type-guards").isBoolean;
506
+ defaultValue: boolean;
507
+ productKeys?: import("./types").ProductKeys | undefined;
508
+ param: string;
509
+ };
492
510
  platform_editor_fix_a11y_aria_posinset_0: {
493
511
  typeGuard: typeof import("./type-guards").isBoolean;
494
512
  defaultValue: boolean;
495
513
  productKeys?: import("./types").ProductKeys | undefined;
496
514
  param: string;
497
515
  };
516
+ platform_editor_tables_scaling_css: {
517
+ typeGuard: typeof import("./type-guards").isBoolean;
518
+ defaultValue: boolean;
519
+ productKeys?: import("./types").ProductKeys | undefined;
520
+ param: string;
521
+ };
522
+ platform_editor_august_a11y: {
523
+ typeGuard: typeof import("./type-guards").isBoolean;
524
+ defaultValue: boolean;
525
+ productKeys?: import("./types").ProductKeys | undefined;
526
+ param: string;
527
+ };
498
528
  }[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
499
529
  each: (describeBody: jest.EmptyFunction) => void;
500
530
  };
@@ -385,6 +385,12 @@ export declare const editorExperimentsConfig: {
385
385
  productKeys?: import("./types").ProductKeys | undefined;
386
386
  param: string;
387
387
  };
388
+ platform_editor_block_menu: {
389
+ typeGuard: typeof import("./type-guards").isBoolean;
390
+ defaultValue: boolean;
391
+ productKeys?: import("./types").ProductKeys | undefined;
392
+ param: string;
393
+ };
388
394
  platform_editor_renderer_breakout_fix: {
389
395
  typeGuard: typeof import("./type-guards").isBoolean;
390
396
  defaultValue: boolean;
@@ -429,6 +435,12 @@ export declare const editorExperimentsConfig: {
429
435
  productKeys?: import("./types").ProductKeys | undefined;
430
436
  param: string;
431
437
  };
438
+ platform_editor_create_link_on_blur: {
439
+ typeGuard: typeof import("./type-guards").isBoolean;
440
+ defaultValue: boolean;
441
+ productKeys?: import("./types").ProductKeys | undefined;
442
+ param: string;
443
+ };
432
444
  cc_comments_include_path_for_renderer_emojis: {
433
445
  typeGuard: typeof import("./type-guards").isBoolean;
434
446
  defaultValue: boolean;
@@ -447,10 +459,28 @@ export declare const editorExperimentsConfig: {
447
459
  productKeys?: import("./types").ProductKeys | undefined;
448
460
  param: string;
449
461
  };
462
+ platform_editor_fix_quick_insert_consistency_exp: {
463
+ typeGuard: typeof import("./type-guards").isBoolean;
464
+ defaultValue: boolean;
465
+ productKeys?: import("./types").ProductKeys | undefined;
466
+ param: string;
467
+ };
450
468
  platform_editor_fix_a11y_aria_posinset_0: {
451
469
  typeGuard: typeof import("./type-guards").isBoolean;
452
470
  defaultValue: boolean;
453
471
  productKeys?: import("./types").ProductKeys | undefined;
454
472
  param: string;
455
473
  };
474
+ platform_editor_tables_scaling_css: {
475
+ typeGuard: typeof import("./type-guards").isBoolean;
476
+ defaultValue: boolean;
477
+ productKeys?: import("./types").ProductKeys | undefined;
478
+ param: string;
479
+ };
480
+ platform_editor_august_a11y: {
481
+ typeGuard: typeof import("./type-guards").isBoolean;
482
+ defaultValue: boolean;
483
+ productKeys?: import("./types").ProductKeys | undefined;
484
+ param: string;
485
+ };
456
486
  };
@@ -70,6 +70,7 @@ export declare let _overrides: Partial<{
70
70
  platform_editor_toggle_expand_on_match_found: boolean;
71
71
  platform_editor_smart_card_otp: boolean;
72
72
  platform_editor_preview_panel_responsiveness: boolean;
73
+ platform_editor_block_menu: boolean;
73
74
  platform_editor_renderer_breakout_fix: boolean;
74
75
  editor_enghealth_hyperlink_toolbar_aria_values: boolean;
75
76
  cc_editor_interactions_trigger_traceufointeraction: "control" | "all_events" | "only_mousedown_event";
@@ -77,10 +78,14 @@ export declare let _overrides: Partial<{
77
78
  platform_editor_toolbar_aifc: boolean;
78
79
  platform_editor_floating_toolbar_button_aria_label: boolean;
79
80
  platform_editor_enghealth_table_plugin_lable_rule: boolean;
81
+ platform_editor_create_link_on_blur: boolean;
80
82
  cc_comments_include_path_for_renderer_emojis: boolean;
81
83
  platform_editor_breakout_interaction_rerender: boolean;
82
84
  platform_editor_pasting_nested_table_fix: boolean;
85
+ platform_editor_fix_quick_insert_consistency_exp: boolean;
83
86
  platform_editor_fix_a11y_aria_posinset_0: boolean;
87
+ platform_editor_tables_scaling_css: boolean;
88
+ platform_editor_august_a11y: boolean;
84
89
  }>;
85
90
  export declare let _paramOverrides: EditorExperimentParamOverrides;
86
91
  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.23.0",
3
+ "version": "9.25.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",
@@ -45,8 +45,5 @@
45
45
  },
46
46
  "peerDependencies": {
47
47
  "react": "^18.2.0"
48
- },
49
- "devDependencies": {
50
- "typescript": "~5.4.2"
51
48
  }
52
49
  }