@atlaskit/tmp-editor-statsig 25.1.0 → 25.3.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 +14 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 25.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`51e44e38ee9cf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/51e44e38ee9cf) -
|
|
8
|
+
Fix case where insert-after command crashes during streaming
|
|
9
|
+
|
|
10
|
+
## 25.2.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`daa8f7030b32d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/daa8f7030b32d) -
|
|
15
|
+
Remove unused ReactSerializer.fromSchema
|
|
16
|
+
|
|
3
17
|
## 25.1.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -1114,6 +1114,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1114
1114
|
param: 'isEnabled',
|
|
1115
1115
|
defaultValue: false
|
|
1116
1116
|
}),
|
|
1117
|
+
// Added 2026-02-16
|
|
1118
|
+
platform_editor_ai_fix_insert_after_selection: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1119
|
+
productKeys: {
|
|
1120
|
+
confluence: 'platform_editor_ai_fix_insert_after_selection'
|
|
1121
|
+
},
|
|
1122
|
+
param: 'isEnabled',
|
|
1123
|
+
defaultValue: false
|
|
1124
|
+
}),
|
|
1117
1125
|
// Added 2026-01-15
|
|
1118
1126
|
platform_editor_fix_advanced_codeblocks_crlf: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1119
1127
|
productKeys: {
|
|
@@ -1380,5 +1388,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1380
1388
|
},
|
|
1381
1389
|
param: 'isEnabled',
|
|
1382
1390
|
defaultValue: false
|
|
1391
|
+
}),
|
|
1392
|
+
// Added 2026-02-16
|
|
1393
|
+
platform_editor_remove_reactserializer_fromschema: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1394
|
+
productKeys: {
|
|
1395
|
+
confluence: 'platform_editor_remove_reactserializer_fromschema'
|
|
1396
|
+
},
|
|
1397
|
+
param: 'isEnabled',
|
|
1398
|
+
defaultValue: false
|
|
1383
1399
|
})
|
|
1384
1400
|
};
|
|
@@ -1108,6 +1108,14 @@ export const editorExperimentsConfig = {
|
|
|
1108
1108
|
param: 'isEnabled',
|
|
1109
1109
|
defaultValue: false
|
|
1110
1110
|
}),
|
|
1111
|
+
// Added 2026-02-16
|
|
1112
|
+
platform_editor_ai_fix_insert_after_selection: createBooleanExperiment({
|
|
1113
|
+
productKeys: {
|
|
1114
|
+
confluence: 'platform_editor_ai_fix_insert_after_selection'
|
|
1115
|
+
},
|
|
1116
|
+
param: 'isEnabled',
|
|
1117
|
+
defaultValue: false
|
|
1118
|
+
}),
|
|
1111
1119
|
// Added 2026-01-15
|
|
1112
1120
|
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1113
1121
|
productKeys: {
|
|
@@ -1374,5 +1382,13 @@ export const editorExperimentsConfig = {
|
|
|
1374
1382
|
},
|
|
1375
1383
|
param: 'isEnabled',
|
|
1376
1384
|
defaultValue: false
|
|
1385
|
+
}),
|
|
1386
|
+
// Added 2026-02-16
|
|
1387
|
+
platform_editor_remove_reactserializer_fromschema: createBooleanExperiment({
|
|
1388
|
+
productKeys: {
|
|
1389
|
+
confluence: 'platform_editor_remove_reactserializer_fromschema'
|
|
1390
|
+
},
|
|
1391
|
+
param: 'isEnabled',
|
|
1392
|
+
defaultValue: false
|
|
1377
1393
|
})
|
|
1378
1394
|
};
|
|
@@ -1108,6 +1108,14 @@ export var editorExperimentsConfig = {
|
|
|
1108
1108
|
param: 'isEnabled',
|
|
1109
1109
|
defaultValue: false
|
|
1110
1110
|
}),
|
|
1111
|
+
// Added 2026-02-16
|
|
1112
|
+
platform_editor_ai_fix_insert_after_selection: createBooleanExperiment({
|
|
1113
|
+
productKeys: {
|
|
1114
|
+
confluence: 'platform_editor_ai_fix_insert_after_selection'
|
|
1115
|
+
},
|
|
1116
|
+
param: 'isEnabled',
|
|
1117
|
+
defaultValue: false
|
|
1118
|
+
}),
|
|
1111
1119
|
// Added 2026-01-15
|
|
1112
1120
|
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1113
1121
|
productKeys: {
|
|
@@ -1374,5 +1382,13 @@ export var editorExperimentsConfig = {
|
|
|
1374
1382
|
},
|
|
1375
1383
|
param: 'isEnabled',
|
|
1376
1384
|
defaultValue: false
|
|
1385
|
+
}),
|
|
1386
|
+
// Added 2026-02-16
|
|
1387
|
+
platform_editor_remove_reactserializer_fromschema: createBooleanExperiment({
|
|
1388
|
+
productKeys: {
|
|
1389
|
+
confluence: 'platform_editor_remove_reactserializer_fromschema'
|
|
1390
|
+
},
|
|
1391
|
+
param: 'isEnabled',
|
|
1392
|
+
defaultValue: false
|
|
1377
1393
|
})
|
|
1378
1394
|
};
|
|
@@ -947,6 +947,12 @@ export declare const editorExperimentsConfig: {
|
|
|
947
947
|
productKeys?: ProductKeys;
|
|
948
948
|
typeGuard: IsBooleanType;
|
|
949
949
|
};
|
|
950
|
+
platform_editor_ai_fix_insert_after_selection: {
|
|
951
|
+
defaultValue: boolean;
|
|
952
|
+
param: string;
|
|
953
|
+
productKeys?: ProductKeys;
|
|
954
|
+
typeGuard: IsBooleanType;
|
|
955
|
+
};
|
|
950
956
|
confluence_ttvc_inline_extensions: {
|
|
951
957
|
defaultValue: boolean;
|
|
952
958
|
param: string;
|
|
@@ -1021,5 +1027,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1021
1027
|
productKeys?: ProductKeys;
|
|
1022
1028
|
typeGuard: IsBooleanType;
|
|
1023
1029
|
};
|
|
1030
|
+
platform_editor_remove_reactserializer_fromschema: {
|
|
1031
|
+
defaultValue: boolean;
|
|
1032
|
+
param: string;
|
|
1033
|
+
productKeys?: ProductKeys;
|
|
1034
|
+
typeGuard: IsBooleanType;
|
|
1035
|
+
};
|
|
1024
1036
|
};
|
|
1025
1037
|
export {};
|
|
@@ -947,6 +947,12 @@ export declare const editorExperimentsConfig: {
|
|
|
947
947
|
productKeys?: ProductKeys;
|
|
948
948
|
typeGuard: IsBooleanType;
|
|
949
949
|
};
|
|
950
|
+
platform_editor_ai_fix_insert_after_selection: {
|
|
951
|
+
defaultValue: boolean;
|
|
952
|
+
param: string;
|
|
953
|
+
productKeys?: ProductKeys;
|
|
954
|
+
typeGuard: IsBooleanType;
|
|
955
|
+
};
|
|
950
956
|
confluence_ttvc_inline_extensions: {
|
|
951
957
|
defaultValue: boolean;
|
|
952
958
|
param: string;
|
|
@@ -1021,5 +1027,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1021
1027
|
productKeys?: ProductKeys;
|
|
1022
1028
|
typeGuard: IsBooleanType;
|
|
1023
1029
|
};
|
|
1030
|
+
platform_editor_remove_reactserializer_fromschema: {
|
|
1031
|
+
defaultValue: boolean;
|
|
1032
|
+
param: string;
|
|
1033
|
+
productKeys?: ProductKeys;
|
|
1034
|
+
typeGuard: IsBooleanType;
|
|
1035
|
+
};
|
|
1024
1036
|
};
|
|
1025
1037
|
export {};
|
package/package.json
CHANGED