@atlaskit/tmp-editor-statsig 37.0.0 → 38.1.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,25 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 38.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`1a8d8eb4f0dcb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a8d8eb4f0dcb) -
8
+ Adds experiment to fix broken uploaded images in card macro
9
+
10
+ ## 38.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`815712ef26255`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/815712ef26255) -
15
+ Removed `platform_editor_deduplicate_mark_diff` experiment. The deduplication behavior is now
16
+ always enabled.
17
+
18
+ ### Minor Changes
19
+
20
+ - [`ddcd9f9430dfe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ddcd9f9430dfe) -
21
+ EDITOR-5602 Add position check when insertLocation is fired
22
+
3
23
  ## 37.0.0
4
24
 
5
25
  ### Major Changes
@@ -52,5 +52,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
52
52
  platform_editor_prosemirror_rendered_data: false,
53
53
  confluence_compact_text_format: false,
54
54
  platform_editor_paste_actions_menu: false,
55
- platform_editor_single_player_expand: false
55
+ platform_editor_single_player_expand: false,
56
+ platform_editor_diff_plugin_extended: false
56
57
  };
@@ -420,13 +420,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
420
420
  param: 'isEnabled',
421
421
  defaultValue: false
422
422
  }),
423
- platform_editor_deduplicate_mark_diff: (0, _experimentBuilders.createBooleanExperiment)({
424
- productKeys: {
425
- confluence: 'platform_editor_deduplicate_mark_diff'
426
- },
427
- param: 'isEnabled',
428
- defaultValue: false
429
- }),
430
423
  // Added 2025-09-03
431
424
  platform_editor_hydratable_ui: (0, _experimentBuilders.createBooleanExperiment)({
432
425
  productKeys: {
@@ -813,6 +806,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
813
806
  param: 'isEnabled',
814
807
  defaultValue: false
815
808
  }),
809
+ // Added 2026-03-12
810
+ ccpi_fix_broken_uploaded_img: (0, _experimentBuilders.createBooleanExperiment)({
811
+ productKeys: {
812
+ confluence: 'ccpi_fix_broken_uploaded_img'
813
+ },
814
+ param: 'isEnabled',
815
+ defaultValue: false
816
+ }),
816
817
  // Added 2026-02-05
817
818
  'editor-a11y-fy26-keyboard-move-row-column': (0, _experimentBuilders.createBooleanExperiment)({
818
819
  productKeys: {
@@ -1691,6 +1692,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1691
1692
  param: 'isEnabled',
1692
1693
  defaultValue: false
1693
1694
  }),
1695
+ // Added 2026-03-10
1696
+ platform_editor_insert_location_check: (0, _experimentBuilders.createBooleanExperiment)({
1697
+ productKeys: {
1698
+ jira: 'platform_editor_insert_location_check',
1699
+ confluence: 'platform_editor_insert_location_check'
1700
+ },
1701
+ param: 'isEnabled',
1702
+ defaultValue: false
1703
+ }),
1694
1704
  // Added 2026-03-05
1695
1705
  cc_drag_and_drop_smart_link_from_content_to_tree: (0, _experimentBuilders.createBooleanExperiment)({
1696
1706
  productKeys: {
@@ -46,5 +46,6 @@ export const testBooleanOverrides = {
46
46
  platform_editor_prosemirror_rendered_data: false,
47
47
  confluence_compact_text_format: false,
48
48
  platform_editor_paste_actions_menu: false,
49
- platform_editor_single_player_expand: false
49
+ platform_editor_single_player_expand: false,
50
+ platform_editor_diff_plugin_extended: false
50
51
  };
@@ -414,13 +414,6 @@ export const editorExperimentsConfig = {
414
414
  param: 'isEnabled',
415
415
  defaultValue: false
416
416
  }),
417
- platform_editor_deduplicate_mark_diff: createBooleanExperiment({
418
- productKeys: {
419
- confluence: 'platform_editor_deduplicate_mark_diff'
420
- },
421
- param: 'isEnabled',
422
- defaultValue: false
423
- }),
424
417
  // Added 2025-09-03
425
418
  platform_editor_hydratable_ui: createBooleanExperiment({
426
419
  productKeys: {
@@ -807,6 +800,14 @@ export const editorExperimentsConfig = {
807
800
  param: 'isEnabled',
808
801
  defaultValue: false
809
802
  }),
803
+ // Added 2026-03-12
804
+ ccpi_fix_broken_uploaded_img: createBooleanExperiment({
805
+ productKeys: {
806
+ confluence: 'ccpi_fix_broken_uploaded_img'
807
+ },
808
+ param: 'isEnabled',
809
+ defaultValue: false
810
+ }),
810
811
  // Added 2026-02-05
811
812
  'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
812
813
  productKeys: {
@@ -1685,6 +1686,15 @@ export const editorExperimentsConfig = {
1685
1686
  param: 'isEnabled',
1686
1687
  defaultValue: false
1687
1688
  }),
1689
+ // Added 2026-03-10
1690
+ platform_editor_insert_location_check: createBooleanExperiment({
1691
+ productKeys: {
1692
+ jira: 'platform_editor_insert_location_check',
1693
+ confluence: 'platform_editor_insert_location_check'
1694
+ },
1695
+ param: 'isEnabled',
1696
+ defaultValue: false
1697
+ }),
1688
1698
  // Added 2026-03-05
1689
1699
  cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
1690
1700
  productKeys: {
@@ -46,5 +46,6 @@ export var testBooleanOverrides = {
46
46
  platform_editor_prosemirror_rendered_data: false,
47
47
  confluence_compact_text_format: false,
48
48
  platform_editor_paste_actions_menu: false,
49
- platform_editor_single_player_expand: false
49
+ platform_editor_single_player_expand: false,
50
+ platform_editor_diff_plugin_extended: false
50
51
  };
@@ -414,13 +414,6 @@ export var editorExperimentsConfig = {
414
414
  param: 'isEnabled',
415
415
  defaultValue: false
416
416
  }),
417
- platform_editor_deduplicate_mark_diff: createBooleanExperiment({
418
- productKeys: {
419
- confluence: 'platform_editor_deduplicate_mark_diff'
420
- },
421
- param: 'isEnabled',
422
- defaultValue: false
423
- }),
424
417
  // Added 2025-09-03
425
418
  platform_editor_hydratable_ui: createBooleanExperiment({
426
419
  productKeys: {
@@ -807,6 +800,14 @@ export var editorExperimentsConfig = {
807
800
  param: 'isEnabled',
808
801
  defaultValue: false
809
802
  }),
803
+ // Added 2026-03-12
804
+ ccpi_fix_broken_uploaded_img: createBooleanExperiment({
805
+ productKeys: {
806
+ confluence: 'ccpi_fix_broken_uploaded_img'
807
+ },
808
+ param: 'isEnabled',
809
+ defaultValue: false
810
+ }),
810
811
  // Added 2026-02-05
811
812
  'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
812
813
  productKeys: {
@@ -1685,6 +1686,15 @@ export var editorExperimentsConfig = {
1685
1686
  param: 'isEnabled',
1686
1687
  defaultValue: false
1687
1688
  }),
1689
+ // Added 2026-03-10
1690
+ platform_editor_insert_location_check: createBooleanExperiment({
1691
+ productKeys: {
1692
+ jira: 'platform_editor_insert_location_check',
1693
+ confluence: 'platform_editor_insert_location_check'
1694
+ },
1695
+ param: 'isEnabled',
1696
+ defaultValue: false
1697
+ }),
1688
1698
  // Added 2026-03-05
1689
1699
  cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
1690
1700
  productKeys: {
@@ -178,6 +178,12 @@ export declare const editorExperimentsConfig: {
178
178
  productKeys?: ProductKeys;
179
179
  typeGuard: IsBooleanType;
180
180
  };
181
+ ccpi_fix_broken_uploaded_img: {
182
+ defaultValue: boolean;
183
+ param: string;
184
+ productKeys?: ProductKeys;
185
+ typeGuard: IsBooleanType;
186
+ };
181
187
  'editor-a11y-fy26-keyboard-move-row-column': {
182
188
  defaultValue: boolean;
183
189
  param: string;
@@ -263,12 +269,6 @@ export declare const editorExperimentsConfig: {
263
269
  productKeys?: ProductKeys;
264
270
  typeGuard: IsBooleanType;
265
271
  };
266
- platform_editor_deduplicate_mark_diff: {
267
- defaultValue: boolean;
268
- param: string;
269
- productKeys?: ProductKeys;
270
- typeGuard: IsBooleanType;
271
- };
272
272
  platform_editor_abort_ufo_on_user_interaction: {
273
273
  defaultValue: boolean;
274
274
  param: string;
@@ -1230,6 +1230,12 @@ export declare const editorExperimentsConfig: {
1230
1230
  productKeys?: ProductKeys;
1231
1231
  typeGuard: IsBooleanType;
1232
1232
  };
1233
+ platform_editor_insert_location_check: {
1234
+ defaultValue: boolean;
1235
+ param: string;
1236
+ productKeys?: ProductKeys;
1237
+ typeGuard: IsBooleanType;
1238
+ };
1233
1239
  platform_editor_table_resizer_extended_zone: {
1234
1240
  defaultValue: boolean;
1235
1241
  param: string;
@@ -178,6 +178,12 @@ export declare const editorExperimentsConfig: {
178
178
  productKeys?: ProductKeys;
179
179
  typeGuard: IsBooleanType;
180
180
  };
181
+ ccpi_fix_broken_uploaded_img: {
182
+ defaultValue: boolean;
183
+ param: string;
184
+ productKeys?: ProductKeys;
185
+ typeGuard: IsBooleanType;
186
+ };
181
187
  'editor-a11y-fy26-keyboard-move-row-column': {
182
188
  defaultValue: boolean;
183
189
  param: string;
@@ -263,12 +269,6 @@ export declare const editorExperimentsConfig: {
263
269
  productKeys?: ProductKeys;
264
270
  typeGuard: IsBooleanType;
265
271
  };
266
- platform_editor_deduplicate_mark_diff: {
267
- defaultValue: boolean;
268
- param: string;
269
- productKeys?: ProductKeys;
270
- typeGuard: IsBooleanType;
271
- };
272
272
  platform_editor_abort_ufo_on_user_interaction: {
273
273
  defaultValue: boolean;
274
274
  param: string;
@@ -1230,6 +1230,12 @@ export declare const editorExperimentsConfig: {
1230
1230
  productKeys?: ProductKeys;
1231
1231
  typeGuard: IsBooleanType;
1232
1232
  };
1233
+ platform_editor_insert_location_check: {
1234
+ defaultValue: boolean;
1235
+ param: string;
1236
+ productKeys?: ProductKeys;
1237
+ typeGuard: IsBooleanType;
1238
+ };
1233
1239
  platform_editor_table_resizer_extended_zone: {
1234
1240
  defaultValue: boolean;
1235
1241
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "37.0.0",
3
+ "version": "38.1.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",