@atlaskit/tmp-editor-statsig 40.7.0 → 41.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 41.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`ba5257de9a045`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ba5257de9a045) -
8
+ Removed feature flag platform_editor_paste_before_first_block_node for solved editor paste bug
9
+ before certain block nodes.
10
+
11
+ ### Minor Changes
12
+
13
+ - [`ea21f2748d986`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ea21f2748d986) -
14
+ feat: set display-mode in table toDOM from node attributes
15
+
3
16
  ## 40.7.0
4
17
 
5
18
  ### Minor Changes
@@ -478,6 +478,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
478
478
  param: 'isEnabled',
479
479
  defaultValue: false
480
480
  }),
481
+ platform_editor_table_display_mode_in_to_dom: (0, _experimentBuilders.createBooleanExperiment)({
482
+ productKeys: {
483
+ confluence: 'platform_editor_table_display_mode_in_to_dom'
484
+ },
485
+ param: 'isEnabled',
486
+ defaultValue: false
487
+ }),
481
488
  // Added 2025-04-23
482
489
  platform_renderer_fix_analytics_memo_callback: (0, _experimentBuilders.createBooleanExperiment)({
483
490
  productKeys: {
@@ -1579,14 +1586,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1579
1586
  param: 'isEnabled',
1580
1587
  defaultValue: false
1581
1588
  }),
1582
- // Added 2026-03-12
1583
- platform_editor_paste_before_first_block_node: (0, _experimentBuilders.createBooleanExperiment)({
1584
- productKeys: {
1585
- confluence: 'platform_editor_paste_before_first_block_node'
1586
- },
1587
- param: 'isEnabled',
1588
- defaultValue: false
1589
- }),
1590
1589
  // Added 2026-03-04
1591
1590
  platform_editor_ai_blockmenu_integration: (0, _experimentBuilders.createBooleanExperiment)({
1592
1591
  productKeys: {
@@ -472,6 +472,13 @@ export const editorExperimentsConfig = {
472
472
  param: 'isEnabled',
473
473
  defaultValue: false
474
474
  }),
475
+ platform_editor_table_display_mode_in_to_dom: createBooleanExperiment({
476
+ productKeys: {
477
+ confluence: 'platform_editor_table_display_mode_in_to_dom'
478
+ },
479
+ param: 'isEnabled',
480
+ defaultValue: false
481
+ }),
475
482
  // Added 2025-04-23
476
483
  platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
477
484
  productKeys: {
@@ -1573,14 +1580,6 @@ export const editorExperimentsConfig = {
1573
1580
  param: 'isEnabled',
1574
1581
  defaultValue: false
1575
1582
  }),
1576
- // Added 2026-03-12
1577
- platform_editor_paste_before_first_block_node: createBooleanExperiment({
1578
- productKeys: {
1579
- confluence: 'platform_editor_paste_before_first_block_node'
1580
- },
1581
- param: 'isEnabled',
1582
- defaultValue: false
1583
- }),
1584
1583
  // Added 2026-03-04
1585
1584
  platform_editor_ai_blockmenu_integration: createBooleanExperiment({
1586
1585
  productKeys: {
@@ -472,6 +472,13 @@ export var editorExperimentsConfig = {
472
472
  param: 'isEnabled',
473
473
  defaultValue: false
474
474
  }),
475
+ platform_editor_table_display_mode_in_to_dom: createBooleanExperiment({
476
+ productKeys: {
477
+ confluence: 'platform_editor_table_display_mode_in_to_dom'
478
+ },
479
+ param: 'isEnabled',
480
+ defaultValue: false
481
+ }),
475
482
  // Added 2025-04-23
476
483
  platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
477
484
  productKeys: {
@@ -1573,14 +1580,6 @@ export var editorExperimentsConfig = {
1573
1580
  param: 'isEnabled',
1574
1581
  defaultValue: false
1575
1582
  }),
1576
- // Added 2026-03-12
1577
- platform_editor_paste_before_first_block_node: createBooleanExperiment({
1578
- productKeys: {
1579
- confluence: 'platform_editor_paste_before_first_block_node'
1580
- },
1581
- param: 'isEnabled',
1582
- defaultValue: false
1583
- }),
1584
1583
  // Added 2026-03-04
1585
1584
  platform_editor_ai_blockmenu_integration: createBooleanExperiment({
1586
1585
  productKeys: {
@@ -680,6 +680,12 @@ export declare const editorExperimentsConfig: {
680
680
  productKeys?: ProductKeys;
681
681
  typeGuard: IsBooleanType;
682
682
  };
683
+ platform_editor_table_display_mode_in_to_dom: {
684
+ defaultValue: boolean;
685
+ param: string;
686
+ productKeys?: ProductKeys;
687
+ typeGuard: IsBooleanType;
688
+ };
683
689
  platform_editor_table_update_table_ref: {
684
690
  defaultValue: boolean;
685
691
  param: string;
@@ -827,12 +833,6 @@ export declare const editorExperimentsConfig: {
827
833
  productKeys?: ProductKeys;
828
834
  typeGuard: IsBooleanType;
829
835
  };
830
- platform_editor_paste_before_first_block_node: {
831
- defaultValue: boolean;
832
- param: string;
833
- productKeys?: ProductKeys;
834
- typeGuard: IsBooleanType;
835
- };
836
836
  platform_editor_ai_disable_bridge_without_ai: {
837
837
  defaultValue: boolean;
838
838
  param: string;
@@ -680,6 +680,12 @@ export declare const editorExperimentsConfig: {
680
680
  productKeys?: ProductKeys;
681
681
  typeGuard: IsBooleanType;
682
682
  };
683
+ platform_editor_table_display_mode_in_to_dom: {
684
+ defaultValue: boolean;
685
+ param: string;
686
+ productKeys?: ProductKeys;
687
+ typeGuard: IsBooleanType;
688
+ };
683
689
  platform_editor_table_update_table_ref: {
684
690
  defaultValue: boolean;
685
691
  param: string;
@@ -827,12 +833,6 @@ export declare const editorExperimentsConfig: {
827
833
  productKeys?: ProductKeys;
828
834
  typeGuard: IsBooleanType;
829
835
  };
830
- platform_editor_paste_before_first_block_node: {
831
- defaultValue: boolean;
832
- param: string;
833
- productKeys?: ProductKeys;
834
- typeGuard: IsBooleanType;
835
- };
836
836
  platform_editor_ai_disable_bridge_without_ai: {
837
837
  defaultValue: boolean;
838
838
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "40.7.0",
3
+ "version": "41.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",