@atlaskit/tmp-editor-statsig 40.3.0 → 40.5.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 40.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`3bc16a4221f74`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3bc16a4221f74) -
8
+ [ux] EDITOR-5746 fix bug where drop targets appeared (and never cleared) after table row drag
9
+
10
+ ## 40.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`bf8678936e092`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bf8678936e092) -
15
+ Add platform_sl_3p_auth_rovo_action experiment
16
+
3
17
  ## 40.3.0
4
18
 
5
19
  ### Minor Changes
@@ -17,6 +17,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
17
17
  cc_fd_db_top_editor_toolbar: 'control'
18
18
  };
19
19
  var testBooleanOverrides = exports.testBooleanOverrides = {
20
+ platform_sl_3p_auth_rovo_action: false,
20
21
  cwr_blank_object_experiment: false,
21
22
  cc_editor_hover_link_overlay_css_fix: false,
22
23
  platform_editor_feedback_mandatory_rating: false,
@@ -1073,6 +1073,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1073
1073
  param: 'cohort',
1074
1074
  defaultValue: 'control'
1075
1075
  }),
1076
+ // Added 2026-03-17 - 3P auth Rovo actions on smart link hover card (boolean: isEnabled)
1077
+ platform_sl_3p_auth_rovo_action: (0, _experimentBuilders.createBooleanExperiment)({
1078
+ productKeys: {
1079
+ confluence: 'platform_sl_3p_auth_rovo_action',
1080
+ jira: 'platform_sl_3p_auth_rovo_action'
1081
+ },
1082
+ param: 'isEnabled',
1083
+ defaultValue: false
1084
+ }),
1076
1085
  // Added 2025-12-03
1077
1086
  platform_editor_use_pmr_for_collab_presence_non_ic: (0, _experimentBuilders.createBooleanExperiment)({
1078
1087
  productKeys: {
@@ -1660,6 +1669,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1660
1669
  param: 'isEnabled',
1661
1670
  defaultValue: false
1662
1671
  }),
1672
+ // Added 2026-03-19
1673
+ platform_editor_fix_table_row_drag_drop_target: (0, _experimentBuilders.createBooleanExperiment)({
1674
+ productKeys: {
1675
+ confluence: 'platform_editor_fix_table_row_drag_drop_target'
1676
+ },
1677
+ param: 'isEnabled',
1678
+ defaultValue: false
1679
+ }),
1663
1680
  // Added 2026-03-11
1664
1681
  platform_editor_remove_grid_init_reflow: (0, _experimentBuilders.createBooleanExperiment)({
1665
1682
  productKeys: {
@@ -1757,5 +1774,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1757
1774
  },
1758
1775
  param: 'isEnabled',
1759
1776
  defaultValue: false
1777
+ }),
1778
+ // Added 2026-03-15
1779
+ platform_editor_sync_block_ssr_config: (0, _experimentBuilders.createBooleanExperiment)({
1780
+ productKeys: {
1781
+ confluence: 'platform_editor_sync_block_ssr_config'
1782
+ },
1783
+ param: 'isEnabled',
1784
+ defaultValue: false
1760
1785
  })
1761
1786
  };
@@ -11,6 +11,7 @@ export const testMultivariateOverrides = {
11
11
  cc_fd_db_top_editor_toolbar: 'control'
12
12
  };
13
13
  export const testBooleanOverrides = {
14
+ platform_sl_3p_auth_rovo_action: false,
14
15
  cwr_blank_object_experiment: false,
15
16
  cc_editor_hover_link_overlay_css_fix: false,
16
17
  platform_editor_feedback_mandatory_rating: false,
@@ -1067,6 +1067,15 @@ export const editorExperimentsConfig = {
1067
1067
  param: 'cohort',
1068
1068
  defaultValue: 'control'
1069
1069
  }),
1070
+ // Added 2026-03-17 - 3P auth Rovo actions on smart link hover card (boolean: isEnabled)
1071
+ platform_sl_3p_auth_rovo_action: createBooleanExperiment({
1072
+ productKeys: {
1073
+ confluence: 'platform_sl_3p_auth_rovo_action',
1074
+ jira: 'platform_sl_3p_auth_rovo_action'
1075
+ },
1076
+ param: 'isEnabled',
1077
+ defaultValue: false
1078
+ }),
1070
1079
  // Added 2025-12-03
1071
1080
  platform_editor_use_pmr_for_collab_presence_non_ic: createBooleanExperiment({
1072
1081
  productKeys: {
@@ -1654,6 +1663,14 @@ export const editorExperimentsConfig = {
1654
1663
  param: 'isEnabled',
1655
1664
  defaultValue: false
1656
1665
  }),
1666
+ // Added 2026-03-19
1667
+ platform_editor_fix_table_row_drag_drop_target: createBooleanExperiment({
1668
+ productKeys: {
1669
+ confluence: 'platform_editor_fix_table_row_drag_drop_target'
1670
+ },
1671
+ param: 'isEnabled',
1672
+ defaultValue: false
1673
+ }),
1657
1674
  // Added 2026-03-11
1658
1675
  platform_editor_remove_grid_init_reflow: createBooleanExperiment({
1659
1676
  productKeys: {
@@ -1751,5 +1768,13 @@ export const editorExperimentsConfig = {
1751
1768
  },
1752
1769
  param: 'isEnabled',
1753
1770
  defaultValue: false
1771
+ }),
1772
+ // Added 2026-03-15
1773
+ platform_editor_sync_block_ssr_config: createBooleanExperiment({
1774
+ productKeys: {
1775
+ confluence: 'platform_editor_sync_block_ssr_config'
1776
+ },
1777
+ param: 'isEnabled',
1778
+ defaultValue: false
1754
1779
  })
1755
1780
  };
@@ -11,6 +11,7 @@ export var testMultivariateOverrides = {
11
11
  cc_fd_db_top_editor_toolbar: 'control'
12
12
  };
13
13
  export var testBooleanOverrides = {
14
+ platform_sl_3p_auth_rovo_action: false,
14
15
  cwr_blank_object_experiment: false,
15
16
  cc_editor_hover_link_overlay_css_fix: false,
16
17
  platform_editor_feedback_mandatory_rating: false,
@@ -1067,6 +1067,15 @@ export var editorExperimentsConfig = {
1067
1067
  param: 'cohort',
1068
1068
  defaultValue: 'control'
1069
1069
  }),
1070
+ // Added 2026-03-17 - 3P auth Rovo actions on smart link hover card (boolean: isEnabled)
1071
+ platform_sl_3p_auth_rovo_action: createBooleanExperiment({
1072
+ productKeys: {
1073
+ confluence: 'platform_sl_3p_auth_rovo_action',
1074
+ jira: 'platform_sl_3p_auth_rovo_action'
1075
+ },
1076
+ param: 'isEnabled',
1077
+ defaultValue: false
1078
+ }),
1070
1079
  // Added 2025-12-03
1071
1080
  platform_editor_use_pmr_for_collab_presence_non_ic: createBooleanExperiment({
1072
1081
  productKeys: {
@@ -1654,6 +1663,14 @@ export var editorExperimentsConfig = {
1654
1663
  param: 'isEnabled',
1655
1664
  defaultValue: false
1656
1665
  }),
1666
+ // Added 2026-03-19
1667
+ platform_editor_fix_table_row_drag_drop_target: createBooleanExperiment({
1668
+ productKeys: {
1669
+ confluence: 'platform_editor_fix_table_row_drag_drop_target'
1670
+ },
1671
+ param: 'isEnabled',
1672
+ defaultValue: false
1673
+ }),
1657
1674
  // Added 2026-03-11
1658
1675
  platform_editor_remove_grid_init_reflow: createBooleanExperiment({
1659
1676
  productKeys: {
@@ -1751,5 +1768,13 @@ export var editorExperimentsConfig = {
1751
1768
  },
1752
1769
  param: 'isEnabled',
1753
1770
  defaultValue: false
1771
+ }),
1772
+ // Added 2026-03-15
1773
+ platform_editor_sync_block_ssr_config: createBooleanExperiment({
1774
+ productKeys: {
1775
+ confluence: 'platform_editor_sync_block_ssr_config'
1776
+ },
1777
+ param: 'isEnabled',
1778
+ defaultValue: false
1754
1779
  })
1755
1780
  };
@@ -730,6 +730,12 @@ export declare const editorExperimentsConfig: {
730
730
  typeGuard: (value: unknown) => value is 'control' | 'card_by_default_only' | 'card_by_default_and_new_design';
731
731
  values: ('control' | 'card_by_default_only' | 'card_by_default_and_new_design')[];
732
732
  };
733
+ platform_sl_3p_auth_rovo_action: {
734
+ defaultValue: boolean;
735
+ param: string;
736
+ productKeys?: ProductKeys;
737
+ typeGuard: IsBooleanType;
738
+ };
733
739
  platform_synced_block: {
734
740
  defaultValue: boolean;
735
741
  param: string;
@@ -1218,6 +1224,12 @@ export declare const editorExperimentsConfig: {
1218
1224
  productKeys?: ProductKeys;
1219
1225
  typeGuard: IsBooleanType;
1220
1226
  };
1227
+ platform_editor_fix_table_row_drag_drop_target: {
1228
+ defaultValue: boolean;
1229
+ param: string;
1230
+ productKeys?: ProductKeys;
1231
+ typeGuard: IsBooleanType;
1232
+ };
1221
1233
  platform_editor_remove_grid_init_reflow: {
1222
1234
  defaultValue: boolean;
1223
1235
  param: string;
@@ -1290,5 +1302,11 @@ export declare const editorExperimentsConfig: {
1290
1302
  productKeys?: ProductKeys;
1291
1303
  typeGuard: IsBooleanType;
1292
1304
  };
1305
+ platform_editor_sync_block_ssr_config: {
1306
+ defaultValue: boolean;
1307
+ param: string;
1308
+ productKeys?: ProductKeys;
1309
+ typeGuard: IsBooleanType;
1310
+ };
1293
1311
  };
1294
1312
  export {};
@@ -730,6 +730,12 @@ export declare const editorExperimentsConfig: {
730
730
  typeGuard: (value: unknown) => value is 'control' | 'card_by_default_only' | 'card_by_default_and_new_design';
731
731
  values: ('control' | 'card_by_default_only' | 'card_by_default_and_new_design')[];
732
732
  };
733
+ platform_sl_3p_auth_rovo_action: {
734
+ defaultValue: boolean;
735
+ param: string;
736
+ productKeys?: ProductKeys;
737
+ typeGuard: IsBooleanType;
738
+ };
733
739
  platform_synced_block: {
734
740
  defaultValue: boolean;
735
741
  param: string;
@@ -1218,6 +1224,12 @@ export declare const editorExperimentsConfig: {
1218
1224
  productKeys?: ProductKeys;
1219
1225
  typeGuard: IsBooleanType;
1220
1226
  };
1227
+ platform_editor_fix_table_row_drag_drop_target: {
1228
+ defaultValue: boolean;
1229
+ param: string;
1230
+ productKeys?: ProductKeys;
1231
+ typeGuard: IsBooleanType;
1232
+ };
1221
1233
  platform_editor_remove_grid_init_reflow: {
1222
1234
  defaultValue: boolean;
1223
1235
  param: string;
@@ -1290,5 +1302,11 @@ export declare const editorExperimentsConfig: {
1290
1302
  productKeys?: ProductKeys;
1291
1303
  typeGuard: IsBooleanType;
1292
1304
  };
1305
+ platform_editor_sync_block_ssr_config: {
1306
+ defaultValue: boolean;
1307
+ param: string;
1308
+ productKeys?: ProductKeys;
1309
+ typeGuard: IsBooleanType;
1310
+ };
1293
1311
  };
1294
1312
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "40.3.0",
3
+ "version": "40.5.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",