@atlaskit/tmp-editor-statsig 119.1.0 → 119.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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 119.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`cdddb84518902`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdddb84518902) -
8
+ Add a "Create an emoji with Rovo" section to the emoji picker's "Add your own emoji" flow, behind
9
+ the `confluence_ai_generated_emojis` experiment.
10
+
11
+ When enabled (and a page `contentId` is supplied), a description input + generate button appear
12
+ above the Emoji name field. Generating produces an emoji-style image via the Confluence header
13
+ image backend (Gemini 2.5 Flash Image, 1:1 aspect ratio). The generated image flows into the
14
+ existing upload form — reusing the same preview, Emoji name field (auto-populated with a slugified
15
+ shortname) and "Add emoji" button — and is uploaded through the existing `SiteEmojiResource` path.
16
+ - New optional `EmojiPicker` `contentId` prop threads the current page content id down to enable
17
+ the AI section.
18
+ - New analytics events for AI emoji generation (started/completed/failed).
19
+ - Register the `confluence_ai_generated_emojis` experiment in `@atlaskit/tmp-editor-statsig` so it
20
+ can be checked via `expValEquals`.
21
+
22
+ When the experiment is off (or no `contentId` is supplied), only the existing manual upload flow
23
+ is shown.
24
+
3
25
  ## 119.1.0
4
26
 
5
27
  ### 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: {
@@ -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: {
@@ -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: {
@@ -1136,6 +1136,12 @@ export declare const editorExperimentsConfig: {
1136
1136
  productKeys?: ProductKeys;
1137
1137
  typeGuard: IsBooleanType;
1138
1138
  };
1139
+ confluence_ai_generated_emojis: {
1140
+ defaultValue: boolean;
1141
+ param: string;
1142
+ productKeys?: ProductKeys;
1143
+ typeGuard: IsBooleanType;
1144
+ };
1139
1145
  platform_editor_toolbar_update_jira_config: {
1140
1146
  defaultValue: boolean;
1141
1147
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "119.1.0",
3
+ "version": "119.2.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",