@atlaskit/tmp-editor-statsig 16.23.0 → 16.24.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,17 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 16.24.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`498fc3298e069`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/498fc3298e069) -
8
+ [ux] EDITOR-3463: Keep extension breakout aligned with page width in full-width and max modes. The
9
+ rollout is guarded by `confluence_max_width_content_appearance` and the new
10
+ `confluence_max_width_breakout_extension_fix` experiment so the bugfix can be toggled
11
+ independently.
12
+ - [`a7fd4015da337`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a7fd4015da337) -
13
+ phase out contextTypes for editor context
14
+
3
15
  ## 16.23.0
4
16
 
5
17
  ### Minor Changes
@@ -86,6 +86,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
86
86
  param: 'isEnabled',
87
87
  defaultValue: false
88
88
  }),
89
+ // Added 2026-01-15
90
+ confluence_max_width_breakout_extension_fix: (0, _experimentBuilders.createBooleanExperiment)({
91
+ productKeys: {
92
+ confluence: 'confluence_max_width_breakout_extension_fix'
93
+ },
94
+ param: 'isEnabled',
95
+ defaultValue: false
96
+ }),
89
97
  cc_editor_insm_doc_size_stats: (0, _experimentBuilders.createBooleanExperiment)({
90
98
  productKeys: {
91
99
  confluence: 'cc_editor_insm_doc_size_stats'
@@ -1239,5 +1247,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1239
1247
  },
1240
1248
  param: 'isEnabled',
1241
1249
  defaultValue: false
1250
+ }),
1251
+ // Added 2026-01-14
1252
+ platform_editor_context_context_types_migration: (0, _experimentBuilders.createBooleanExperiment)({
1253
+ productKeys: {
1254
+ confluence: 'platform_editor_context_context_types_migration',
1255
+ jira: 'platform_editor_context_context_types_migration'
1256
+ },
1257
+ param: 'isEnabled',
1258
+ defaultValue: false
1242
1259
  })
1243
1260
  };
@@ -80,6 +80,14 @@ export const editorExperimentsConfig = {
80
80
  param: 'isEnabled',
81
81
  defaultValue: false
82
82
  }),
83
+ // Added 2026-01-15
84
+ confluence_max_width_breakout_extension_fix: createBooleanExperiment({
85
+ productKeys: {
86
+ confluence: 'confluence_max_width_breakout_extension_fix'
87
+ },
88
+ param: 'isEnabled',
89
+ defaultValue: false
90
+ }),
83
91
  cc_editor_insm_doc_size_stats: createBooleanExperiment({
84
92
  productKeys: {
85
93
  confluence: 'cc_editor_insm_doc_size_stats'
@@ -1233,5 +1241,14 @@ export const editorExperimentsConfig = {
1233
1241
  },
1234
1242
  param: 'isEnabled',
1235
1243
  defaultValue: false
1244
+ }),
1245
+ // Added 2026-01-14
1246
+ platform_editor_context_context_types_migration: createBooleanExperiment({
1247
+ productKeys: {
1248
+ confluence: 'platform_editor_context_context_types_migration',
1249
+ jira: 'platform_editor_context_context_types_migration'
1250
+ },
1251
+ param: 'isEnabled',
1252
+ defaultValue: false
1236
1253
  })
1237
1254
  };
@@ -80,6 +80,14 @@ export var editorExperimentsConfig = {
80
80
  param: 'isEnabled',
81
81
  defaultValue: false
82
82
  }),
83
+ // Added 2026-01-15
84
+ confluence_max_width_breakout_extension_fix: createBooleanExperiment({
85
+ productKeys: {
86
+ confluence: 'confluence_max_width_breakout_extension_fix'
87
+ },
88
+ param: 'isEnabled',
89
+ defaultValue: false
90
+ }),
83
91
  cc_editor_insm_doc_size_stats: createBooleanExperiment({
84
92
  productKeys: {
85
93
  confluence: 'cc_editor_insm_doc_size_stats'
@@ -1233,5 +1241,14 @@ export var editorExperimentsConfig = {
1233
1241
  },
1234
1242
  param: 'isEnabled',
1235
1243
  defaultValue: false
1244
+ }),
1245
+ // Added 2026-01-14
1246
+ platform_editor_context_context_types_migration: createBooleanExperiment({
1247
+ productKeys: {
1248
+ confluence: 'platform_editor_context_context_types_migration',
1249
+ jira: 'platform_editor_context_context_types_migration'
1250
+ },
1251
+ param: 'isEnabled',
1252
+ defaultValue: false
1236
1253
  })
1237
1254
  };
@@ -193,6 +193,12 @@ export declare const editorExperimentsConfig: {
193
193
  productKeys?: ProductKeys;
194
194
  typeGuard: IsBooleanType;
195
195
  };
196
+ confluence_max_width_breakout_extension_fix: {
197
+ defaultValue: boolean;
198
+ param: string;
199
+ productKeys?: ProductKeys;
200
+ typeGuard: IsBooleanType;
201
+ };
196
202
  'example-boolean': {
197
203
  defaultValue: boolean;
198
204
  param: string;
@@ -914,5 +920,11 @@ export declare const editorExperimentsConfig: {
914
920
  productKeys?: ProductKeys;
915
921
  typeGuard: IsBooleanType;
916
922
  };
923
+ platform_editor_context_context_types_migration: {
924
+ defaultValue: boolean;
925
+ param: string;
926
+ productKeys?: ProductKeys;
927
+ typeGuard: IsBooleanType;
928
+ };
917
929
  };
918
930
  export {};
@@ -193,6 +193,12 @@ export declare const editorExperimentsConfig: {
193
193
  productKeys?: ProductKeys;
194
194
  typeGuard: IsBooleanType;
195
195
  };
196
+ confluence_max_width_breakout_extension_fix: {
197
+ defaultValue: boolean;
198
+ param: string;
199
+ productKeys?: ProductKeys;
200
+ typeGuard: IsBooleanType;
201
+ };
196
202
  'example-boolean': {
197
203
  defaultValue: boolean;
198
204
  param: string;
@@ -914,5 +920,11 @@ export declare const editorExperimentsConfig: {
914
920
  productKeys?: ProductKeys;
915
921
  typeGuard: IsBooleanType;
916
922
  };
923
+ platform_editor_context_context_types_migration: {
924
+ defaultValue: boolean;
925
+ param: string;
926
+ productKeys?: ProductKeys;
927
+ typeGuard: IsBooleanType;
928
+ };
917
929
  };
918
930
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "16.23.0",
3
+ "version": "16.24.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",