@atlaskit/tmp-editor-statsig 23.1.0 → 23.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 +7 -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 +13 -1
- package/dist/types-ts4.5/experiments-config.d.ts +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 23.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`47b5c11a5dc4c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/47b5c11a5dc4c) -
|
|
8
|
+
EDITOR-4944: Add side by side Editor view + confluence preset.
|
|
9
|
+
|
|
3
10
|
## 23.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1356,5 +1356,21 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1356
1356
|
},
|
|
1357
1357
|
param: 'isEnabled',
|
|
1358
1358
|
defaultValue: false
|
|
1359
|
+
}),
|
|
1360
|
+
// Added 2026-02-10
|
|
1361
|
+
platform_editor_ai_suggestions: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1362
|
+
productKeys: {
|
|
1363
|
+
confluence: 'platform_editor_ai_suggestions'
|
|
1364
|
+
},
|
|
1365
|
+
param: 'isEnabled',
|
|
1366
|
+
defaultValue: false
|
|
1367
|
+
}),
|
|
1368
|
+
// Added 2026-02-12
|
|
1369
|
+
platform_editor_bodiedextension_layoutshift_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1370
|
+
productKeys: {
|
|
1371
|
+
confluence: 'platform_editor_bodiedextension_layoutshift_fix'
|
|
1372
|
+
},
|
|
1373
|
+
param: 'isEnabled',
|
|
1374
|
+
defaultValue: false
|
|
1359
1375
|
})
|
|
1360
1376
|
};
|
|
@@ -1350,5 +1350,21 @@ export const editorExperimentsConfig = {
|
|
|
1350
1350
|
},
|
|
1351
1351
|
param: 'isEnabled',
|
|
1352
1352
|
defaultValue: false
|
|
1353
|
+
}),
|
|
1354
|
+
// Added 2026-02-10
|
|
1355
|
+
platform_editor_ai_suggestions: createBooleanExperiment({
|
|
1356
|
+
productKeys: {
|
|
1357
|
+
confluence: 'platform_editor_ai_suggestions'
|
|
1358
|
+
},
|
|
1359
|
+
param: 'isEnabled',
|
|
1360
|
+
defaultValue: false
|
|
1361
|
+
}),
|
|
1362
|
+
// Added 2026-02-12
|
|
1363
|
+
platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
|
|
1364
|
+
productKeys: {
|
|
1365
|
+
confluence: 'platform_editor_bodiedextension_layoutshift_fix'
|
|
1366
|
+
},
|
|
1367
|
+
param: 'isEnabled',
|
|
1368
|
+
defaultValue: false
|
|
1353
1369
|
})
|
|
1354
1370
|
};
|
|
@@ -1350,5 +1350,21 @@ export var editorExperimentsConfig = {
|
|
|
1350
1350
|
},
|
|
1351
1351
|
param: 'isEnabled',
|
|
1352
1352
|
defaultValue: false
|
|
1353
|
+
}),
|
|
1354
|
+
// Added 2026-02-10
|
|
1355
|
+
platform_editor_ai_suggestions: createBooleanExperiment({
|
|
1356
|
+
productKeys: {
|
|
1357
|
+
confluence: 'platform_editor_ai_suggestions'
|
|
1358
|
+
},
|
|
1359
|
+
param: 'isEnabled',
|
|
1360
|
+
defaultValue: false
|
|
1361
|
+
}),
|
|
1362
|
+
// Added 2026-02-12
|
|
1363
|
+
platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
|
|
1364
|
+
productKeys: {
|
|
1365
|
+
confluence: 'platform_editor_bodiedextension_layoutshift_fix'
|
|
1366
|
+
},
|
|
1367
|
+
param: 'isEnabled',
|
|
1368
|
+
defaultValue: false
|
|
1353
1369
|
})
|
|
1354
1370
|
};
|
|
@@ -191,7 +191,7 @@ export declare const editorExperimentsConfig: {
|
|
|
191
191
|
productKeys?: ProductKeys;
|
|
192
192
|
typeGuard: IsBooleanType;
|
|
193
193
|
};
|
|
194
|
-
|
|
194
|
+
platform_editor_deduplicate_mark_diff: {
|
|
195
195
|
defaultValue: boolean;
|
|
196
196
|
param: string;
|
|
197
197
|
productKeys?: ProductKeys;
|
|
@@ -1003,5 +1003,17 @@ export declare const editorExperimentsConfig: {
|
|
|
1003
1003
|
productKeys?: ProductKeys;
|
|
1004
1004
|
typeGuard: IsBooleanType;
|
|
1005
1005
|
};
|
|
1006
|
+
platform_editor_ai_suggestions: {
|
|
1007
|
+
defaultValue: boolean;
|
|
1008
|
+
param: string;
|
|
1009
|
+
productKeys?: ProductKeys;
|
|
1010
|
+
typeGuard: IsBooleanType;
|
|
1011
|
+
};
|
|
1012
|
+
platform_editor_bodiedextension_layoutshift_fix: {
|
|
1013
|
+
defaultValue: boolean;
|
|
1014
|
+
param: string;
|
|
1015
|
+
productKeys?: ProductKeys;
|
|
1016
|
+
typeGuard: IsBooleanType;
|
|
1017
|
+
};
|
|
1006
1018
|
};
|
|
1007
1019
|
export {};
|
|
@@ -191,7 +191,7 @@ export declare const editorExperimentsConfig: {
|
|
|
191
191
|
productKeys?: ProductKeys;
|
|
192
192
|
typeGuard: IsBooleanType;
|
|
193
193
|
};
|
|
194
|
-
|
|
194
|
+
platform_editor_deduplicate_mark_diff: {
|
|
195
195
|
defaultValue: boolean;
|
|
196
196
|
param: string;
|
|
197
197
|
productKeys?: ProductKeys;
|
|
@@ -1003,5 +1003,17 @@ export declare const editorExperimentsConfig: {
|
|
|
1003
1003
|
productKeys?: ProductKeys;
|
|
1004
1004
|
typeGuard: IsBooleanType;
|
|
1005
1005
|
};
|
|
1006
|
+
platform_editor_ai_suggestions: {
|
|
1007
|
+
defaultValue: boolean;
|
|
1008
|
+
param: string;
|
|
1009
|
+
productKeys?: ProductKeys;
|
|
1010
|
+
typeGuard: IsBooleanType;
|
|
1011
|
+
};
|
|
1012
|
+
platform_editor_bodiedextension_layoutshift_fix: {
|
|
1013
|
+
defaultValue: boolean;
|
|
1014
|
+
param: string;
|
|
1015
|
+
productKeys?: ProductKeys;
|
|
1016
|
+
typeGuard: IsBooleanType;
|
|
1017
|
+
};
|
|
1006
1018
|
};
|
|
1007
1019
|
export {};
|
package/package.json
CHANGED