@atlaskit/tmp-editor-statsig 79.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +9 -8
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +9 -8
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +9 -8
- package/dist/types/experiments-config.d.ts +6 -6
- package/dist/types-ts4.5/experiments-config.d.ts +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
17
|
## 79.0.0
|
|
4
18
|
|
|
5
19
|
### Major Changes
|
|
@@ -57,6 +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
|
+
platform_editor_table_menu_updates: false,
|
|
60
61
|
platform_editor_core_static_css: false,
|
|
61
62
|
'cwr-modal-ui-refresh': false
|
|
62
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: {
|
|
@@ -2060,6 +2052,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2060
2052
|
param: 'isEnabled',
|
|
2061
2053
|
defaultValue: false
|
|
2062
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
|
+
}),
|
|
2063
2064
|
// Added 2026-04-14
|
|
2064
2065
|
platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2065
2066
|
productKeys: {
|
|
@@ -51,6 +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
|
+
platform_editor_table_menu_updates: false,
|
|
54
55
|
platform_editor_core_static_css: false,
|
|
55
56
|
'cwr-modal-ui-refresh': false
|
|
56
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: {
|
|
@@ -2054,6 +2046,15 @@ export const editorExperimentsConfig = {
|
|
|
2054
2046
|
param: 'isEnabled',
|
|
2055
2047
|
defaultValue: false
|
|
2056
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
|
+
}),
|
|
2057
2058
|
// Added 2026-04-14
|
|
2058
2059
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2059
2060
|
productKeys: {
|
|
@@ -51,6 +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
|
+
platform_editor_table_menu_updates: false,
|
|
54
55
|
platform_editor_core_static_css: false,
|
|
55
56
|
'cwr-modal-ui-refresh': false
|
|
56
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: {
|
|
@@ -2054,6 +2046,15 @@ export var editorExperimentsConfig = {
|
|
|
2054
2046
|
param: 'isEnabled',
|
|
2055
2047
|
defaultValue: false
|
|
2056
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
|
+
}),
|
|
2057
2058
|
// Added 2026-04-14
|
|
2058
2059
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2059
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;
|
|
@@ -1513,6 +1507,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1513
1507
|
productKeys?: ProductKeys;
|
|
1514
1508
|
typeGuard: IsBooleanType;
|
|
1515
1509
|
};
|
|
1510
|
+
platform_editor_table_menu_updates: {
|
|
1511
|
+
defaultValue: boolean;
|
|
1512
|
+
param: string;
|
|
1513
|
+
productKeys?: ProductKeys;
|
|
1514
|
+
typeGuard: IsBooleanType;
|
|
1515
|
+
};
|
|
1516
1516
|
platform_editor_ai_rename_add_polish: {
|
|
1517
1517
|
defaultValue: boolean;
|
|
1518
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;
|
|
@@ -1513,6 +1507,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1513
1507
|
productKeys?: ProductKeys;
|
|
1514
1508
|
typeGuard: IsBooleanType;
|
|
1515
1509
|
};
|
|
1510
|
+
platform_editor_table_menu_updates: {
|
|
1511
|
+
defaultValue: boolean;
|
|
1512
|
+
param: string;
|
|
1513
|
+
productKeys?: ProductKeys;
|
|
1514
|
+
typeGuard: IsBooleanType;
|
|
1515
|
+
};
|
|
1516
1516
|
platform_editor_ai_rename_add_polish: {
|
|
1517
1517
|
defaultValue: boolean;
|
|
1518
1518
|
param: string;
|
package/package.json
CHANGED