@atlaskit/tmp-editor-statsig 86.0.0 → 87.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,26 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 87.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`fae885a16a206`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fae885a16a206) -
8
+ FFCLEANUP-97994 clean up experiment platform_editor_fix_table_row_drag_drop_target
9
+
10
+ ### Minor Changes
11
+
12
+ - [`52a08b0d14e39`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/52a08b0d14e39) -
13
+ Add code block language auto-detection experiment
14
+
15
+ ## 86.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [`94ca4284e9ee1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/94ca4284e9ee1) -
20
+ Adds gated post-auth Rovo Chat onboarding for Google Drive SmartLinks. After a successful GDrive
21
+ SmartLink auth, eligible treatment users see Rovo Chat open as a mini-modal with the authenticated
22
+ GDrive URL provided as context and no prompt auto-sent.
23
+
3
24
  ## 86.0.0
4
25
 
5
26
  ### Major Changes
@@ -549,6 +549,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
549
549
  param: 'isEnabled',
550
550
  defaultValue: false
551
551
  }),
552
+ // Added 2026-05-25
553
+ platform_editor_code_block_auto_detection: (0, _experimentBuilders.createBooleanExperiment)({
554
+ productKeys: {
555
+ confluence: 'platform_editor_code_block_auto_detection',
556
+ jira: 'platform_editor_code_block_auto_detection'
557
+ },
558
+ param: 'isEnabled',
559
+ defaultValue: false
560
+ }),
552
561
  // Added 2025-07-14
553
562
  platform_editor_debounce_portal_provider: (0, _experimentBuilders.createBooleanExperiment)({
554
563
  productKeys: {
@@ -1039,6 +1048,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1039
1048
  param: 'isEnabled',
1040
1049
  defaultValue: false
1041
1050
  }),
1051
+ // Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
1052
+ platform_sl_3p_post_auth_chat_open_exp: (0, _experimentBuilders.createBooleanExperiment)({
1053
+ productKeys: {
1054
+ confluence: 'platform_sl_3p_post_auth_chat_open_exp',
1055
+ jira: 'platform_sl_3p_post_auth_chat_open_exp'
1056
+ },
1057
+ param: 'isEnabled',
1058
+ defaultValue: false
1059
+ }),
1042
1060
  // Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
1043
1061
  platform_sl_3p_preauth_social_proof_inline_cta: (0, _experimentBuilders.createBooleanExperiment)({
1044
1062
  productKeys: {
@@ -1387,6 +1405,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1387
1405
  param: 'isEnabled',
1388
1406
  defaultValue: false
1389
1407
  }),
1408
+ // Added 2026-05-26
1409
+ 'cc-maui-ai-edit-loading-experiment': (0, _experimentBuilders.createBooleanExperiment)({
1410
+ productKeys: {
1411
+ confluence: 'cc-maui-ai-edit-loading-experiment'
1412
+ },
1413
+ param: 'isEnabled',
1414
+ defaultValue: false
1415
+ }),
1390
1416
  // Added 2026-03-05
1391
1417
  'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
1392
1418
  productKeys: {
@@ -1625,14 +1651,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1625
1651
  param: 'isEnabled',
1626
1652
  defaultValue: false
1627
1653
  }),
1628
- // Added 2026-03-19
1629
- platform_editor_fix_table_row_drag_drop_target: (0, _experimentBuilders.createBooleanExperiment)({
1630
- productKeys: {
1631
- confluence: 'platform_editor_fix_table_row_drag_drop_target'
1632
- },
1633
- param: 'isEnabled',
1634
- defaultValue: false
1635
- }),
1636
1654
  platform_editor_small_font_size: (0, _experimentBuilders.createBooleanExperiment)({
1637
1655
  productKeys: {
1638
1656
  confluence: 'platform_editor_small_font_size',
@@ -543,6 +543,15 @@ export const editorExperimentsConfig = {
543
543
  param: 'isEnabled',
544
544
  defaultValue: false
545
545
  }),
546
+ // Added 2026-05-25
547
+ platform_editor_code_block_auto_detection: createBooleanExperiment({
548
+ productKeys: {
549
+ confluence: 'platform_editor_code_block_auto_detection',
550
+ jira: 'platform_editor_code_block_auto_detection'
551
+ },
552
+ param: 'isEnabled',
553
+ defaultValue: false
554
+ }),
546
555
  // Added 2025-07-14
547
556
  platform_editor_debounce_portal_provider: createBooleanExperiment({
548
557
  productKeys: {
@@ -1033,6 +1042,15 @@ export const editorExperimentsConfig = {
1033
1042
  param: 'isEnabled',
1034
1043
  defaultValue: false
1035
1044
  }),
1045
+ // Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
1046
+ platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
1047
+ productKeys: {
1048
+ confluence: 'platform_sl_3p_post_auth_chat_open_exp',
1049
+ jira: 'platform_sl_3p_post_auth_chat_open_exp'
1050
+ },
1051
+ param: 'isEnabled',
1052
+ defaultValue: false
1053
+ }),
1036
1054
  // Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
1037
1055
  platform_sl_3p_preauth_social_proof_inline_cta: createBooleanExperiment({
1038
1056
  productKeys: {
@@ -1381,6 +1399,14 @@ export const editorExperimentsConfig = {
1381
1399
  param: 'isEnabled',
1382
1400
  defaultValue: false
1383
1401
  }),
1402
+ // Added 2026-05-26
1403
+ 'cc-maui-ai-edit-loading-experiment': createBooleanExperiment({
1404
+ productKeys: {
1405
+ confluence: 'cc-maui-ai-edit-loading-experiment'
1406
+ },
1407
+ param: 'isEnabled',
1408
+ defaultValue: false
1409
+ }),
1384
1410
  // Added 2026-03-05
1385
1411
  'cc-mui-slides-experiment': createBooleanExperiment({
1386
1412
  productKeys: {
@@ -1619,14 +1645,6 @@ export const editorExperimentsConfig = {
1619
1645
  param: 'isEnabled',
1620
1646
  defaultValue: false
1621
1647
  }),
1622
- // Added 2026-03-19
1623
- platform_editor_fix_table_row_drag_drop_target: createBooleanExperiment({
1624
- productKeys: {
1625
- confluence: 'platform_editor_fix_table_row_drag_drop_target'
1626
- },
1627
- param: 'isEnabled',
1628
- defaultValue: false
1629
- }),
1630
1648
  platform_editor_small_font_size: createBooleanExperiment({
1631
1649
  productKeys: {
1632
1650
  confluence: 'platform_editor_small_font_size',
@@ -543,6 +543,15 @@ export var editorExperimentsConfig = {
543
543
  param: 'isEnabled',
544
544
  defaultValue: false
545
545
  }),
546
+ // Added 2026-05-25
547
+ platform_editor_code_block_auto_detection: createBooleanExperiment({
548
+ productKeys: {
549
+ confluence: 'platform_editor_code_block_auto_detection',
550
+ jira: 'platform_editor_code_block_auto_detection'
551
+ },
552
+ param: 'isEnabled',
553
+ defaultValue: false
554
+ }),
546
555
  // Added 2025-07-14
547
556
  platform_editor_debounce_portal_provider: createBooleanExperiment({
548
557
  productKeys: {
@@ -1033,6 +1042,15 @@ export var editorExperimentsConfig = {
1033
1042
  param: 'isEnabled',
1034
1043
  defaultValue: false
1035
1044
  }),
1045
+ // Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
1046
+ platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
1047
+ productKeys: {
1048
+ confluence: 'platform_sl_3p_post_auth_chat_open_exp',
1049
+ jira: 'platform_sl_3p_post_auth_chat_open_exp'
1050
+ },
1051
+ param: 'isEnabled',
1052
+ defaultValue: false
1053
+ }),
1036
1054
  // Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
1037
1055
  platform_sl_3p_preauth_social_proof_inline_cta: createBooleanExperiment({
1038
1056
  productKeys: {
@@ -1381,6 +1399,14 @@ export var editorExperimentsConfig = {
1381
1399
  param: 'isEnabled',
1382
1400
  defaultValue: false
1383
1401
  }),
1402
+ // Added 2026-05-26
1403
+ 'cc-maui-ai-edit-loading-experiment': createBooleanExperiment({
1404
+ productKeys: {
1405
+ confluence: 'cc-maui-ai-edit-loading-experiment'
1406
+ },
1407
+ param: 'isEnabled',
1408
+ defaultValue: false
1409
+ }),
1384
1410
  // Added 2026-03-05
1385
1411
  'cc-mui-slides-experiment': createBooleanExperiment({
1386
1412
  productKeys: {
@@ -1619,14 +1645,6 @@ export var editorExperimentsConfig = {
1619
1645
  param: 'isEnabled',
1620
1646
  defaultValue: false
1621
1647
  }),
1622
- // Added 2026-03-19
1623
- platform_editor_fix_table_row_drag_drop_target: createBooleanExperiment({
1624
- productKeys: {
1625
- confluence: 'platform_editor_fix_table_row_drag_drop_target'
1626
- },
1627
- param: 'isEnabled',
1628
- defaultValue: false
1629
- }),
1630
1648
  platform_editor_small_font_size: createBooleanExperiment({
1631
1649
  productKeys: {
1632
1650
  confluence: 'platform_editor_small_font_size',
@@ -179,6 +179,12 @@ export declare const editorExperimentsConfig: {
179
179
  productKeys?: ProductKeys;
180
180
  typeGuard: IsBooleanType;
181
181
  };
182
+ platform_editor_code_block_auto_detection: {
183
+ defaultValue: boolean;
184
+ param: string;
185
+ productKeys?: ProductKeys;
186
+ typeGuard: IsBooleanType;
187
+ };
182
188
  platform_editor_render_bodied_extension_as_inline: {
183
189
  defaultValue: boolean;
184
190
  param: string;
@@ -736,6 +742,12 @@ export declare const editorExperimentsConfig: {
736
742
  productKeys?: ProductKeys;
737
743
  typeGuard: IsBooleanType;
738
744
  };
745
+ platform_sl_3p_post_auth_chat_open_exp: {
746
+ defaultValue: boolean;
747
+ param: string;
748
+ productKeys?: ProductKeys;
749
+ typeGuard: IsBooleanType;
750
+ };
739
751
  platform_sl_3p_preauth_social_proof_inline_cta: {
740
752
  defaultValue: boolean;
741
753
  param: string;
@@ -1075,6 +1087,12 @@ export declare const editorExperimentsConfig: {
1075
1087
  productKeys?: ProductKeys;
1076
1088
  typeGuard: IsBooleanType;
1077
1089
  };
1090
+ 'cc-maui-ai-edit-loading-experiment': {
1091
+ defaultValue: boolean;
1092
+ param: string;
1093
+ productKeys?: ProductKeys;
1094
+ typeGuard: IsBooleanType;
1095
+ };
1078
1096
  'cc-mui-slides-experiment': {
1079
1097
  defaultValue: boolean;
1080
1098
  param: string;
@@ -1255,12 +1273,6 @@ export declare const editorExperimentsConfig: {
1255
1273
  productKeys?: ProductKeys;
1256
1274
  typeGuard: IsBooleanType;
1257
1275
  };
1258
- platform_editor_fix_table_row_drag_drop_target: {
1259
- defaultValue: boolean;
1260
- param: string;
1261
- productKeys?: ProductKeys;
1262
- typeGuard: IsBooleanType;
1263
- };
1264
1276
  platform_editor_small_font_size: {
1265
1277
  defaultValue: boolean;
1266
1278
  param: string;
@@ -179,6 +179,12 @@ export declare const editorExperimentsConfig: {
179
179
  productKeys?: ProductKeys;
180
180
  typeGuard: IsBooleanType;
181
181
  };
182
+ platform_editor_code_block_auto_detection: {
183
+ defaultValue: boolean;
184
+ param: string;
185
+ productKeys?: ProductKeys;
186
+ typeGuard: IsBooleanType;
187
+ };
182
188
  platform_editor_render_bodied_extension_as_inline: {
183
189
  defaultValue: boolean;
184
190
  param: string;
@@ -736,6 +742,12 @@ export declare const editorExperimentsConfig: {
736
742
  productKeys?: ProductKeys;
737
743
  typeGuard: IsBooleanType;
738
744
  };
745
+ platform_sl_3p_post_auth_chat_open_exp: {
746
+ defaultValue: boolean;
747
+ param: string;
748
+ productKeys?: ProductKeys;
749
+ typeGuard: IsBooleanType;
750
+ };
739
751
  platform_sl_3p_preauth_social_proof_inline_cta: {
740
752
  defaultValue: boolean;
741
753
  param: string;
@@ -1075,6 +1087,12 @@ export declare const editorExperimentsConfig: {
1075
1087
  productKeys?: ProductKeys;
1076
1088
  typeGuard: IsBooleanType;
1077
1089
  };
1090
+ 'cc-maui-ai-edit-loading-experiment': {
1091
+ defaultValue: boolean;
1092
+ param: string;
1093
+ productKeys?: ProductKeys;
1094
+ typeGuard: IsBooleanType;
1095
+ };
1078
1096
  'cc-mui-slides-experiment': {
1079
1097
  defaultValue: boolean;
1080
1098
  param: string;
@@ -1255,12 +1273,6 @@ export declare const editorExperimentsConfig: {
1255
1273
  productKeys?: ProductKeys;
1256
1274
  typeGuard: IsBooleanType;
1257
1275
  };
1258
- platform_editor_fix_table_row_drag_drop_target: {
1259
- defaultValue: boolean;
1260
- param: string;
1261
- productKeys?: ProductKeys;
1262
- typeGuard: IsBooleanType;
1263
- };
1264
1276
  platform_editor_small_font_size: {
1265
1277
  defaultValue: boolean;
1266
1278
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "86.0.0",
3
+ "version": "87.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",