@atlaskit/tmp-editor-statsig 24.1.0 → 25.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,26 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 25.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`584ac5ca3f498`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/584ac5ca3f498) -
8
+ [ux] EDITOR-5269 Disables the copy button for legacy content macro nodes
9
+
10
+ ## 25.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`a5a1710c6da4a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a5a1710c6da4a) -
15
+ Clean up of platform_editor_hoverlink_ui_fixes_exp
16
+ - [`edbbd04a0a2b8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/edbbd04a0a2b8) -
17
+ Remove platform_editor_breakout_resizing_vc90_fix feature flag - feature has been shipped
18
+
19
+ ### Minor Changes
20
+
21
+ - [`b56fac4df95b4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b56fac4df95b4) -
22
+ remove no-tscheck and fix safe url logic
23
+
3
24
  ## 24.1.0
4
25
 
5
26
  ### Minor Changes
@@ -12,7 +12,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
12
12
  platform_hover_card_preview_panel: 'control',
13
13
  smart_link_confluence_short_link_analytics: 'control',
14
14
  cc_editor_insm_outlier_events: 'test',
15
- platform_editor_hoverlink_ui_fixes_exp: 'control',
16
15
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
17
16
  platform_sl_3p_unauth_paste_as_block_card: 'control',
18
17
  cc_fd_db_top_editor_toolbar: 'control',
@@ -578,15 +578,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
578
578
  param: 'isEnabled',
579
579
  defaultValue: false
580
580
  }),
581
- // Added 2025-10-10
582
- platform_editor_hoverlink_ui_fixes_exp: (0, _experimentBuilders.createMultivariateExperiment)({
583
- productKeys: {
584
- confluence: 'platform_editor_hoverlink_ui_fixes_exp'
585
- },
586
- param: 'cohort',
587
- values: ['control', 'css_changes_only', 'css_js_changes'],
588
- defaultValue: 'control'
589
- }),
590
581
  // Added 2026-01-05
591
582
  platform_editor_table_update_table_ref: (0, _experimentBuilders.createBooleanExperiment)({
592
583
  productKeys: {
@@ -778,14 +769,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
778
769
  param: 'isEnabled',
779
770
  defaultValue: false
780
771
  }),
781
- // Added 2025-08-19
782
- platform_editor_breakout_resizing_vc90_fix: (0, _experimentBuilders.createBooleanExperiment)({
783
- productKeys: {
784
- confluence: 'platform_editor_breakout_resizing_vc90_fix'
785
- },
786
- param: 'isEnabled',
787
- defaultValue: false
788
- }),
789
772
  // Added 2025-09-16
790
773
  platform_editor_prevent_taskitem_remount: (0, _experimentBuilders.createBooleanExperiment)({
791
774
  productKeys: {
@@ -943,6 +926,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
943
926
  param: 'isEnabled',
944
927
  defaultValue: false
945
928
  }),
929
+ // Added 2026-02-16
930
+ platform_editor_disable_lcm_copy_button: (0, _experimentBuilders.createBooleanExperiment)({
931
+ productKeys: {
932
+ confluence: 'platform_editor_disable_lcm_copy_button'
933
+ },
934
+ param: 'isEnabled',
935
+ defaultValue: false
936
+ }),
946
937
  // Added 2025-28-01
947
938
  platform_editor_primary_toolbar_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
948
939
  productKeys: {
@@ -1381,5 +1372,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1381
1372
  },
1382
1373
  param: 'isEnabled',
1383
1374
  defaultValue: false
1375
+ }),
1376
+ // Added 2026-02-16
1377
+ platform_editor_safe_url_trim_fix: (0, _experimentBuilders.createBooleanExperiment)({
1378
+ productKeys: {
1379
+ confluence: 'platform_editor_safe_url_trim_fix'
1380
+ },
1381
+ param: 'isEnabled',
1382
+ defaultValue: false
1384
1383
  })
1385
1384
  };
@@ -6,7 +6,6 @@ export const testMultivariateOverrides = {
6
6
  platform_hover_card_preview_panel: 'control',
7
7
  smart_link_confluence_short_link_analytics: 'control',
8
8
  cc_editor_insm_outlier_events: 'test',
9
- platform_editor_hoverlink_ui_fixes_exp: 'control',
10
9
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
11
10
  platform_sl_3p_unauth_paste_as_block_card: 'control',
12
11
  cc_fd_db_top_editor_toolbar: 'control',
@@ -572,15 +572,6 @@ export const editorExperimentsConfig = {
572
572
  param: 'isEnabled',
573
573
  defaultValue: false
574
574
  }),
575
- // Added 2025-10-10
576
- platform_editor_hoverlink_ui_fixes_exp: createMultivariateExperiment({
577
- productKeys: {
578
- confluence: 'platform_editor_hoverlink_ui_fixes_exp'
579
- },
580
- param: 'cohort',
581
- values: ['control', 'css_changes_only', 'css_js_changes'],
582
- defaultValue: 'control'
583
- }),
584
575
  // Added 2026-01-05
585
576
  platform_editor_table_update_table_ref: createBooleanExperiment({
586
577
  productKeys: {
@@ -772,14 +763,6 @@ export const editorExperimentsConfig = {
772
763
  param: 'isEnabled',
773
764
  defaultValue: false
774
765
  }),
775
- // Added 2025-08-19
776
- platform_editor_breakout_resizing_vc90_fix: createBooleanExperiment({
777
- productKeys: {
778
- confluence: 'platform_editor_breakout_resizing_vc90_fix'
779
- },
780
- param: 'isEnabled',
781
- defaultValue: false
782
- }),
783
766
  // Added 2025-09-16
784
767
  platform_editor_prevent_taskitem_remount: createBooleanExperiment({
785
768
  productKeys: {
@@ -937,6 +920,14 @@ export const editorExperimentsConfig = {
937
920
  param: 'isEnabled',
938
921
  defaultValue: false
939
922
  }),
923
+ // Added 2026-02-16
924
+ platform_editor_disable_lcm_copy_button: createBooleanExperiment({
925
+ productKeys: {
926
+ confluence: 'platform_editor_disable_lcm_copy_button'
927
+ },
928
+ param: 'isEnabled',
929
+ defaultValue: false
930
+ }),
940
931
  // Added 2025-28-01
941
932
  platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
942
933
  productKeys: {
@@ -1375,5 +1366,13 @@ export const editorExperimentsConfig = {
1375
1366
  },
1376
1367
  param: 'isEnabled',
1377
1368
  defaultValue: false
1369
+ }),
1370
+ // Added 2026-02-16
1371
+ platform_editor_safe_url_trim_fix: createBooleanExperiment({
1372
+ productKeys: {
1373
+ confluence: 'platform_editor_safe_url_trim_fix'
1374
+ },
1375
+ param: 'isEnabled',
1376
+ defaultValue: false
1378
1377
  })
1379
1378
  };
@@ -6,7 +6,6 @@ export var testMultivariateOverrides = {
6
6
  platform_hover_card_preview_panel: 'control',
7
7
  smart_link_confluence_short_link_analytics: 'control',
8
8
  cc_editor_insm_outlier_events: 'test',
9
- platform_editor_hoverlink_ui_fixes_exp: 'control',
10
9
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
11
10
  platform_sl_3p_unauth_paste_as_block_card: 'control',
12
11
  cc_fd_db_top_editor_toolbar: 'control',
@@ -572,15 +572,6 @@ export var editorExperimentsConfig = {
572
572
  param: 'isEnabled',
573
573
  defaultValue: false
574
574
  }),
575
- // Added 2025-10-10
576
- platform_editor_hoverlink_ui_fixes_exp: createMultivariateExperiment({
577
- productKeys: {
578
- confluence: 'platform_editor_hoverlink_ui_fixes_exp'
579
- },
580
- param: 'cohort',
581
- values: ['control', 'css_changes_only', 'css_js_changes'],
582
- defaultValue: 'control'
583
- }),
584
575
  // Added 2026-01-05
585
576
  platform_editor_table_update_table_ref: createBooleanExperiment({
586
577
  productKeys: {
@@ -772,14 +763,6 @@ export var editorExperimentsConfig = {
772
763
  param: 'isEnabled',
773
764
  defaultValue: false
774
765
  }),
775
- // Added 2025-08-19
776
- platform_editor_breakout_resizing_vc90_fix: createBooleanExperiment({
777
- productKeys: {
778
- confluence: 'platform_editor_breakout_resizing_vc90_fix'
779
- },
780
- param: 'isEnabled',
781
- defaultValue: false
782
- }),
783
766
  // Added 2025-09-16
784
767
  platform_editor_prevent_taskitem_remount: createBooleanExperiment({
785
768
  productKeys: {
@@ -937,6 +920,14 @@ export var editorExperimentsConfig = {
937
920
  param: 'isEnabled',
938
921
  defaultValue: false
939
922
  }),
923
+ // Added 2026-02-16
924
+ platform_editor_disable_lcm_copy_button: createBooleanExperiment({
925
+ productKeys: {
926
+ confluence: 'platform_editor_disable_lcm_copy_button'
927
+ },
928
+ param: 'isEnabled',
929
+ defaultValue: false
930
+ }),
940
931
  // Added 2025-28-01
941
932
  platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
942
933
  productKeys: {
@@ -1375,5 +1366,13 @@ export var editorExperimentsConfig = {
1375
1366
  },
1376
1367
  param: 'isEnabled',
1377
1368
  defaultValue: false
1369
+ }),
1370
+ // Added 2026-02-16
1371
+ platform_editor_safe_url_trim_fix: createBooleanExperiment({
1372
+ productKeys: {
1373
+ confluence: 'platform_editor_safe_url_trim_fix'
1374
+ },
1375
+ param: 'isEnabled',
1376
+ defaultValue: false
1378
1377
  })
1379
1378
  };
@@ -324,12 +324,6 @@ export declare const editorExperimentsConfig: {
324
324
  productKeys?: ProductKeys;
325
325
  typeGuard: IsBooleanType;
326
326
  };
327
- platform_editor_breakout_resizing_vc90_fix: {
328
- defaultValue: boolean;
329
- param: string;
330
- productKeys?: ProductKeys;
331
- typeGuard: IsBooleanType;
332
- };
333
327
  platform_editor_code_block_fold_gutter: {
334
328
  defaultValue: boolean;
335
329
  param: string;
@@ -421,13 +415,6 @@ export declare const editorExperimentsConfig: {
421
415
  productKeys?: ProductKeys;
422
416
  typeGuard: IsBooleanType;
423
417
  };
424
- platform_editor_hoverlink_ui_fixes_exp: {
425
- defaultValue: 'control' | 'css_changes_only' | 'css_js_changes';
426
- param: string;
427
- productKeys?: ProductKeys;
428
- typeGuard: (value: unknown) => value is 'control' | 'css_changes_only' | 'css_js_changes';
429
- values: ('control' | 'css_changes_only' | 'css_js_changes')[];
430
- };
431
418
  platform_editor_hydratable_ui: {
432
419
  defaultValue: boolean;
433
420
  param: string;
@@ -578,6 +565,12 @@ export declare const editorExperimentsConfig: {
578
565
  productKeys?: ProductKeys;
579
566
  typeGuard: IsBooleanType;
580
567
  };
568
+ platform_editor_disable_lcm_copy_button: {
569
+ defaultValue: boolean;
570
+ param: string;
571
+ productKeys?: ProductKeys;
572
+ typeGuard: IsBooleanType;
573
+ };
581
574
  platform_editor_remove_ncsstepmetrics_plugin: {
582
575
  defaultValue: boolean;
583
576
  param: string;
@@ -1022,5 +1015,11 @@ export declare const editorExperimentsConfig: {
1022
1015
  productKeys?: ProductKeys;
1023
1016
  typeGuard: IsBooleanType;
1024
1017
  };
1018
+ platform_editor_safe_url_trim_fix: {
1019
+ defaultValue: boolean;
1020
+ param: string;
1021
+ productKeys?: ProductKeys;
1022
+ typeGuard: IsBooleanType;
1023
+ };
1025
1024
  };
1026
1025
  export {};
@@ -324,12 +324,6 @@ export declare const editorExperimentsConfig: {
324
324
  productKeys?: ProductKeys;
325
325
  typeGuard: IsBooleanType;
326
326
  };
327
- platform_editor_breakout_resizing_vc90_fix: {
328
- defaultValue: boolean;
329
- param: string;
330
- productKeys?: ProductKeys;
331
- typeGuard: IsBooleanType;
332
- };
333
327
  platform_editor_code_block_fold_gutter: {
334
328
  defaultValue: boolean;
335
329
  param: string;
@@ -421,13 +415,6 @@ export declare const editorExperimentsConfig: {
421
415
  productKeys?: ProductKeys;
422
416
  typeGuard: IsBooleanType;
423
417
  };
424
- platform_editor_hoverlink_ui_fixes_exp: {
425
- defaultValue: 'control' | 'css_changes_only' | 'css_js_changes';
426
- param: string;
427
- productKeys?: ProductKeys;
428
- typeGuard: (value: unknown) => value is 'control' | 'css_changes_only' | 'css_js_changes';
429
- values: ('control' | 'css_changes_only' | 'css_js_changes')[];
430
- };
431
418
  platform_editor_hydratable_ui: {
432
419
  defaultValue: boolean;
433
420
  param: string;
@@ -578,6 +565,12 @@ export declare const editorExperimentsConfig: {
578
565
  productKeys?: ProductKeys;
579
566
  typeGuard: IsBooleanType;
580
567
  };
568
+ platform_editor_disable_lcm_copy_button: {
569
+ defaultValue: boolean;
570
+ param: string;
571
+ productKeys?: ProductKeys;
572
+ typeGuard: IsBooleanType;
573
+ };
581
574
  platform_editor_remove_ncsstepmetrics_plugin: {
582
575
  defaultValue: boolean;
583
576
  param: string;
@@ -1022,5 +1015,11 @@ export declare const editorExperimentsConfig: {
1022
1015
  productKeys?: ProductKeys;
1023
1016
  typeGuard: IsBooleanType;
1024
1017
  };
1018
+ platform_editor_safe_url_trim_fix: {
1019
+ defaultValue: boolean;
1020
+ param: string;
1021
+ productKeys?: ProductKeys;
1022
+ typeGuard: IsBooleanType;
1023
+ };
1025
1024
  };
1026
1025
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "24.1.0",
3
+ "version": "25.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",