@atlaskit/tmp-editor-statsig 80.1.0 → 80.3.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
+ ## 80.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`82ba5b494e83b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/82ba5b494e83b) -
8
+ add experiment for compiled css migration of editor-core except EditorContentContainer
9
+
10
+ ## 80.2.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`38ea17de1355a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38ea17de1355a) -
15
+ Track middle- and right-clicks on third-party Smart Links rendered by `HyperlinkResolver`. Adds
16
+ optional `isAuxClick` / `isContextMenu` attributes to the `smartlinkClickAnalyticsWorkflows`
17
+ event, gated by the `linking_platform_track_non_primary_3p_clicks` experiment.
18
+
3
19
  ## 80.1.0
4
20
 
5
21
  ### Minor Changes
@@ -19,6 +19,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
19
19
  };
20
20
  var testBooleanOverrides = exports.testBooleanOverrides = {
21
21
  social_proof_3p_unauth_block_exp: false,
22
+ linking_platform_track_non_primary_3p_clicks: false,
22
23
  platform_sl_3p_auth_rovo_action: false,
23
24
  platform_sl_3p_preauth_better_hovercard: true,
24
25
  'rovogrowth-640-inline-action-nudge-exp': true,
@@ -675,6 +675,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
675
675
  values: ['control', 'test'],
676
676
  defaultValue: 'control'
677
677
  }),
678
+ // Added 2026-04-30 (QS-9895)
679
+ linking_platform_track_non_primary_3p_clicks: (0, _experimentBuilders.createBooleanExperiment)({
680
+ productKeys: {
681
+ confluence: 'linking_platform_track_non_primary_3p_clicks',
682
+ jira: 'linking_platform_track_non_primary_3p_clicks'
683
+ },
684
+ param: 'isEnabled',
685
+ defaultValue: false
686
+ }),
678
687
  // Added 2025--8-05
679
688
  platform_editor_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
680
689
  productKeys: {
@@ -2028,6 +2037,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2028
2037
  param: 'isEnabled',
2029
2038
  defaultValue: false
2030
2039
  }),
2040
+ // Added 2026-05-15
2041
+ platform_editor_core_non_ecc_static_css: (0, _experimentBuilders.createBooleanExperiment)({
2042
+ productKeys: {
2043
+ confluence: 'platform_editor_core_non_ecc_static_css'
2044
+ },
2045
+ param: 'isEnabled',
2046
+ defaultValue: false
2047
+ }),
2031
2048
  // Added 2026-04-30
2032
2049
  platform_editor_renderer_static_css: (0, _experimentBuilders.createBooleanExperiment)({
2033
2050
  productKeys: {
@@ -13,6 +13,7 @@ export const testMultivariateOverrides = {
13
13
  };
14
14
  export const testBooleanOverrides = {
15
15
  social_proof_3p_unauth_block_exp: false,
16
+ linking_platform_track_non_primary_3p_clicks: false,
16
17
  platform_sl_3p_auth_rovo_action: false,
17
18
  platform_sl_3p_preauth_better_hovercard: true,
18
19
  'rovogrowth-640-inline-action-nudge-exp': true,
@@ -669,6 +669,15 @@ export const editorExperimentsConfig = {
669
669
  values: ['control', 'test'],
670
670
  defaultValue: 'control'
671
671
  }),
672
+ // Added 2026-04-30 (QS-9895)
673
+ linking_platform_track_non_primary_3p_clicks: createBooleanExperiment({
674
+ productKeys: {
675
+ confluence: 'linking_platform_track_non_primary_3p_clicks',
676
+ jira: 'linking_platform_track_non_primary_3p_clicks'
677
+ },
678
+ param: 'isEnabled',
679
+ defaultValue: false
680
+ }),
672
681
  // Added 2025--8-05
673
682
  platform_editor_block_menu: createBooleanExperiment({
674
683
  productKeys: {
@@ -2022,6 +2031,14 @@ export const editorExperimentsConfig = {
2022
2031
  param: 'isEnabled',
2023
2032
  defaultValue: false
2024
2033
  }),
2034
+ // Added 2026-05-15
2035
+ platform_editor_core_non_ecc_static_css: createBooleanExperiment({
2036
+ productKeys: {
2037
+ confluence: 'platform_editor_core_non_ecc_static_css'
2038
+ },
2039
+ param: 'isEnabled',
2040
+ defaultValue: false
2041
+ }),
2025
2042
  // Added 2026-04-30
2026
2043
  platform_editor_renderer_static_css: createBooleanExperiment({
2027
2044
  productKeys: {
@@ -13,6 +13,7 @@ export var testMultivariateOverrides = {
13
13
  };
14
14
  export var testBooleanOverrides = {
15
15
  social_proof_3p_unauth_block_exp: false,
16
+ linking_platform_track_non_primary_3p_clicks: false,
16
17
  platform_sl_3p_auth_rovo_action: false,
17
18
  platform_sl_3p_preauth_better_hovercard: true,
18
19
  'rovogrowth-640-inline-action-nudge-exp': true,
@@ -669,6 +669,15 @@ export var editorExperimentsConfig = {
669
669
  values: ['control', 'test'],
670
670
  defaultValue: 'control'
671
671
  }),
672
+ // Added 2026-04-30 (QS-9895)
673
+ linking_platform_track_non_primary_3p_clicks: createBooleanExperiment({
674
+ productKeys: {
675
+ confluence: 'linking_platform_track_non_primary_3p_clicks',
676
+ jira: 'linking_platform_track_non_primary_3p_clicks'
677
+ },
678
+ param: 'isEnabled',
679
+ defaultValue: false
680
+ }),
672
681
  // Added 2025--8-05
673
682
  platform_editor_block_menu: createBooleanExperiment({
674
683
  productKeys: {
@@ -2022,6 +2031,14 @@ export var editorExperimentsConfig = {
2022
2031
  param: 'isEnabled',
2023
2032
  defaultValue: false
2024
2033
  }),
2034
+ // Added 2026-05-15
2035
+ platform_editor_core_non_ecc_static_css: createBooleanExperiment({
2036
+ productKeys: {
2037
+ confluence: 'platform_editor_core_non_ecc_static_css'
2038
+ },
2039
+ param: 'isEnabled',
2040
+ defaultValue: false
2041
+ }),
2025
2042
  // Added 2026-04-30
2026
2043
  platform_editor_renderer_static_css: createBooleanExperiment({
2027
2044
  productKeys: {
@@ -803,6 +803,12 @@ export declare const editorExperimentsConfig: {
803
803
  typeGuard: (value: unknown) => value is 'control' | 'test';
804
804
  values: ('control' | 'test')[];
805
805
  };
806
+ linking_platform_track_non_primary_3p_clicks: {
807
+ defaultValue: boolean;
808
+ param: string;
809
+ productKeys?: ProductKeys;
810
+ typeGuard: IsBooleanType;
811
+ };
806
812
  platform_editor_to_use_pmr_for_collab_edit_none_ic: {
807
813
  defaultValue: boolean;
808
814
  param: string;
@@ -1459,6 +1465,12 @@ export declare const editorExperimentsConfig: {
1459
1465
  productKeys?: ProductKeys;
1460
1466
  typeGuard: IsBooleanType;
1461
1467
  };
1468
+ platform_editor_core_non_ecc_static_css: {
1469
+ defaultValue: boolean;
1470
+ param: string;
1471
+ productKeys?: ProductKeys;
1472
+ typeGuard: IsBooleanType;
1473
+ };
1462
1474
  platform_editor_renderer_static_css: {
1463
1475
  defaultValue: boolean;
1464
1476
  param: string;
@@ -803,6 +803,12 @@ export declare const editorExperimentsConfig: {
803
803
  typeGuard: (value: unknown) => value is 'control' | 'test';
804
804
  values: ('control' | 'test')[];
805
805
  };
806
+ linking_platform_track_non_primary_3p_clicks: {
807
+ defaultValue: boolean;
808
+ param: string;
809
+ productKeys?: ProductKeys;
810
+ typeGuard: IsBooleanType;
811
+ };
806
812
  platform_editor_to_use_pmr_for_collab_edit_none_ic: {
807
813
  defaultValue: boolean;
808
814
  param: string;
@@ -1459,6 +1465,12 @@ export declare const editorExperimentsConfig: {
1459
1465
  productKeys?: ProductKeys;
1460
1466
  typeGuard: IsBooleanType;
1461
1467
  };
1468
+ platform_editor_core_non_ecc_static_css: {
1469
+ defaultValue: boolean;
1470
+ param: string;
1471
+ productKeys?: ProductKeys;
1472
+ typeGuard: IsBooleanType;
1473
+ };
1462
1474
  platform_editor_renderer_static_css: {
1463
1475
  defaultValue: boolean;
1464
1476
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "80.1.0",
3
+ "version": "80.3.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",