@atlaskit/tmp-editor-statsig 84.2.0 → 84.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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 84.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`835c3e861c94e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/835c3e861c94e) -
|
|
8
|
+
Add gated Smart Link Rovo prompt helpers
|
|
9
|
+
- [`a664c439e70be`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a664c439e70be) -
|
|
10
|
+
[ux] Added experiment to add remix button in place of improve formatting button
|
|
11
|
+
|
|
3
12
|
## 84.2.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -1550,6 +1550,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1550
1550
|
param: 'isEnabled',
|
|
1551
1551
|
defaultValue: false
|
|
1552
1552
|
}),
|
|
1553
|
+
// Added 2026-05-26
|
|
1554
|
+
platform_editor_remix_in_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1555
|
+
productKeys: {
|
|
1556
|
+
confluence: 'platform_editor_remix_in_block_menu'
|
|
1557
|
+
},
|
|
1558
|
+
param: 'isEnabled',
|
|
1559
|
+
defaultValue: false
|
|
1560
|
+
}),
|
|
1553
1561
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1554
1562
|
platform_editor_ai_aifc_space_shortcut_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1555
1563
|
productKeys: {
|
|
@@ -1544,6 +1544,14 @@ export const editorExperimentsConfig = {
|
|
|
1544
1544
|
param: 'isEnabled',
|
|
1545
1545
|
defaultValue: false
|
|
1546
1546
|
}),
|
|
1547
|
+
// Added 2026-05-26
|
|
1548
|
+
platform_editor_remix_in_block_menu: createBooleanExperiment({
|
|
1549
|
+
productKeys: {
|
|
1550
|
+
confluence: 'platform_editor_remix_in_block_menu'
|
|
1551
|
+
},
|
|
1552
|
+
param: 'isEnabled',
|
|
1553
|
+
defaultValue: false
|
|
1554
|
+
}),
|
|
1547
1555
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1548
1556
|
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1549
1557
|
productKeys: {
|
|
@@ -1544,6 +1544,14 @@ export var editorExperimentsConfig = {
|
|
|
1544
1544
|
param: 'isEnabled',
|
|
1545
1545
|
defaultValue: false
|
|
1546
1546
|
}),
|
|
1547
|
+
// Added 2026-05-26
|
|
1548
|
+
platform_editor_remix_in_block_menu: createBooleanExperiment({
|
|
1549
|
+
productKeys: {
|
|
1550
|
+
confluence: 'platform_editor_remix_in_block_menu'
|
|
1551
|
+
},
|
|
1552
|
+
param: 'isEnabled',
|
|
1553
|
+
defaultValue: false
|
|
1554
|
+
}),
|
|
1547
1555
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1548
1556
|
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1549
1557
|
productKeys: {
|
|
@@ -1183,6 +1183,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1183
1183
|
productKeys?: ProductKeys;
|
|
1184
1184
|
typeGuard: IsBooleanType;
|
|
1185
1185
|
};
|
|
1186
|
+
platform_editor_remix_in_block_menu: {
|
|
1187
|
+
defaultValue: boolean;
|
|
1188
|
+
param: string;
|
|
1189
|
+
productKeys?: ProductKeys;
|
|
1190
|
+
typeGuard: IsBooleanType;
|
|
1191
|
+
};
|
|
1186
1192
|
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1187
1193
|
defaultValue: boolean;
|
|
1188
1194
|
param: string;
|
|
@@ -1183,6 +1183,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1183
1183
|
productKeys?: ProductKeys;
|
|
1184
1184
|
typeGuard: IsBooleanType;
|
|
1185
1185
|
};
|
|
1186
|
+
platform_editor_remix_in_block_menu: {
|
|
1187
|
+
defaultValue: boolean;
|
|
1188
|
+
param: string;
|
|
1189
|
+
productKeys?: ProductKeys;
|
|
1190
|
+
typeGuard: IsBooleanType;
|
|
1191
|
+
};
|
|
1186
1192
|
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1187
1193
|
defaultValue: boolean;
|
|
1188
1194
|
param: string;
|
package/package.json
CHANGED