@atlaskit/tmp-editor-statsig 33.0.0 → 33.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 +11 -0
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 33.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3c1ea42fe6741`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3c1ea42fe6741) -
|
|
8
|
+
add ai stt POC to editor
|
|
9
|
+
- [`c28209fcfdfd2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c28209fcfdfd2) -
|
|
10
|
+
[ENGHEALTH-46817] Resolving eslint suppressions for accessibility violations
|
|
11
|
+
- [`9b88bc712cffc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9b88bc712cffc) -
|
|
12
|
+
[ux] Adds outcome type picker to create with rovo modal
|
|
13
|
+
|
|
3
14
|
## 33.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
|
@@ -38,6 +38,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
38
38
|
// Editor Platform experiments
|
|
39
39
|
// lwoollard experiments
|
|
40
40
|
|
|
41
|
+
// Added 2026-02-11
|
|
42
|
+
ai_speech_to_text_in_editor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
43
|
+
productKeys: {
|
|
44
|
+
confluence: 'ai_speech_to_text_in_editor'
|
|
45
|
+
},
|
|
46
|
+
param: 'isEnabled',
|
|
47
|
+
defaultValue: false
|
|
48
|
+
}),
|
|
41
49
|
// Added 22-12-2025
|
|
42
50
|
confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
|
|
43
51
|
productKeys: {
|
|
@@ -1454,6 +1462,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1454
1462
|
param: 'isEnabled',
|
|
1455
1463
|
defaultValue: false
|
|
1456
1464
|
}),
|
|
1465
|
+
// Added 2026-02-27
|
|
1466
|
+
'confluence_frontend_cwr_outcome_type_picker': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1467
|
+
productKeys: {
|
|
1468
|
+
confluence: 'confluence_frontend_cwr_outcome_type_picker'
|
|
1469
|
+
},
|
|
1470
|
+
param: 'isEnabled',
|
|
1471
|
+
defaultValue: false
|
|
1472
|
+
}),
|
|
1457
1473
|
// Added 2026-02-12
|
|
1458
1474
|
platform_editor_a11y_escape_link_dialog: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1459
1475
|
productKeys: {
|
|
@@ -1570,6 +1586,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1570
1586
|
param: 'isEnabled',
|
|
1571
1587
|
defaultValue: false
|
|
1572
1588
|
}),
|
|
1589
|
+
// Added 2026-03-05
|
|
1590
|
+
platform_editor_eslint_suppression_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1591
|
+
productKeys: {
|
|
1592
|
+
confluence: 'platform_editor_eslint_suppression_fix'
|
|
1593
|
+
},
|
|
1594
|
+
param: 'isEnabled',
|
|
1595
|
+
defaultValue: false
|
|
1596
|
+
}),
|
|
1573
1597
|
// Added 2026-03-04
|
|
1574
1598
|
platform_editor_rovobutton_smartlink_toolbar_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1575
1599
|
productKeys: {
|
|
@@ -32,6 +32,14 @@ export const editorExperimentsConfig = {
|
|
|
32
32
|
// Editor Platform experiments
|
|
33
33
|
// lwoollard experiments
|
|
34
34
|
|
|
35
|
+
// Added 2026-02-11
|
|
36
|
+
ai_speech_to_text_in_editor: createBooleanExperiment({
|
|
37
|
+
productKeys: {
|
|
38
|
+
confluence: 'ai_speech_to_text_in_editor'
|
|
39
|
+
},
|
|
40
|
+
param: 'isEnabled',
|
|
41
|
+
defaultValue: false
|
|
42
|
+
}),
|
|
35
43
|
// Added 22-12-2025
|
|
36
44
|
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
37
45
|
productKeys: {
|
|
@@ -1448,6 +1456,14 @@ export const editorExperimentsConfig = {
|
|
|
1448
1456
|
param: 'isEnabled',
|
|
1449
1457
|
defaultValue: false
|
|
1450
1458
|
}),
|
|
1459
|
+
// Added 2026-02-27
|
|
1460
|
+
'confluence_frontend_cwr_outcome_type_picker': createBooleanExperiment({
|
|
1461
|
+
productKeys: {
|
|
1462
|
+
confluence: 'confluence_frontend_cwr_outcome_type_picker'
|
|
1463
|
+
},
|
|
1464
|
+
param: 'isEnabled',
|
|
1465
|
+
defaultValue: false
|
|
1466
|
+
}),
|
|
1451
1467
|
// Added 2026-02-12
|
|
1452
1468
|
platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
|
|
1453
1469
|
productKeys: {
|
|
@@ -1564,6 +1580,14 @@ export const editorExperimentsConfig = {
|
|
|
1564
1580
|
param: 'isEnabled',
|
|
1565
1581
|
defaultValue: false
|
|
1566
1582
|
}),
|
|
1583
|
+
// Added 2026-03-05
|
|
1584
|
+
platform_editor_eslint_suppression_fix: createBooleanExperiment({
|
|
1585
|
+
productKeys: {
|
|
1586
|
+
confluence: 'platform_editor_eslint_suppression_fix'
|
|
1587
|
+
},
|
|
1588
|
+
param: 'isEnabled',
|
|
1589
|
+
defaultValue: false
|
|
1590
|
+
}),
|
|
1567
1591
|
// Added 2026-03-04
|
|
1568
1592
|
platform_editor_rovobutton_smartlink_toolbar_exp: createBooleanExperiment({
|
|
1569
1593
|
productKeys: {
|
|
@@ -32,6 +32,14 @@ export var editorExperimentsConfig = {
|
|
|
32
32
|
// Editor Platform experiments
|
|
33
33
|
// lwoollard experiments
|
|
34
34
|
|
|
35
|
+
// Added 2026-02-11
|
|
36
|
+
ai_speech_to_text_in_editor: createBooleanExperiment({
|
|
37
|
+
productKeys: {
|
|
38
|
+
confluence: 'ai_speech_to_text_in_editor'
|
|
39
|
+
},
|
|
40
|
+
param: 'isEnabled',
|
|
41
|
+
defaultValue: false
|
|
42
|
+
}),
|
|
35
43
|
// Added 22-12-2025
|
|
36
44
|
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
37
45
|
productKeys: {
|
|
@@ -1448,6 +1456,14 @@ export var editorExperimentsConfig = {
|
|
|
1448
1456
|
param: 'isEnabled',
|
|
1449
1457
|
defaultValue: false
|
|
1450
1458
|
}),
|
|
1459
|
+
// Added 2026-02-27
|
|
1460
|
+
'confluence_frontend_cwr_outcome_type_picker': createBooleanExperiment({
|
|
1461
|
+
productKeys: {
|
|
1462
|
+
confluence: 'confluence_frontend_cwr_outcome_type_picker'
|
|
1463
|
+
},
|
|
1464
|
+
param: 'isEnabled',
|
|
1465
|
+
defaultValue: false
|
|
1466
|
+
}),
|
|
1451
1467
|
// Added 2026-02-12
|
|
1452
1468
|
platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
|
|
1453
1469
|
productKeys: {
|
|
@@ -1564,6 +1580,14 @@ export var editorExperimentsConfig = {
|
|
|
1564
1580
|
param: 'isEnabled',
|
|
1565
1581
|
defaultValue: false
|
|
1566
1582
|
}),
|
|
1583
|
+
// Added 2026-03-05
|
|
1584
|
+
platform_editor_eslint_suppression_fix: createBooleanExperiment({
|
|
1585
|
+
productKeys: {
|
|
1586
|
+
confluence: 'platform_editor_eslint_suppression_fix'
|
|
1587
|
+
},
|
|
1588
|
+
param: 'isEnabled',
|
|
1589
|
+
defaultValue: false
|
|
1590
|
+
}),
|
|
1567
1591
|
// Added 2026-03-04
|
|
1568
1592
|
platform_editor_rovobutton_smartlink_toolbar_exp: createBooleanExperiment({
|
|
1569
1593
|
productKeys: {
|
|
@@ -154,6 +154,12 @@ export declare const editorExperimentsConfig: {
|
|
|
154
154
|
productKeys?: ProductKeys;
|
|
155
155
|
typeGuard: IsBooleanType;
|
|
156
156
|
};
|
|
157
|
+
ai_speech_to_text_in_editor: {
|
|
158
|
+
defaultValue: boolean;
|
|
159
|
+
param: string;
|
|
160
|
+
productKeys?: ProductKeys;
|
|
161
|
+
typeGuard: IsBooleanType;
|
|
162
|
+
};
|
|
157
163
|
'company_hub_carousel_thumbnails-refactor': {
|
|
158
164
|
defaultValue: boolean;
|
|
159
165
|
param: string;
|
|
@@ -1080,6 +1086,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1080
1086
|
productKeys?: ProductKeys;
|
|
1081
1087
|
typeGuard: IsBooleanType;
|
|
1082
1088
|
};
|
|
1089
|
+
'confluence_frontend_cwr_outcome_type_picker': {
|
|
1090
|
+
defaultValue: boolean;
|
|
1091
|
+
param: string;
|
|
1092
|
+
productKeys?: ProductKeys;
|
|
1093
|
+
typeGuard: IsBooleanType;
|
|
1094
|
+
};
|
|
1083
1095
|
platform_editor_a11y_escape_link_dialog: {
|
|
1084
1096
|
defaultValue: boolean;
|
|
1085
1097
|
param: string;
|
|
@@ -1158,6 +1170,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1158
1170
|
productKeys?: ProductKeys;
|
|
1159
1171
|
typeGuard: IsBooleanType;
|
|
1160
1172
|
};
|
|
1173
|
+
platform_editor_eslint_suppression_fix: {
|
|
1174
|
+
defaultValue: boolean;
|
|
1175
|
+
param: string;
|
|
1176
|
+
productKeys?: ProductKeys;
|
|
1177
|
+
typeGuard: IsBooleanType;
|
|
1178
|
+
};
|
|
1161
1179
|
platform_editor_rovobutton_smartlink_toolbar_exp: {
|
|
1162
1180
|
defaultValue: boolean;
|
|
1163
1181
|
param: string;
|
|
@@ -154,6 +154,12 @@ export declare const editorExperimentsConfig: {
|
|
|
154
154
|
productKeys?: ProductKeys;
|
|
155
155
|
typeGuard: IsBooleanType;
|
|
156
156
|
};
|
|
157
|
+
ai_speech_to_text_in_editor: {
|
|
158
|
+
defaultValue: boolean;
|
|
159
|
+
param: string;
|
|
160
|
+
productKeys?: ProductKeys;
|
|
161
|
+
typeGuard: IsBooleanType;
|
|
162
|
+
};
|
|
157
163
|
'company_hub_carousel_thumbnails-refactor': {
|
|
158
164
|
defaultValue: boolean;
|
|
159
165
|
param: string;
|
|
@@ -1080,6 +1086,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1080
1086
|
productKeys?: ProductKeys;
|
|
1081
1087
|
typeGuard: IsBooleanType;
|
|
1082
1088
|
};
|
|
1089
|
+
'confluence_frontend_cwr_outcome_type_picker': {
|
|
1090
|
+
defaultValue: boolean;
|
|
1091
|
+
param: string;
|
|
1092
|
+
productKeys?: ProductKeys;
|
|
1093
|
+
typeGuard: IsBooleanType;
|
|
1094
|
+
};
|
|
1083
1095
|
platform_editor_a11y_escape_link_dialog: {
|
|
1084
1096
|
defaultValue: boolean;
|
|
1085
1097
|
param: string;
|
|
@@ -1158,6 +1170,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1158
1170
|
productKeys?: ProductKeys;
|
|
1159
1171
|
typeGuard: IsBooleanType;
|
|
1160
1172
|
};
|
|
1173
|
+
platform_editor_eslint_suppression_fix: {
|
|
1174
|
+
defaultValue: boolean;
|
|
1175
|
+
param: string;
|
|
1176
|
+
productKeys?: ProductKeys;
|
|
1177
|
+
typeGuard: IsBooleanType;
|
|
1178
|
+
};
|
|
1161
1179
|
platform_editor_rovobutton_smartlink_toolbar_exp: {
|
|
1162
1180
|
defaultValue: boolean;
|
|
1163
1181
|
param: string;
|
package/package.json
CHANGED