@atlaskit/tmp-editor-statsig 17.10.0 → 17.11.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,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`4de30defb09c5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4de30defb09c5) -
8
+ Fix overflow of table inside multi-column layouts.
9
+
10
+ ## 17.10.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [`cbd94bd913e71`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cbd94bd913e71) -
15
+ [ux] EDITOR-4514 fix gap cursor positioning after paste by adding request animation frame to wait
16
+ for new content to be inserted into dom
17
+ - Updated dependencies
18
+
3
19
  ## 17.10.0
4
20
 
5
21
  ### Minor Changes
@@ -605,6 +605,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
605
605
  param: 'isEnabled',
606
606
  defaultValue: false
607
607
  }),
608
+ // Added 2026-01-27
609
+ platform_editor_table_excerpts_fix: (0, _experimentBuilders.createBooleanExperiment)({
610
+ productKeys: {
611
+ confluence: 'platform_editor_table_excerpts_fix'
612
+ },
613
+ param: 'isEnabled',
614
+ defaultValue: false
615
+ }),
608
616
  // Added 2026-01-10
609
617
  platform_editor_task_item_styles: (0, _experimentBuilders.createBooleanExperiment)({
610
618
  productKeys: {
@@ -1294,5 +1302,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1294
1302
  },
1295
1303
  param: 'isEnabled',
1296
1304
  defaultValue: false
1305
+ }),
1306
+ // Added 2026-02-02
1307
+ platform_editor_fix_gapcursor_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
1308
+ productKeys: {
1309
+ confluence: 'platform_editor_fix_gapcursor_on_paste',
1310
+ jira: 'platform_editor_fix_gapcursor_on_paste'
1311
+ },
1312
+ param: 'isEnabled',
1313
+ defaultValue: false
1297
1314
  })
1298
1315
  };
@@ -599,6 +599,14 @@ export const editorExperimentsConfig = {
599
599
  param: 'isEnabled',
600
600
  defaultValue: false
601
601
  }),
602
+ // Added 2026-01-27
603
+ platform_editor_table_excerpts_fix: createBooleanExperiment({
604
+ productKeys: {
605
+ confluence: 'platform_editor_table_excerpts_fix'
606
+ },
607
+ param: 'isEnabled',
608
+ defaultValue: false
609
+ }),
602
610
  // Added 2026-01-10
603
611
  platform_editor_task_item_styles: createBooleanExperiment({
604
612
  productKeys: {
@@ -1288,5 +1296,14 @@ export const editorExperimentsConfig = {
1288
1296
  },
1289
1297
  param: 'isEnabled',
1290
1298
  defaultValue: false
1299
+ }),
1300
+ // Added 2026-02-02
1301
+ platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
1302
+ productKeys: {
1303
+ confluence: 'platform_editor_fix_gapcursor_on_paste',
1304
+ jira: 'platform_editor_fix_gapcursor_on_paste'
1305
+ },
1306
+ param: 'isEnabled',
1307
+ defaultValue: false
1291
1308
  })
1292
1309
  };
@@ -599,6 +599,14 @@ export var editorExperimentsConfig = {
599
599
  param: 'isEnabled',
600
600
  defaultValue: false
601
601
  }),
602
+ // Added 2026-01-27
603
+ platform_editor_table_excerpts_fix: createBooleanExperiment({
604
+ productKeys: {
605
+ confluence: 'platform_editor_table_excerpts_fix'
606
+ },
607
+ param: 'isEnabled',
608
+ defaultValue: false
609
+ }),
602
610
  // Added 2026-01-10
603
611
  platform_editor_task_item_styles: createBooleanExperiment({
604
612
  productKeys: {
@@ -1288,5 +1296,14 @@ export var editorExperimentsConfig = {
1288
1296
  },
1289
1297
  param: 'isEnabled',
1290
1298
  defaultValue: false
1299
+ }),
1300
+ // Added 2026-02-02
1301
+ platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
1302
+ productKeys: {
1303
+ confluence: 'platform_editor_fix_gapcursor_on_paste',
1304
+ jira: 'platform_editor_fix_gapcursor_on_paste'
1305
+ },
1306
+ param: 'isEnabled',
1307
+ defaultValue: false
1291
1308
  })
1292
1309
  };
@@ -623,6 +623,12 @@ export declare const editorExperimentsConfig: {
623
623
  productKeys?: ProductKeys;
624
624
  typeGuard: IsBooleanType;
625
625
  };
626
+ platform_editor_table_excerpts_fix: {
627
+ defaultValue: boolean;
628
+ param: string;
629
+ productKeys?: ProductKeys;
630
+ typeGuard: IsBooleanType;
631
+ };
626
632
  platform_editor_table_sticky_header_improvements: {
627
633
  defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
628
634
  param: string;
@@ -958,5 +964,11 @@ export declare const editorExperimentsConfig: {
958
964
  productKeys?: ProductKeys;
959
965
  typeGuard: IsBooleanType;
960
966
  };
967
+ platform_editor_fix_gapcursor_on_paste: {
968
+ defaultValue: boolean;
969
+ param: string;
970
+ productKeys?: ProductKeys;
971
+ typeGuard: IsBooleanType;
972
+ };
961
973
  };
962
974
  export {};
@@ -623,6 +623,12 @@ export declare const editorExperimentsConfig: {
623
623
  productKeys?: ProductKeys;
624
624
  typeGuard: IsBooleanType;
625
625
  };
626
+ platform_editor_table_excerpts_fix: {
627
+ defaultValue: boolean;
628
+ param: string;
629
+ productKeys?: ProductKeys;
630
+ typeGuard: IsBooleanType;
631
+ };
626
632
  platform_editor_table_sticky_header_improvements: {
627
633
  defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
628
634
  param: string;
@@ -958,5 +964,11 @@ export declare const editorExperimentsConfig: {
958
964
  productKeys?: ProductKeys;
959
965
  typeGuard: IsBooleanType;
960
966
  };
967
+ platform_editor_fix_gapcursor_on_paste: {
968
+ defaultValue: boolean;
969
+ param: string;
970
+ productKeys?: ProductKeys;
971
+ typeGuard: IsBooleanType;
972
+ };
961
973
  };
962
974
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.10.0",
3
+ "version": "17.11.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",