@atlaskit/tmp-editor-statsig 84.2.0 → 84.3.1
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 +17 -0
- package/dist/cjs/experiments-config.js +25 -0
- package/dist/es2019/experiments-config.js +25 -0
- package/dist/esm/experiments-config.js +25 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 84.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`60d28e13ab1a3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/60d28e13ab1a3) -
|
|
8
|
+
[ux] Position free generation prompt bar to its relative position when the maui app is side a
|
|
9
|
+
layout behind an experiment
|
|
10
|
+
|
|
11
|
+
## 84.3.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`835c3e861c94e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/835c3e861c94e) -
|
|
16
|
+
Add gated Smart Link Rovo prompt helpers
|
|
17
|
+
- [`a664c439e70be`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a664c439e70be) -
|
|
18
|
+
[ux] Added experiment to add remix button in place of improve formatting button
|
|
19
|
+
|
|
3
20
|
## 84.2.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -467,6 +467,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
467
467
|
param: 'isEnabled',
|
|
468
468
|
defaultValue: false
|
|
469
469
|
}),
|
|
470
|
+
// Added 2026-05-26
|
|
471
|
+
platform_editor_agent_mentions: (0, _experimentBuilders.createBooleanExperiment)({
|
|
472
|
+
productKeys: {
|
|
473
|
+
confluence: 'platform_editor_agent_mentions',
|
|
474
|
+
jira: 'platform_editor_agent_mentions'
|
|
475
|
+
},
|
|
476
|
+
param: 'isEnabled',
|
|
477
|
+
defaultValue: false
|
|
478
|
+
}),
|
|
470
479
|
// Added 2025-10-31
|
|
471
480
|
platform_editor_lovability_suppress_toolbar_event: (0, _experimentBuilders.createBooleanExperiment)({
|
|
472
481
|
productKeys: {
|
|
@@ -1550,6 +1559,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1550
1559
|
param: 'isEnabled',
|
|
1551
1560
|
defaultValue: false
|
|
1552
1561
|
}),
|
|
1562
|
+
// Added 2026-05-26
|
|
1563
|
+
platform_editor_remix_in_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1564
|
+
productKeys: {
|
|
1565
|
+
confluence: 'platform_editor_remix_in_block_menu'
|
|
1566
|
+
},
|
|
1567
|
+
param: 'isEnabled',
|
|
1568
|
+
defaultValue: false
|
|
1569
|
+
}),
|
|
1553
1570
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1554
1571
|
platform_editor_ai_aifc_space_shortcut_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1555
1572
|
productKeys: {
|
|
@@ -2258,6 +2275,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2258
2275
|
param: 'isEnabled',
|
|
2259
2276
|
defaultValue: false
|
|
2260
2277
|
}),
|
|
2278
|
+
// Added 2026-05-21
|
|
2279
|
+
fix_free_gen_prompt_bar_position: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2280
|
+
productKeys: {
|
|
2281
|
+
confluence: 'fix_free_gen_prompt_bar_position'
|
|
2282
|
+
},
|
|
2283
|
+
param: 'isEnabled',
|
|
2284
|
+
defaultValue: false
|
|
2285
|
+
}),
|
|
2261
2286
|
// Added 2026-05-25
|
|
2262
2287
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2263
2288
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -461,6 +461,15 @@ export const editorExperimentsConfig = {
|
|
|
461
461
|
param: 'isEnabled',
|
|
462
462
|
defaultValue: false
|
|
463
463
|
}),
|
|
464
|
+
// Added 2026-05-26
|
|
465
|
+
platform_editor_agent_mentions: createBooleanExperiment({
|
|
466
|
+
productKeys: {
|
|
467
|
+
confluence: 'platform_editor_agent_mentions',
|
|
468
|
+
jira: 'platform_editor_agent_mentions'
|
|
469
|
+
},
|
|
470
|
+
param: 'isEnabled',
|
|
471
|
+
defaultValue: false
|
|
472
|
+
}),
|
|
464
473
|
// Added 2025-10-31
|
|
465
474
|
platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
|
|
466
475
|
productKeys: {
|
|
@@ -1544,6 +1553,14 @@ export const editorExperimentsConfig = {
|
|
|
1544
1553
|
param: 'isEnabled',
|
|
1545
1554
|
defaultValue: false
|
|
1546
1555
|
}),
|
|
1556
|
+
// Added 2026-05-26
|
|
1557
|
+
platform_editor_remix_in_block_menu: createBooleanExperiment({
|
|
1558
|
+
productKeys: {
|
|
1559
|
+
confluence: 'platform_editor_remix_in_block_menu'
|
|
1560
|
+
},
|
|
1561
|
+
param: 'isEnabled',
|
|
1562
|
+
defaultValue: false
|
|
1563
|
+
}),
|
|
1547
1564
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1548
1565
|
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1549
1566
|
productKeys: {
|
|
@@ -2252,6 +2269,14 @@ export const editorExperimentsConfig = {
|
|
|
2252
2269
|
param: 'isEnabled',
|
|
2253
2270
|
defaultValue: false
|
|
2254
2271
|
}),
|
|
2272
|
+
// Added 2026-05-21
|
|
2273
|
+
fix_free_gen_prompt_bar_position: createBooleanExperiment({
|
|
2274
|
+
productKeys: {
|
|
2275
|
+
confluence: 'fix_free_gen_prompt_bar_position'
|
|
2276
|
+
},
|
|
2277
|
+
param: 'isEnabled',
|
|
2278
|
+
defaultValue: false
|
|
2279
|
+
}),
|
|
2255
2280
|
// Added 2026-05-25
|
|
2256
2281
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2257
2282
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -461,6 +461,15 @@ export var editorExperimentsConfig = {
|
|
|
461
461
|
param: 'isEnabled',
|
|
462
462
|
defaultValue: false
|
|
463
463
|
}),
|
|
464
|
+
// Added 2026-05-26
|
|
465
|
+
platform_editor_agent_mentions: createBooleanExperiment({
|
|
466
|
+
productKeys: {
|
|
467
|
+
confluence: 'platform_editor_agent_mentions',
|
|
468
|
+
jira: 'platform_editor_agent_mentions'
|
|
469
|
+
},
|
|
470
|
+
param: 'isEnabled',
|
|
471
|
+
defaultValue: false
|
|
472
|
+
}),
|
|
464
473
|
// Added 2025-10-31
|
|
465
474
|
platform_editor_lovability_suppress_toolbar_event: createBooleanExperiment({
|
|
466
475
|
productKeys: {
|
|
@@ -1544,6 +1553,14 @@ export var editorExperimentsConfig = {
|
|
|
1544
1553
|
param: 'isEnabled',
|
|
1545
1554
|
defaultValue: false
|
|
1546
1555
|
}),
|
|
1556
|
+
// Added 2026-05-26
|
|
1557
|
+
platform_editor_remix_in_block_menu: createBooleanExperiment({
|
|
1558
|
+
productKeys: {
|
|
1559
|
+
confluence: 'platform_editor_remix_in_block_menu'
|
|
1560
|
+
},
|
|
1561
|
+
param: 'isEnabled',
|
|
1562
|
+
defaultValue: false
|
|
1563
|
+
}),
|
|
1547
1564
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1548
1565
|
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1549
1566
|
productKeys: {
|
|
@@ -2252,6 +2269,14 @@ export var editorExperimentsConfig = {
|
|
|
2252
2269
|
param: 'isEnabled',
|
|
2253
2270
|
defaultValue: false
|
|
2254
2271
|
}),
|
|
2272
|
+
// Added 2026-05-21
|
|
2273
|
+
fix_free_gen_prompt_bar_position: createBooleanExperiment({
|
|
2274
|
+
productKeys: {
|
|
2275
|
+
confluence: 'fix_free_gen_prompt_bar_position'
|
|
2276
|
+
},
|
|
2277
|
+
param: 'isEnabled',
|
|
2278
|
+
defaultValue: false
|
|
2279
|
+
}),
|
|
2255
2280
|
// Added 2026-05-25
|
|
2256
2281
|
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2257
2282
|
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
@@ -566,6 +566,12 @@ export declare const editorExperimentsConfig: {
|
|
|
566
566
|
productKeys?: ProductKeys;
|
|
567
567
|
typeGuard: IsBooleanType;
|
|
568
568
|
};
|
|
569
|
+
platform_editor_agent_mentions: {
|
|
570
|
+
defaultValue: boolean;
|
|
571
|
+
param: string;
|
|
572
|
+
productKeys?: ProductKeys;
|
|
573
|
+
typeGuard: IsBooleanType;
|
|
574
|
+
};
|
|
569
575
|
platform_editor_pasting_text_in_panel: {
|
|
570
576
|
defaultValue: boolean;
|
|
571
577
|
param: string;
|
|
@@ -1183,6 +1189,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1183
1189
|
productKeys?: ProductKeys;
|
|
1184
1190
|
typeGuard: IsBooleanType;
|
|
1185
1191
|
};
|
|
1192
|
+
platform_editor_remix_in_block_menu: {
|
|
1193
|
+
defaultValue: boolean;
|
|
1194
|
+
param: string;
|
|
1195
|
+
productKeys?: ProductKeys;
|
|
1196
|
+
typeGuard: IsBooleanType;
|
|
1197
|
+
};
|
|
1186
1198
|
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1187
1199
|
defaultValue: boolean;
|
|
1188
1200
|
param: string;
|
|
@@ -1658,6 +1670,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1658
1670
|
productKeys?: ProductKeys;
|
|
1659
1671
|
typeGuard: IsBooleanType;
|
|
1660
1672
|
};
|
|
1673
|
+
fix_free_gen_prompt_bar_position: {
|
|
1674
|
+
defaultValue: boolean;
|
|
1675
|
+
param: string;
|
|
1676
|
+
productKeys?: ProductKeys;
|
|
1677
|
+
typeGuard: IsBooleanType;
|
|
1678
|
+
};
|
|
1661
1679
|
platform_editor_use_html_plus_streaming_parser: {
|
|
1662
1680
|
defaultValue: boolean;
|
|
1663
1681
|
param: string;
|
|
@@ -566,6 +566,12 @@ export declare const editorExperimentsConfig: {
|
|
|
566
566
|
productKeys?: ProductKeys;
|
|
567
567
|
typeGuard: IsBooleanType;
|
|
568
568
|
};
|
|
569
|
+
platform_editor_agent_mentions: {
|
|
570
|
+
defaultValue: boolean;
|
|
571
|
+
param: string;
|
|
572
|
+
productKeys?: ProductKeys;
|
|
573
|
+
typeGuard: IsBooleanType;
|
|
574
|
+
};
|
|
569
575
|
platform_editor_pasting_text_in_panel: {
|
|
570
576
|
defaultValue: boolean;
|
|
571
577
|
param: string;
|
|
@@ -1183,6 +1189,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1183
1189
|
productKeys?: ProductKeys;
|
|
1184
1190
|
typeGuard: IsBooleanType;
|
|
1185
1191
|
};
|
|
1192
|
+
platform_editor_remix_in_block_menu: {
|
|
1193
|
+
defaultValue: boolean;
|
|
1194
|
+
param: string;
|
|
1195
|
+
productKeys?: ProductKeys;
|
|
1196
|
+
typeGuard: IsBooleanType;
|
|
1197
|
+
};
|
|
1186
1198
|
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1187
1199
|
defaultValue: boolean;
|
|
1188
1200
|
param: string;
|
|
@@ -1658,6 +1670,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1658
1670
|
productKeys?: ProductKeys;
|
|
1659
1671
|
typeGuard: IsBooleanType;
|
|
1660
1672
|
};
|
|
1673
|
+
fix_free_gen_prompt_bar_position: {
|
|
1674
|
+
defaultValue: boolean;
|
|
1675
|
+
param: string;
|
|
1676
|
+
productKeys?: ProductKeys;
|
|
1677
|
+
typeGuard: IsBooleanType;
|
|
1678
|
+
};
|
|
1661
1679
|
platform_editor_use_html_plus_streaming_parser: {
|
|
1662
1680
|
defaultValue: boolean;
|
|
1663
1681
|
param: string;
|
package/package.json
CHANGED