@atlaskit/tmp-editor-statsig 62.2.0 → 62.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,12 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 62.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`bfe80c5eaf923`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bfe80c5eaf923) -
8
+ Enable onedrive and MS teams links to render as smartlinks
9
+
3
10
  ## 62.2.0
4
11
 
5
12
  ### Minor Changes
@@ -55,5 +55,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
55
55
  confluence_compact_text_format: false,
56
56
  platform_editor_paste_actions_menu: false,
57
57
  platform_editor_diff_plugin_extended: false,
58
- platform_editor_preserve_node_identity: false
58
+ platform_editor_preserve_node_identity: false,
59
+ platform_editor_ai_rename_add_polish: false
59
60
  };
@@ -1964,6 +1964,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1964
1964
  param: 'isEnabled',
1965
1965
  defaultValue: false
1966
1966
  }),
1967
+ // Added 2026-04-14
1968
+ improve_3p_smart_link_resolve_rate: (0, _experimentBuilders.createBooleanExperiment)({
1969
+ productKeys: {
1970
+ confluence: 'improve_3p_smart_link_resolve_rate'
1971
+ },
1972
+ param: 'isEnabled',
1973
+ defaultValue: false
1974
+ }),
1967
1975
  // Added 2026-04-01
1968
1976
  platform_editor_hydration_skip_react_portal: (0, _experimentBuilders.createBooleanExperiment)({
1969
1977
  productKeys: {
@@ -2004,5 +2012,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2004
2012
  },
2005
2013
  param: 'isEnabled',
2006
2014
  defaultValue: false
2015
+ }),
2016
+ // Added 2026-04-14
2017
+ platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
2018
+ productKeys: {
2019
+ confluence: 'platform_editor_ai_rename_add_polish'
2020
+ },
2021
+ param: 'isEnabled',
2022
+ defaultValue: false
2007
2023
  })
2008
2024
  };
@@ -49,5 +49,6 @@ export const testBooleanOverrides = {
49
49
  confluence_compact_text_format: false,
50
50
  platform_editor_paste_actions_menu: false,
51
51
  platform_editor_diff_plugin_extended: false,
52
- platform_editor_preserve_node_identity: false
52
+ platform_editor_preserve_node_identity: false,
53
+ platform_editor_ai_rename_add_polish: false
53
54
  };
@@ -1958,6 +1958,14 @@ export const editorExperimentsConfig = {
1958
1958
  param: 'isEnabled',
1959
1959
  defaultValue: false
1960
1960
  }),
1961
+ // Added 2026-04-14
1962
+ improve_3p_smart_link_resolve_rate: createBooleanExperiment({
1963
+ productKeys: {
1964
+ confluence: 'improve_3p_smart_link_resolve_rate'
1965
+ },
1966
+ param: 'isEnabled',
1967
+ defaultValue: false
1968
+ }),
1961
1969
  // Added 2026-04-01
1962
1970
  platform_editor_hydration_skip_react_portal: createBooleanExperiment({
1963
1971
  productKeys: {
@@ -1998,5 +2006,13 @@ export const editorExperimentsConfig = {
1998
2006
  },
1999
2007
  param: 'isEnabled',
2000
2008
  defaultValue: false
2009
+ }),
2010
+ // Added 2026-04-14
2011
+ platform_editor_ai_rename_add_polish: createBooleanExperiment({
2012
+ productKeys: {
2013
+ confluence: 'platform_editor_ai_rename_add_polish'
2014
+ },
2015
+ param: 'isEnabled',
2016
+ defaultValue: false
2001
2017
  })
2002
2018
  };
@@ -49,5 +49,6 @@ export var testBooleanOverrides = {
49
49
  confluence_compact_text_format: false,
50
50
  platform_editor_paste_actions_menu: false,
51
51
  platform_editor_diff_plugin_extended: false,
52
- platform_editor_preserve_node_identity: false
52
+ platform_editor_preserve_node_identity: false,
53
+ platform_editor_ai_rename_add_polish: false
53
54
  };
@@ -1958,6 +1958,14 @@ export var editorExperimentsConfig = {
1958
1958
  param: 'isEnabled',
1959
1959
  defaultValue: false
1960
1960
  }),
1961
+ // Added 2026-04-14
1962
+ improve_3p_smart_link_resolve_rate: createBooleanExperiment({
1963
+ productKeys: {
1964
+ confluence: 'improve_3p_smart_link_resolve_rate'
1965
+ },
1966
+ param: 'isEnabled',
1967
+ defaultValue: false
1968
+ }),
1961
1969
  // Added 2026-04-01
1962
1970
  platform_editor_hydration_skip_react_portal: createBooleanExperiment({
1963
1971
  productKeys: {
@@ -1998,5 +2006,13 @@ export var editorExperimentsConfig = {
1998
2006
  },
1999
2007
  param: 'isEnabled',
2000
2008
  defaultValue: false
2009
+ }),
2010
+ // Added 2026-04-14
2011
+ platform_editor_ai_rename_add_polish: createBooleanExperiment({
2012
+ productKeys: {
2013
+ confluence: 'platform_editor_ai_rename_add_polish'
2014
+ },
2015
+ param: 'isEnabled',
2016
+ defaultValue: false
2001
2017
  })
2002
2018
  };
@@ -1466,11 +1466,23 @@ export declare const editorExperimentsConfig: {
1466
1466
  productKeys?: ProductKeys;
1467
1467
  typeGuard: IsBooleanType;
1468
1468
  };
1469
+ improve_3p_smart_link_resolve_rate: {
1470
+ defaultValue: boolean;
1471
+ param: string;
1472
+ productKeys?: ProductKeys;
1473
+ typeGuard: IsBooleanType;
1474
+ };
1469
1475
  platform_editor_media_reliability_enhancements: {
1470
1476
  defaultValue: boolean;
1471
1477
  param: string;
1472
1478
  productKeys?: ProductKeys;
1473
1479
  typeGuard: IsBooleanType;
1474
1480
  };
1481
+ platform_editor_ai_rename_add_polish: {
1482
+ defaultValue: boolean;
1483
+ param: string;
1484
+ productKeys?: ProductKeys;
1485
+ typeGuard: IsBooleanType;
1486
+ };
1475
1487
  };
1476
1488
  export {};
@@ -1466,11 +1466,23 @@ export declare const editorExperimentsConfig: {
1466
1466
  productKeys?: ProductKeys;
1467
1467
  typeGuard: IsBooleanType;
1468
1468
  };
1469
+ improve_3p_smart_link_resolve_rate: {
1470
+ defaultValue: boolean;
1471
+ param: string;
1472
+ productKeys?: ProductKeys;
1473
+ typeGuard: IsBooleanType;
1474
+ };
1469
1475
  platform_editor_media_reliability_enhancements: {
1470
1476
  defaultValue: boolean;
1471
1477
  param: string;
1472
1478
  productKeys?: ProductKeys;
1473
1479
  typeGuard: IsBooleanType;
1474
1480
  };
1481
+ platform_editor_ai_rename_add_polish: {
1482
+ defaultValue: boolean;
1483
+ param: string;
1484
+ productKeys?: ProductKeys;
1485
+ typeGuard: IsBooleanType;
1486
+ };
1475
1487
  };
1476
1488
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "62.2.0",
3
+ "version": "62.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",
@@ -34,7 +34,7 @@
34
34
  "atlaskit:src": "src/index.ts",
35
35
  "dependencies": {
36
36
  "@atlaskit/feature-gate-js-client": "^5.5.0",
37
- "@atlaskit/react-ufo": "^5.13.0",
37
+ "@atlaskit/react-ufo": "^5.14.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {