@atlaskit/tmp-editor-statsig 78.0.0 → 80.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 +21 -0
- package/dist/cjs/exp-test-overrides.js +3 -1
- package/dist/cjs/experiments-config.js +9 -16
- package/dist/es2019/exp-test-overrides.js +3 -1
- package/dist/es2019/experiments-config.js +9 -16
- package/dist/esm/exp-test-overrides.js +3 -1
- package/dist/esm/experiments-config.js +9 -16
- package/dist/types/experiments-config.d.ts +6 -12
- package/dist/types-ts4.5/experiments-config.d.ts +6 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 80.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`2f70251ed8022`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2f70251ed8022) -
|
|
8
|
+
Clean up experiment platform_editor_experience_tracking
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- [`6403e27aa3327`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6403e27aa3327) -
|
|
13
|
+
Add the experimental table row menu structure, keyboard shortcut hints, and shared table menu
|
|
14
|
+
items. Expose table row menu icons through editor-toolbar. Ensure the UI control registry is
|
|
15
|
+
available before table row menu items are registered.
|
|
16
|
+
|
|
17
|
+
## 79.0.0
|
|
18
|
+
|
|
19
|
+
### Major Changes
|
|
20
|
+
|
|
21
|
+
- [`14b617e1204ad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14b617e1204ad) -
|
|
22
|
+
Cleanup confluence_frontend_fix_date_hydration_error experiment
|
|
23
|
+
|
|
3
24
|
## 78.0.0
|
|
4
25
|
|
|
5
26
|
### Major Changes
|
|
@@ -57,5 +57,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
57
57
|
platform_editor_table_fit_to_content_on_demand: false,
|
|
58
58
|
platform_editor_table_fit_to_content_auto_convert: false,
|
|
59
59
|
platform_editor_table_q4_loveability: false,
|
|
60
|
-
|
|
60
|
+
platform_editor_table_menu_updates: false,
|
|
61
|
+
platform_editor_core_static_css: false,
|
|
62
|
+
'cwr-modal-ui-refresh': false
|
|
61
63
|
};
|
|
@@ -325,14 +325,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
325
325
|
param: 'isEnabled',
|
|
326
326
|
defaultValue: false
|
|
327
327
|
}),
|
|
328
|
-
// Added 2025-10-10
|
|
329
|
-
platform_editor_experience_tracking: (0, _experimentBuilders.createBooleanExperiment)({
|
|
330
|
-
productKeys: {
|
|
331
|
-
confluence: 'platform_editor_experience_tracking'
|
|
332
|
-
},
|
|
333
|
-
param: 'isEnabled',
|
|
334
|
-
defaultValue: false
|
|
335
|
-
}),
|
|
336
328
|
// Added 2026-03-05 - gates DOM mutation observer for experience tracking (toolbar + block menu)
|
|
337
329
|
platform_editor_experience_tracking_observer: (0, _experimentBuilders.createBooleanExperiment)({
|
|
338
330
|
productKeys: {
|
|
@@ -1353,14 +1345,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1353
1345
|
param: 'isEnabled',
|
|
1354
1346
|
defaultValue: false
|
|
1355
1347
|
}),
|
|
1356
|
-
// Added 2026-02-17
|
|
1357
|
-
confluence_frontend_fix_date_hydration_error: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1358
|
-
productKeys: {
|
|
1359
|
-
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1360
|
-
},
|
|
1361
|
-
param: 'isEnabled',
|
|
1362
|
-
defaultValue: false
|
|
1363
|
-
}),
|
|
1364
1348
|
platform_editor_fix_advanced_codeblocks_crlf_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1365
1349
|
productKeys: {
|
|
1366
1350
|
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
@@ -2068,6 +2052,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2068
2052
|
param: 'isEnabled',
|
|
2069
2053
|
defaultValue: false
|
|
2070
2054
|
}),
|
|
2055
|
+
// Added 2026-05-11
|
|
2056
|
+
platform_editor_table_menu_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2057
|
+
productKeys: {
|
|
2058
|
+
confluence: 'platform_editor_table_menu_updates',
|
|
2059
|
+
jira: 'platform_editor_table_menu_updates'
|
|
2060
|
+
},
|
|
2061
|
+
param: 'isEnabled',
|
|
2062
|
+
defaultValue: false
|
|
2063
|
+
}),
|
|
2071
2064
|
// Added 2026-04-14
|
|
2072
2065
|
platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2073
2066
|
productKeys: {
|
|
@@ -51,5 +51,7 @@ export const testBooleanOverrides = {
|
|
|
51
51
|
platform_editor_table_fit_to_content_on_demand: false,
|
|
52
52
|
platform_editor_table_fit_to_content_auto_convert: false,
|
|
53
53
|
platform_editor_table_q4_loveability: false,
|
|
54
|
-
|
|
54
|
+
platform_editor_table_menu_updates: false,
|
|
55
|
+
platform_editor_core_static_css: false,
|
|
56
|
+
'cwr-modal-ui-refresh': false
|
|
55
57
|
};
|
|
@@ -319,14 +319,6 @@ export const editorExperimentsConfig = {
|
|
|
319
319
|
param: 'isEnabled',
|
|
320
320
|
defaultValue: false
|
|
321
321
|
}),
|
|
322
|
-
// Added 2025-10-10
|
|
323
|
-
platform_editor_experience_tracking: createBooleanExperiment({
|
|
324
|
-
productKeys: {
|
|
325
|
-
confluence: 'platform_editor_experience_tracking'
|
|
326
|
-
},
|
|
327
|
-
param: 'isEnabled',
|
|
328
|
-
defaultValue: false
|
|
329
|
-
}),
|
|
330
322
|
// Added 2026-03-05 - gates DOM mutation observer for experience tracking (toolbar + block menu)
|
|
331
323
|
platform_editor_experience_tracking_observer: createBooleanExperiment({
|
|
332
324
|
productKeys: {
|
|
@@ -1347,14 +1339,6 @@ export const editorExperimentsConfig = {
|
|
|
1347
1339
|
param: 'isEnabled',
|
|
1348
1340
|
defaultValue: false
|
|
1349
1341
|
}),
|
|
1350
|
-
// Added 2026-02-17
|
|
1351
|
-
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1352
|
-
productKeys: {
|
|
1353
|
-
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1354
|
-
},
|
|
1355
|
-
param: 'isEnabled',
|
|
1356
|
-
defaultValue: false
|
|
1357
|
-
}),
|
|
1358
1342
|
platform_editor_fix_advanced_codeblocks_crlf_patch: createBooleanExperiment({
|
|
1359
1343
|
productKeys: {
|
|
1360
1344
|
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
@@ -2062,6 +2046,15 @@ export const editorExperimentsConfig = {
|
|
|
2062
2046
|
param: 'isEnabled',
|
|
2063
2047
|
defaultValue: false
|
|
2064
2048
|
}),
|
|
2049
|
+
// Added 2026-05-11
|
|
2050
|
+
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2051
|
+
productKeys: {
|
|
2052
|
+
confluence: 'platform_editor_table_menu_updates',
|
|
2053
|
+
jira: 'platform_editor_table_menu_updates'
|
|
2054
|
+
},
|
|
2055
|
+
param: 'isEnabled',
|
|
2056
|
+
defaultValue: false
|
|
2057
|
+
}),
|
|
2065
2058
|
// Added 2026-04-14
|
|
2066
2059
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2067
2060
|
productKeys: {
|
|
@@ -51,5 +51,7 @@ export var testBooleanOverrides = {
|
|
|
51
51
|
platform_editor_table_fit_to_content_on_demand: false,
|
|
52
52
|
platform_editor_table_fit_to_content_auto_convert: false,
|
|
53
53
|
platform_editor_table_q4_loveability: false,
|
|
54
|
-
|
|
54
|
+
platform_editor_table_menu_updates: false,
|
|
55
|
+
platform_editor_core_static_css: false,
|
|
56
|
+
'cwr-modal-ui-refresh': false
|
|
55
57
|
};
|
|
@@ -319,14 +319,6 @@ export var editorExperimentsConfig = {
|
|
|
319
319
|
param: 'isEnabled',
|
|
320
320
|
defaultValue: false
|
|
321
321
|
}),
|
|
322
|
-
// Added 2025-10-10
|
|
323
|
-
platform_editor_experience_tracking: createBooleanExperiment({
|
|
324
|
-
productKeys: {
|
|
325
|
-
confluence: 'platform_editor_experience_tracking'
|
|
326
|
-
},
|
|
327
|
-
param: 'isEnabled',
|
|
328
|
-
defaultValue: false
|
|
329
|
-
}),
|
|
330
322
|
// Added 2026-03-05 - gates DOM mutation observer for experience tracking (toolbar + block menu)
|
|
331
323
|
platform_editor_experience_tracking_observer: createBooleanExperiment({
|
|
332
324
|
productKeys: {
|
|
@@ -1347,14 +1339,6 @@ export var editorExperimentsConfig = {
|
|
|
1347
1339
|
param: 'isEnabled',
|
|
1348
1340
|
defaultValue: false
|
|
1349
1341
|
}),
|
|
1350
|
-
// Added 2026-02-17
|
|
1351
|
-
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1352
|
-
productKeys: {
|
|
1353
|
-
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1354
|
-
},
|
|
1355
|
-
param: 'isEnabled',
|
|
1356
|
-
defaultValue: false
|
|
1357
|
-
}),
|
|
1358
1342
|
platform_editor_fix_advanced_codeblocks_crlf_patch: createBooleanExperiment({
|
|
1359
1343
|
productKeys: {
|
|
1360
1344
|
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
@@ -2062,6 +2046,15 @@ export var editorExperimentsConfig = {
|
|
|
2062
2046
|
param: 'isEnabled',
|
|
2063
2047
|
defaultValue: false
|
|
2064
2048
|
}),
|
|
2049
|
+
// Added 2026-05-11
|
|
2050
|
+
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2051
|
+
productKeys: {
|
|
2052
|
+
confluence: 'platform_editor_table_menu_updates',
|
|
2053
|
+
jira: 'platform_editor_table_menu_updates'
|
|
2054
|
+
},
|
|
2055
|
+
param: 'isEnabled',
|
|
2056
|
+
defaultValue: false
|
|
2057
|
+
}),
|
|
2065
2058
|
// Added 2026-04-14
|
|
2066
2059
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2067
2060
|
productKeys: {
|
|
@@ -440,12 +440,6 @@ export declare const editorExperimentsConfig: {
|
|
|
440
440
|
productKeys?: ProductKeys;
|
|
441
441
|
typeGuard: IsBooleanType;
|
|
442
442
|
};
|
|
443
|
-
platform_editor_experience_tracking: {
|
|
444
|
-
defaultValue: boolean;
|
|
445
|
-
param: string;
|
|
446
|
-
productKeys?: ProductKeys;
|
|
447
|
-
typeGuard: IsBooleanType;
|
|
448
|
-
};
|
|
449
443
|
platform_editor_experience_tracking_observer: {
|
|
450
444
|
defaultValue: boolean;
|
|
451
445
|
param: string;
|
|
@@ -1051,12 +1045,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1051
1045
|
productKeys?: ProductKeys;
|
|
1052
1046
|
typeGuard: IsBooleanType;
|
|
1053
1047
|
};
|
|
1054
|
-
confluence_frontend_fix_date_hydration_error: {
|
|
1055
|
-
defaultValue: boolean;
|
|
1056
|
-
param: string;
|
|
1057
|
-
productKeys?: ProductKeys;
|
|
1058
|
-
typeGuard: IsBooleanType;
|
|
1059
|
-
};
|
|
1060
1048
|
platform_editor_fix_advanced_codeblocks_crlf_patch: {
|
|
1061
1049
|
defaultValue: boolean;
|
|
1062
1050
|
param: string;
|
|
@@ -1519,6 +1507,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1519
1507
|
productKeys?: ProductKeys;
|
|
1520
1508
|
typeGuard: IsBooleanType;
|
|
1521
1509
|
};
|
|
1510
|
+
platform_editor_table_menu_updates: {
|
|
1511
|
+
defaultValue: boolean;
|
|
1512
|
+
param: string;
|
|
1513
|
+
productKeys?: ProductKeys;
|
|
1514
|
+
typeGuard: IsBooleanType;
|
|
1515
|
+
};
|
|
1522
1516
|
platform_editor_ai_rename_add_polish: {
|
|
1523
1517
|
defaultValue: boolean;
|
|
1524
1518
|
param: string;
|
|
@@ -440,12 +440,6 @@ export declare const editorExperimentsConfig: {
|
|
|
440
440
|
productKeys?: ProductKeys;
|
|
441
441
|
typeGuard: IsBooleanType;
|
|
442
442
|
};
|
|
443
|
-
platform_editor_experience_tracking: {
|
|
444
|
-
defaultValue: boolean;
|
|
445
|
-
param: string;
|
|
446
|
-
productKeys?: ProductKeys;
|
|
447
|
-
typeGuard: IsBooleanType;
|
|
448
|
-
};
|
|
449
443
|
platform_editor_experience_tracking_observer: {
|
|
450
444
|
defaultValue: boolean;
|
|
451
445
|
param: string;
|
|
@@ -1051,12 +1045,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1051
1045
|
productKeys?: ProductKeys;
|
|
1052
1046
|
typeGuard: IsBooleanType;
|
|
1053
1047
|
};
|
|
1054
|
-
confluence_frontend_fix_date_hydration_error: {
|
|
1055
|
-
defaultValue: boolean;
|
|
1056
|
-
param: string;
|
|
1057
|
-
productKeys?: ProductKeys;
|
|
1058
|
-
typeGuard: IsBooleanType;
|
|
1059
|
-
};
|
|
1060
1048
|
platform_editor_fix_advanced_codeblocks_crlf_patch: {
|
|
1061
1049
|
defaultValue: boolean;
|
|
1062
1050
|
param: string;
|
|
@@ -1519,6 +1507,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1519
1507
|
productKeys?: ProductKeys;
|
|
1520
1508
|
typeGuard: IsBooleanType;
|
|
1521
1509
|
};
|
|
1510
|
+
platform_editor_table_menu_updates: {
|
|
1511
|
+
defaultValue: boolean;
|
|
1512
|
+
param: string;
|
|
1513
|
+
productKeys?: ProductKeys;
|
|
1514
|
+
typeGuard: IsBooleanType;
|
|
1515
|
+
};
|
|
1522
1516
|
platform_editor_ai_rename_add_polish: {
|
|
1523
1517
|
defaultValue: boolean;
|
|
1524
1518
|
param: string;
|
package/package.json
CHANGED