@atlaskit/tmp-editor-statsig 23.2.0 → 24.1.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 +18 -0
- package/dist/cjs/exp-test-overrides.js +3 -3
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/exp-test-overrides.js +3 -3
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/exp-test-overrides.js +3 -3
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +7 -0
- package/dist/types-ts4.5/experiments-config.d.ts +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 24.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`88336b2b8f870`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/88336b2b8f870) -
|
|
8
|
+
Add A/A test for cc_fd_db_top_editor_toolbar experiment
|
|
9
|
+
|
|
10
|
+
## 24.0.0
|
|
11
|
+
|
|
12
|
+
### Major Changes
|
|
13
|
+
|
|
14
|
+
- [`2b9f521da4234`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2b9f521da4234) -
|
|
15
|
+
Removed confluence_ttvc_inline_extensions from experiment test overrides
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 23.2.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -15,7 +15,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
15
15
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
16
16
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
17
17
|
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
18
|
-
cc_fd_db_top_editor_toolbar: 'control'
|
|
18
|
+
cc_fd_db_top_editor_toolbar: 'control',
|
|
19
|
+
cc_fd_db_top_editor_toolbar_aa: 'control'
|
|
19
20
|
};
|
|
20
21
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
21
22
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -50,6 +51,5 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
50
51
|
platform_editor_find_and_replace_improvements: false,
|
|
51
52
|
platform_editor_toggle_expand_on_match_found: false,
|
|
52
53
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
53
|
-
confluence_compact_text_format: false
|
|
54
|
-
confluence_ttvc_inline_extensions: false
|
|
54
|
+
confluence_compact_text_format: false
|
|
55
55
|
};
|
|
@@ -1333,6 +1333,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1333
1333
|
values: ['control', 'new-description', 'orig-description'],
|
|
1334
1334
|
defaultValue: 'control'
|
|
1335
1335
|
}),
|
|
1336
|
+
// Added 2026-02-11
|
|
1337
|
+
cc_fd_db_top_editor_toolbar_aa: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1338
|
+
productKeys: {
|
|
1339
|
+
confluence: 'cc_fd_db_top_editor_toolbar_aa'
|
|
1340
|
+
},
|
|
1341
|
+
param: 'cohort',
|
|
1342
|
+
values: ['control', 'new-description', 'orig-description'],
|
|
1343
|
+
defaultValue: 'control'
|
|
1344
|
+
}),
|
|
1336
1345
|
// Added 2026-01-28
|
|
1337
1346
|
platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1338
1347
|
productKeys: {
|
|
@@ -9,7 +9,8 @@ export const testMultivariateOverrides = {
|
|
|
9
9
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
10
10
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
11
11
|
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
12
|
-
cc_fd_db_top_editor_toolbar: 'control'
|
|
12
|
+
cc_fd_db_top_editor_toolbar: 'control',
|
|
13
|
+
cc_fd_db_top_editor_toolbar_aa: 'control'
|
|
13
14
|
};
|
|
14
15
|
export const testBooleanOverrides = {
|
|
15
16
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -44,6 +45,5 @@ export const testBooleanOverrides = {
|
|
|
44
45
|
platform_editor_find_and_replace_improvements: false,
|
|
45
46
|
platform_editor_toggle_expand_on_match_found: false,
|
|
46
47
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
47
|
-
confluence_compact_text_format: false
|
|
48
|
-
confluence_ttvc_inline_extensions: false
|
|
48
|
+
confluence_compact_text_format: false
|
|
49
49
|
};
|
|
@@ -1327,6 +1327,15 @@ export const editorExperimentsConfig = {
|
|
|
1327
1327
|
values: ['control', 'new-description', 'orig-description'],
|
|
1328
1328
|
defaultValue: 'control'
|
|
1329
1329
|
}),
|
|
1330
|
+
// Added 2026-02-11
|
|
1331
|
+
cc_fd_db_top_editor_toolbar_aa: createMultivariateExperiment({
|
|
1332
|
+
productKeys: {
|
|
1333
|
+
confluence: 'cc_fd_db_top_editor_toolbar_aa'
|
|
1334
|
+
},
|
|
1335
|
+
param: 'cohort',
|
|
1336
|
+
values: ['control', 'new-description', 'orig-description'],
|
|
1337
|
+
defaultValue: 'control'
|
|
1338
|
+
}),
|
|
1330
1339
|
// Added 2026-01-28
|
|
1331
1340
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1332
1341
|
productKeys: {
|
|
@@ -9,7 +9,8 @@ export var testMultivariateOverrides = {
|
|
|
9
9
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
10
10
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
11
11
|
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
12
|
-
cc_fd_db_top_editor_toolbar: 'control'
|
|
12
|
+
cc_fd_db_top_editor_toolbar: 'control',
|
|
13
|
+
cc_fd_db_top_editor_toolbar_aa: 'control'
|
|
13
14
|
};
|
|
14
15
|
export var testBooleanOverrides = {
|
|
15
16
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -44,6 +45,5 @@ export var testBooleanOverrides = {
|
|
|
44
45
|
platform_editor_find_and_replace_improvements: false,
|
|
45
46
|
platform_editor_toggle_expand_on_match_found: false,
|
|
46
47
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
47
|
-
confluence_compact_text_format: false
|
|
48
|
-
confluence_ttvc_inline_extensions: false
|
|
48
|
+
confluence_compact_text_format: false
|
|
49
49
|
};
|
|
@@ -1327,6 +1327,15 @@ export var editorExperimentsConfig = {
|
|
|
1327
1327
|
values: ['control', 'new-description', 'orig-description'],
|
|
1328
1328
|
defaultValue: 'control'
|
|
1329
1329
|
}),
|
|
1330
|
+
// Added 2026-02-11
|
|
1331
|
+
cc_fd_db_top_editor_toolbar_aa: createMultivariateExperiment({
|
|
1332
|
+
productKeys: {
|
|
1333
|
+
confluence: 'cc_fd_db_top_editor_toolbar_aa'
|
|
1334
|
+
},
|
|
1335
|
+
param: 'cohort',
|
|
1336
|
+
values: ['control', 'new-description', 'orig-description'],
|
|
1337
|
+
defaultValue: 'control'
|
|
1338
|
+
}),
|
|
1330
1339
|
// Added 2026-01-28
|
|
1331
1340
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1332
1341
|
productKeys: {
|
|
@@ -985,6 +985,13 @@ export declare const editorExperimentsConfig: {
|
|
|
985
985
|
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
986
986
|
values: ('control' | 'new-description' | 'orig-description')[];
|
|
987
987
|
};
|
|
988
|
+
cc_fd_db_top_editor_toolbar_aa: {
|
|
989
|
+
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
990
|
+
param: string;
|
|
991
|
+
productKeys?: ProductKeys;
|
|
992
|
+
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
993
|
+
values: ('control' | 'new-description' | 'orig-description')[];
|
|
994
|
+
};
|
|
988
995
|
platform_editor_smartlink_local_cache: {
|
|
989
996
|
defaultValue: boolean;
|
|
990
997
|
param: string;
|
|
@@ -985,6 +985,13 @@ export declare const editorExperimentsConfig: {
|
|
|
985
985
|
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
986
986
|
values: ('control' | 'new-description' | 'orig-description')[];
|
|
987
987
|
};
|
|
988
|
+
cc_fd_db_top_editor_toolbar_aa: {
|
|
989
|
+
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
990
|
+
param: string;
|
|
991
|
+
productKeys?: ProductKeys;
|
|
992
|
+
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
993
|
+
values: ('control' | 'new-description' | 'orig-description')[];
|
|
994
|
+
};
|
|
988
995
|
platform_editor_smartlink_local_cache: {
|
|
989
996
|
defaultValue: boolean;
|
|
990
997
|
param: string;
|
package/package.json
CHANGED