@atlaskit/tmp-editor-statsig 88.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 +12 -0
- package/dist/cjs/exp-test-overrides.js +9 -1
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/exp-test-overrides.js +9 -1
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/exp-test-overrides.js +9 -1
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +6 -0
- package/dist/types-ts4.5/experiments-config.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
3
15
|
## 88.0.0
|
|
4
16
|
|
|
5
17
|
### 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
|
};
|
|
@@ -2294,5 +2294,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2294
2294
|
},
|
|
2295
2295
|
param: 'isEnabled',
|
|
2296
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
|
|
2297
2306
|
})
|
|
2298
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
|
};
|
|
@@ -2288,5 +2288,14 @@ export const editorExperimentsConfig = {
|
|
|
2288
2288
|
},
|
|
2289
2289
|
param: 'isEnabled',
|
|
2290
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
|
|
2291
2300
|
})
|
|
2292
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
|
};
|
|
@@ -2288,5 +2288,14 @@ export var editorExperimentsConfig = {
|
|
|
2288
2288
|
},
|
|
2289
2289
|
param: 'isEnabled',
|
|
2290
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
|
|
2291
2300
|
})
|
|
2292
2301
|
};
|
|
@@ -1682,5 +1682,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1682
1682
|
productKeys?: ProductKeys;
|
|
1683
1683
|
typeGuard: IsBooleanType;
|
|
1684
1684
|
};
|
|
1685
|
+
platform_editor_ai_new_aifc_editor_experience: {
|
|
1686
|
+
defaultValue: boolean;
|
|
1687
|
+
param: string;
|
|
1688
|
+
productKeys?: ProductKeys;
|
|
1689
|
+
typeGuard: IsBooleanType;
|
|
1690
|
+
};
|
|
1685
1691
|
};
|
|
1686
1692
|
export {};
|
|
@@ -1682,5 +1682,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1682
1682
|
productKeys?: ProductKeys;
|
|
1683
1683
|
typeGuard: IsBooleanType;
|
|
1684
1684
|
};
|
|
1685
|
+
platform_editor_ai_new_aifc_editor_experience: {
|
|
1686
|
+
defaultValue: boolean;
|
|
1687
|
+
param: string;
|
|
1688
|
+
productKeys?: ProductKeys;
|
|
1689
|
+
typeGuard: IsBooleanType;
|
|
1690
|
+
};
|
|
1685
1691
|
};
|
|
1686
1692
|
export {};
|
package/package.json
CHANGED