@atlaskit/tmp-editor-statsig 13.32.0 → 13.33.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,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`fd0c8ec823f49`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fd0c8ec823f49) -
8
+ NOISSUE - Add limited mode check for expensive getTableScalingPercent calls for the table floating
9
+ toolbar alignment button.
10
+
11
+ ## 13.32.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [`0d661119b4293`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0d661119b4293) -
16
+ Clean up platform_editor_insertion experiment by shipping control variant. Remove modern TypeAhead
17
+ components and experiment infrastructure while preserving all existing functionality.
18
+
3
19
  ## 13.32.0
4
20
 
5
21
  ### Minor Changes
@@ -13,7 +13,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
13
13
  confluence_whiteboards_quick_insert: 'control',
14
14
  confluence_whiteboards_quick_insert_localised: 'control',
15
15
  confluence_whiteboards_quick_insert_localised_aa: 'control',
16
- platform_editor_insertion: 'control',
17
16
  editor_ai_inline_suggestion_date_v2: 'control',
18
17
  cc_editor_ai_content_mode: 'control',
19
18
  platform_editor_add_orange_highlight_color: 'control',
@@ -260,15 +260,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
260
260
  param: 'isEnabled',
261
261
  defaultValue: false
262
262
  }),
263
- // Added 28-02-2025
264
- platform_editor_insertion: (0, _experimentBuilders.createMultivariateExperiment)({
265
- productKeys: {
266
- confluence: 'platform_editor_insertion'
267
- },
268
- param: 'cohort',
269
- values: ['control', 'variant1'],
270
- defaultValue: 'control'
271
- }),
272
263
  // Added 2025-09-03
273
264
  platform_editor_hydratable_ui: (0, _experimentBuilders.createBooleanExperiment)({
274
265
  productKeys: {
@@ -1129,5 +1120,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1129
1120
  },
1130
1121
  param: 'isEnabled',
1131
1122
  defaultValue: false
1123
+ }),
1124
+ // Added 2025-11-07
1125
+ cc_editor_limited_mode_table_align_bttn: (0, _experimentBuilders.createBooleanExperiment)({
1126
+ productKeys: {
1127
+ confluence: 'cc_editor_limited_mode_table_align_bttn'
1128
+ },
1129
+ param: 'isEnabled',
1130
+ defaultValue: false
1132
1131
  })
1133
1132
  };
@@ -7,7 +7,6 @@ export const testMultivariateOverrides = {
7
7
  confluence_whiteboards_quick_insert: 'control',
8
8
  confluence_whiteboards_quick_insert_localised: 'control',
9
9
  confluence_whiteboards_quick_insert_localised_aa: 'control',
10
- platform_editor_insertion: 'control',
11
10
  editor_ai_inline_suggestion_date_v2: 'control',
12
11
  cc_editor_ai_content_mode: 'control',
13
12
  platform_editor_add_orange_highlight_color: 'control',
@@ -254,15 +254,6 @@ export const editorExperimentsConfig = {
254
254
  param: 'isEnabled',
255
255
  defaultValue: false
256
256
  }),
257
- // Added 28-02-2025
258
- platform_editor_insertion: createMultivariateExperiment({
259
- productKeys: {
260
- confluence: 'platform_editor_insertion'
261
- },
262
- param: 'cohort',
263
- values: ['control', 'variant1'],
264
- defaultValue: 'control'
265
- }),
266
257
  // Added 2025-09-03
267
258
  platform_editor_hydratable_ui: createBooleanExperiment({
268
259
  productKeys: {
@@ -1123,5 +1114,13 @@ export const editorExperimentsConfig = {
1123
1114
  },
1124
1115
  param: 'isEnabled',
1125
1116
  defaultValue: false
1117
+ }),
1118
+ // Added 2025-11-07
1119
+ cc_editor_limited_mode_table_align_bttn: createBooleanExperiment({
1120
+ productKeys: {
1121
+ confluence: 'cc_editor_limited_mode_table_align_bttn'
1122
+ },
1123
+ param: 'isEnabled',
1124
+ defaultValue: false
1126
1125
  })
1127
1126
  };
@@ -7,7 +7,6 @@ export var testMultivariateOverrides = {
7
7
  confluence_whiteboards_quick_insert: 'control',
8
8
  confluence_whiteboards_quick_insert_localised: 'control',
9
9
  confluence_whiteboards_quick_insert_localised_aa: 'control',
10
- platform_editor_insertion: 'control',
11
10
  editor_ai_inline_suggestion_date_v2: 'control',
12
11
  cc_editor_ai_content_mode: 'control',
13
12
  platform_editor_add_orange_highlight_color: 'control',
@@ -254,15 +254,6 @@ export var editorExperimentsConfig = {
254
254
  param: 'isEnabled',
255
255
  defaultValue: false
256
256
  }),
257
- // Added 28-02-2025
258
- platform_editor_insertion: createMultivariateExperiment({
259
- productKeys: {
260
- confluence: 'platform_editor_insertion'
261
- },
262
- param: 'cohort',
263
- values: ['control', 'variant1'],
264
- defaultValue: 'control'
265
- }),
266
257
  // Added 2025-09-03
267
258
  platform_editor_hydratable_ui: createBooleanExperiment({
268
259
  productKeys: {
@@ -1123,5 +1114,13 @@ export var editorExperimentsConfig = {
1123
1114
  },
1124
1115
  param: 'isEnabled',
1125
1116
  defaultValue: false
1117
+ }),
1118
+ // Added 2025-11-07
1119
+ cc_editor_limited_mode_table_align_bttn: createBooleanExperiment({
1120
+ productKeys: {
1121
+ confluence: 'cc_editor_limited_mode_table_align_bttn'
1122
+ },
1123
+ param: 'isEnabled',
1124
+ defaultValue: false
1126
1125
  })
1127
1126
  };
@@ -184,13 +184,6 @@ export declare const editorExperimentsConfig: {
184
184
  param: string;
185
185
  productKeys?: import("./types").ProductKeys;
186
186
  };
187
- platform_editor_insertion: {
188
- values: ("control" | "variant1")[];
189
- typeGuard: (value: unknown) => value is "control" | "variant1";
190
- defaultValue: "control" | "variant1";
191
- param: string;
192
- productKeys?: import("./types").ProductKeys;
193
- };
194
187
  platform_editor_hydratable_ui: {
195
188
  typeGuard: typeof import("./type-guards").isBoolean;
196
189
  defaultValue: boolean;
@@ -831,4 +824,10 @@ export declare const editorExperimentsConfig: {
831
824
  param: string;
832
825
  productKeys?: import("./types").ProductKeys;
833
826
  };
827
+ cc_editor_limited_mode_table_align_bttn: {
828
+ typeGuard: typeof import("./type-guards").isBoolean;
829
+ defaultValue: boolean;
830
+ param: string;
831
+ productKeys?: import("./types").ProductKeys;
832
+ };
834
833
  };
@@ -184,13 +184,6 @@ export declare const editorExperimentsConfig: {
184
184
  param: string;
185
185
  productKeys?: import("./types").ProductKeys;
186
186
  };
187
- platform_editor_insertion: {
188
- values: ("control" | "variant1")[];
189
- typeGuard: (value: unknown) => value is "control" | "variant1";
190
- defaultValue: "control" | "variant1";
191
- param: string;
192
- productKeys?: import("./types").ProductKeys;
193
- };
194
187
  platform_editor_hydratable_ui: {
195
188
  typeGuard: typeof import("./type-guards").isBoolean;
196
189
  defaultValue: boolean;
@@ -831,4 +824,10 @@ export declare const editorExperimentsConfig: {
831
824
  param: string;
832
825
  productKeys?: import("./types").ProductKeys;
833
826
  };
827
+ cc_editor_limited_mode_table_align_bttn: {
828
+ typeGuard: typeof import("./type-guards").isBoolean;
829
+ defaultValue: boolean;
830
+ param: string;
831
+ productKeys?: import("./types").ProductKeys;
832
+ };
834
833
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.32.0",
3
+ "version": "13.33.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",