@atlaskit/tmp-editor-statsig 88.2.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 CHANGED
@@ -1,5 +1,24 @@
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
+
13
+ ## 88.3.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [`8bf2ab100a93d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8bf2ab100a93d) -
18
+ Add col to layout keywords
19
+ - [`f7fc6c3bcc4e3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f7fc6c3bcc4e3) -
20
+ [ux] EDITOR-7242 add paste logic to support table in panel nesting
21
+
3
22
  ## 88.2.0
4
23
 
5
24
  ### 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
  };
@@ -485,6 +485,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
485
485
  param: 'isEnabled',
486
486
  defaultValue: false
487
487
  }),
488
+ // Added 2026-06-02
489
+ platform_editor_layout_keywords: (0, _experimentBuilders.createBooleanExperiment)({
490
+ productKeys: {
491
+ confluence: 'platform_editor_layout_keywords',
492
+ jira: 'platform_editor_layout_keywords'
493
+ },
494
+ param: 'isEnabled',
495
+ defaultValue: false
496
+ }),
488
497
  // Added 2025-04-17
489
498
  platform_editor_tables_table_selector: (0, _experimentBuilders.createBooleanExperiment)({
490
499
  productKeys: {
@@ -2096,6 +2105,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2096
2105
  param: 'isEnabled',
2097
2106
  defaultValue: true
2098
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
+ }),
2099
2116
  // Added 2026-04-14
2100
2117
  platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
2101
2118
  productKeys: {
@@ -2245,6 +2262,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2245
2262
  param: 'isEnabled',
2246
2263
  defaultValue: false
2247
2264
  }),
2265
+ // Added 2026-06-01
2266
+ platform_editor_table_in_panel_paste_fallback: (0, _experimentBuilders.createBooleanExperiment)({
2267
+ productKeys: {
2268
+ confluence: 'platform_editor_table_in_panel_paste_fallback'
2269
+ },
2270
+ param: 'isEnabled',
2271
+ defaultValue: false
2272
+ }),
2248
2273
  // Added 2026-05-20
2249
2274
  platform_editor_default_toolbar_state: (0, _experimentBuilders.createBooleanExperiment)({
2250
2275
  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
  };
@@ -479,6 +479,15 @@ export const editorExperimentsConfig = {
479
479
  param: 'isEnabled',
480
480
  defaultValue: false
481
481
  }),
482
+ // Added 2026-06-02
483
+ platform_editor_layout_keywords: createBooleanExperiment({
484
+ productKeys: {
485
+ confluence: 'platform_editor_layout_keywords',
486
+ jira: 'platform_editor_layout_keywords'
487
+ },
488
+ param: 'isEnabled',
489
+ defaultValue: false
490
+ }),
482
491
  // Added 2025-04-17
483
492
  platform_editor_tables_table_selector: createBooleanExperiment({
484
493
  productKeys: {
@@ -2090,6 +2099,14 @@ export const editorExperimentsConfig = {
2090
2099
  param: 'isEnabled',
2091
2100
  defaultValue: true
2092
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
+ }),
2093
2110
  // Added 2026-04-14
2094
2111
  platform_editor_ai_rename_add_polish: createBooleanExperiment({
2095
2112
  productKeys: {
@@ -2239,6 +2256,14 @@ export const editorExperimentsConfig = {
2239
2256
  param: 'isEnabled',
2240
2257
  defaultValue: false
2241
2258
  }),
2259
+ // Added 2026-06-01
2260
+ platform_editor_table_in_panel_paste_fallback: createBooleanExperiment({
2261
+ productKeys: {
2262
+ confluence: 'platform_editor_table_in_panel_paste_fallback'
2263
+ },
2264
+ param: 'isEnabled',
2265
+ defaultValue: false
2266
+ }),
2242
2267
  // Added 2026-05-20
2243
2268
  platform_editor_default_toolbar_state: createBooleanExperiment({
2244
2269
  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
  };
@@ -479,6 +479,15 @@ export var editorExperimentsConfig = {
479
479
  param: 'isEnabled',
480
480
  defaultValue: false
481
481
  }),
482
+ // Added 2026-06-02
483
+ platform_editor_layout_keywords: createBooleanExperiment({
484
+ productKeys: {
485
+ confluence: 'platform_editor_layout_keywords',
486
+ jira: 'platform_editor_layout_keywords'
487
+ },
488
+ param: 'isEnabled',
489
+ defaultValue: false
490
+ }),
482
491
  // Added 2025-04-17
483
492
  platform_editor_tables_table_selector: createBooleanExperiment({
484
493
  productKeys: {
@@ -2090,6 +2099,14 @@ export var editorExperimentsConfig = {
2090
2099
  param: 'isEnabled',
2091
2100
  defaultValue: true
2092
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
+ }),
2093
2110
  // Added 2026-04-14
2094
2111
  platform_editor_ai_rename_add_polish: createBooleanExperiment({
2095
2112
  productKeys: {
@@ -2239,6 +2256,14 @@ export var editorExperimentsConfig = {
2239
2256
  param: 'isEnabled',
2240
2257
  defaultValue: false
2241
2258
  }),
2259
+ // Added 2026-06-01
2260
+ platform_editor_table_in_panel_paste_fallback: createBooleanExperiment({
2261
+ productKeys: {
2262
+ confluence: 'platform_editor_table_in_panel_paste_fallback'
2263
+ },
2264
+ param: 'isEnabled',
2265
+ defaultValue: false
2266
+ }),
2242
2267
  // Added 2026-05-20
2243
2268
  platform_editor_default_toolbar_state: createBooleanExperiment({
2244
2269
  productKeys: {
@@ -275,6 +275,12 @@ export declare const editorExperimentsConfig: {
275
275
  productKeys?: ProductKeys;
276
276
  typeGuard: IsBooleanType;
277
277
  };
278
+ platform_editor_layout_keywords: {
279
+ defaultValue: boolean;
280
+ param: string;
281
+ productKeys?: ProductKeys;
282
+ typeGuard: IsBooleanType;
283
+ };
278
284
  platform_editor_editor_ssr_streaming: {
279
285
  defaultValue: boolean;
280
286
  param: string;
@@ -1543,6 +1549,12 @@ export declare const editorExperimentsConfig: {
1543
1549
  productKeys?: ProductKeys;
1544
1550
  typeGuard: IsBooleanType;
1545
1551
  };
1552
+ platform_editor_table_close_cell_menu_on_move_exp: {
1553
+ defaultValue: boolean;
1554
+ param: string;
1555
+ productKeys?: ProductKeys;
1556
+ typeGuard: IsBooleanType;
1557
+ };
1546
1558
  platform_editor_ai_rename_add_polish: {
1547
1559
  defaultValue: boolean;
1548
1560
  param: string;
@@ -1658,6 +1670,12 @@ export declare const editorExperimentsConfig: {
1658
1670
  productKeys?: ProductKeys;
1659
1671
  typeGuard: IsBooleanType;
1660
1672
  };
1673
+ platform_editor_table_in_panel_paste_fallback: {
1674
+ defaultValue: boolean;
1675
+ param: string;
1676
+ productKeys?: ProductKeys;
1677
+ typeGuard: IsBooleanType;
1678
+ };
1661
1679
  platform_rovo_support_create_inline_comment: {
1662
1680
  defaultValue: boolean;
1663
1681
  param: string;
@@ -275,6 +275,12 @@ export declare const editorExperimentsConfig: {
275
275
  productKeys?: ProductKeys;
276
276
  typeGuard: IsBooleanType;
277
277
  };
278
+ platform_editor_layout_keywords: {
279
+ defaultValue: boolean;
280
+ param: string;
281
+ productKeys?: ProductKeys;
282
+ typeGuard: IsBooleanType;
283
+ };
278
284
  platform_editor_editor_ssr_streaming: {
279
285
  defaultValue: boolean;
280
286
  param: string;
@@ -1543,6 +1549,12 @@ export declare const editorExperimentsConfig: {
1543
1549
  productKeys?: ProductKeys;
1544
1550
  typeGuard: IsBooleanType;
1545
1551
  };
1552
+ platform_editor_table_close_cell_menu_on_move_exp: {
1553
+ defaultValue: boolean;
1554
+ param: string;
1555
+ productKeys?: ProductKeys;
1556
+ typeGuard: IsBooleanType;
1557
+ };
1546
1558
  platform_editor_ai_rename_add_polish: {
1547
1559
  defaultValue: boolean;
1548
1560
  param: string;
@@ -1658,6 +1670,12 @@ export declare const editorExperimentsConfig: {
1658
1670
  productKeys?: ProductKeys;
1659
1671
  typeGuard: IsBooleanType;
1660
1672
  };
1673
+ platform_editor_table_in_panel_paste_fallback: {
1674
+ defaultValue: boolean;
1675
+ param: string;
1676
+ productKeys?: ProductKeys;
1677
+ typeGuard: IsBooleanType;
1678
+ };
1661
1679
  platform_rovo_support_create_inline_comment: {
1662
1680
  defaultValue: boolean;
1663
1681
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "88.2.0",
3
+ "version": "88.4.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",