@atlaskit/tmp-editor-statsig 17.9.0 → 17.10.1

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,26 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`cbd94bd913e71`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cbd94bd913e71) -
8
+ [ux] EDITOR-4514 fix gap cursor positioning after paste by adding request animation frame to wait
9
+ for new content to be inserted into dom
10
+ - Updated dependencies
11
+
12
+ ## 17.10.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`25991b4c801ab`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/25991b4c801ab) -
17
+ [EDITOR-4884](https://hello.jira.atlassian.cloud/browse/EDITOR-4884) - set `display: none` for
18
+ collapsed Expand
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
3
24
  ## 17.9.0
4
25
 
5
26
  ### Minor Changes
@@ -516,6 +516,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
516
516
  param: 'isEnabled',
517
517
  defaultValue: false
518
518
  }),
519
+ platform_editor_display_none_to_expand: (0, _experimentBuilders.createBooleanExperiment)({
520
+ productKeys: {
521
+ confluence: 'platform_editor_display_none_to_expand'
522
+ },
523
+ param: 'isEnabled',
524
+ defaultValue: false
525
+ }),
519
526
  // Added 2025-06-24
520
527
  platform_editor_find_and_replace_improvements: (0, _experimentBuilders.createBooleanExperiment)({
521
528
  productKeys: {
@@ -1287,5 +1294,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1287
1294
  },
1288
1295
  param: 'isEnabled',
1289
1296
  defaultValue: false
1297
+ }),
1298
+ // Added 2026-02-02
1299
+ platform_editor_fix_gapcursor_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
1300
+ productKeys: {
1301
+ confluence: 'platform_editor_fix_gapcursor_on_paste',
1302
+ jira: 'platform_editor_fix_gapcursor_on_paste'
1303
+ },
1304
+ param: 'isEnabled',
1305
+ defaultValue: false
1290
1306
  })
1291
1307
  };
@@ -510,6 +510,13 @@ export const editorExperimentsConfig = {
510
510
  param: 'isEnabled',
511
511
  defaultValue: false
512
512
  }),
513
+ platform_editor_display_none_to_expand: createBooleanExperiment({
514
+ productKeys: {
515
+ confluence: 'platform_editor_display_none_to_expand'
516
+ },
517
+ param: 'isEnabled',
518
+ defaultValue: false
519
+ }),
513
520
  // Added 2025-06-24
514
521
  platform_editor_find_and_replace_improvements: createBooleanExperiment({
515
522
  productKeys: {
@@ -1281,5 +1288,14 @@ export const editorExperimentsConfig = {
1281
1288
  },
1282
1289
  param: 'isEnabled',
1283
1290
  defaultValue: false
1291
+ }),
1292
+ // Added 2026-02-02
1293
+ platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
1294
+ productKeys: {
1295
+ confluence: 'platform_editor_fix_gapcursor_on_paste',
1296
+ jira: 'platform_editor_fix_gapcursor_on_paste'
1297
+ },
1298
+ param: 'isEnabled',
1299
+ defaultValue: false
1284
1300
  })
1285
1301
  };
@@ -510,6 +510,13 @@ export var editorExperimentsConfig = {
510
510
  param: 'isEnabled',
511
511
  defaultValue: false
512
512
  }),
513
+ platform_editor_display_none_to_expand: createBooleanExperiment({
514
+ productKeys: {
515
+ confluence: 'platform_editor_display_none_to_expand'
516
+ },
517
+ param: 'isEnabled',
518
+ defaultValue: false
519
+ }),
513
520
  // Added 2025-06-24
514
521
  platform_editor_find_and_replace_improvements: createBooleanExperiment({
515
522
  productKeys: {
@@ -1281,5 +1288,14 @@ export var editorExperimentsConfig = {
1281
1288
  },
1282
1289
  param: 'isEnabled',
1283
1290
  defaultValue: false
1291
+ }),
1292
+ // Added 2026-02-02
1293
+ platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
1294
+ productKeys: {
1295
+ confluence: 'platform_editor_fix_gapcursor_on_paste',
1296
+ jira: 'platform_editor_fix_gapcursor_on_paste'
1297
+ },
1298
+ param: 'isEnabled',
1299
+ defaultValue: false
1284
1300
  })
1285
1301
  };
@@ -230,6 +230,12 @@ export declare const editorExperimentsConfig: {
230
230
  productKeys?: ProductKeys;
231
231
  typeGuard: IsBooleanType;
232
232
  };
233
+ platform_editor_display_none_to_expand: {
234
+ defaultValue: boolean;
235
+ param: string;
236
+ productKeys?: ProductKeys;
237
+ typeGuard: IsBooleanType;
238
+ };
233
239
  platform_editor_ai_quickstart_command: {
234
240
  defaultValue: boolean;
235
241
  param: string;
@@ -952,5 +958,11 @@ export declare const editorExperimentsConfig: {
952
958
  productKeys?: ProductKeys;
953
959
  typeGuard: IsBooleanType;
954
960
  };
961
+ platform_editor_fix_gapcursor_on_paste: {
962
+ defaultValue: boolean;
963
+ param: string;
964
+ productKeys?: ProductKeys;
965
+ typeGuard: IsBooleanType;
966
+ };
955
967
  };
956
968
  export {};
@@ -230,6 +230,12 @@ export declare const editorExperimentsConfig: {
230
230
  productKeys?: ProductKeys;
231
231
  typeGuard: IsBooleanType;
232
232
  };
233
+ platform_editor_display_none_to_expand: {
234
+ defaultValue: boolean;
235
+ param: string;
236
+ productKeys?: ProductKeys;
237
+ typeGuard: IsBooleanType;
238
+ };
233
239
  platform_editor_ai_quickstart_command: {
234
240
  defaultValue: boolean;
235
241
  param: string;
@@ -952,5 +958,11 @@ export declare const editorExperimentsConfig: {
952
958
  productKeys?: ProductKeys;
953
959
  typeGuard: IsBooleanType;
954
960
  };
961
+ platform_editor_fix_gapcursor_on_paste: {
962
+ defaultValue: boolean;
963
+ param: string;
964
+ productKeys?: ProductKeys;
965
+ typeGuard: IsBooleanType;
966
+ };
955
967
  };
956
968
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.9.0",
3
+ "version": "17.10.1",
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",