@atlaskit/tmp-editor-statsig 36.1.0 → 36.2.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 +11 -0
- package/dist/cjs/experiments-config.js +33 -0
- package/dist/es2019/experiments-config.js +33 -0
- package/dist/esm/experiments-config.js +33 -0
- package/dist/types/experiments-config.d.ts +24 -0
- package/dist/types-ts4.5/experiments-config.d.ts +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 36.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b941a7ee841df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b941a7ee841df) -
|
|
8
|
+
EDITOR-5683 update outdated browser list to exclude browser versions before March 2024
|
|
9
|
+
- [`224048d036344`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/224048d036344) -
|
|
10
|
+
EDITOR-5683 do not rethrow setMetadataError: Cannot send metadata, currently offline and
|
|
11
|
+
setMetadataError: Cannot send metadata, not initialized yet as they are intermittent connection
|
|
12
|
+
errors
|
|
13
|
+
|
|
3
14
|
## 36.1.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -789,6 +789,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
789
789
|
param: 'isEnabled',
|
|
790
790
|
defaultValue: false
|
|
791
791
|
}),
|
|
792
|
+
// Added 2026-03-11
|
|
793
|
+
platform_editor_native_embeds: (0, _experimentBuilders.createBooleanExperiment)({
|
|
794
|
+
productKeys: {
|
|
795
|
+
confluence: 'platform_editor_native_embeds'
|
|
796
|
+
},
|
|
797
|
+
param: 'isEnabled',
|
|
798
|
+
defaultValue: false
|
|
799
|
+
}),
|
|
792
800
|
// Added 2025-08-05
|
|
793
801
|
platform_editor_native_anchor_with_dnd: (0, _experimentBuilders.createBooleanExperiment)({
|
|
794
802
|
productKeys: {
|
|
@@ -1293,6 +1301,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1293
1301
|
param: 'isEnabled',
|
|
1294
1302
|
defaultValue: false
|
|
1295
1303
|
}),
|
|
1304
|
+
// Added 2026-03-16
|
|
1305
|
+
platform_editor_ignore_metadata_connection_errors: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1306
|
+
productKeys: {
|
|
1307
|
+
confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
|
|
1308
|
+
},
|
|
1309
|
+
param: 'isEnabled',
|
|
1310
|
+
defaultValue: false
|
|
1311
|
+
}),
|
|
1296
1312
|
// Added 2026-01-26
|
|
1297
1313
|
platform_editor_ai_fix_streaming_json_escape: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1298
1314
|
productKeys: {
|
|
@@ -1380,6 +1396,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1380
1396
|
param: 'isEnabled',
|
|
1381
1397
|
defaultValue: false
|
|
1382
1398
|
}),
|
|
1399
|
+
// Added 2026-16-05
|
|
1400
|
+
platform_editor_outdated_browser_update: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1401
|
+
productKeys: {
|
|
1402
|
+
confluence: 'platform_editor_outdated_browser_update'
|
|
1403
|
+
},
|
|
1404
|
+
param: 'isEnabled',
|
|
1405
|
+
defaultValue: false
|
|
1406
|
+
}),
|
|
1383
1407
|
// Added 2026-02-05
|
|
1384
1408
|
cc_fd_db_top_editor_toolbar: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1385
1409
|
productKeys: {
|
|
@@ -1738,5 +1762,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1738
1762
|
},
|
|
1739
1763
|
param: 'isEnabled',
|
|
1740
1764
|
defaultValue: false
|
|
1765
|
+
}),
|
|
1766
|
+
// Added 2026-03-13
|
|
1767
|
+
platform_editor_misaligned_ai_screens_firefox_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1768
|
+
productKeys: {
|
|
1769
|
+
confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
|
|
1770
|
+
jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
|
|
1771
|
+
},
|
|
1772
|
+
param: 'isEnabled',
|
|
1773
|
+
defaultValue: false
|
|
1741
1774
|
})
|
|
1742
1775
|
};
|
|
@@ -783,6 +783,14 @@ export const editorExperimentsConfig = {
|
|
|
783
783
|
param: 'isEnabled',
|
|
784
784
|
defaultValue: false
|
|
785
785
|
}),
|
|
786
|
+
// Added 2026-03-11
|
|
787
|
+
platform_editor_native_embeds: createBooleanExperiment({
|
|
788
|
+
productKeys: {
|
|
789
|
+
confluence: 'platform_editor_native_embeds'
|
|
790
|
+
},
|
|
791
|
+
param: 'isEnabled',
|
|
792
|
+
defaultValue: false
|
|
793
|
+
}),
|
|
786
794
|
// Added 2025-08-05
|
|
787
795
|
platform_editor_native_anchor_with_dnd: createBooleanExperiment({
|
|
788
796
|
productKeys: {
|
|
@@ -1287,6 +1295,14 @@ export const editorExperimentsConfig = {
|
|
|
1287
1295
|
param: 'isEnabled',
|
|
1288
1296
|
defaultValue: false
|
|
1289
1297
|
}),
|
|
1298
|
+
// Added 2026-03-16
|
|
1299
|
+
platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
|
|
1300
|
+
productKeys: {
|
|
1301
|
+
confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
|
|
1302
|
+
},
|
|
1303
|
+
param: 'isEnabled',
|
|
1304
|
+
defaultValue: false
|
|
1305
|
+
}),
|
|
1290
1306
|
// Added 2026-01-26
|
|
1291
1307
|
platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
|
|
1292
1308
|
productKeys: {
|
|
@@ -1374,6 +1390,14 @@ export const editorExperimentsConfig = {
|
|
|
1374
1390
|
param: 'isEnabled',
|
|
1375
1391
|
defaultValue: false
|
|
1376
1392
|
}),
|
|
1393
|
+
// Added 2026-16-05
|
|
1394
|
+
platform_editor_outdated_browser_update: createBooleanExperiment({
|
|
1395
|
+
productKeys: {
|
|
1396
|
+
confluence: 'platform_editor_outdated_browser_update'
|
|
1397
|
+
},
|
|
1398
|
+
param: 'isEnabled',
|
|
1399
|
+
defaultValue: false
|
|
1400
|
+
}),
|
|
1377
1401
|
// Added 2026-02-05
|
|
1378
1402
|
cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
|
|
1379
1403
|
productKeys: {
|
|
@@ -1732,5 +1756,14 @@ export const editorExperimentsConfig = {
|
|
|
1732
1756
|
},
|
|
1733
1757
|
param: 'isEnabled',
|
|
1734
1758
|
defaultValue: false
|
|
1759
|
+
}),
|
|
1760
|
+
// Added 2026-03-13
|
|
1761
|
+
platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
|
|
1762
|
+
productKeys: {
|
|
1763
|
+
confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
|
|
1764
|
+
jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
|
|
1765
|
+
},
|
|
1766
|
+
param: 'isEnabled',
|
|
1767
|
+
defaultValue: false
|
|
1735
1768
|
})
|
|
1736
1769
|
};
|
|
@@ -783,6 +783,14 @@ export var editorExperimentsConfig = {
|
|
|
783
783
|
param: 'isEnabled',
|
|
784
784
|
defaultValue: false
|
|
785
785
|
}),
|
|
786
|
+
// Added 2026-03-11
|
|
787
|
+
platform_editor_native_embeds: createBooleanExperiment({
|
|
788
|
+
productKeys: {
|
|
789
|
+
confluence: 'platform_editor_native_embeds'
|
|
790
|
+
},
|
|
791
|
+
param: 'isEnabled',
|
|
792
|
+
defaultValue: false
|
|
793
|
+
}),
|
|
786
794
|
// Added 2025-08-05
|
|
787
795
|
platform_editor_native_anchor_with_dnd: createBooleanExperiment({
|
|
788
796
|
productKeys: {
|
|
@@ -1287,6 +1295,14 @@ export var editorExperimentsConfig = {
|
|
|
1287
1295
|
param: 'isEnabled',
|
|
1288
1296
|
defaultValue: false
|
|
1289
1297
|
}),
|
|
1298
|
+
// Added 2026-03-16
|
|
1299
|
+
platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
|
|
1300
|
+
productKeys: {
|
|
1301
|
+
confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
|
|
1302
|
+
},
|
|
1303
|
+
param: 'isEnabled',
|
|
1304
|
+
defaultValue: false
|
|
1305
|
+
}),
|
|
1290
1306
|
// Added 2026-01-26
|
|
1291
1307
|
platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
|
|
1292
1308
|
productKeys: {
|
|
@@ -1374,6 +1390,14 @@ export var editorExperimentsConfig = {
|
|
|
1374
1390
|
param: 'isEnabled',
|
|
1375
1391
|
defaultValue: false
|
|
1376
1392
|
}),
|
|
1393
|
+
// Added 2026-16-05
|
|
1394
|
+
platform_editor_outdated_browser_update: createBooleanExperiment({
|
|
1395
|
+
productKeys: {
|
|
1396
|
+
confluence: 'platform_editor_outdated_browser_update'
|
|
1397
|
+
},
|
|
1398
|
+
param: 'isEnabled',
|
|
1399
|
+
defaultValue: false
|
|
1400
|
+
}),
|
|
1377
1401
|
// Added 2026-02-05
|
|
1378
1402
|
cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
|
|
1379
1403
|
productKeys: {
|
|
@@ -1732,5 +1756,14 @@ export var editorExperimentsConfig = {
|
|
|
1732
1756
|
},
|
|
1733
1757
|
param: 'isEnabled',
|
|
1734
1758
|
defaultValue: false
|
|
1759
|
+
}),
|
|
1760
|
+
// Added 2026-03-13
|
|
1761
|
+
platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
|
|
1762
|
+
productKeys: {
|
|
1763
|
+
confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
|
|
1764
|
+
jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
|
|
1765
|
+
},
|
|
1766
|
+
param: 'isEnabled',
|
|
1767
|
+
defaultValue: false
|
|
1735
1768
|
})
|
|
1736
1769
|
};
|
|
@@ -547,6 +547,12 @@ export declare const editorExperimentsConfig: {
|
|
|
547
547
|
productKeys?: ProductKeys;
|
|
548
548
|
typeGuard: IsBooleanType;
|
|
549
549
|
};
|
|
550
|
+
platform_editor_native_embeds: {
|
|
551
|
+
defaultValue: boolean;
|
|
552
|
+
param: string;
|
|
553
|
+
productKeys?: ProductKeys;
|
|
554
|
+
typeGuard: IsBooleanType;
|
|
555
|
+
};
|
|
550
556
|
platform_editor_native_anchor_with_dnd: {
|
|
551
557
|
defaultValue: boolean;
|
|
552
558
|
param: string;
|
|
@@ -941,6 +947,12 @@ export declare const editorExperimentsConfig: {
|
|
|
941
947
|
productKeys?: ProductKeys;
|
|
942
948
|
typeGuard: IsBooleanType;
|
|
943
949
|
};
|
|
950
|
+
platform_editor_ignore_metadata_connection_errors: {
|
|
951
|
+
defaultValue: boolean;
|
|
952
|
+
param: string;
|
|
953
|
+
productKeys?: ProductKeys;
|
|
954
|
+
typeGuard: IsBooleanType;
|
|
955
|
+
};
|
|
944
956
|
platform_editor_ai_fix_streaming_json_escape: {
|
|
945
957
|
defaultValue: boolean;
|
|
946
958
|
param: string;
|
|
@@ -1013,6 +1025,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1013
1025
|
productKeys?: ProductKeys;
|
|
1014
1026
|
typeGuard: IsBooleanType;
|
|
1015
1027
|
};
|
|
1028
|
+
platform_editor_outdated_browser_update: {
|
|
1029
|
+
defaultValue: boolean;
|
|
1030
|
+
param: string;
|
|
1031
|
+
productKeys?: ProductKeys;
|
|
1032
|
+
typeGuard: IsBooleanType;
|
|
1033
|
+
};
|
|
1016
1034
|
cc_fd_db_top_editor_toolbar: {
|
|
1017
1035
|
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
1018
1036
|
param: string;
|
|
@@ -1278,5 +1296,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1278
1296
|
productKeys?: ProductKeys;
|
|
1279
1297
|
typeGuard: IsBooleanType;
|
|
1280
1298
|
};
|
|
1299
|
+
platform_editor_misaligned_ai_screens_firefox_fix: {
|
|
1300
|
+
defaultValue: boolean;
|
|
1301
|
+
param: string;
|
|
1302
|
+
productKeys?: ProductKeys;
|
|
1303
|
+
typeGuard: IsBooleanType;
|
|
1304
|
+
};
|
|
1281
1305
|
};
|
|
1282
1306
|
export {};
|
|
@@ -547,6 +547,12 @@ export declare const editorExperimentsConfig: {
|
|
|
547
547
|
productKeys?: ProductKeys;
|
|
548
548
|
typeGuard: IsBooleanType;
|
|
549
549
|
};
|
|
550
|
+
platform_editor_native_embeds: {
|
|
551
|
+
defaultValue: boolean;
|
|
552
|
+
param: string;
|
|
553
|
+
productKeys?: ProductKeys;
|
|
554
|
+
typeGuard: IsBooleanType;
|
|
555
|
+
};
|
|
550
556
|
platform_editor_native_anchor_with_dnd: {
|
|
551
557
|
defaultValue: boolean;
|
|
552
558
|
param: string;
|
|
@@ -941,6 +947,12 @@ export declare const editorExperimentsConfig: {
|
|
|
941
947
|
productKeys?: ProductKeys;
|
|
942
948
|
typeGuard: IsBooleanType;
|
|
943
949
|
};
|
|
950
|
+
platform_editor_ignore_metadata_connection_errors: {
|
|
951
|
+
defaultValue: boolean;
|
|
952
|
+
param: string;
|
|
953
|
+
productKeys?: ProductKeys;
|
|
954
|
+
typeGuard: IsBooleanType;
|
|
955
|
+
};
|
|
944
956
|
platform_editor_ai_fix_streaming_json_escape: {
|
|
945
957
|
defaultValue: boolean;
|
|
946
958
|
param: string;
|
|
@@ -1013,6 +1025,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1013
1025
|
productKeys?: ProductKeys;
|
|
1014
1026
|
typeGuard: IsBooleanType;
|
|
1015
1027
|
};
|
|
1028
|
+
platform_editor_outdated_browser_update: {
|
|
1029
|
+
defaultValue: boolean;
|
|
1030
|
+
param: string;
|
|
1031
|
+
productKeys?: ProductKeys;
|
|
1032
|
+
typeGuard: IsBooleanType;
|
|
1033
|
+
};
|
|
1016
1034
|
cc_fd_db_top_editor_toolbar: {
|
|
1017
1035
|
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
1018
1036
|
param: string;
|
|
@@ -1278,5 +1296,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1278
1296
|
productKeys?: ProductKeys;
|
|
1279
1297
|
typeGuard: IsBooleanType;
|
|
1280
1298
|
};
|
|
1299
|
+
platform_editor_misaligned_ai_screens_firefox_fix: {
|
|
1300
|
+
defaultValue: boolean;
|
|
1301
|
+
param: string;
|
|
1302
|
+
productKeys?: ProductKeys;
|
|
1303
|
+
typeGuard: IsBooleanType;
|
|
1304
|
+
};
|
|
1281
1305
|
};
|
|
1282
1306
|
export {};
|
package/package.json
CHANGED