@atlaskit/tmp-editor-statsig 13.19.0 → 13.19.2

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.19.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`71746e992b602`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/71746e992b602) -
8
+ Add aa keys & exposure event for insert-block
9
+
10
+ ## 13.19.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [`da82d015556d4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/da82d015556d4) -
15
+ Fix a bug where repeatedly cloning the media plugin state would cause severe performance
16
+ degradation over time
17
+
3
18
  ## 13.19.0
4
19
 
5
20
  ### Minor Changes
@@ -12,6 +12,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
12
12
  confluence_whiteboards_quick_insert_aa: 'control',
13
13
  confluence_whiteboards_quick_insert: 'control',
14
14
  confluence_whiteboards_quick_insert_localised: 'control',
15
+ confluence_whiteboards_quick_insert_localised_aa: 'control',
15
16
  platform_editor_insertion: 'control',
16
17
  editor_ai_inline_suggestion_date_v2: 'control',
17
18
  cc_editor_ai_content_mode: 'control',
@@ -1074,6 +1074,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1074
1074
  values: ['control', 'test_blank', 'test_diagram'],
1075
1075
  defaultValue: 'control'
1076
1076
  }),
1077
+ // Added 2025-10-28
1078
+ confluence_whiteboards_quick_insert_localised_aa: (0, _experimentBuilders.createMultivariateExperiment)({
1079
+ productKeys: {
1080
+ confluence: 'confluence_whiteboards_quick_insert_localised_aa'
1081
+ },
1082
+ param: 'cohort',
1083
+ values: ['control', 'test_diagram'],
1084
+ defaultValue: 'control'
1085
+ }),
1077
1086
  // Added 2025-10-22
1078
1087
  platform_editor_remove_bidi_char_warning: (0, _experimentBuilders.createBooleanExperiment)({
1079
1088
  productKeys: {
@@ -1081,5 +1090,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1081
1090
  },
1082
1091
  param: 'isEnabled',
1083
1092
  defaultValue: false
1093
+ }),
1094
+ // Added 2025-10-24
1095
+ platform_editor_fix_clone_nesting_exp: (0, _experimentBuilders.createBooleanExperiment)({
1096
+ productKeys: {
1097
+ confluence: 'platform_editor_fix_clone_nesting_exp'
1098
+ },
1099
+ param: 'isEnabled',
1100
+ defaultValue: false
1084
1101
  })
1085
1102
  };
@@ -6,6 +6,7 @@ export const testMultivariateOverrides = {
6
6
  confluence_whiteboards_quick_insert_aa: 'control',
7
7
  confluence_whiteboards_quick_insert: 'control',
8
8
  confluence_whiteboards_quick_insert_localised: 'control',
9
+ confluence_whiteboards_quick_insert_localised_aa: 'control',
9
10
  platform_editor_insertion: 'control',
10
11
  editor_ai_inline_suggestion_date_v2: 'control',
11
12
  cc_editor_ai_content_mode: 'control',
@@ -1068,6 +1068,15 @@ export const editorExperimentsConfig = {
1068
1068
  values: ['control', 'test_blank', 'test_diagram'],
1069
1069
  defaultValue: 'control'
1070
1070
  }),
1071
+ // Added 2025-10-28
1072
+ confluence_whiteboards_quick_insert_localised_aa: createMultivariateExperiment({
1073
+ productKeys: {
1074
+ confluence: 'confluence_whiteboards_quick_insert_localised_aa'
1075
+ },
1076
+ param: 'cohort',
1077
+ values: ['control', 'test_diagram'],
1078
+ defaultValue: 'control'
1079
+ }),
1071
1080
  // Added 2025-10-22
1072
1081
  platform_editor_remove_bidi_char_warning: createBooleanExperiment({
1073
1082
  productKeys: {
@@ -1075,5 +1084,13 @@ export const editorExperimentsConfig = {
1075
1084
  },
1076
1085
  param: 'isEnabled',
1077
1086
  defaultValue: false
1087
+ }),
1088
+ // Added 2025-10-24
1089
+ platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
1090
+ productKeys: {
1091
+ confluence: 'platform_editor_fix_clone_nesting_exp'
1092
+ },
1093
+ param: 'isEnabled',
1094
+ defaultValue: false
1078
1095
  })
1079
1096
  };
@@ -6,6 +6,7 @@ export var testMultivariateOverrides = {
6
6
  confluence_whiteboards_quick_insert_aa: 'control',
7
7
  confluence_whiteboards_quick_insert: 'control',
8
8
  confluence_whiteboards_quick_insert_localised: 'control',
9
+ confluence_whiteboards_quick_insert_localised_aa: 'control',
9
10
  platform_editor_insertion: 'control',
10
11
  editor_ai_inline_suggestion_date_v2: 'control',
11
12
  cc_editor_ai_content_mode: 'control',
@@ -1068,6 +1068,15 @@ export var editorExperimentsConfig = {
1068
1068
  values: ['control', 'test_blank', 'test_diagram'],
1069
1069
  defaultValue: 'control'
1070
1070
  }),
1071
+ // Added 2025-10-28
1072
+ confluence_whiteboards_quick_insert_localised_aa: createMultivariateExperiment({
1073
+ productKeys: {
1074
+ confluence: 'confluence_whiteboards_quick_insert_localised_aa'
1075
+ },
1076
+ param: 'cohort',
1077
+ values: ['control', 'test_diagram'],
1078
+ defaultValue: 'control'
1079
+ }),
1071
1080
  // Added 2025-10-22
1072
1081
  platform_editor_remove_bidi_char_warning: createBooleanExperiment({
1073
1082
  productKeys: {
@@ -1075,5 +1084,13 @@ export var editorExperimentsConfig = {
1075
1084
  },
1076
1085
  param: 'isEnabled',
1077
1086
  defaultValue: false
1087
+ }),
1088
+ // Added 2025-10-24
1089
+ platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
1090
+ productKeys: {
1091
+ confluence: 'platform_editor_fix_clone_nesting_exp'
1092
+ },
1093
+ param: 'isEnabled',
1094
+ defaultValue: false
1078
1095
  })
1079
1096
  };
@@ -787,10 +787,23 @@ export declare const editorExperimentsConfig: {
787
787
  param: string;
788
788
  productKeys?: import("./types").ProductKeys;
789
789
  };
790
+ confluence_whiteboards_quick_insert_localised_aa: {
791
+ values: ("control" | "test_diagram")[];
792
+ typeGuard: (value: unknown) => value is "control" | "test_diagram";
793
+ defaultValue: "control" | "test_diagram";
794
+ param: string;
795
+ productKeys?: import("./types").ProductKeys;
796
+ };
790
797
  platform_editor_remove_bidi_char_warning: {
791
798
  typeGuard: typeof import("./type-guards").isBoolean;
792
799
  defaultValue: boolean;
793
800
  param: string;
794
801
  productKeys?: import("./types").ProductKeys;
795
802
  };
803
+ platform_editor_fix_clone_nesting_exp: {
804
+ typeGuard: typeof import("./type-guards").isBoolean;
805
+ defaultValue: boolean;
806
+ param: string;
807
+ productKeys?: import("./types").ProductKeys;
808
+ };
796
809
  };
@@ -787,10 +787,23 @@ export declare const editorExperimentsConfig: {
787
787
  param: string;
788
788
  productKeys?: import("./types").ProductKeys;
789
789
  };
790
+ confluence_whiteboards_quick_insert_localised_aa: {
791
+ values: ("control" | "test_diagram")[];
792
+ typeGuard: (value: unknown) => value is "control" | "test_diagram";
793
+ defaultValue: "control" | "test_diagram";
794
+ param: string;
795
+ productKeys?: import("./types").ProductKeys;
796
+ };
790
797
  platform_editor_remove_bidi_char_warning: {
791
798
  typeGuard: typeof import("./type-guards").isBoolean;
792
799
  defaultValue: boolean;
793
800
  param: string;
794
801
  productKeys?: import("./types").ProductKeys;
795
802
  };
803
+ platform_editor_fix_clone_nesting_exp: {
804
+ typeGuard: typeof import("./type-guards").isBoolean;
805
+ defaultValue: boolean;
806
+ param: string;
807
+ productKeys?: import("./types").ProductKeys;
808
+ };
796
809
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.19.0",
3
+ "version": "13.19.2",
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",