@atlaskit/tmp-editor-statsig 91.0.0 → 93.0.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 +26 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/experiments-config.js +8 -17
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/experiments-config.js +8 -17
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/experiments-config.js +8 -17
- package/dist/types/experiments-config.d.ts +6 -12
- package/dist/types-ts4.5/experiments-config.d.ts +6 -12
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 93.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`676198a68986c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/676198a68986c) -
|
|
8
|
+
Cleanup feature gate `platform_editor_prosemirror_rendered_data`. The ProseMirror rendered
|
|
9
|
+
analytics event now always includes page-load metadata, timing values, extension keys, and the UFO
|
|
10
|
+
interaction ID.
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`ebd3c5d7d340a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ebd3c5d7d340a) -
|
|
15
|
+
Gate single-link paste display menu behind confluence_editor_paste_3p_link_actions_menu feature
|
|
16
|
+
flag
|
|
17
|
+
|
|
18
|
+
## 92.0.0
|
|
19
|
+
|
|
20
|
+
### Major Changes
|
|
21
|
+
|
|
22
|
+
- [`2b3602c6e9f97`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2b3602c6e9f97) -
|
|
23
|
+
Clean up feature flag 'platform_safari_cursor_typeahead_fix'
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
|
|
3
29
|
## 91.0.0
|
|
4
30
|
|
|
5
31
|
### Major Changes
|
|
@@ -50,7 +50,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
50
50
|
platform_editor_enable_single_player_step_merging: false,
|
|
51
51
|
platform_editor_find_and_replace_improvements: false,
|
|
52
52
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
53
|
-
platform_editor_prosemirror_rendered_data: false,
|
|
54
53
|
confluence_compact_text_format: false,
|
|
55
54
|
platform_editor_paste_actions_menu: false,
|
|
56
55
|
platform_editor_diff_plugin_extended: false,
|
|
@@ -1356,14 +1356,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1356
1356
|
param: 'isEnabled',
|
|
1357
1357
|
defaultValue: false
|
|
1358
1358
|
}),
|
|
1359
|
-
// Added 2026-03-16
|
|
1360
|
-
platform_safari_cursor_typeahead_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1361
|
-
productKeys: {
|
|
1362
|
-
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1363
|
-
},
|
|
1364
|
-
param: 'isEnabled',
|
|
1365
|
-
defaultValue: false
|
|
1366
|
-
}),
|
|
1367
1359
|
platform_editor_fix_advanced_codeblocks_crlf_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1368
1360
|
productKeys: {
|
|
1369
1361
|
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
@@ -1486,15 +1478,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1486
1478
|
param: 'isEnabled',
|
|
1487
1479
|
defaultValue: false
|
|
1488
1480
|
}),
|
|
1489
|
-
// Added 2026-02-11
|
|
1490
|
-
platform_editor_prosemirror_rendered_data: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1491
|
-
productKeys: {
|
|
1492
|
-
confluence: 'platform_editor_prosemirror_rendered_data',
|
|
1493
|
-
jira: 'platform_editor_prosemirror_rendered_data'
|
|
1494
|
-
},
|
|
1495
|
-
param: 'isEnabled',
|
|
1496
|
-
defaultValue: false
|
|
1497
|
-
}),
|
|
1498
1481
|
// Added 2026-02-19
|
|
1499
1482
|
platform_editor_flexible_list_indentation: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1500
1483
|
productKeys: {
|
|
@@ -2285,6 +2268,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2285
2268
|
param: 'isEnabled',
|
|
2286
2269
|
defaultValue: false
|
|
2287
2270
|
}),
|
|
2271
|
+
// Added 2026-06-10
|
|
2272
|
+
confluence_editor_paste_3p_link_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2273
|
+
productKeys: {
|
|
2274
|
+
confluence: 'confluence_editor_paste_3p_link_actions_menu'
|
|
2275
|
+
},
|
|
2276
|
+
param: 'isEnabled',
|
|
2277
|
+
defaultValue: false
|
|
2278
|
+
}),
|
|
2288
2279
|
// Added 2026-05-19
|
|
2289
2280
|
platform_editor_ai_improve_formatting_toolbar: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2290
2281
|
productKeys: {
|
|
@@ -44,7 +44,6 @@ export const testBooleanOverrides = {
|
|
|
44
44
|
platform_editor_enable_single_player_step_merging: false,
|
|
45
45
|
platform_editor_find_and_replace_improvements: false,
|
|
46
46
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
47
|
-
platform_editor_prosemirror_rendered_data: false,
|
|
48
47
|
confluence_compact_text_format: false,
|
|
49
48
|
platform_editor_paste_actions_menu: false,
|
|
50
49
|
platform_editor_diff_plugin_extended: false,
|
|
@@ -1350,14 +1350,6 @@ export const editorExperimentsConfig = {
|
|
|
1350
1350
|
param: 'isEnabled',
|
|
1351
1351
|
defaultValue: false
|
|
1352
1352
|
}),
|
|
1353
|
-
// Added 2026-03-16
|
|
1354
|
-
platform_safari_cursor_typeahead_fix: createBooleanExperiment({
|
|
1355
|
-
productKeys: {
|
|
1356
|
-
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1357
|
-
},
|
|
1358
|
-
param: 'isEnabled',
|
|
1359
|
-
defaultValue: false
|
|
1360
|
-
}),
|
|
1361
1353
|
platform_editor_fix_advanced_codeblocks_crlf_patch: createBooleanExperiment({
|
|
1362
1354
|
productKeys: {
|
|
1363
1355
|
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
@@ -1480,15 +1472,6 @@ export const editorExperimentsConfig = {
|
|
|
1480
1472
|
param: 'isEnabled',
|
|
1481
1473
|
defaultValue: false
|
|
1482
1474
|
}),
|
|
1483
|
-
// Added 2026-02-11
|
|
1484
|
-
platform_editor_prosemirror_rendered_data: createBooleanExperiment({
|
|
1485
|
-
productKeys: {
|
|
1486
|
-
confluence: 'platform_editor_prosemirror_rendered_data',
|
|
1487
|
-
jira: 'platform_editor_prosemirror_rendered_data'
|
|
1488
|
-
},
|
|
1489
|
-
param: 'isEnabled',
|
|
1490
|
-
defaultValue: false
|
|
1491
|
-
}),
|
|
1492
1475
|
// Added 2026-02-19
|
|
1493
1476
|
platform_editor_flexible_list_indentation: createBooleanExperiment({
|
|
1494
1477
|
productKeys: {
|
|
@@ -2279,6 +2262,14 @@ export const editorExperimentsConfig = {
|
|
|
2279
2262
|
param: 'isEnabled',
|
|
2280
2263
|
defaultValue: false
|
|
2281
2264
|
}),
|
|
2265
|
+
// Added 2026-06-10
|
|
2266
|
+
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
2267
|
+
productKeys: {
|
|
2268
|
+
confluence: 'confluence_editor_paste_3p_link_actions_menu'
|
|
2269
|
+
},
|
|
2270
|
+
param: 'isEnabled',
|
|
2271
|
+
defaultValue: false
|
|
2272
|
+
}),
|
|
2282
2273
|
// Added 2026-05-19
|
|
2283
2274
|
platform_editor_ai_improve_formatting_toolbar: createBooleanExperiment({
|
|
2284
2275
|
productKeys: {
|
|
@@ -44,7 +44,6 @@ export var testBooleanOverrides = {
|
|
|
44
44
|
platform_editor_enable_single_player_step_merging: false,
|
|
45
45
|
platform_editor_find_and_replace_improvements: false,
|
|
46
46
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
47
|
-
platform_editor_prosemirror_rendered_data: false,
|
|
48
47
|
confluence_compact_text_format: false,
|
|
49
48
|
platform_editor_paste_actions_menu: false,
|
|
50
49
|
platform_editor_diff_plugin_extended: false,
|
|
@@ -1350,14 +1350,6 @@ export var editorExperimentsConfig = {
|
|
|
1350
1350
|
param: 'isEnabled',
|
|
1351
1351
|
defaultValue: false
|
|
1352
1352
|
}),
|
|
1353
|
-
// Added 2026-03-16
|
|
1354
|
-
platform_safari_cursor_typeahead_fix: createBooleanExperiment({
|
|
1355
|
-
productKeys: {
|
|
1356
|
-
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1357
|
-
},
|
|
1358
|
-
param: 'isEnabled',
|
|
1359
|
-
defaultValue: false
|
|
1360
|
-
}),
|
|
1361
1353
|
platform_editor_fix_advanced_codeblocks_crlf_patch: createBooleanExperiment({
|
|
1362
1354
|
productKeys: {
|
|
1363
1355
|
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
@@ -1480,15 +1472,6 @@ export var editorExperimentsConfig = {
|
|
|
1480
1472
|
param: 'isEnabled',
|
|
1481
1473
|
defaultValue: false
|
|
1482
1474
|
}),
|
|
1483
|
-
// Added 2026-02-11
|
|
1484
|
-
platform_editor_prosemirror_rendered_data: createBooleanExperiment({
|
|
1485
|
-
productKeys: {
|
|
1486
|
-
confluence: 'platform_editor_prosemirror_rendered_data',
|
|
1487
|
-
jira: 'platform_editor_prosemirror_rendered_data'
|
|
1488
|
-
},
|
|
1489
|
-
param: 'isEnabled',
|
|
1490
|
-
defaultValue: false
|
|
1491
|
-
}),
|
|
1492
1475
|
// Added 2026-02-19
|
|
1493
1476
|
platform_editor_flexible_list_indentation: createBooleanExperiment({
|
|
1494
1477
|
productKeys: {
|
|
@@ -2279,6 +2262,14 @@ export var editorExperimentsConfig = {
|
|
|
2279
2262
|
param: 'isEnabled',
|
|
2280
2263
|
defaultValue: false
|
|
2281
2264
|
}),
|
|
2265
|
+
// Added 2026-06-10
|
|
2266
|
+
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
2267
|
+
productKeys: {
|
|
2268
|
+
confluence: 'confluence_editor_paste_3p_link_actions_menu'
|
|
2269
|
+
},
|
|
2270
|
+
param: 'isEnabled',
|
|
2271
|
+
defaultValue: false
|
|
2272
|
+
}),
|
|
2282
2273
|
// Added 2026-05-19
|
|
2283
2274
|
platform_editor_ai_improve_formatting_toolbar: createBooleanExperiment({
|
|
2284
2275
|
productKeys: {
|
|
@@ -197,12 +197,6 @@ export declare const editorExperimentsConfig: {
|
|
|
197
197
|
productKeys?: ProductKeys;
|
|
198
198
|
typeGuard: IsBooleanType;
|
|
199
199
|
};
|
|
200
|
-
platform_editor_prosemirror_rendered_data: {
|
|
201
|
-
defaultValue: boolean;
|
|
202
|
-
param: string;
|
|
203
|
-
productKeys?: ProductKeys;
|
|
204
|
-
typeGuard: IsBooleanType;
|
|
205
|
-
};
|
|
206
200
|
confluence_compact_text_format: {
|
|
207
201
|
defaultValue: boolean;
|
|
208
202
|
param: string;
|
|
@@ -1016,12 +1010,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1016
1010
|
productKeys?: ProductKeys;
|
|
1017
1011
|
typeGuard: IsBooleanType;
|
|
1018
1012
|
};
|
|
1019
|
-
platform_safari_cursor_typeahead_fix: {
|
|
1020
|
-
defaultValue: boolean;
|
|
1021
|
-
param: string;
|
|
1022
|
-
productKeys?: ProductKeys;
|
|
1023
|
-
typeGuard: IsBooleanType;
|
|
1024
|
-
};
|
|
1025
1013
|
platform_editor_comment_editor_border_radius: {
|
|
1026
1014
|
defaultValue: boolean;
|
|
1027
1015
|
param: string;
|
|
@@ -1647,6 +1635,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1647
1635
|
productKeys?: ProductKeys;
|
|
1648
1636
|
typeGuard: IsBooleanType;
|
|
1649
1637
|
};
|
|
1638
|
+
confluence_editor_paste_3p_link_actions_menu: {
|
|
1639
|
+
defaultValue: boolean;
|
|
1640
|
+
param: string;
|
|
1641
|
+
productKeys?: ProductKeys;
|
|
1642
|
+
typeGuard: IsBooleanType;
|
|
1643
|
+
};
|
|
1650
1644
|
platform_editor_ai_replace_doc: {
|
|
1651
1645
|
defaultValue: boolean;
|
|
1652
1646
|
param: string;
|
|
@@ -197,12 +197,6 @@ export declare const editorExperimentsConfig: {
|
|
|
197
197
|
productKeys?: ProductKeys;
|
|
198
198
|
typeGuard: IsBooleanType;
|
|
199
199
|
};
|
|
200
|
-
platform_editor_prosemirror_rendered_data: {
|
|
201
|
-
defaultValue: boolean;
|
|
202
|
-
param: string;
|
|
203
|
-
productKeys?: ProductKeys;
|
|
204
|
-
typeGuard: IsBooleanType;
|
|
205
|
-
};
|
|
206
200
|
confluence_compact_text_format: {
|
|
207
201
|
defaultValue: boolean;
|
|
208
202
|
param: string;
|
|
@@ -1016,12 +1010,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1016
1010
|
productKeys?: ProductKeys;
|
|
1017
1011
|
typeGuard: IsBooleanType;
|
|
1018
1012
|
};
|
|
1019
|
-
platform_safari_cursor_typeahead_fix: {
|
|
1020
|
-
defaultValue: boolean;
|
|
1021
|
-
param: string;
|
|
1022
|
-
productKeys?: ProductKeys;
|
|
1023
|
-
typeGuard: IsBooleanType;
|
|
1024
|
-
};
|
|
1025
1013
|
platform_editor_comment_editor_border_radius: {
|
|
1026
1014
|
defaultValue: boolean;
|
|
1027
1015
|
param: string;
|
|
@@ -1647,6 +1635,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1647
1635
|
productKeys?: ProductKeys;
|
|
1648
1636
|
typeGuard: IsBooleanType;
|
|
1649
1637
|
};
|
|
1638
|
+
confluence_editor_paste_3p_link_actions_menu: {
|
|
1639
|
+
defaultValue: boolean;
|
|
1640
|
+
param: string;
|
|
1641
|
+
productKeys?: ProductKeys;
|
|
1642
|
+
typeGuard: IsBooleanType;
|
|
1643
|
+
};
|
|
1650
1644
|
platform_editor_ai_replace_doc: {
|
|
1651
1645
|
defaultValue: boolean;
|
|
1652
1646
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "93.0.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",
|
|
@@ -41,6 +41,9 @@
|
|
|
41
41
|
"platform-feature-flags": {
|
|
42
42
|
"platform_editor_experiments_use_product_keys": {
|
|
43
43
|
"type": "boolean"
|
|
44
|
+
},
|
|
45
|
+
"confluence_editor_paste_3p_link_actions_menu": {
|
|
46
|
+
"type": "boolean"
|
|
44
47
|
}
|
|
45
48
|
},
|
|
46
49
|
"devDependencies": {
|