@atlaskit/tmp-editor-statsig 12.12.0 → 12.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 12.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`345a4e1939d12`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/345a4e1939d12) -
8
+ [ux] [ED-28733] Add responsiveness support for selection toolbar
9
+ - [`68424716235d0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/68424716235d0) -
10
+ [ux] EDITOR-1156 Allow checkbox in blockTaskItem node to be selected with keyboard arrows
11
+
12
+ ## 12.13.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`52e588636f4d0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/52e588636f4d0) -
17
+ Add new 'changeColor' Editor Command to editor-plugin-text-color, add new keys for clear color
18
+ menu item, add new clear color menu item, add new platform_editor_toolbar_aifc_patch_4 experiment
19
+ - [`599faf4ddf537`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/599faf4ddf537) -
20
+ [ED-29230] Fixes the VC offender div.layout-section-container from unnecessarily mutating the DOM
21
+ by returning null instead of a div
22
+
3
23
  ## 12.12.0
4
24
 
5
25
  ### Minor Changes
@@ -618,6 +618,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
618
618
  param: 'isEnabled',
619
619
  defaultValue: false
620
620
  }),
621
+ //Added 2025-09-09
622
+ platform_editor_toolbar_aifc_patch_4: (0, _experimentBuilders.createBooleanExperiment)({
623
+ productKeys: {
624
+ jira: 'platform_editor_toolbar_aifc_patch_4',
625
+ confluence: 'platform_editor_toolbar_aifc_patch_4'
626
+ },
627
+ param: 'isEnabled',
628
+ defaultValue: false
629
+ }),
621
630
  //Added 2025-08-13
622
631
  platform_editor_ai_aifc: (0, _experimentBuilders.createBooleanExperiment)({
623
632
  productKeys: {
@@ -717,6 +726,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
717
726
  param: 'isEnabled',
718
727
  defaultValue: false
719
728
  }),
729
+ // Added 2025-09-08
730
+ platform_editor_blocktaskitem_patch_1: (0, _experimentBuilders.createBooleanExperiment)({
731
+ productKeys: {
732
+ confluence: 'platform_editor_blocktaskitem_patch_1'
733
+ },
734
+ param: 'isEnabled',
735
+ defaultValue: false
736
+ }),
720
737
  // Added 2025-08-06
721
738
  cc_editor_limited_mode: (0, _experimentBuilders.createBooleanExperiment)({
722
739
  productKeys: {
@@ -883,6 +900,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
883
900
  param: 'isEnabled',
884
901
  defaultValue: false
885
902
  }),
903
+ // Added 2025-09-05
904
+ platform_editor_aifc_selection_toolbar_responsive: (0, _experimentBuilders.createBooleanExperiment)({
905
+ productKeys: {
906
+ confluence: 'platform_editor_aifc_selection_toolbar_responsive'
907
+ },
908
+ param: 'isEnabled',
909
+ defaultValue: false
910
+ }),
886
911
  // Added 03-09-2025
887
912
  cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
888
913
  productKeys: {
@@ -891,5 +916,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
891
916
  },
892
917
  param: 'isEnabled',
893
918
  defaultValue: false
919
+ }),
920
+ // Added 2025-09-09
921
+ platform_editor_layout_node_view_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
922
+ productKeys: {
923
+ confluence: 'platform_editor_layout_node_view_early_exit'
924
+ },
925
+ param: 'isEnabled',
926
+ defaultValue: false
894
927
  })
895
928
  };
@@ -612,6 +612,15 @@ export const editorExperimentsConfig = {
612
612
  param: 'isEnabled',
613
613
  defaultValue: false
614
614
  }),
615
+ //Added 2025-09-09
616
+ platform_editor_toolbar_aifc_patch_4: createBooleanExperiment({
617
+ productKeys: {
618
+ jira: 'platform_editor_toolbar_aifc_patch_4',
619
+ confluence: 'platform_editor_toolbar_aifc_patch_4'
620
+ },
621
+ param: 'isEnabled',
622
+ defaultValue: false
623
+ }),
615
624
  //Added 2025-08-13
616
625
  platform_editor_ai_aifc: createBooleanExperiment({
617
626
  productKeys: {
@@ -711,6 +720,14 @@ export const editorExperimentsConfig = {
711
720
  param: 'isEnabled',
712
721
  defaultValue: false
713
722
  }),
723
+ // Added 2025-09-08
724
+ platform_editor_blocktaskitem_patch_1: createBooleanExperiment({
725
+ productKeys: {
726
+ confluence: 'platform_editor_blocktaskitem_patch_1'
727
+ },
728
+ param: 'isEnabled',
729
+ defaultValue: false
730
+ }),
714
731
  // Added 2025-08-06
715
732
  cc_editor_limited_mode: createBooleanExperiment({
716
733
  productKeys: {
@@ -877,6 +894,14 @@ export const editorExperimentsConfig = {
877
894
  param: 'isEnabled',
878
895
  defaultValue: false
879
896
  }),
897
+ // Added 2025-09-05
898
+ platform_editor_aifc_selection_toolbar_responsive: createBooleanExperiment({
899
+ productKeys: {
900
+ confluence: 'platform_editor_aifc_selection_toolbar_responsive'
901
+ },
902
+ param: 'isEnabled',
903
+ defaultValue: false
904
+ }),
880
905
  // Added 03-09-2025
881
906
  cc_editor_interactivity_monitoring: createBooleanExperiment({
882
907
  productKeys: {
@@ -885,5 +910,13 @@ export const editorExperimentsConfig = {
885
910
  },
886
911
  param: 'isEnabled',
887
912
  defaultValue: false
913
+ }),
914
+ // Added 2025-09-09
915
+ platform_editor_layout_node_view_early_exit: createBooleanExperiment({
916
+ productKeys: {
917
+ confluence: 'platform_editor_layout_node_view_early_exit'
918
+ },
919
+ param: 'isEnabled',
920
+ defaultValue: false
888
921
  })
889
922
  };
@@ -612,6 +612,15 @@ export var editorExperimentsConfig = {
612
612
  param: 'isEnabled',
613
613
  defaultValue: false
614
614
  }),
615
+ //Added 2025-09-09
616
+ platform_editor_toolbar_aifc_patch_4: createBooleanExperiment({
617
+ productKeys: {
618
+ jira: 'platform_editor_toolbar_aifc_patch_4',
619
+ confluence: 'platform_editor_toolbar_aifc_patch_4'
620
+ },
621
+ param: 'isEnabled',
622
+ defaultValue: false
623
+ }),
615
624
  //Added 2025-08-13
616
625
  platform_editor_ai_aifc: createBooleanExperiment({
617
626
  productKeys: {
@@ -711,6 +720,14 @@ export var editorExperimentsConfig = {
711
720
  param: 'isEnabled',
712
721
  defaultValue: false
713
722
  }),
723
+ // Added 2025-09-08
724
+ platform_editor_blocktaskitem_patch_1: createBooleanExperiment({
725
+ productKeys: {
726
+ confluence: 'platform_editor_blocktaskitem_patch_1'
727
+ },
728
+ param: 'isEnabled',
729
+ defaultValue: false
730
+ }),
714
731
  // Added 2025-08-06
715
732
  cc_editor_limited_mode: createBooleanExperiment({
716
733
  productKeys: {
@@ -877,6 +894,14 @@ export var editorExperimentsConfig = {
877
894
  param: 'isEnabled',
878
895
  defaultValue: false
879
896
  }),
897
+ // Added 2025-09-05
898
+ platform_editor_aifc_selection_toolbar_responsive: createBooleanExperiment({
899
+ productKeys: {
900
+ confluence: 'platform_editor_aifc_selection_toolbar_responsive'
901
+ },
902
+ param: 'isEnabled',
903
+ defaultValue: false
904
+ }),
880
905
  // Added 03-09-2025
881
906
  cc_editor_interactivity_monitoring: createBooleanExperiment({
882
907
  productKeys: {
@@ -885,5 +910,13 @@ export var editorExperimentsConfig = {
885
910
  },
886
911
  param: 'isEnabled',
887
912
  defaultValue: false
913
+ }),
914
+ // Added 2025-09-09
915
+ platform_editor_layout_node_view_early_exit: createBooleanExperiment({
916
+ productKeys: {
917
+ confluence: 'platform_editor_layout_node_view_early_exit'
918
+ },
919
+ param: 'isEnabled',
920
+ defaultValue: false
888
921
  })
889
922
  };
@@ -456,6 +456,12 @@ export declare const editorExperimentsConfig: {
456
456
  param: string;
457
457
  productKeys?: import("./types").ProductKeys;
458
458
  };
459
+ platform_editor_toolbar_aifc_patch_4: {
460
+ typeGuard: typeof import("./type-guards").isBoolean;
461
+ defaultValue: boolean;
462
+ param: string;
463
+ productKeys?: import("./types").ProductKeys;
464
+ };
459
465
  platform_editor_ai_aifc: {
460
466
  typeGuard: typeof import("./type-guards").isBoolean;
461
467
  defaultValue: boolean;
@@ -528,6 +534,12 @@ export declare const editorExperimentsConfig: {
528
534
  param: string;
529
535
  productKeys?: import("./types").ProductKeys;
530
536
  };
537
+ platform_editor_blocktaskitem_patch_1: {
538
+ typeGuard: typeof import("./type-guards").isBoolean;
539
+ defaultValue: boolean;
540
+ param: string;
541
+ productKeys?: import("./types").ProductKeys;
542
+ };
531
543
  cc_editor_limited_mode: {
532
544
  typeGuard: typeof import("./type-guards").isBoolean;
533
545
  defaultValue: boolean;
@@ -648,10 +660,22 @@ export declare const editorExperimentsConfig: {
648
660
  param: string;
649
661
  productKeys?: import("./types").ProductKeys;
650
662
  };
663
+ platform_editor_aifc_selection_toolbar_responsive: {
664
+ typeGuard: typeof import("./type-guards").isBoolean;
665
+ defaultValue: boolean;
666
+ param: string;
667
+ productKeys?: import("./types").ProductKeys;
668
+ };
651
669
  cc_editor_interactivity_monitoring: {
652
670
  typeGuard: typeof import("./type-guards").isBoolean;
653
671
  defaultValue: boolean;
654
672
  param: string;
655
673
  productKeys?: import("./types").ProductKeys;
656
674
  };
675
+ platform_editor_layout_node_view_early_exit: {
676
+ typeGuard: typeof import("./type-guards").isBoolean;
677
+ defaultValue: boolean;
678
+ param: string;
679
+ productKeys?: import("./types").ProductKeys;
680
+ };
657
681
  };
@@ -456,6 +456,12 @@ export declare const editorExperimentsConfig: {
456
456
  param: string;
457
457
  productKeys?: import("./types").ProductKeys;
458
458
  };
459
+ platform_editor_toolbar_aifc_patch_4: {
460
+ typeGuard: typeof import("./type-guards").isBoolean;
461
+ defaultValue: boolean;
462
+ param: string;
463
+ productKeys?: import("./types").ProductKeys;
464
+ };
459
465
  platform_editor_ai_aifc: {
460
466
  typeGuard: typeof import("./type-guards").isBoolean;
461
467
  defaultValue: boolean;
@@ -528,6 +534,12 @@ export declare const editorExperimentsConfig: {
528
534
  param: string;
529
535
  productKeys?: import("./types").ProductKeys;
530
536
  };
537
+ platform_editor_blocktaskitem_patch_1: {
538
+ typeGuard: typeof import("./type-guards").isBoolean;
539
+ defaultValue: boolean;
540
+ param: string;
541
+ productKeys?: import("./types").ProductKeys;
542
+ };
531
543
  cc_editor_limited_mode: {
532
544
  typeGuard: typeof import("./type-guards").isBoolean;
533
545
  defaultValue: boolean;
@@ -648,10 +660,22 @@ export declare const editorExperimentsConfig: {
648
660
  param: string;
649
661
  productKeys?: import("./types").ProductKeys;
650
662
  };
663
+ platform_editor_aifc_selection_toolbar_responsive: {
664
+ typeGuard: typeof import("./type-guards").isBoolean;
665
+ defaultValue: boolean;
666
+ param: string;
667
+ productKeys?: import("./types").ProductKeys;
668
+ };
651
669
  cc_editor_interactivity_monitoring: {
652
670
  typeGuard: typeof import("./type-guards").isBoolean;
653
671
  defaultValue: boolean;
654
672
  param: string;
655
673
  productKeys?: import("./types").ProductKeys;
656
674
  };
675
+ platform_editor_layout_node_view_early_exit: {
676
+ typeGuard: typeof import("./type-guards").isBoolean;
677
+ defaultValue: boolean;
678
+ param: string;
679
+ productKeys?: import("./types").ProductKeys;
680
+ };
657
681
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "12.12.0",
3
+ "version": "12.14.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",