@atlaskit/tmp-editor-statsig 119.1.0 → 119.3.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 +30 -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,35 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 119.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`67aed651369bd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/67aed651369bd) -
|
|
8
|
+
[ux] Fixes an issue where editorContext was coming from underlying page, rather than open
|
|
9
|
+
stagingarea
|
|
10
|
+
|
|
11
|
+
## 119.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`cdddb84518902`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdddb84518902) -
|
|
16
|
+
Add a "Create an emoji with Rovo" section to the emoji picker's "Add your own emoji" flow, behind
|
|
17
|
+
the `confluence_ai_generated_emojis` experiment.
|
|
18
|
+
|
|
19
|
+
When enabled (and a page `contentId` is supplied), a description input + generate button appear
|
|
20
|
+
above the Emoji name field. Generating produces an emoji-style image via the Confluence header
|
|
21
|
+
image backend (Gemini 2.5 Flash Image, 1:1 aspect ratio). The generated image flows into the
|
|
22
|
+
existing upload form — reusing the same preview, Emoji name field (auto-populated with a slugified
|
|
23
|
+
shortname) and "Add emoji" button — and is uploaded through the existing `SiteEmojiResource` path.
|
|
24
|
+
- New optional `EmojiPicker` `contentId` prop threads the current page content id down to enable
|
|
25
|
+
the AI section.
|
|
26
|
+
- New analytics events for AI emoji generation (started/completed/failed).
|
|
27
|
+
- Register the `confluence_ai_generated_emojis` experiment in `@atlaskit/tmp-editor-statsig` so it
|
|
28
|
+
can be checked via `expValEquals`.
|
|
29
|
+
|
|
30
|
+
When the experiment is off (or no `contentId` is supplied), only the existing manual upload flow
|
|
31
|
+
is shown.
|
|
32
|
+
|
|
3
33
|
## 119.1.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
|
@@ -74,6 +74,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
74
74
|
cc_page_experiences_editor_image_generation: false,
|
|
75
75
|
confluence_advanced_header_image_generation_exp: false,
|
|
76
76
|
platform_use_unicode_emojis: false,
|
|
77
|
+
confluence_ai_generated_emojis: false,
|
|
77
78
|
platform_editor_emoji_hover_show_tooltip: false,
|
|
78
79
|
'aifc-confluence-editor-csp-fix': false
|
|
79
80
|
};
|
|
@@ -1494,6 +1494,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1494
1494
|
param: 'isEnabled',
|
|
1495
1495
|
defaultValue: false
|
|
1496
1496
|
}),
|
|
1497
|
+
// Added 2026-06-30
|
|
1498
|
+
confluence_ai_generated_emojis: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1499
|
+
productKeys: {
|
|
1500
|
+
confluence: 'confluence_ai_generated_emojis'
|
|
1501
|
+
},
|
|
1502
|
+
param: 'isEnabled',
|
|
1503
|
+
defaultValue: false
|
|
1504
|
+
}),
|
|
1497
1505
|
// Added 2026-02-26
|
|
1498
1506
|
platform_editor_toolbar_update_jira_config: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1499
1507
|
productKeys: {
|
|
@@ -1840,6 +1848,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1840
1848
|
param: 'isEnabled',
|
|
1841
1849
|
defaultValue: false
|
|
1842
1850
|
}),
|
|
1851
|
+
// Added 2026-06-30
|
|
1852
|
+
cc_fix_editor_context_on_cwr_followups: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1853
|
+
productKeys: {
|
|
1854
|
+
confluence: 'cc_fix_editor_context_on_cwr_followups'
|
|
1855
|
+
},
|
|
1856
|
+
param: 'isEnabled',
|
|
1857
|
+
defaultValue: false
|
|
1858
|
+
}),
|
|
1843
1859
|
// Added 2026-04-14
|
|
1844
1860
|
improve_3p_smart_link_resolve_rate: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1845
1861
|
productKeys: {
|
|
@@ -68,6 +68,7 @@ export const testBooleanOverrides = {
|
|
|
68
68
|
cc_page_experiences_editor_image_generation: false,
|
|
69
69
|
confluence_advanced_header_image_generation_exp: false,
|
|
70
70
|
platform_use_unicode_emojis: false,
|
|
71
|
+
confluence_ai_generated_emojis: false,
|
|
71
72
|
platform_editor_emoji_hover_show_tooltip: false,
|
|
72
73
|
'aifc-confluence-editor-csp-fix': false
|
|
73
74
|
};
|
|
@@ -1488,6 +1488,14 @@ export const editorExperimentsConfig = {
|
|
|
1488
1488
|
param: 'isEnabled',
|
|
1489
1489
|
defaultValue: false
|
|
1490
1490
|
}),
|
|
1491
|
+
// Added 2026-06-30
|
|
1492
|
+
confluence_ai_generated_emojis: createBooleanExperiment({
|
|
1493
|
+
productKeys: {
|
|
1494
|
+
confluence: 'confluence_ai_generated_emojis'
|
|
1495
|
+
},
|
|
1496
|
+
param: 'isEnabled',
|
|
1497
|
+
defaultValue: false
|
|
1498
|
+
}),
|
|
1491
1499
|
// Added 2026-02-26
|
|
1492
1500
|
platform_editor_toolbar_update_jira_config: createBooleanExperiment({
|
|
1493
1501
|
productKeys: {
|
|
@@ -1834,6 +1842,14 @@ export const editorExperimentsConfig = {
|
|
|
1834
1842
|
param: 'isEnabled',
|
|
1835
1843
|
defaultValue: false
|
|
1836
1844
|
}),
|
|
1845
|
+
// Added 2026-06-30
|
|
1846
|
+
cc_fix_editor_context_on_cwr_followups: createBooleanExperiment({
|
|
1847
|
+
productKeys: {
|
|
1848
|
+
confluence: 'cc_fix_editor_context_on_cwr_followups'
|
|
1849
|
+
},
|
|
1850
|
+
param: 'isEnabled',
|
|
1851
|
+
defaultValue: false
|
|
1852
|
+
}),
|
|
1837
1853
|
// Added 2026-04-14
|
|
1838
1854
|
improve_3p_smart_link_resolve_rate: createBooleanExperiment({
|
|
1839
1855
|
productKeys: {
|
|
@@ -68,6 +68,7 @@ export var testBooleanOverrides = {
|
|
|
68
68
|
cc_page_experiences_editor_image_generation: false,
|
|
69
69
|
confluence_advanced_header_image_generation_exp: false,
|
|
70
70
|
platform_use_unicode_emojis: false,
|
|
71
|
+
confluence_ai_generated_emojis: false,
|
|
71
72
|
platform_editor_emoji_hover_show_tooltip: false,
|
|
72
73
|
'aifc-confluence-editor-csp-fix': false
|
|
73
74
|
};
|
|
@@ -1488,6 +1488,14 @@ export var editorExperimentsConfig = {
|
|
|
1488
1488
|
param: 'isEnabled',
|
|
1489
1489
|
defaultValue: false
|
|
1490
1490
|
}),
|
|
1491
|
+
// Added 2026-06-30
|
|
1492
|
+
confluence_ai_generated_emojis: createBooleanExperiment({
|
|
1493
|
+
productKeys: {
|
|
1494
|
+
confluence: 'confluence_ai_generated_emojis'
|
|
1495
|
+
},
|
|
1496
|
+
param: 'isEnabled',
|
|
1497
|
+
defaultValue: false
|
|
1498
|
+
}),
|
|
1491
1499
|
// Added 2026-02-26
|
|
1492
1500
|
platform_editor_toolbar_update_jira_config: createBooleanExperiment({
|
|
1493
1501
|
productKeys: {
|
|
@@ -1834,6 +1842,14 @@ export var editorExperimentsConfig = {
|
|
|
1834
1842
|
param: 'isEnabled',
|
|
1835
1843
|
defaultValue: false
|
|
1836
1844
|
}),
|
|
1845
|
+
// Added 2026-06-30
|
|
1846
|
+
cc_fix_editor_context_on_cwr_followups: createBooleanExperiment({
|
|
1847
|
+
productKeys: {
|
|
1848
|
+
confluence: 'cc_fix_editor_context_on_cwr_followups'
|
|
1849
|
+
},
|
|
1850
|
+
param: 'isEnabled',
|
|
1851
|
+
defaultValue: false
|
|
1852
|
+
}),
|
|
1837
1853
|
// Added 2026-04-14
|
|
1838
1854
|
improve_3p_smart_link_resolve_rate: createBooleanExperiment({
|
|
1839
1855
|
productKeys: {
|
|
@@ -920,6 +920,12 @@ export declare const editorExperimentsConfig: {
|
|
|
920
920
|
typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
|
|
921
921
|
values: ('control' | 'slot-four' | 'slot-two')[];
|
|
922
922
|
};
|
|
923
|
+
cc_fix_editor_context_on_cwr_followups: {
|
|
924
|
+
defaultValue: boolean;
|
|
925
|
+
param: string;
|
|
926
|
+
productKeys?: ProductKeys;
|
|
927
|
+
typeGuard: IsBooleanType;
|
|
928
|
+
};
|
|
923
929
|
cc_fd_wb_jira_quick_insert_experiment: {
|
|
924
930
|
defaultValue: boolean;
|
|
925
931
|
param: string;
|
|
@@ -1136,6 +1142,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1136
1142
|
productKeys?: ProductKeys;
|
|
1137
1143
|
typeGuard: IsBooleanType;
|
|
1138
1144
|
};
|
|
1145
|
+
confluence_ai_generated_emojis: {
|
|
1146
|
+
defaultValue: boolean;
|
|
1147
|
+
param: string;
|
|
1148
|
+
productKeys?: ProductKeys;
|
|
1149
|
+
typeGuard: IsBooleanType;
|
|
1150
|
+
};
|
|
1139
1151
|
platform_editor_toolbar_update_jira_config: {
|
|
1140
1152
|
defaultValue: boolean;
|
|
1141
1153
|
param: string;
|
package/package.json
CHANGED