@atlaskit/tmp-editor-statsig 188.0.0 → 189.0.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,30 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 189.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`3c205719730cb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3c205719730cb) -
8
+ Cleanup `platform_editor_table_nested_content_mode_fix` (`FFCLEANUP-152658`). Nested table renders
9
+ now permanently disable content mode, preserving the fully rolled-out behavior. The experiment is
10
+ removed from `@atlaskit/tmp-editor-statsig`; consumers that reference its typed
11
+ `editorExperimentsConfig` entry must remove those references when upgrading.
12
+ - [`66b95ac437117`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/66b95ac437117) -
13
+ Remove the `platform_editor_table_menu_updates_patch_3` experiment from the public experiment
14
+ configuration. Consumers must stop resolving this experiment through `expValEquals`; the table
15
+ menu now uses the permanent `true` behavior.
16
+ - [`8ed2cba592e7a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8ed2cba592e7a) -
17
+ Clean up the retired table sticky-header experiment.
18
+ - Preserve the permanently enabled sticky-header drag-row positioning.
19
+ - Remove the retired experiment configuration. Consumers should remove any overrides and rely on
20
+ the permanently enabled behavior.
21
+
22
+ ### Patch Changes
23
+
24
+ - [`8c22b996302b5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c22b996302b5) -
25
+ Clean up the permanently enabled `platform_editor_table_fit_to_content_auto_convert` experiment
26
+ and keep table fit-to-content conversion enabled across the editor and renderer.
27
+
3
28
  ## 188.0.0
4
29
 
5
30
  ### Major Changes
@@ -45,7 +45,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
45
45
  platform_editor_enable_single_player_step_merging: false,
46
46
  platform_editor_paste_actions_menu: false,
47
47
  platform_editor_table_fit_to_content_on_demand: false,
48
- platform_editor_table_fit_to_content_auto_convert: false,
49
48
  platform_editor_table_q4_loveability: false,
50
49
  platform_editor_table_menu_updates: false,
51
50
  'cwr-modal-ui-refresh': false,
@@ -289,11 +289,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
289
289
  param: 'isEnabled',
290
290
  defaultValue: false
291
291
  }),
292
- // Added 2026-07-20
293
- platform_editor_table_sticky_header_patch_12: (0, _createBooleanExperiment.createBooleanExperiment)({
294
- param: 'isEnabled',
295
- defaultValue: false
296
- }),
297
292
  // Added 2026-01-05
298
293
  'company_hub_carousel_thumbnails-refactor': (0, _createBooleanExperiment.createBooleanExperiment)({
299
294
  productKeys: {
@@ -1181,21 +1176,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1181
1176
  param: 'isEnabled',
1182
1177
  defaultValue: false
1183
1178
  }),
1184
- platform_editor_table_fit_to_content_auto_convert: (0, _createBooleanExperiment.createBooleanExperiment)({
1185
- productKeys: {
1186
- confluence: 'platform_editor_table_fit_to_content_auto_convert'
1187
- },
1188
- param: 'isEnabled',
1189
- defaultValue: false
1190
- }),
1191
- // Added 2026-07-28
1192
- platform_editor_table_nested_content_mode_fix: (0, _createBooleanExperiment.createBooleanExperiment)({
1193
- productKeys: {
1194
- confluence: 'platform_editor_table_nested_content_mode_fix'
1195
- },
1196
- param: 'isEnabled',
1197
- defaultValue: false
1198
- }),
1199
1179
  platform_editor_table_fit_to_content_on_demand: (0, _createBooleanExperiment.createBooleanExperiment)({
1200
1180
  productKeys: {
1201
1181
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -1674,15 +1654,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1674
1654
  param: 'value',
1675
1655
  defaultValue: false
1676
1656
  }),
1677
- // Added 2026-07-31
1678
- platform_editor_table_menu_updates_patch_3: (0, _createBooleanExperiment.createBooleanExperiment)({
1679
- productKeys: {
1680
- confluence: 'platform_editor_table_menu_updates_patch_3',
1681
- jira: 'platform_editor_table_menu_updates_patch_3'
1682
- },
1683
- param: 'isEnabled',
1684
- defaultValue: false
1685
- }),
1686
1657
  // Added 2026-07-28
1687
1658
  cwr_publish_flow_live_doc_toggle_exp: (0, _createMultivariateExperiment.createMultivariateExperiment)({
1688
1659
  productKeys: {
@@ -39,7 +39,6 @@ export const testBooleanOverrides = {
39
39
  platform_editor_enable_single_player_step_merging: false,
40
40
  platform_editor_paste_actions_menu: false,
41
41
  platform_editor_table_fit_to_content_on_demand: false,
42
- platform_editor_table_fit_to_content_auto_convert: false,
43
42
  platform_editor_table_q4_loveability: false,
44
43
  platform_editor_table_menu_updates: false,
45
44
  'cwr-modal-ui-refresh': false,
@@ -283,11 +283,6 @@ export const editorExperimentsConfig = {
283
283
  param: 'isEnabled',
284
284
  defaultValue: false
285
285
  }),
286
- // Added 2026-07-20
287
- platform_editor_table_sticky_header_patch_12: createBooleanExperiment({
288
- param: 'isEnabled',
289
- defaultValue: false
290
- }),
291
286
  // Added 2026-01-05
292
287
  'company_hub_carousel_thumbnails-refactor': createBooleanExperiment({
293
288
  productKeys: {
@@ -1175,21 +1170,6 @@ export const editorExperimentsConfig = {
1175
1170
  param: 'isEnabled',
1176
1171
  defaultValue: false
1177
1172
  }),
1178
- platform_editor_table_fit_to_content_auto_convert: createBooleanExperiment({
1179
- productKeys: {
1180
- confluence: 'platform_editor_table_fit_to_content_auto_convert'
1181
- },
1182
- param: 'isEnabled',
1183
- defaultValue: false
1184
- }),
1185
- // Added 2026-07-28
1186
- platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
1187
- productKeys: {
1188
- confluence: 'platform_editor_table_nested_content_mode_fix'
1189
- },
1190
- param: 'isEnabled',
1191
- defaultValue: false
1192
- }),
1193
1173
  platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
1194
1174
  productKeys: {
1195
1175
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -1668,15 +1648,6 @@ export const editorExperimentsConfig = {
1668
1648
  param: 'value',
1669
1649
  defaultValue: false
1670
1650
  }),
1671
- // Added 2026-07-31
1672
- platform_editor_table_menu_updates_patch_3: createBooleanExperiment({
1673
- productKeys: {
1674
- confluence: 'platform_editor_table_menu_updates_patch_3',
1675
- jira: 'platform_editor_table_menu_updates_patch_3'
1676
- },
1677
- param: 'isEnabled',
1678
- defaultValue: false
1679
- }),
1680
1651
  // Added 2026-07-28
1681
1652
  cwr_publish_flow_live_doc_toggle_exp: createMultivariateExperiment({
1682
1653
  productKeys: {
@@ -39,7 +39,6 @@ export var testBooleanOverrides = {
39
39
  platform_editor_enable_single_player_step_merging: false,
40
40
  platform_editor_paste_actions_menu: false,
41
41
  platform_editor_table_fit_to_content_on_demand: false,
42
- platform_editor_table_fit_to_content_auto_convert: false,
43
42
  platform_editor_table_q4_loveability: false,
44
43
  platform_editor_table_menu_updates: false,
45
44
  'cwr-modal-ui-refresh': false,
@@ -283,11 +283,6 @@ export var editorExperimentsConfig = {
283
283
  param: 'isEnabled',
284
284
  defaultValue: false
285
285
  }),
286
- // Added 2026-07-20
287
- platform_editor_table_sticky_header_patch_12: createBooleanExperiment({
288
- param: 'isEnabled',
289
- defaultValue: false
290
- }),
291
286
  // Added 2026-01-05
292
287
  'company_hub_carousel_thumbnails-refactor': createBooleanExperiment({
293
288
  productKeys: {
@@ -1175,21 +1170,6 @@ export var editorExperimentsConfig = {
1175
1170
  param: 'isEnabled',
1176
1171
  defaultValue: false
1177
1172
  }),
1178
- platform_editor_table_fit_to_content_auto_convert: createBooleanExperiment({
1179
- productKeys: {
1180
- confluence: 'platform_editor_table_fit_to_content_auto_convert'
1181
- },
1182
- param: 'isEnabled',
1183
- defaultValue: false
1184
- }),
1185
- // Added 2026-07-28
1186
- platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
1187
- productKeys: {
1188
- confluence: 'platform_editor_table_nested_content_mode_fix'
1189
- },
1190
- param: 'isEnabled',
1191
- defaultValue: false
1192
- }),
1193
1173
  platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
1194
1174
  productKeys: {
1195
1175
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -1668,15 +1648,6 @@ export var editorExperimentsConfig = {
1668
1648
  param: 'value',
1669
1649
  defaultValue: false
1670
1650
  }),
1671
- // Added 2026-07-31
1672
- platform_editor_table_menu_updates_patch_3: createBooleanExperiment({
1673
- productKeys: {
1674
- confluence: 'platform_editor_table_menu_updates_patch_3',
1675
- jira: 'platform_editor_table_menu_updates_patch_3'
1676
- },
1677
- param: 'isEnabled',
1678
- defaultValue: false
1679
- }),
1680
1651
  // Added 2026-07-28
1681
1652
  cwr_publish_flow_live_doc_toggle_exp: createMultivariateExperiment({
1682
1653
  productKeys: {
@@ -491,12 +491,6 @@ export declare const editorExperimentsConfig: {
491
491
  typeGuard: (value: unknown) => value is 'control' | 'test_with_overflow' | 'test_without_overflow';
492
492
  values: ('control' | 'test_with_overflow' | 'test_without_overflow')[];
493
493
  };
494
- platform_editor_table_sticky_header_patch_12: {
495
- defaultValue: boolean;
496
- param: string;
497
- productKeys?: ProductKeys;
498
- typeGuard: IsBooleanType;
499
- };
500
494
  platform_editor_tables_table_selector: {
501
495
  defaultValue: boolean;
502
496
  param: string;
@@ -926,18 +920,6 @@ export declare const editorExperimentsConfig: {
926
920
  productKeys?: ProductKeys;
927
921
  typeGuard: IsBooleanType;
928
922
  };
929
- platform_editor_table_fit_to_content_auto_convert: {
930
- defaultValue: boolean;
931
- param: string;
932
- productKeys?: ProductKeys;
933
- typeGuard: IsBooleanType;
934
- };
935
- platform_editor_table_nested_content_mode_fix: {
936
- defaultValue: boolean;
937
- param: string;
938
- productKeys?: ProductKeys;
939
- typeGuard: IsBooleanType;
940
- };
941
923
  platform_editor_table_fit_to_content_on_demand: {
942
924
  defaultValue: boolean;
943
925
  param: string;
@@ -1216,12 +1198,6 @@ export declare const editorExperimentsConfig: {
1216
1198
  typeGuard: (value: unknown) => value is 'control' | 'variant_a' | 'variant_b';
1217
1199
  values: ('control' | 'variant_a' | 'variant_b')[];
1218
1200
  };
1219
- platform_editor_table_menu_updates_patch_3: {
1220
- defaultValue: boolean;
1221
- param: string;
1222
- productKeys?: ProductKeys;
1223
- typeGuard: IsBooleanType;
1224
- };
1225
1201
  cwr_publish_flow_live_doc_toggle_exp: {
1226
1202
  defaultValue: 'control' | 'variantA' | 'variantB' | 'variantC';
1227
1203
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "188.0.0",
3
+ "version": "189.0.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",