@atlaskit/tmp-editor-statsig 87.0.0 → 88.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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 88.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`d094dc6670513`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d094dc6670513) -
8
+ [CCI-16870] feat(aifc): spike Post Stream Review toolbar for the New AIFC Editor Experience. Adds
9
+ the new `platform_editor_ai_new_aifc_editor_experience` umbrella gate (renamed from
10
+ `confluence_editor_ai_full_page_staging`) and ships the in-editor Post Stream Review toolbar that
11
+ auto-opens after an AI streaming session ends, with undo / redo / view-changes / segment
12
+ navigation / Ask Rovo / feedback controls. The Take to Staging button is rendered but disabled in
13
+ this spike — full staging-area wiring lands in a follow-up PR (CCI-15904).
14
+
15
+ ## 88.0.0
16
+
17
+ ### Major Changes
18
+
19
+ - [`02129881d539f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/02129881d539f) -
20
+ FFCLEANUP-112479: Cleanup stale platform_editor_disable_last_node_para flag
21
+
3
22
  ## 87.0.0
4
23
 
5
24
  ### Major Changes
@@ -60,5 +60,13 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
60
60
  platform_editor_table_q4_loveability: false,
61
61
  platform_editor_table_menu_updates: false,
62
62
  platform_editor_core_static_css: false,
63
- 'cwr-modal-ui-refresh': false
63
+ 'cwr-modal-ui-refresh': false,
64
+ // [CCI-15904] New AIFC Editor Experience — AND-gated with
65
+ // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
66
+ // in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
67
+ // (afm-ai-pr-review-bot #2) The previous comment incorrectly referenced
68
+ // `platform_editor_ai_replace_doc` as the AND partner; the unrelated
69
+ // `platform_editor_ai_replace_doc: false` override has been removed since
70
+ // it does not gate this feature.
71
+ platform_editor_ai_new_aifc_editor_experience: false
64
72
  };
@@ -1729,15 +1729,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1729
1729
  param: 'isEnabled',
1730
1730
  defaultValue: false
1731
1731
  }),
1732
- // Added 2026-03-11
1733
- platform_editor_disable_last_node_para: (0, _experimentBuilders.createBooleanExperiment)({
1734
- productKeys: {
1735
- confluence: 'platform_editor_disable_last_node_para',
1736
- jira: 'platform_editor_disable_last_node_para'
1737
- },
1738
- param: 'isEnabled',
1739
- defaultValue: false
1740
- }),
1741
1732
  // Added 2026-03-09
1742
1733
  platform_editor_remove_collab_step_metrics: (0, _experimentBuilders.createBooleanExperiment)({
1743
1734
  productKeys: {
@@ -2303,5 +2294,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2303
2294
  },
2304
2295
  param: 'isEnabled',
2305
2296
  defaultValue: false
2297
+ }),
2298
+ // Added 2026-05-11 — [CCI-15904] New AIFC Editor Experience (Full Page Staging Area + Post Stream Review Toolbar)
2299
+ // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_new_aifc_editor_experience/setup
2300
+ platform_editor_ai_new_aifc_editor_experience: (0, _experimentBuilders.createBooleanExperiment)({
2301
+ productKeys: {
2302
+ confluence: 'platform_editor_ai_new_aifc_editor_experience'
2303
+ },
2304
+ param: 'isEnabled',
2305
+ defaultValue: false
2306
2306
  })
2307
2307
  };
@@ -54,5 +54,13 @@ export const testBooleanOverrides = {
54
54
  platform_editor_table_q4_loveability: false,
55
55
  platform_editor_table_menu_updates: false,
56
56
  platform_editor_core_static_css: false,
57
- 'cwr-modal-ui-refresh': false
57
+ 'cwr-modal-ui-refresh': false,
58
+ // [CCI-15904] New AIFC Editor Experience — AND-gated with
59
+ // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
60
+ // in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
61
+ // (afm-ai-pr-review-bot #2) The previous comment incorrectly referenced
62
+ // `platform_editor_ai_replace_doc` as the AND partner; the unrelated
63
+ // `platform_editor_ai_replace_doc: false` override has been removed since
64
+ // it does not gate this feature.
65
+ platform_editor_ai_new_aifc_editor_experience: false
58
66
  };
@@ -1723,15 +1723,6 @@ export const editorExperimentsConfig = {
1723
1723
  param: 'isEnabled',
1724
1724
  defaultValue: false
1725
1725
  }),
1726
- // Added 2026-03-11
1727
- platform_editor_disable_last_node_para: createBooleanExperiment({
1728
- productKeys: {
1729
- confluence: 'platform_editor_disable_last_node_para',
1730
- jira: 'platform_editor_disable_last_node_para'
1731
- },
1732
- param: 'isEnabled',
1733
- defaultValue: false
1734
- }),
1735
1726
  // Added 2026-03-09
1736
1727
  platform_editor_remove_collab_step_metrics: createBooleanExperiment({
1737
1728
  productKeys: {
@@ -2297,5 +2288,14 @@ export const editorExperimentsConfig = {
2297
2288
  },
2298
2289
  param: 'isEnabled',
2299
2290
  defaultValue: false
2291
+ }),
2292
+ // Added 2026-05-11 — [CCI-15904] New AIFC Editor Experience (Full Page Staging Area + Post Stream Review Toolbar)
2293
+ // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_new_aifc_editor_experience/setup
2294
+ platform_editor_ai_new_aifc_editor_experience: createBooleanExperiment({
2295
+ productKeys: {
2296
+ confluence: 'platform_editor_ai_new_aifc_editor_experience'
2297
+ },
2298
+ param: 'isEnabled',
2299
+ defaultValue: false
2300
2300
  })
2301
2301
  };
@@ -54,5 +54,13 @@ export var testBooleanOverrides = {
54
54
  platform_editor_table_q4_loveability: false,
55
55
  platform_editor_table_menu_updates: false,
56
56
  platform_editor_core_static_css: false,
57
- 'cwr-modal-ui-refresh': false
57
+ 'cwr-modal-ui-refresh': false,
58
+ // [CCI-15904] New AIFC Editor Experience — AND-gated with
59
+ // `platform_editor_ai_xstate_migration` (see `isNewAifcExperienceEnabled`
60
+ // in `editor-plugin-ai/src/ui/utils/new-aifc-experience-enabled.ts`).
61
+ // (afm-ai-pr-review-bot #2) The previous comment incorrectly referenced
62
+ // `platform_editor_ai_replace_doc` as the AND partner; the unrelated
63
+ // `platform_editor_ai_replace_doc: false` override has been removed since
64
+ // it does not gate this feature.
65
+ platform_editor_ai_new_aifc_editor_experience: false
58
66
  };
@@ -1723,15 +1723,6 @@ export var editorExperimentsConfig = {
1723
1723
  param: 'isEnabled',
1724
1724
  defaultValue: false
1725
1725
  }),
1726
- // Added 2026-03-11
1727
- platform_editor_disable_last_node_para: createBooleanExperiment({
1728
- productKeys: {
1729
- confluence: 'platform_editor_disable_last_node_para',
1730
- jira: 'platform_editor_disable_last_node_para'
1731
- },
1732
- param: 'isEnabled',
1733
- defaultValue: false
1734
- }),
1735
1726
  // Added 2026-03-09
1736
1727
  platform_editor_remove_collab_step_metrics: createBooleanExperiment({
1737
1728
  productKeys: {
@@ -2297,5 +2288,14 @@ export var editorExperimentsConfig = {
2297
2288
  },
2298
2289
  param: 'isEnabled',
2299
2290
  defaultValue: false
2291
+ }),
2292
+ // Added 2026-05-11 — [CCI-15904] New AIFC Editor Experience (Full Page Staging Area + Post Stream Review Toolbar)
2293
+ // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_new_aifc_editor_experience/setup
2294
+ platform_editor_ai_new_aifc_editor_experience: createBooleanExperiment({
2295
+ productKeys: {
2296
+ confluence: 'platform_editor_ai_new_aifc_editor_experience'
2297
+ },
2298
+ param: 'isEnabled',
2299
+ defaultValue: false
2300
2300
  })
2301
2301
  };
@@ -1363,12 +1363,6 @@ export declare const editorExperimentsConfig: {
1363
1363
  productKeys?: ProductKeys;
1364
1364
  typeGuard: IsBooleanType;
1365
1365
  };
1366
- platform_editor_disable_last_node_para: {
1367
- defaultValue: boolean;
1368
- param: string;
1369
- productKeys?: ProductKeys;
1370
- typeGuard: IsBooleanType;
1371
- };
1372
1366
  platform_editor_fix_selection_wrapped_media_embed: {
1373
1367
  defaultValue: boolean;
1374
1368
  param: string;
@@ -1688,5 +1682,11 @@ export declare const editorExperimentsConfig: {
1688
1682
  productKeys?: ProductKeys;
1689
1683
  typeGuard: IsBooleanType;
1690
1684
  };
1685
+ platform_editor_ai_new_aifc_editor_experience: {
1686
+ defaultValue: boolean;
1687
+ param: string;
1688
+ productKeys?: ProductKeys;
1689
+ typeGuard: IsBooleanType;
1690
+ };
1691
1691
  };
1692
1692
  export {};
@@ -1363,12 +1363,6 @@ export declare const editorExperimentsConfig: {
1363
1363
  productKeys?: ProductKeys;
1364
1364
  typeGuard: IsBooleanType;
1365
1365
  };
1366
- platform_editor_disable_last_node_para: {
1367
- defaultValue: boolean;
1368
- param: string;
1369
- productKeys?: ProductKeys;
1370
- typeGuard: IsBooleanType;
1371
- };
1372
1366
  platform_editor_fix_selection_wrapped_media_embed: {
1373
1367
  defaultValue: boolean;
1374
1368
  param: string;
@@ -1688,5 +1682,11 @@ export declare const editorExperimentsConfig: {
1688
1682
  productKeys?: ProductKeys;
1689
1683
  typeGuard: IsBooleanType;
1690
1684
  };
1685
+ platform_editor_ai_new_aifc_editor_experience: {
1686
+ defaultValue: boolean;
1687
+ param: string;
1688
+ productKeys?: ProductKeys;
1689
+ typeGuard: IsBooleanType;
1690
+ };
1691
1691
  };
1692
1692
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "87.0.0",
3
+ "version": "88.1.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",