@atlaskit/tmp-editor-statsig 12.17.0 → 12.19.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 12.19.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`77f5d276a6b30`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/77f5d276a6b30) -
8
+ [ux] Put layout and expand format menu visibility behind experiment flags
9
+
10
+ ## 12.18.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`cebd8f9171426`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cebd8f9171426) -
15
+ [ux] ED-29159 Implement transform task inside lists - handle logic
16
+
3
17
  ## 12.17.0
4
18
 
5
19
  ### Minor Changes
@@ -933,6 +933,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
933
933
  param: 'isEnabled',
934
934
  defaultValue: false
935
935
  }),
936
+ // Added 2025-09-11
937
+ platform_editor_block_menu_layout_format: (0, _experimentBuilders.createBooleanExperiment)({
938
+ productKeys: {
939
+ confluence: 'platform_editor_block_menu_layout_format'
940
+ },
941
+ param: 'isEnabled',
942
+ defaultValue: false
943
+ }),
944
+ // Added 2025-09-11
945
+ platform_editor_block_menu_expand_format: (0, _experimentBuilders.createBooleanExperiment)({
946
+ productKeys: {
947
+ confluence: 'platform_editor_block_menu_expand_format'
948
+ },
949
+ param: 'isEnabled',
950
+ defaultValue: false
951
+ }),
936
952
  // Added 2025-09-05
937
953
  platform_editor_aifc_selection_toolbar_responsive: (0, _experimentBuilders.createBooleanExperiment)({
938
954
  productKeys: {
@@ -957,5 +973,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
957
973
  },
958
974
  param: 'isEnabled',
959
975
  defaultValue: false
976
+ }),
977
+ // Added 10-09-2025
978
+ platform_editor_toolbar_task_list_menu_item: (0, _experimentBuilders.createBooleanExperiment)({
979
+ productKeys: {
980
+ confluence: 'platform_editor_toolbar_task_list_menu_item'
981
+ },
982
+ param: 'isEnabled',
983
+ defaultValue: false
960
984
  })
961
985
  };
@@ -927,6 +927,22 @@ export const editorExperimentsConfig = {
927
927
  param: 'isEnabled',
928
928
  defaultValue: false
929
929
  }),
930
+ // Added 2025-09-11
931
+ platform_editor_block_menu_layout_format: createBooleanExperiment({
932
+ productKeys: {
933
+ confluence: 'platform_editor_block_menu_layout_format'
934
+ },
935
+ param: 'isEnabled',
936
+ defaultValue: false
937
+ }),
938
+ // Added 2025-09-11
939
+ platform_editor_block_menu_expand_format: createBooleanExperiment({
940
+ productKeys: {
941
+ confluence: 'platform_editor_block_menu_expand_format'
942
+ },
943
+ param: 'isEnabled',
944
+ defaultValue: false
945
+ }),
930
946
  // Added 2025-09-05
931
947
  platform_editor_aifc_selection_toolbar_responsive: createBooleanExperiment({
932
948
  productKeys: {
@@ -951,5 +967,13 @@ export const editorExperimentsConfig = {
951
967
  },
952
968
  param: 'isEnabled',
953
969
  defaultValue: false
970
+ }),
971
+ // Added 10-09-2025
972
+ platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
973
+ productKeys: {
974
+ confluence: 'platform_editor_toolbar_task_list_menu_item'
975
+ },
976
+ param: 'isEnabled',
977
+ defaultValue: false
954
978
  })
955
979
  };
@@ -927,6 +927,22 @@ export var editorExperimentsConfig = {
927
927
  param: 'isEnabled',
928
928
  defaultValue: false
929
929
  }),
930
+ // Added 2025-09-11
931
+ platform_editor_block_menu_layout_format: createBooleanExperiment({
932
+ productKeys: {
933
+ confluence: 'platform_editor_block_menu_layout_format'
934
+ },
935
+ param: 'isEnabled',
936
+ defaultValue: false
937
+ }),
938
+ // Added 2025-09-11
939
+ platform_editor_block_menu_expand_format: createBooleanExperiment({
940
+ productKeys: {
941
+ confluence: 'platform_editor_block_menu_expand_format'
942
+ },
943
+ param: 'isEnabled',
944
+ defaultValue: false
945
+ }),
930
946
  // Added 2025-09-05
931
947
  platform_editor_aifc_selection_toolbar_responsive: createBooleanExperiment({
932
948
  productKeys: {
@@ -951,5 +967,13 @@ export var editorExperimentsConfig = {
951
967
  },
952
968
  param: 'isEnabled',
953
969
  defaultValue: false
970
+ }),
971
+ // Added 10-09-2025
972
+ platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
973
+ productKeys: {
974
+ confluence: 'platform_editor_toolbar_task_list_menu_item'
975
+ },
976
+ param: 'isEnabled',
977
+ defaultValue: false
954
978
  })
955
979
  };
@@ -684,6 +684,18 @@ export declare const editorExperimentsConfig: {
684
684
  param: string;
685
685
  productKeys?: import("./types").ProductKeys;
686
686
  };
687
+ platform_editor_block_menu_layout_format: {
688
+ typeGuard: typeof import("./type-guards").isBoolean;
689
+ defaultValue: boolean;
690
+ param: string;
691
+ productKeys?: import("./types").ProductKeys;
692
+ };
693
+ platform_editor_block_menu_expand_format: {
694
+ typeGuard: typeof import("./type-guards").isBoolean;
695
+ defaultValue: boolean;
696
+ param: string;
697
+ productKeys?: import("./types").ProductKeys;
698
+ };
687
699
  platform_editor_aifc_selection_toolbar_responsive: {
688
700
  typeGuard: typeof import("./type-guards").isBoolean;
689
701
  defaultValue: boolean;
@@ -702,4 +714,10 @@ export declare const editorExperimentsConfig: {
702
714
  param: string;
703
715
  productKeys?: import("./types").ProductKeys;
704
716
  };
717
+ platform_editor_toolbar_task_list_menu_item: {
718
+ typeGuard: typeof import("./type-guards").isBoolean;
719
+ defaultValue: boolean;
720
+ param: string;
721
+ productKeys?: import("./types").ProductKeys;
722
+ };
705
723
  };
@@ -684,6 +684,18 @@ export declare const editorExperimentsConfig: {
684
684
  param: string;
685
685
  productKeys?: import("./types").ProductKeys;
686
686
  };
687
+ platform_editor_block_menu_layout_format: {
688
+ typeGuard: typeof import("./type-guards").isBoolean;
689
+ defaultValue: boolean;
690
+ param: string;
691
+ productKeys?: import("./types").ProductKeys;
692
+ };
693
+ platform_editor_block_menu_expand_format: {
694
+ typeGuard: typeof import("./type-guards").isBoolean;
695
+ defaultValue: boolean;
696
+ param: string;
697
+ productKeys?: import("./types").ProductKeys;
698
+ };
687
699
  platform_editor_aifc_selection_toolbar_responsive: {
688
700
  typeGuard: typeof import("./type-guards").isBoolean;
689
701
  defaultValue: boolean;
@@ -702,4 +714,10 @@ export declare const editorExperimentsConfig: {
702
714
  param: string;
703
715
  productKeys?: import("./types").ProductKeys;
704
716
  };
717
+ platform_editor_toolbar_task_list_menu_item: {
718
+ typeGuard: typeof import("./type-guards").isBoolean;
719
+ defaultValue: boolean;
720
+ param: string;
721
+ productKeys?: import("./types").ProductKeys;
722
+ };
705
723
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "12.17.0",
3
+ "version": "12.19.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",