@atlaskit/tmp-editor-statsig 12.13.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,14 @@
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
+
3
12
  ## 12.13.0
4
13
 
5
14
  ### Minor Changes
@@ -726,6 +726,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
726
726
  param: 'isEnabled',
727
727
  defaultValue: false
728
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
+ }),
729
737
  // Added 2025-08-06
730
738
  cc_editor_limited_mode: (0, _experimentBuilders.createBooleanExperiment)({
731
739
  productKeys: {
@@ -892,6 +900,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
892
900
  param: 'isEnabled',
893
901
  defaultValue: false
894
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
+ }),
895
911
  // Added 03-09-2025
896
912
  cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
897
913
  productKeys: {
@@ -720,6 +720,14 @@ export const editorExperimentsConfig = {
720
720
  param: 'isEnabled',
721
721
  defaultValue: false
722
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
+ }),
723
731
  // Added 2025-08-06
724
732
  cc_editor_limited_mode: createBooleanExperiment({
725
733
  productKeys: {
@@ -886,6 +894,14 @@ export const editorExperimentsConfig = {
886
894
  param: 'isEnabled',
887
895
  defaultValue: false
888
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
+ }),
889
905
  // Added 03-09-2025
890
906
  cc_editor_interactivity_monitoring: createBooleanExperiment({
891
907
  productKeys: {
@@ -720,6 +720,14 @@ export var editorExperimentsConfig = {
720
720
  param: 'isEnabled',
721
721
  defaultValue: false
722
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
+ }),
723
731
  // Added 2025-08-06
724
732
  cc_editor_limited_mode: createBooleanExperiment({
725
733
  productKeys: {
@@ -886,6 +894,14 @@ export var editorExperimentsConfig = {
886
894
  param: 'isEnabled',
887
895
  defaultValue: false
888
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
+ }),
889
905
  // Added 03-09-2025
890
906
  cc_editor_interactivity_monitoring: createBooleanExperiment({
891
907
  productKeys: {
@@ -534,6 +534,12 @@ export declare const editorExperimentsConfig: {
534
534
  param: string;
535
535
  productKeys?: import("./types").ProductKeys;
536
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
+ };
537
543
  cc_editor_limited_mode: {
538
544
  typeGuard: typeof import("./type-guards").isBoolean;
539
545
  defaultValue: boolean;
@@ -654,6 +660,12 @@ export declare const editorExperimentsConfig: {
654
660
  param: string;
655
661
  productKeys?: import("./types").ProductKeys;
656
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
+ };
657
669
  cc_editor_interactivity_monitoring: {
658
670
  typeGuard: typeof import("./type-guards").isBoolean;
659
671
  defaultValue: boolean;
@@ -534,6 +534,12 @@ export declare const editorExperimentsConfig: {
534
534
  param: string;
535
535
  productKeys?: import("./types").ProductKeys;
536
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
+ };
537
543
  cc_editor_limited_mode: {
538
544
  typeGuard: typeof import("./type-guards").isBoolean;
539
545
  defaultValue: boolean;
@@ -654,6 +660,12 @@ export declare const editorExperimentsConfig: {
654
660
  param: string;
655
661
  productKeys?: import("./types").ProductKeys;
656
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
+ };
657
669
  cc_editor_interactivity_monitoring: {
658
670
  typeGuard: typeof import("./type-guards").isBoolean;
659
671
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "12.13.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",