@atlaskit/tmp-editor-statsig 13.30.0 → 13.32.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,20 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.32.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7a3ccae3a8cf5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7a3ccae3a8cf5) -
8
+ ED-29457Clean up platform_editor_toolbar_aifc_renderer_selection
9
+
10
+ ## 13.31.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`c094becfaeeaa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c094becfaeeaa) -
15
+ EDITOR-2476 Introduce new utility method to check if nested tables is supported in the schema to
16
+ facilitate removal of gate `platform_editor_use_nested_table_pm_nodes`
17
+
3
18
  ## 13.30.0
4
19
 
5
20
  ### Minor Changes
@@ -955,14 +955,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
955
955
  param: 'isEnabled',
956
956
  defaultValue: false
957
957
  }),
958
- // Added 2025-09-18
959
- platform_editor_toolbar_aifc_renderer_selection: (0, _experimentBuilders.createBooleanExperiment)({
960
- productKeys: {
961
- confluence: 'platform_editor_toolbar_aifc_renderer_selection'
962
- },
963
- param: 'isEnabled',
964
- defaultValue: false
965
- }),
966
958
  // Added 2025-10-10
967
959
  platform_use_llm_space_recommendations: (0, _experimentBuilders.createBooleanExperiment)({
968
960
  productKeys: {
@@ -1089,6 +1081,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1089
1081
  param: 'isEnabled',
1090
1082
  defaultValue: false
1091
1083
  }),
1084
+ // Added 2025-11-05
1085
+ platform_editor_nested_table_detection: (0, _experimentBuilders.createBooleanExperiment)({
1086
+ productKeys: {
1087
+ confluence: 'platform_editor_nested_table_detection'
1088
+ },
1089
+ param: 'isEnabled',
1090
+ defaultValue: false
1091
+ }),
1092
1092
  // Added 2025-10-24
1093
1093
  platform_editor_fix_clone_nesting_exp: (0, _experimentBuilders.createBooleanExperiment)({
1094
1094
  productKeys: {
@@ -949,14 +949,6 @@ export const editorExperimentsConfig = {
949
949
  param: 'isEnabled',
950
950
  defaultValue: false
951
951
  }),
952
- // Added 2025-09-18
953
- platform_editor_toolbar_aifc_renderer_selection: createBooleanExperiment({
954
- productKeys: {
955
- confluence: 'platform_editor_toolbar_aifc_renderer_selection'
956
- },
957
- param: 'isEnabled',
958
- defaultValue: false
959
- }),
960
952
  // Added 2025-10-10
961
953
  platform_use_llm_space_recommendations: createBooleanExperiment({
962
954
  productKeys: {
@@ -1083,6 +1075,14 @@ export const editorExperimentsConfig = {
1083
1075
  param: 'isEnabled',
1084
1076
  defaultValue: false
1085
1077
  }),
1078
+ // Added 2025-11-05
1079
+ platform_editor_nested_table_detection: createBooleanExperiment({
1080
+ productKeys: {
1081
+ confluence: 'platform_editor_nested_table_detection'
1082
+ },
1083
+ param: 'isEnabled',
1084
+ defaultValue: false
1085
+ }),
1086
1086
  // Added 2025-10-24
1087
1087
  platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
1088
1088
  productKeys: {
@@ -949,14 +949,6 @@ export var editorExperimentsConfig = {
949
949
  param: 'isEnabled',
950
950
  defaultValue: false
951
951
  }),
952
- // Added 2025-09-18
953
- platform_editor_toolbar_aifc_renderer_selection: createBooleanExperiment({
954
- productKeys: {
955
- confluence: 'platform_editor_toolbar_aifc_renderer_selection'
956
- },
957
- param: 'isEnabled',
958
- defaultValue: false
959
- }),
960
952
  // Added 2025-10-10
961
953
  platform_use_llm_space_recommendations: createBooleanExperiment({
962
954
  productKeys: {
@@ -1083,6 +1075,14 @@ export var editorExperimentsConfig = {
1083
1075
  param: 'isEnabled',
1084
1076
  defaultValue: false
1085
1077
  }),
1078
+ // Added 2025-11-05
1079
+ platform_editor_nested_table_detection: createBooleanExperiment({
1080
+ productKeys: {
1081
+ confluence: 'platform_editor_nested_table_detection'
1082
+ },
1083
+ param: 'isEnabled',
1084
+ defaultValue: false
1085
+ }),
1086
1086
  // Added 2025-10-24
1087
1087
  platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
1088
1088
  productKeys: {
@@ -700,12 +700,6 @@ export declare const editorExperimentsConfig: {
700
700
  param: string;
701
701
  productKeys?: import("./types").ProductKeys;
702
702
  };
703
- platform_editor_toolbar_aifc_renderer_selection: {
704
- typeGuard: typeof import("./type-guards").isBoolean;
705
- defaultValue: boolean;
706
- param: string;
707
- productKeys?: import("./types").ProductKeys;
708
- };
709
703
  platform_use_llm_space_recommendations: {
710
704
  typeGuard: typeof import("./type-guards").isBoolean;
711
705
  defaultValue: boolean;
@@ -800,6 +794,12 @@ export declare const editorExperimentsConfig: {
800
794
  param: string;
801
795
  productKeys?: import("./types").ProductKeys;
802
796
  };
797
+ platform_editor_nested_table_detection: {
798
+ typeGuard: typeof import("./type-guards").isBoolean;
799
+ defaultValue: boolean;
800
+ param: string;
801
+ productKeys?: import("./types").ProductKeys;
802
+ };
803
803
  platform_editor_fix_clone_nesting_exp: {
804
804
  typeGuard: typeof import("./type-guards").isBoolean;
805
805
  defaultValue: boolean;
@@ -700,12 +700,6 @@ export declare const editorExperimentsConfig: {
700
700
  param: string;
701
701
  productKeys?: import("./types").ProductKeys;
702
702
  };
703
- platform_editor_toolbar_aifc_renderer_selection: {
704
- typeGuard: typeof import("./type-guards").isBoolean;
705
- defaultValue: boolean;
706
- param: string;
707
- productKeys?: import("./types").ProductKeys;
708
- };
709
703
  platform_use_llm_space_recommendations: {
710
704
  typeGuard: typeof import("./type-guards").isBoolean;
711
705
  defaultValue: boolean;
@@ -800,6 +794,12 @@ export declare const editorExperimentsConfig: {
800
794
  param: string;
801
795
  productKeys?: import("./types").ProductKeys;
802
796
  };
797
+ platform_editor_nested_table_detection: {
798
+ typeGuard: typeof import("./type-guards").isBoolean;
799
+ defaultValue: boolean;
800
+ param: string;
801
+ productKeys?: import("./types").ProductKeys;
802
+ };
803
803
  platform_editor_fix_clone_nesting_exp: {
804
804
  typeGuard: typeof import("./type-guards").isBoolean;
805
805
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.30.0",
3
+ "version": "13.32.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",