@atlaskit/tmp-editor-statsig 68.0.0 → 69.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 +16 -0
- package/dist/cjs/exp-test-overrides.js +1 -2
- package/dist/cjs/experiments-config.js +8 -9
- package/dist/es2019/exp-test-overrides.js +1 -2
- package/dist/es2019/experiments-config.js +8 -9
- package/dist/esm/exp-test-overrides.js +1 -2
- package/dist/esm/experiments-config.js +8 -9
- package/dist/types/experiments-config.d.ts +6 -7
- package/dist/types-ts4.5/experiments-config.d.ts +6 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 69.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`d1bd1354e626f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1bd1354e626f) -
|
|
8
|
+
Remove A/A for Create with Rovo via Slash Command experiment
|
|
9
|
+
|
|
10
|
+
## 68.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`4b61b018db494`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4b61b018db494) -
|
|
15
|
+
[ux] Adds AI image generation to the editor by introducing a new plugin for image generation in
|
|
16
|
+
the editor with the functionalities to create AI images with a prompt and style choice. The plugin
|
|
17
|
+
is gated behind a feature experiment.
|
|
18
|
+
|
|
3
19
|
## 68.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
|
@@ -14,8 +14,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
14
14
|
cc_editor_insm_outlier_events: 'test',
|
|
15
15
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
16
16
|
cc_fd_db_top_editor_toolbar: 'control',
|
|
17
|
-
cc_fd_cwr_quick_insert: 'control'
|
|
18
|
-
cc_fd_cwr_quick_insert_aa: 'control'
|
|
17
|
+
cc_fd_cwr_quick_insert: 'control'
|
|
19
18
|
};
|
|
20
19
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
21
20
|
platform_sl_3p_auth_rovo_action: false,
|
|
@@ -1268,15 +1268,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1268
1268
|
values: ['control', 'slot-four', 'slot-two'],
|
|
1269
1269
|
defaultValue: 'control'
|
|
1270
1270
|
}),
|
|
1271
|
-
// Added 2026-04-13
|
|
1272
|
-
cc_fd_cwr_quick_insert_aa: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1273
|
-
productKeys: {
|
|
1274
|
-
confluence: 'cc_fd_cwr_quick_insert_aa'
|
|
1275
|
-
},
|
|
1276
|
-
param: 'cohort',
|
|
1277
|
-
values: ['control', 'slot-four', 'slot-two'],
|
|
1278
|
-
defaultValue: 'control'
|
|
1279
|
-
}),
|
|
1280
1271
|
// Added 2026-02-05 - A11Y-10416
|
|
1281
1272
|
editor_a11y_role_textbox: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1282
1273
|
productKeys: {
|
|
@@ -1350,6 +1341,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1350
1341
|
param: 'isEnabled',
|
|
1351
1342
|
defaultValue: false
|
|
1352
1343
|
}),
|
|
1344
|
+
// Added 2026-04-01
|
|
1345
|
+
'cc_page_experiences_editor_image_generation': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1346
|
+
productKeys: {
|
|
1347
|
+
confluence: 'cc_page_experiences_editor_image_generation'
|
|
1348
|
+
},
|
|
1349
|
+
param: 'isEnabled',
|
|
1350
|
+
defaultValue: false
|
|
1351
|
+
}),
|
|
1353
1352
|
// Added 2026-02-23
|
|
1354
1353
|
'cc-maui-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1355
1354
|
productKeys: {
|
|
@@ -8,8 +8,7 @@ export const testMultivariateOverrides = {
|
|
|
8
8
|
cc_editor_insm_outlier_events: 'test',
|
|
9
9
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
10
10
|
cc_fd_db_top_editor_toolbar: 'control',
|
|
11
|
-
cc_fd_cwr_quick_insert: 'control'
|
|
12
|
-
cc_fd_cwr_quick_insert_aa: 'control'
|
|
11
|
+
cc_fd_cwr_quick_insert: 'control'
|
|
13
12
|
};
|
|
14
13
|
export const testBooleanOverrides = {
|
|
15
14
|
platform_sl_3p_auth_rovo_action: false,
|
|
@@ -1262,15 +1262,6 @@ export const editorExperimentsConfig = {
|
|
|
1262
1262
|
values: ['control', 'slot-four', 'slot-two'],
|
|
1263
1263
|
defaultValue: 'control'
|
|
1264
1264
|
}),
|
|
1265
|
-
// Added 2026-04-13
|
|
1266
|
-
cc_fd_cwr_quick_insert_aa: createMultivariateExperiment({
|
|
1267
|
-
productKeys: {
|
|
1268
|
-
confluence: 'cc_fd_cwr_quick_insert_aa'
|
|
1269
|
-
},
|
|
1270
|
-
param: 'cohort',
|
|
1271
|
-
values: ['control', 'slot-four', 'slot-two'],
|
|
1272
|
-
defaultValue: 'control'
|
|
1273
|
-
}),
|
|
1274
1265
|
// Added 2026-02-05 - A11Y-10416
|
|
1275
1266
|
editor_a11y_role_textbox: createBooleanExperiment({
|
|
1276
1267
|
productKeys: {
|
|
@@ -1344,6 +1335,14 @@ export const editorExperimentsConfig = {
|
|
|
1344
1335
|
param: 'isEnabled',
|
|
1345
1336
|
defaultValue: false
|
|
1346
1337
|
}),
|
|
1338
|
+
// Added 2026-04-01
|
|
1339
|
+
'cc_page_experiences_editor_image_generation': createBooleanExperiment({
|
|
1340
|
+
productKeys: {
|
|
1341
|
+
confluence: 'cc_page_experiences_editor_image_generation'
|
|
1342
|
+
},
|
|
1343
|
+
param: 'isEnabled',
|
|
1344
|
+
defaultValue: false
|
|
1345
|
+
}),
|
|
1347
1346
|
// Added 2026-02-23
|
|
1348
1347
|
'cc-maui-experiment': createBooleanExperiment({
|
|
1349
1348
|
productKeys: {
|
|
@@ -8,8 +8,7 @@ export var testMultivariateOverrides = {
|
|
|
8
8
|
cc_editor_insm_outlier_events: 'test',
|
|
9
9
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
10
10
|
cc_fd_db_top_editor_toolbar: 'control',
|
|
11
|
-
cc_fd_cwr_quick_insert: 'control'
|
|
12
|
-
cc_fd_cwr_quick_insert_aa: 'control'
|
|
11
|
+
cc_fd_cwr_quick_insert: 'control'
|
|
13
12
|
};
|
|
14
13
|
export var testBooleanOverrides = {
|
|
15
14
|
platform_sl_3p_auth_rovo_action: false,
|
|
@@ -1262,15 +1262,6 @@ export var editorExperimentsConfig = {
|
|
|
1262
1262
|
values: ['control', 'slot-four', 'slot-two'],
|
|
1263
1263
|
defaultValue: 'control'
|
|
1264
1264
|
}),
|
|
1265
|
-
// Added 2026-04-13
|
|
1266
|
-
cc_fd_cwr_quick_insert_aa: createMultivariateExperiment({
|
|
1267
|
-
productKeys: {
|
|
1268
|
-
confluence: 'cc_fd_cwr_quick_insert_aa'
|
|
1269
|
-
},
|
|
1270
|
-
param: 'cohort',
|
|
1271
|
-
values: ['control', 'slot-four', 'slot-two'],
|
|
1272
|
-
defaultValue: 'control'
|
|
1273
|
-
}),
|
|
1274
1265
|
// Added 2026-02-05 - A11Y-10416
|
|
1275
1266
|
editor_a11y_role_textbox: createBooleanExperiment({
|
|
1276
1267
|
productKeys: {
|
|
@@ -1344,6 +1335,14 @@ export var editorExperimentsConfig = {
|
|
|
1344
1335
|
param: 'isEnabled',
|
|
1345
1336
|
defaultValue: false
|
|
1346
1337
|
}),
|
|
1338
|
+
// Added 2026-04-01
|
|
1339
|
+
'cc_page_experiences_editor_image_generation': createBooleanExperiment({
|
|
1340
|
+
productKeys: {
|
|
1341
|
+
confluence: 'cc_page_experiences_editor_image_generation'
|
|
1342
|
+
},
|
|
1343
|
+
param: 'isEnabled',
|
|
1344
|
+
defaultValue: false
|
|
1345
|
+
}),
|
|
1347
1346
|
// Added 2026-02-23
|
|
1348
1347
|
'cc-maui-experiment': createBooleanExperiment({
|
|
1349
1348
|
productKeys: {
|
|
@@ -936,13 +936,6 @@ export declare const editorExperimentsConfig: {
|
|
|
936
936
|
typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
|
|
937
937
|
values: ('control' | 'slot-four' | 'slot-two')[];
|
|
938
938
|
};
|
|
939
|
-
cc_fd_cwr_quick_insert_aa: {
|
|
940
|
-
defaultValue: 'control' | 'slot-four' | 'slot-two';
|
|
941
|
-
param: string;
|
|
942
|
-
productKeys?: ProductKeys;
|
|
943
|
-
typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
|
|
944
|
-
values: ('control' | 'slot-four' | 'slot-two')[];
|
|
945
|
-
};
|
|
946
939
|
cc_fd_wb_jira_quick_insert_experiment: {
|
|
947
940
|
defaultValue: boolean;
|
|
948
941
|
param: string;
|
|
@@ -1027,6 +1020,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1027
1020
|
productKeys?: ProductKeys;
|
|
1028
1021
|
typeGuard: IsBooleanType;
|
|
1029
1022
|
};
|
|
1023
|
+
'cc_page_experiences_editor_image_generation': {
|
|
1024
|
+
defaultValue: boolean;
|
|
1025
|
+
param: string;
|
|
1026
|
+
productKeys?: ProductKeys;
|
|
1027
|
+
typeGuard: IsBooleanType;
|
|
1028
|
+
};
|
|
1030
1029
|
'cc-maui-experiment': {
|
|
1031
1030
|
defaultValue: boolean;
|
|
1032
1031
|
param: string;
|
|
@@ -936,13 +936,6 @@ export declare const editorExperimentsConfig: {
|
|
|
936
936
|
typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
|
|
937
937
|
values: ('control' | 'slot-four' | 'slot-two')[];
|
|
938
938
|
};
|
|
939
|
-
cc_fd_cwr_quick_insert_aa: {
|
|
940
|
-
defaultValue: 'control' | 'slot-four' | 'slot-two';
|
|
941
|
-
param: string;
|
|
942
|
-
productKeys?: ProductKeys;
|
|
943
|
-
typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
|
|
944
|
-
values: ('control' | 'slot-four' | 'slot-two')[];
|
|
945
|
-
};
|
|
946
939
|
cc_fd_wb_jira_quick_insert_experiment: {
|
|
947
940
|
defaultValue: boolean;
|
|
948
941
|
param: string;
|
|
@@ -1027,6 +1020,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1027
1020
|
productKeys?: ProductKeys;
|
|
1028
1021
|
typeGuard: IsBooleanType;
|
|
1029
1022
|
};
|
|
1023
|
+
'cc_page_experiences_editor_image_generation': {
|
|
1024
|
+
defaultValue: boolean;
|
|
1025
|
+
param: string;
|
|
1026
|
+
productKeys?: ProductKeys;
|
|
1027
|
+
typeGuard: IsBooleanType;
|
|
1028
|
+
};
|
|
1030
1029
|
'cc-maui-experiment': {
|
|
1031
1030
|
defaultValue: boolean;
|
|
1032
1031
|
param: string;
|
package/package.json
CHANGED