@atlaskit/tmp-editor-statsig 84.0.0 → 84.2.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 +21 -0
- package/dist/cjs/editor-experiments-test-utils.js +3 -3
- package/dist/cjs/experiments-config.js +30 -0
- package/dist/es2019/experiments-config.js +30 -0
- package/dist/esm/editor-experiments-test-utils.js +3 -3
- 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,26 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 84.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`31f3e12a73d86`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31f3e12a73d86) -
|
|
8
|
+
[ux] Fix a11y issue by preventing tab focus in editor insert dropdown list so only arrow key
|
|
9
|
+
selection is available within the inside list. Tab selection is reserved for moving between the
|
|
10
|
+
inside list and exterior components such as search and view more. Gated behind
|
|
11
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 84.1.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [`f8a73491895c4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f8a73491895c4) -
|
|
22
|
+
Export Smart Link summarize action helpers for caller-owned UI.
|
|
23
|
+
|
|
3
24
|
## 84.0.0
|
|
4
25
|
|
|
5
26
|
### Major Changes
|
|
@@ -67,16 +67,16 @@ function eeTest(experimentName, cases, otherExperiments) {
|
|
|
67
67
|
test.each(Object.keys(cases))("".concat(experimentName, ": %s"), /*#__PURE__*/function () {
|
|
68
68
|
var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(value) {
|
|
69
69
|
var testCaseKey, convertedValue, testCase;
|
|
70
|
-
return _regenerator.default.wrap(function
|
|
70
|
+
return _regenerator.default.wrap(function (_context) {
|
|
71
71
|
while (1) switch (_context.prev = _context.next) {
|
|
72
72
|
case 0:
|
|
73
73
|
testCaseKey = value; // For boolean experiments, we need to convert the 'on' and 'off' cases to boolean `true` and `false` values.
|
|
74
74
|
convertedValue = isBooleanExperiment ? testCaseKey === 'true' ? true : false : testCaseKey;
|
|
75
75
|
(0, _setup.setupEditorExperiments)('test', _objectSpread((0, _defineProperty2.default)({}, experimentName, convertedValue), otherExperiments));
|
|
76
76
|
testCase = cases[testCaseKey]; // @ts-ignore
|
|
77
|
-
_context.next =
|
|
77
|
+
_context.next = 1;
|
|
78
78
|
return Promise.resolve(testCase());
|
|
79
|
-
case
|
|
79
|
+
case 1:
|
|
80
80
|
case "end":
|
|
81
81
|
return _context.stop();
|
|
82
82
|
}
|
|
@@ -408,6 +408,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
408
408
|
param: 'isEnabled',
|
|
409
409
|
defaultValue: false
|
|
410
410
|
}),
|
|
411
|
+
// Added 2026-05-22
|
|
412
|
+
confluence_editor_paste_3p_link_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
413
|
+
productKeys: {
|
|
414
|
+
confluence: 'confluence_editor_paste_3p_link_actions_menu'
|
|
415
|
+
},
|
|
416
|
+
param: 'isEnabled',
|
|
417
|
+
defaultValue: false
|
|
418
|
+
}),
|
|
411
419
|
// Added 2024-12-05
|
|
412
420
|
platform_editor_blockquote_in_text_formatting_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
413
421
|
productKeys: {
|
|
@@ -2109,6 +2117,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2109
2117
|
param: 'isEnabled',
|
|
2110
2118
|
defaultValue: false
|
|
2111
2119
|
}),
|
|
2120
|
+
// Added 2026-05-21
|
|
2121
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2122
|
+
productKeys: {
|
|
2123
|
+
confluence: 'platform_editor_fix_a11y_tab_focus_insertion_menu',
|
|
2124
|
+
jira: 'platform_editor_fix_a11y_tab_focus_insertion_menu'
|
|
2125
|
+
},
|
|
2126
|
+
param: 'isEnabled',
|
|
2127
|
+
defaultValue: false
|
|
2128
|
+
}),
|
|
2112
2129
|
// Added 2026-04-27
|
|
2113
2130
|
platform_sl_fix_cache_unresolved: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2114
2131
|
productKeys: {
|
|
@@ -2240,5 +2257,18 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2240
2257
|
},
|
|
2241
2258
|
param: 'isEnabled',
|
|
2242
2259
|
defaultValue: false
|
|
2260
|
+
}),
|
|
2261
|
+
// Added 2026-05-25
|
|
2262
|
+
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2263
|
+
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
2264
|
+
// in `@atlassian/editor-rovo-bridge`, the `replaceValue` orchestrator
|
|
2265
|
+
// action, and the `toolCallsStreaming.supportsProvisionalToolCalls`
|
|
2266
|
+
// capability advert on `PageContentCommandResult`.
|
|
2267
|
+
platform_editor_use_html_plus_streaming_parser: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2268
|
+
productKeys: {
|
|
2269
|
+
confluence: 'platform_editor_use_html_plus_streaming_parser'
|
|
2270
|
+
},
|
|
2271
|
+
param: 'isEnabled',
|
|
2272
|
+
defaultValue: false
|
|
2243
2273
|
})
|
|
2244
2274
|
};
|
|
@@ -402,6 +402,14 @@ export const editorExperimentsConfig = {
|
|
|
402
402
|
param: 'isEnabled',
|
|
403
403
|
defaultValue: false
|
|
404
404
|
}),
|
|
405
|
+
// Added 2026-05-22
|
|
406
|
+
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
407
|
+
productKeys: {
|
|
408
|
+
confluence: 'confluence_editor_paste_3p_link_actions_menu'
|
|
409
|
+
},
|
|
410
|
+
param: 'isEnabled',
|
|
411
|
+
defaultValue: false
|
|
412
|
+
}),
|
|
405
413
|
// Added 2024-12-05
|
|
406
414
|
platform_editor_blockquote_in_text_formatting_menu: createBooleanExperiment({
|
|
407
415
|
productKeys: {
|
|
@@ -2103,6 +2111,15 @@ export const editorExperimentsConfig = {
|
|
|
2103
2111
|
param: 'isEnabled',
|
|
2104
2112
|
defaultValue: false
|
|
2105
2113
|
}),
|
|
2114
|
+
// Added 2026-05-21
|
|
2115
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: createBooleanExperiment({
|
|
2116
|
+
productKeys: {
|
|
2117
|
+
confluence: 'platform_editor_fix_a11y_tab_focus_insertion_menu',
|
|
2118
|
+
jira: 'platform_editor_fix_a11y_tab_focus_insertion_menu'
|
|
2119
|
+
},
|
|
2120
|
+
param: 'isEnabled',
|
|
2121
|
+
defaultValue: false
|
|
2122
|
+
}),
|
|
2106
2123
|
// Added 2026-04-27
|
|
2107
2124
|
platform_sl_fix_cache_unresolved: createBooleanExperiment({
|
|
2108
2125
|
productKeys: {
|
|
@@ -2234,5 +2251,18 @@ export const editorExperimentsConfig = {
|
|
|
2234
2251
|
},
|
|
2235
2252
|
param: 'isEnabled',
|
|
2236
2253
|
defaultValue: false
|
|
2254
|
+
}),
|
|
2255
|
+
// Added 2026-05-25
|
|
2256
|
+
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2257
|
+
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
2258
|
+
// in `@atlassian/editor-rovo-bridge`, the `replaceValue` orchestrator
|
|
2259
|
+
// action, and the `toolCallsStreaming.supportsProvisionalToolCalls`
|
|
2260
|
+
// capability advert on `PageContentCommandResult`.
|
|
2261
|
+
platform_editor_use_html_plus_streaming_parser: createBooleanExperiment({
|
|
2262
|
+
productKeys: {
|
|
2263
|
+
confluence: 'platform_editor_use_html_plus_streaming_parser'
|
|
2264
|
+
},
|
|
2265
|
+
param: 'isEnabled',
|
|
2266
|
+
defaultValue: false
|
|
2237
2267
|
})
|
|
2238
2268
|
};
|
|
@@ -64,16 +64,16 @@ function eeTest(experimentName, cases, otherExperiments) {
|
|
|
64
64
|
test.each(Object.keys(cases))("".concat(experimentName, ": %s"), /*#__PURE__*/function () {
|
|
65
65
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(value) {
|
|
66
66
|
var testCaseKey, convertedValue, testCase;
|
|
67
|
-
return _regeneratorRuntime.wrap(function
|
|
67
|
+
return _regeneratorRuntime.wrap(function (_context) {
|
|
68
68
|
while (1) switch (_context.prev = _context.next) {
|
|
69
69
|
case 0:
|
|
70
70
|
testCaseKey = value; // For boolean experiments, we need to convert the 'on' and 'off' cases to boolean `true` and `false` values.
|
|
71
71
|
convertedValue = isBooleanExperiment ? testCaseKey === 'true' ? true : false : testCaseKey;
|
|
72
72
|
setupEditorExperiments('test', _objectSpread(_defineProperty({}, experimentName, convertedValue), otherExperiments));
|
|
73
73
|
testCase = cases[testCaseKey]; // @ts-ignore
|
|
74
|
-
_context.next =
|
|
74
|
+
_context.next = 1;
|
|
75
75
|
return Promise.resolve(testCase());
|
|
76
|
-
case
|
|
76
|
+
case 1:
|
|
77
77
|
case "end":
|
|
78
78
|
return _context.stop();
|
|
79
79
|
}
|
|
@@ -402,6 +402,14 @@ export var editorExperimentsConfig = {
|
|
|
402
402
|
param: 'isEnabled',
|
|
403
403
|
defaultValue: false
|
|
404
404
|
}),
|
|
405
|
+
// Added 2026-05-22
|
|
406
|
+
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
407
|
+
productKeys: {
|
|
408
|
+
confluence: 'confluence_editor_paste_3p_link_actions_menu'
|
|
409
|
+
},
|
|
410
|
+
param: 'isEnabled',
|
|
411
|
+
defaultValue: false
|
|
412
|
+
}),
|
|
405
413
|
// Added 2024-12-05
|
|
406
414
|
platform_editor_blockquote_in_text_formatting_menu: createBooleanExperiment({
|
|
407
415
|
productKeys: {
|
|
@@ -2103,6 +2111,15 @@ export var editorExperimentsConfig = {
|
|
|
2103
2111
|
param: 'isEnabled',
|
|
2104
2112
|
defaultValue: false
|
|
2105
2113
|
}),
|
|
2114
|
+
// Added 2026-05-21
|
|
2115
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: createBooleanExperiment({
|
|
2116
|
+
productKeys: {
|
|
2117
|
+
confluence: 'platform_editor_fix_a11y_tab_focus_insertion_menu',
|
|
2118
|
+
jira: 'platform_editor_fix_a11y_tab_focus_insertion_menu'
|
|
2119
|
+
},
|
|
2120
|
+
param: 'isEnabled',
|
|
2121
|
+
defaultValue: false
|
|
2122
|
+
}),
|
|
2106
2123
|
// Added 2026-04-27
|
|
2107
2124
|
platform_sl_fix_cache_unresolved: createBooleanExperiment({
|
|
2108
2125
|
productKeys: {
|
|
@@ -2234,5 +2251,18 @@ export var editorExperimentsConfig = {
|
|
|
2234
2251
|
},
|
|
2235
2252
|
param: 'isEnabled',
|
|
2236
2253
|
defaultValue: false
|
|
2254
|
+
}),
|
|
2255
|
+
// Added 2026-05-25
|
|
2256
|
+
// HTML+ v2 incremental tool-call streaming contract — gates the new
|
|
2257
|
+
// PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
|
|
2258
|
+
// in `@atlassian/editor-rovo-bridge`, the `replaceValue` orchestrator
|
|
2259
|
+
// action, and the `toolCallsStreaming.supportsProvisionalToolCalls`
|
|
2260
|
+
// capability advert on `PageContentCommandResult`.
|
|
2261
|
+
platform_editor_use_html_plus_streaming_parser: createBooleanExperiment({
|
|
2262
|
+
productKeys: {
|
|
2263
|
+
confluence: 'platform_editor_use_html_plus_streaming_parser'
|
|
2264
|
+
},
|
|
2265
|
+
param: 'isEnabled',
|
|
2266
|
+
defaultValue: false
|
|
2237
2267
|
})
|
|
2238
2268
|
};
|
|
@@ -245,6 +245,12 @@ export declare const editorExperimentsConfig: {
|
|
|
245
245
|
productKeys?: ProductKeys;
|
|
246
246
|
typeGuard: IsBooleanType;
|
|
247
247
|
};
|
|
248
|
+
confluence_editor_paste_3p_link_actions_menu: {
|
|
249
|
+
defaultValue: boolean;
|
|
250
|
+
param: string;
|
|
251
|
+
productKeys?: ProductKeys;
|
|
252
|
+
typeGuard: IsBooleanType;
|
|
253
|
+
};
|
|
248
254
|
editor_tinymce_full_width_mode: {
|
|
249
255
|
defaultValue: boolean;
|
|
250
256
|
param: string;
|
|
@@ -1489,6 +1495,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1489
1495
|
productKeys?: ProductKeys;
|
|
1490
1496
|
typeGuard: IsBooleanType;
|
|
1491
1497
|
};
|
|
1498
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: {
|
|
1499
|
+
defaultValue: boolean;
|
|
1500
|
+
param: string;
|
|
1501
|
+
productKeys?: ProductKeys;
|
|
1502
|
+
typeGuard: IsBooleanType;
|
|
1503
|
+
};
|
|
1492
1504
|
create_work_item_modernization_exp: {
|
|
1493
1505
|
defaultValue: boolean;
|
|
1494
1506
|
param: string;
|
|
@@ -1646,5 +1658,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1646
1658
|
productKeys?: ProductKeys;
|
|
1647
1659
|
typeGuard: IsBooleanType;
|
|
1648
1660
|
};
|
|
1661
|
+
platform_editor_use_html_plus_streaming_parser: {
|
|
1662
|
+
defaultValue: boolean;
|
|
1663
|
+
param: string;
|
|
1664
|
+
productKeys?: ProductKeys;
|
|
1665
|
+
typeGuard: IsBooleanType;
|
|
1666
|
+
};
|
|
1649
1667
|
};
|
|
1650
1668
|
export {};
|
|
@@ -245,6 +245,12 @@ export declare const editorExperimentsConfig: {
|
|
|
245
245
|
productKeys?: ProductKeys;
|
|
246
246
|
typeGuard: IsBooleanType;
|
|
247
247
|
};
|
|
248
|
+
confluence_editor_paste_3p_link_actions_menu: {
|
|
249
|
+
defaultValue: boolean;
|
|
250
|
+
param: string;
|
|
251
|
+
productKeys?: ProductKeys;
|
|
252
|
+
typeGuard: IsBooleanType;
|
|
253
|
+
};
|
|
248
254
|
editor_tinymce_full_width_mode: {
|
|
249
255
|
defaultValue: boolean;
|
|
250
256
|
param: string;
|
|
@@ -1489,6 +1495,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1489
1495
|
productKeys?: ProductKeys;
|
|
1490
1496
|
typeGuard: IsBooleanType;
|
|
1491
1497
|
};
|
|
1498
|
+
platform_editor_fix_a11y_tab_focus_insertion_menu: {
|
|
1499
|
+
defaultValue: boolean;
|
|
1500
|
+
param: string;
|
|
1501
|
+
productKeys?: ProductKeys;
|
|
1502
|
+
typeGuard: IsBooleanType;
|
|
1503
|
+
};
|
|
1492
1504
|
create_work_item_modernization_exp: {
|
|
1493
1505
|
defaultValue: boolean;
|
|
1494
1506
|
param: string;
|
|
@@ -1646,5 +1658,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1646
1658
|
productKeys?: ProductKeys;
|
|
1647
1659
|
typeGuard: IsBooleanType;
|
|
1648
1660
|
};
|
|
1661
|
+
platform_editor_use_html_plus_streaming_parser: {
|
|
1662
|
+
defaultValue: boolean;
|
|
1663
|
+
param: string;
|
|
1664
|
+
productKeys?: ProductKeys;
|
|
1665
|
+
typeGuard: IsBooleanType;
|
|
1666
|
+
};
|
|
1649
1667
|
};
|
|
1650
1668
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "84.
|
|
3
|
+
"version": "84.2.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": {
|