@atlaskit/tmp-editor-statsig 62.1.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
10
|
+
## 62.2.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`65f1d80415ae8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/65f1d80415ae8) -
|
|
15
|
+
EDITOR-679 improve reliability of media provider
|
|
16
|
+
|
|
3
17
|
## 62.1.0
|
|
4
18
|
|
|
5
19
|
### 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: {
|
|
@@ -1996,5 +2004,21 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1996
2004
|
},
|
|
1997
2005
|
param: 'isEnabled',
|
|
1998
2006
|
defaultValue: false
|
|
2007
|
+
}),
|
|
2008
|
+
// Added 2026-04-12
|
|
2009
|
+
platform_editor_media_reliability_enhancements: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2010
|
+
productKeys: {
|
|
2011
|
+
confluence: 'platform_editor_media_reliability_enhancements'
|
|
2012
|
+
},
|
|
2013
|
+
param: 'isEnabled',
|
|
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
|
|
1999
2023
|
})
|
|
2000
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: {
|
|
@@ -1990,5 +1998,21 @@ export const editorExperimentsConfig = {
|
|
|
1990
1998
|
},
|
|
1991
1999
|
param: 'isEnabled',
|
|
1992
2000
|
defaultValue: false
|
|
2001
|
+
}),
|
|
2002
|
+
// Added 2026-04-12
|
|
2003
|
+
platform_editor_media_reliability_enhancements: createBooleanExperiment({
|
|
2004
|
+
productKeys: {
|
|
2005
|
+
confluence: 'platform_editor_media_reliability_enhancements'
|
|
2006
|
+
},
|
|
2007
|
+
param: 'isEnabled',
|
|
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
|
|
1993
2017
|
})
|
|
1994
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: {
|
|
@@ -1990,5 +1998,21 @@ export var editorExperimentsConfig = {
|
|
|
1990
1998
|
},
|
|
1991
1999
|
param: 'isEnabled',
|
|
1992
2000
|
defaultValue: false
|
|
2001
|
+
}),
|
|
2002
|
+
// Added 2026-04-12
|
|
2003
|
+
platform_editor_media_reliability_enhancements: createBooleanExperiment({
|
|
2004
|
+
productKeys: {
|
|
2005
|
+
confluence: 'platform_editor_media_reliability_enhancements'
|
|
2006
|
+
},
|
|
2007
|
+
param: 'isEnabled',
|
|
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
|
|
1993
2017
|
})
|
|
1994
2018
|
};
|
|
@@ -1466,5 +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
|
+
};
|
|
1475
|
+
platform_editor_media_reliability_enhancements: {
|
|
1476
|
+
defaultValue: boolean;
|
|
1477
|
+
param: string;
|
|
1478
|
+
productKeys?: ProductKeys;
|
|
1479
|
+
typeGuard: IsBooleanType;
|
|
1480
|
+
};
|
|
1481
|
+
platform_editor_ai_rename_add_polish: {
|
|
1482
|
+
defaultValue: boolean;
|
|
1483
|
+
param: string;
|
|
1484
|
+
productKeys?: ProductKeys;
|
|
1485
|
+
typeGuard: IsBooleanType;
|
|
1486
|
+
};
|
|
1469
1487
|
};
|
|
1470
1488
|
export {};
|
|
@@ -1466,5 +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
|
+
};
|
|
1475
|
+
platform_editor_media_reliability_enhancements: {
|
|
1476
|
+
defaultValue: boolean;
|
|
1477
|
+
param: string;
|
|
1478
|
+
productKeys?: ProductKeys;
|
|
1479
|
+
typeGuard: IsBooleanType;
|
|
1480
|
+
};
|
|
1481
|
+
platform_editor_ai_rename_add_polish: {
|
|
1482
|
+
defaultValue: boolean;
|
|
1483
|
+
param: string;
|
|
1484
|
+
productKeys?: ProductKeys;
|
|
1485
|
+
typeGuard: IsBooleanType;
|
|
1486
|
+
};
|
|
1469
1487
|
};
|
|
1470
1488
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "62.
|
|
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.
|
|
37
|
+
"@atlaskit/react-ufo": "^5.14.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|