@atlaskit/tmp-editor-statsig 84.1.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 +23 -0
- package/dist/cjs/experiments-config.js +30 -0
- package/dist/es2019/experiments-config.js +30 -0
- package/dist/esm/experiments-config.js +30 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
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
|
+
|
|
12
|
+
## 84.2.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [`31f3e12a73d86`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31f3e12a73d86) -
|
|
17
|
+
[ux] Fix a11y issue by preventing tab focus in editor insert dropdown list so only arrow key
|
|
18
|
+
selection is available within the inside list. Tab selection is reserved for moving between the
|
|
19
|
+
inside list and exterior components such as search and view more. Gated behind
|
|
20
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
3
26
|
## 84.1.0
|
|
4
27
|
|
|
5
28
|
### 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: {
|
|
@@ -2117,6 +2125,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2117
2125
|
param: 'isEnabled',
|
|
2118
2126
|
defaultValue: false
|
|
2119
2127
|
}),
|
|
2128
|
+
// Added 2026-05-21
|
|
2129
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2130
|
+
productKeys: {
|
|
2131
|
+
confluence: 'platform_editor_fix_a11y_tab_focus_insertion_menu',
|
|
2132
|
+
jira: 'platform_editor_fix_a11y_tab_focus_insertion_menu'
|
|
2133
|
+
},
|
|
2134
|
+
param: 'isEnabled',
|
|
2135
|
+
defaultValue: false
|
|
2136
|
+
}),
|
|
2120
2137
|
// Added 2026-04-27
|
|
2121
2138
|
platform_sl_fix_cache_unresolved: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2122
2139
|
productKeys: {
|
|
@@ -2248,5 +2265,18 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2248
2265
|
},
|
|
2249
2266
|
param: 'isEnabled',
|
|
2250
2267
|
defaultValue: false
|
|
2268
|
+
}),
|
|
2269
|
+
// Added 2026-05-25
|
|
2270
|
+
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2271
|
+
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
2272
|
+
// in `@atlassian/editor-rovo-bridge`, the `replaceValue` orchestrator
|
|
2273
|
+
// action, and the `toolCallsStreaming.supportsProvisionalToolCalls`
|
|
2274
|
+
// capability advert on `PageContentCommandResult`.
|
|
2275
|
+
platform_editor_use_html_plus_streaming_parser: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2276
|
+
productKeys: {
|
|
2277
|
+
confluence: 'platform_editor_use_html_plus_streaming_parser'
|
|
2278
|
+
},
|
|
2279
|
+
param: 'isEnabled',
|
|
2280
|
+
defaultValue: false
|
|
2251
2281
|
})
|
|
2252
2282
|
};
|
|
@@ -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: {
|
|
@@ -2111,6 +2119,15 @@ export const editorExperimentsConfig = {
|
|
|
2111
2119
|
param: 'isEnabled',
|
|
2112
2120
|
defaultValue: false
|
|
2113
2121
|
}),
|
|
2122
|
+
// Added 2026-05-21
|
|
2123
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: createBooleanExperiment({
|
|
2124
|
+
productKeys: {
|
|
2125
|
+
confluence: 'platform_editor_fix_a11y_tab_focus_insertion_menu',
|
|
2126
|
+
jira: 'platform_editor_fix_a11y_tab_focus_insertion_menu'
|
|
2127
|
+
},
|
|
2128
|
+
param: 'isEnabled',
|
|
2129
|
+
defaultValue: false
|
|
2130
|
+
}),
|
|
2114
2131
|
// Added 2026-04-27
|
|
2115
2132
|
platform_sl_fix_cache_unresolved: createBooleanExperiment({
|
|
2116
2133
|
productKeys: {
|
|
@@ -2242,5 +2259,18 @@ export const editorExperimentsConfig = {
|
|
|
2242
2259
|
},
|
|
2243
2260
|
param: 'isEnabled',
|
|
2244
2261
|
defaultValue: false
|
|
2262
|
+
}),
|
|
2263
|
+
// Added 2026-05-25
|
|
2264
|
+
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2265
|
+
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
2266
|
+
// in `@atlassian/editor-rovo-bridge`, the `replaceValue` orchestrator
|
|
2267
|
+
// action, and the `toolCallsStreaming.supportsProvisionalToolCalls`
|
|
2268
|
+
// capability advert on `PageContentCommandResult`.
|
|
2269
|
+
platform_editor_use_html_plus_streaming_parser: createBooleanExperiment({
|
|
2270
|
+
productKeys: {
|
|
2271
|
+
confluence: 'platform_editor_use_html_plus_streaming_parser'
|
|
2272
|
+
},
|
|
2273
|
+
param: 'isEnabled',
|
|
2274
|
+
defaultValue: false
|
|
2245
2275
|
})
|
|
2246
2276
|
};
|
|
@@ -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: {
|
|
@@ -2111,6 +2119,15 @@ export var editorExperimentsConfig = {
|
|
|
2111
2119
|
param: 'isEnabled',
|
|
2112
2120
|
defaultValue: false
|
|
2113
2121
|
}),
|
|
2122
|
+
// Added 2026-05-21
|
|
2123
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: createBooleanExperiment({
|
|
2124
|
+
productKeys: {
|
|
2125
|
+
confluence: 'platform_editor_fix_a11y_tab_focus_insertion_menu',
|
|
2126
|
+
jira: 'platform_editor_fix_a11y_tab_focus_insertion_menu'
|
|
2127
|
+
},
|
|
2128
|
+
param: 'isEnabled',
|
|
2129
|
+
defaultValue: false
|
|
2130
|
+
}),
|
|
2114
2131
|
// Added 2026-04-27
|
|
2115
2132
|
platform_sl_fix_cache_unresolved: createBooleanExperiment({
|
|
2116
2133
|
productKeys: {
|
|
@@ -2242,5 +2259,18 @@ export var editorExperimentsConfig = {
|
|
|
2242
2259
|
},
|
|
2243
2260
|
param: 'isEnabled',
|
|
2244
2261
|
defaultValue: false
|
|
2262
|
+
}),
|
|
2263
|
+
// Added 2026-05-25
|
|
2264
|
+
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2265
|
+
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
2266
|
+
// in `@atlassian/editor-rovo-bridge`, the `replaceValue` orchestrator
|
|
2267
|
+
// action, and the `toolCallsStreaming.supportsProvisionalToolCalls`
|
|
2268
|
+
// capability advert on `PageContentCommandResult`.
|
|
2269
|
+
platform_editor_use_html_plus_streaming_parser: createBooleanExperiment({
|
|
2270
|
+
productKeys: {
|
|
2271
|
+
confluence: 'platform_editor_use_html_plus_streaming_parser'
|
|
2272
|
+
},
|
|
2273
|
+
param: 'isEnabled',
|
|
2274
|
+
defaultValue: false
|
|
2245
2275
|
})
|
|
2246
2276
|
};
|
|
@@ -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;
|
|
@@ -1495,6 +1501,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1495
1501
|
productKeys?: ProductKeys;
|
|
1496
1502
|
typeGuard: IsBooleanType;
|
|
1497
1503
|
};
|
|
1504
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: {
|
|
1505
|
+
defaultValue: boolean;
|
|
1506
|
+
param: string;
|
|
1507
|
+
productKeys?: ProductKeys;
|
|
1508
|
+
typeGuard: IsBooleanType;
|
|
1509
|
+
};
|
|
1498
1510
|
create_work_item_modernization_exp: {
|
|
1499
1511
|
defaultValue: boolean;
|
|
1500
1512
|
param: string;
|
|
@@ -1652,5 +1664,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1652
1664
|
productKeys?: ProductKeys;
|
|
1653
1665
|
typeGuard: IsBooleanType;
|
|
1654
1666
|
};
|
|
1667
|
+
platform_editor_use_html_plus_streaming_parser: {
|
|
1668
|
+
defaultValue: boolean;
|
|
1669
|
+
param: string;
|
|
1670
|
+
productKeys?: ProductKeys;
|
|
1671
|
+
typeGuard: IsBooleanType;
|
|
1672
|
+
};
|
|
1655
1673
|
};
|
|
1656
1674
|
export {};
|
|
@@ -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;
|
|
@@ -1495,6 +1501,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1495
1501
|
productKeys?: ProductKeys;
|
|
1496
1502
|
typeGuard: IsBooleanType;
|
|
1497
1503
|
};
|
|
1504
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: {
|
|
1505
|
+
defaultValue: boolean;
|
|
1506
|
+
param: string;
|
|
1507
|
+
productKeys?: ProductKeys;
|
|
1508
|
+
typeGuard: IsBooleanType;
|
|
1509
|
+
};
|
|
1498
1510
|
create_work_item_modernization_exp: {
|
|
1499
1511
|
defaultValue: boolean;
|
|
1500
1512
|
param: string;
|
|
@@ -1652,5 +1664,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1652
1664
|
productKeys?: ProductKeys;
|
|
1653
1665
|
typeGuard: IsBooleanType;
|
|
1654
1666
|
};
|
|
1667
|
+
platform_editor_use_html_plus_streaming_parser: {
|
|
1668
|
+
defaultValue: boolean;
|
|
1669
|
+
param: string;
|
|
1670
|
+
productKeys?: ProductKeys;
|
|
1671
|
+
typeGuard: IsBooleanType;
|
|
1672
|
+
};
|
|
1655
1673
|
};
|
|
1656
1674
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "84.
|
|
3
|
+
"version": "84.3.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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.7.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
|
-
"@atlaskit/react-ufo": "^6.
|
|
38
|
+
"@atlaskit/react-ufo": "^6.2.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"platform-feature-flags": {
|