@atlaskit/tmp-editor-statsig 88.3.0 → 88.4.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 +10 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +8 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +8 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +8 -0
- package/dist/types/experiments-config.d.ts +6 -0
- package/dist/types-ts4.5/experiments-config.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 88.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f53b4391ccd54`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f53b4391ccd54) -
|
|
8
|
+
Fix table menu popup placement near viewport edges
|
|
9
|
+
|
|
10
|
+
Add new editor experiment platform_editor_table_close_cell_menu_on_move_exp to fix legacy menu
|
|
11
|
+
staying open when changing cells.
|
|
12
|
+
|
|
3
13
|
## 88.3.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -68,5 +68,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
68
68
|
// `platform_editor_ai_replace_doc` as the AND partner; the unrelated
|
|
69
69
|
// `platform_editor_ai_replace_doc: false` override has been removed since
|
|
70
70
|
// it does not gate this feature.
|
|
71
|
-
platform_editor_ai_new_aifc_editor_experience: false
|
|
71
|
+
platform_editor_ai_new_aifc_editor_experience: false,
|
|
72
|
+
cc_page_experiences_editor_image_generation: false
|
|
72
73
|
};
|
|
@@ -2105,6 +2105,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2105
2105
|
param: 'isEnabled',
|
|
2106
2106
|
defaultValue: true
|
|
2107
2107
|
}),
|
|
2108
|
+
platform_editor_table_close_cell_menu_on_move_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2109
|
+
productKeys: {
|
|
2110
|
+
confluence: 'platform_editor_table_close_cell_menu_on_move_exp',
|
|
2111
|
+
jira: 'platform_editor_table_close_cell_menu_on_move_exp'
|
|
2112
|
+
},
|
|
2113
|
+
param: 'isEnabled',
|
|
2114
|
+
defaultValue: false
|
|
2115
|
+
}),
|
|
2108
2116
|
// Added 2026-04-14
|
|
2109
2117
|
platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2110
2118
|
productKeys: {
|
|
@@ -62,5 +62,6 @@ export const testBooleanOverrides = {
|
|
|
62
62
|
// `platform_editor_ai_replace_doc` as the AND partner; the unrelated
|
|
63
63
|
// `platform_editor_ai_replace_doc: false` override has been removed since
|
|
64
64
|
// it does not gate this feature.
|
|
65
|
-
platform_editor_ai_new_aifc_editor_experience: false
|
|
65
|
+
platform_editor_ai_new_aifc_editor_experience: false,
|
|
66
|
+
cc_page_experiences_editor_image_generation: false
|
|
66
67
|
};
|
|
@@ -2099,6 +2099,14 @@ export const editorExperimentsConfig = {
|
|
|
2099
2099
|
param: 'isEnabled',
|
|
2100
2100
|
defaultValue: true
|
|
2101
2101
|
}),
|
|
2102
|
+
platform_editor_table_close_cell_menu_on_move_exp: createBooleanExperiment({
|
|
2103
|
+
productKeys: {
|
|
2104
|
+
confluence: 'platform_editor_table_close_cell_menu_on_move_exp',
|
|
2105
|
+
jira: 'platform_editor_table_close_cell_menu_on_move_exp'
|
|
2106
|
+
},
|
|
2107
|
+
param: 'isEnabled',
|
|
2108
|
+
defaultValue: false
|
|
2109
|
+
}),
|
|
2102
2110
|
// Added 2026-04-14
|
|
2103
2111
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2104
2112
|
productKeys: {
|
|
@@ -62,5 +62,6 @@ export var testBooleanOverrides = {
|
|
|
62
62
|
// `platform_editor_ai_replace_doc` as the AND partner; the unrelated
|
|
63
63
|
// `platform_editor_ai_replace_doc: false` override has been removed since
|
|
64
64
|
// it does not gate this feature.
|
|
65
|
-
platform_editor_ai_new_aifc_editor_experience: false
|
|
65
|
+
platform_editor_ai_new_aifc_editor_experience: false,
|
|
66
|
+
cc_page_experiences_editor_image_generation: false
|
|
66
67
|
};
|
|
@@ -2099,6 +2099,14 @@ export var editorExperimentsConfig = {
|
|
|
2099
2099
|
param: 'isEnabled',
|
|
2100
2100
|
defaultValue: true
|
|
2101
2101
|
}),
|
|
2102
|
+
platform_editor_table_close_cell_menu_on_move_exp: createBooleanExperiment({
|
|
2103
|
+
productKeys: {
|
|
2104
|
+
confluence: 'platform_editor_table_close_cell_menu_on_move_exp',
|
|
2105
|
+
jira: 'platform_editor_table_close_cell_menu_on_move_exp'
|
|
2106
|
+
},
|
|
2107
|
+
param: 'isEnabled',
|
|
2108
|
+
defaultValue: false
|
|
2109
|
+
}),
|
|
2102
2110
|
// Added 2026-04-14
|
|
2103
2111
|
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2104
2112
|
productKeys: {
|
|
@@ -1549,6 +1549,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1549
1549
|
productKeys?: ProductKeys;
|
|
1550
1550
|
typeGuard: IsBooleanType;
|
|
1551
1551
|
};
|
|
1552
|
+
platform_editor_table_close_cell_menu_on_move_exp: {
|
|
1553
|
+
defaultValue: boolean;
|
|
1554
|
+
param: string;
|
|
1555
|
+
productKeys?: ProductKeys;
|
|
1556
|
+
typeGuard: IsBooleanType;
|
|
1557
|
+
};
|
|
1552
1558
|
platform_editor_ai_rename_add_polish: {
|
|
1553
1559
|
defaultValue: boolean;
|
|
1554
1560
|
param: string;
|
|
@@ -1549,6 +1549,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1549
1549
|
productKeys?: ProductKeys;
|
|
1550
1550
|
typeGuard: IsBooleanType;
|
|
1551
1551
|
};
|
|
1552
|
+
platform_editor_table_close_cell_menu_on_move_exp: {
|
|
1553
|
+
defaultValue: boolean;
|
|
1554
|
+
param: string;
|
|
1555
|
+
productKeys?: ProductKeys;
|
|
1556
|
+
typeGuard: IsBooleanType;
|
|
1557
|
+
};
|
|
1552
1558
|
platform_editor_ai_rename_add_polish: {
|
|
1553
1559
|
defaultValue: boolean;
|
|
1554
1560
|
param: string;
|
package/package.json
CHANGED