@atlaskit/tmp-editor-statsig 108.1.0 → 108.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/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 108.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`91fb45b6e63f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/91fb45b6e63f3) -
|
|
8
|
+
Add gated inline Smart Link icon extraction through link-extractors
|
|
9
|
+
|
|
3
10
|
## 108.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -59,6 +59,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
59
59
|
platform_editor_table_menu_updates: false,
|
|
60
60
|
platform_editor_core_static_css: false,
|
|
61
61
|
'cwr-modal-ui-refresh': false,
|
|
62
|
+
'cc-disambiguation-in-cwr': false,
|
|
62
63
|
'cwr-reduce-prompt-suggestion-max-chars': false,
|
|
63
64
|
'cwr-staging-area-close-as-minimize-button': false,
|
|
64
65
|
prompt_tile_content_type_localizaiton: false,
|
|
@@ -1016,6 +1016,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1016
1016
|
param: 'isEnabled',
|
|
1017
1017
|
defaultValue: false
|
|
1018
1018
|
}),
|
|
1019
|
+
// Added 2026-06-16 — Use link-extractors inline icon extraction for Confluence 1P/3P connection byline
|
|
1020
|
+
confluence_1p_and_3p_connection_byline_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1021
|
+
productKeys: {
|
|
1022
|
+
confluence: 'confluence_1p_and_3p_connection_byline_experiment'
|
|
1023
|
+
},
|
|
1024
|
+
param: 'isEnabled',
|
|
1025
|
+
defaultValue: false
|
|
1026
|
+
}),
|
|
1019
1027
|
// Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
|
|
1020
1028
|
platform_sl_3p_post_auth_chat_open_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1021
1029
|
productKeys: {
|
|
@@ -1364,6 +1372,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1364
1372
|
param: 'isEnabled',
|
|
1365
1373
|
defaultValue: false
|
|
1366
1374
|
}),
|
|
1375
|
+
// Added 2026-06-08
|
|
1376
|
+
'cc-disambiguation-in-cwr': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1377
|
+
productKeys: {
|
|
1378
|
+
confluence: 'cc-disambiguation-in-cwr'
|
|
1379
|
+
},
|
|
1380
|
+
param: 'isEnabled',
|
|
1381
|
+
defaultValue: false
|
|
1382
|
+
}),
|
|
1367
1383
|
// Added 2026-06-11
|
|
1368
1384
|
'cwr-reduce-prompt-suggestion-max-chars': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1369
1385
|
productKeys: {
|
|
@@ -53,6 +53,7 @@ export const testBooleanOverrides = {
|
|
|
53
53
|
platform_editor_table_menu_updates: false,
|
|
54
54
|
platform_editor_core_static_css: false,
|
|
55
55
|
'cwr-modal-ui-refresh': false,
|
|
56
|
+
'cc-disambiguation-in-cwr': false,
|
|
56
57
|
'cwr-reduce-prompt-suggestion-max-chars': false,
|
|
57
58
|
'cwr-staging-area-close-as-minimize-button': false,
|
|
58
59
|
prompt_tile_content_type_localizaiton: false,
|
|
@@ -1010,6 +1010,14 @@ export const editorExperimentsConfig = {
|
|
|
1010
1010
|
param: 'isEnabled',
|
|
1011
1011
|
defaultValue: false
|
|
1012
1012
|
}),
|
|
1013
|
+
// Added 2026-06-16 — Use link-extractors inline icon extraction for Confluence 1P/3P connection byline
|
|
1014
|
+
confluence_1p_and_3p_connection_byline_experiment: createBooleanExperiment({
|
|
1015
|
+
productKeys: {
|
|
1016
|
+
confluence: 'confluence_1p_and_3p_connection_byline_experiment'
|
|
1017
|
+
},
|
|
1018
|
+
param: 'isEnabled',
|
|
1019
|
+
defaultValue: false
|
|
1020
|
+
}),
|
|
1013
1021
|
// Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
|
|
1014
1022
|
platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
|
|
1015
1023
|
productKeys: {
|
|
@@ -1358,6 +1366,14 @@ export const editorExperimentsConfig = {
|
|
|
1358
1366
|
param: 'isEnabled',
|
|
1359
1367
|
defaultValue: false
|
|
1360
1368
|
}),
|
|
1369
|
+
// Added 2026-06-08
|
|
1370
|
+
'cc-disambiguation-in-cwr': createBooleanExperiment({
|
|
1371
|
+
productKeys: {
|
|
1372
|
+
confluence: 'cc-disambiguation-in-cwr'
|
|
1373
|
+
},
|
|
1374
|
+
param: 'isEnabled',
|
|
1375
|
+
defaultValue: false
|
|
1376
|
+
}),
|
|
1361
1377
|
// Added 2026-06-11
|
|
1362
1378
|
'cwr-reduce-prompt-suggestion-max-chars': createBooleanExperiment({
|
|
1363
1379
|
productKeys: {
|
|
@@ -53,6 +53,7 @@ export var testBooleanOverrides = {
|
|
|
53
53
|
platform_editor_table_menu_updates: false,
|
|
54
54
|
platform_editor_core_static_css: false,
|
|
55
55
|
'cwr-modal-ui-refresh': false,
|
|
56
|
+
'cc-disambiguation-in-cwr': false,
|
|
56
57
|
'cwr-reduce-prompt-suggestion-max-chars': false,
|
|
57
58
|
'cwr-staging-area-close-as-minimize-button': false,
|
|
58
59
|
prompt_tile_content_type_localizaiton: false,
|
|
@@ -1010,6 +1010,14 @@ export var editorExperimentsConfig = {
|
|
|
1010
1010
|
param: 'isEnabled',
|
|
1011
1011
|
defaultValue: false
|
|
1012
1012
|
}),
|
|
1013
|
+
// Added 2026-06-16 — Use link-extractors inline icon extraction for Confluence 1P/3P connection byline
|
|
1014
|
+
confluence_1p_and_3p_connection_byline_experiment: createBooleanExperiment({
|
|
1015
|
+
productKeys: {
|
|
1016
|
+
confluence: 'confluence_1p_and_3p_connection_byline_experiment'
|
|
1017
|
+
},
|
|
1018
|
+
param: 'isEnabled',
|
|
1019
|
+
defaultValue: false
|
|
1020
|
+
}),
|
|
1013
1021
|
// Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
|
|
1014
1022
|
platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
|
|
1015
1023
|
productKeys: {
|
|
@@ -1358,6 +1366,14 @@ export var editorExperimentsConfig = {
|
|
|
1358
1366
|
param: 'isEnabled',
|
|
1359
1367
|
defaultValue: false
|
|
1360
1368
|
}),
|
|
1369
|
+
// Added 2026-06-08
|
|
1370
|
+
'cc-disambiguation-in-cwr': createBooleanExperiment({
|
|
1371
|
+
productKeys: {
|
|
1372
|
+
confluence: 'cc-disambiguation-in-cwr'
|
|
1373
|
+
},
|
|
1374
|
+
param: 'isEnabled',
|
|
1375
|
+
defaultValue: false
|
|
1376
|
+
}),
|
|
1361
1377
|
// Added 2026-06-11
|
|
1362
1378
|
'cwr-reduce-prompt-suggestion-max-chars': createBooleanExperiment({
|
|
1363
1379
|
productKeys: {
|
|
@@ -731,6 +731,12 @@ export declare const editorExperimentsConfig: {
|
|
|
731
731
|
productKeys?: ProductKeys;
|
|
732
732
|
typeGuard: IsBooleanType;
|
|
733
733
|
};
|
|
734
|
+
confluence_1p_and_3p_connection_byline_experiment: {
|
|
735
|
+
defaultValue: boolean;
|
|
736
|
+
param: string;
|
|
737
|
+
productKeys?: ProductKeys;
|
|
738
|
+
typeGuard: IsBooleanType;
|
|
739
|
+
};
|
|
734
740
|
platform_synced_block: {
|
|
735
741
|
defaultValue: boolean;
|
|
736
742
|
param: string;
|
|
@@ -1052,6 +1058,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1052
1058
|
productKeys?: ProductKeys;
|
|
1053
1059
|
typeGuard: IsBooleanType;
|
|
1054
1060
|
};
|
|
1061
|
+
'cc-disambiguation-in-cwr': {
|
|
1062
|
+
defaultValue: boolean;
|
|
1063
|
+
param: string;
|
|
1064
|
+
productKeys?: ProductKeys;
|
|
1065
|
+
typeGuard: IsBooleanType;
|
|
1066
|
+
};
|
|
1055
1067
|
'cwr-reduce-prompt-suggestion-max-chars': {
|
|
1056
1068
|
defaultValue: boolean;
|
|
1057
1069
|
param: string;
|
package/package.json
CHANGED