@atlaskit/tmp-editor-statsig 119.0.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,34 @@
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
+
25
+ ## 119.1.0
26
+
27
+ ### Minor Changes
28
+
29
+ - [`e8a2ffea2c9eb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e8a2ffea2c9eb) -
30
+ [ux] Paste actions popup no longer appears for link-only pastes.
31
+
3
32
  ## 119.0.0
4
33
 
5
34
  ### Major Changes
package/compass.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  configVersion: 1
2
2
  id: ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/80d90df9-b050-46f2-8563-aa320eca79e5
3
3
  name: '@atlaskit/tmp-editor-statsig'
4
- ownerId: ari:cloud:identity::team/e611522d-1773-43e4-85a5-e62f7cde47d6 # Editor - Core Experiences
4
+ ownerId: ari:cloud:identity::team/0250ee69-f755-47fd-a468-bf8a9d10a3c5 # Editor AI
5
5
  labels:
6
6
  - platform-code
7
7
  - platform-afm
@@ -24,6 +24,9 @@ customFields:
24
24
  - name: Department
25
25
  type: text
26
26
  value: Eng - Editor
27
+ - name: Trusted Reviewer Teams
28
+ type: text
29
+ value: ari:cloud:identity::team/cf6a670b-5252-4c68-a769-9207de366beb
27
30
  - name: Technical Owner
28
31
  type: user
29
32
  value: ari:cloud:identity::user/612646c53fe26c00694fbe6a # Chris Kimber
@@ -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
  };
@@ -477,6 +477,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
477
477
  param: 'isEnabled',
478
478
  defaultValue: false
479
479
  }),
480
+ // Added 2026-06-30
481
+ platform_editor_fix_link_paste_menu: (0, _experimentBuilders.createBooleanExperiment)({
482
+ productKeys: {
483
+ confluence: 'platform_editor_fix_link_paste_menu',
484
+ jira: 'platform_editor_fix_link_paste_menu'
485
+ },
486
+ param: 'isEnabled',
487
+ defaultValue: false
488
+ }),
480
489
  // Added 2025-10-31
481
490
  platform_editor_lovability_suppress_toolbar_event: (0, _experimentBuilders.createBooleanExperiment)({
482
491
  productKeys: {
@@ -1485,6 +1494,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1485
1494
  param: 'isEnabled',
1486
1495
  defaultValue: false
1487
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
+ }),
1488
1505
  // Added 2026-02-26
1489
1506
  platform_editor_toolbar_update_jira_config: (0, _experimentBuilders.createBooleanExperiment)({
1490
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
  };
@@ -471,6 +471,15 @@ export const editorExperimentsConfig = {
471
471
  param: 'isEnabled',
472
472
  defaultValue: false
473
473
  }),
474
+ // Added 2026-06-30
475
+ platform_editor_fix_link_paste_menu: createBooleanExperiment({
476
+ productKeys: {
477
+ confluence: 'platform_editor_fix_link_paste_menu',
478
+ jira: 'platform_editor_fix_link_paste_menu'
479
+ },
480
+ param: 'isEnabled',
481
+ defaultValue: false
482
+ }),
474
483
  // Added 2025-10-31
475
484
  platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
476
485
  productKeys: {
@@ -1479,6 +1488,14 @@ export const editorExperimentsConfig = {
1479
1488
  param: 'isEnabled',
1480
1489
  defaultValue: false
1481
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
+ }),
1482
1499
  // Added 2026-02-26
1483
1500
  platform_editor_toolbar_update_jira_config: createBooleanExperiment({
1484
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
  };
@@ -471,6 +471,15 @@ export var editorExperimentsConfig = {
471
471
  param: 'isEnabled',
472
472
  defaultValue: false
473
473
  }),
474
+ // Added 2026-06-30
475
+ platform_editor_fix_link_paste_menu: createBooleanExperiment({
476
+ productKeys: {
477
+ confluence: 'platform_editor_fix_link_paste_menu',
478
+ jira: 'platform_editor_fix_link_paste_menu'
479
+ },
480
+ param: 'isEnabled',
481
+ defaultValue: false
482
+ }),
474
483
  // Added 2025-10-31
475
484
  platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
476
485
  productKeys: {
@@ -1479,6 +1488,14 @@ export var editorExperimentsConfig = {
1479
1488
  param: 'isEnabled',
1480
1489
  defaultValue: false
1481
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
+ }),
1482
1499
  // Added 2026-02-26
1483
1500
  platform_editor_toolbar_update_jira_config: createBooleanExperiment({
1484
1501
  productKeys: {
@@ -549,6 +549,12 @@ export declare const editorExperimentsConfig: {
549
549
  productKeys?: ProductKeys;
550
550
  typeGuard: IsBooleanType;
551
551
  };
552
+ platform_editor_fix_link_paste_menu: {
553
+ defaultValue: boolean;
554
+ param: string;
555
+ productKeys?: ProductKeys;
556
+ typeGuard: IsBooleanType;
557
+ };
552
558
  platform_editor_prevent_taskitem_remount: {
553
559
  defaultValue: boolean;
554
560
  param: string;
@@ -1130,6 +1136,12 @@ export declare const editorExperimentsConfig: {
1130
1136
  productKeys?: ProductKeys;
1131
1137
  typeGuard: IsBooleanType;
1132
1138
  };
1139
+ confluence_ai_generated_emojis: {
1140
+ defaultValue: boolean;
1141
+ param: string;
1142
+ productKeys?: ProductKeys;
1143
+ typeGuard: IsBooleanType;
1144
+ };
1133
1145
  platform_editor_toolbar_update_jira_config: {
1134
1146
  defaultValue: boolean;
1135
1147
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "119.0.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",