@atlaskit/tmp-editor-statsig 62.2.0 → 62.3.1
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 +15 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +16 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +16 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +16 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 62.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ed96586aa0e43`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ed96586aa0e43) -
|
|
8
|
+
Cleanup experiment platform_editor_table_resizer_extended_zone: ship treatment
|
|
9
|
+
(needExtendedResizeZone always true)
|
|
10
|
+
|
|
11
|
+
## 62.3.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`bfe80c5eaf923`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bfe80c5eaf923) -
|
|
16
|
+
Enable onedrive and MS teams links to render as smartlinks
|
|
17
|
+
|
|
3
18
|
## 62.2.0
|
|
4
19
|
|
|
5
20
|
### 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
|
};
|
|
@@ -1628,14 +1628,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1628
1628
|
param: 'isEnabled',
|
|
1629
1629
|
defaultValue: false
|
|
1630
1630
|
}),
|
|
1631
|
-
// Added 2026-03-05
|
|
1632
|
-
platform_editor_table_resizer_extended_zone: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1633
|
-
productKeys: {
|
|
1634
|
-
confluence: 'platform_editor_table_resizer_extended_zone'
|
|
1635
|
-
},
|
|
1636
|
-
param: 'isEnabled',
|
|
1637
|
-
defaultValue: false
|
|
1638
|
-
}),
|
|
1639
1631
|
// Added 2026-03-10
|
|
1640
1632
|
platform_editor_insert_location_check: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1641
1633
|
productKeys: {
|
|
@@ -1964,6 +1956,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1964
1956
|
param: 'isEnabled',
|
|
1965
1957
|
defaultValue: false
|
|
1966
1958
|
}),
|
|
1959
|
+
// Added 2026-04-14
|
|
1960
|
+
improve_3p_smart_link_resolve_rate: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1961
|
+
productKeys: {
|
|
1962
|
+
confluence: 'improve_3p_smart_link_resolve_rate'
|
|
1963
|
+
},
|
|
1964
|
+
param: 'isEnabled',
|
|
1965
|
+
defaultValue: false
|
|
1966
|
+
}),
|
|
1967
1967
|
// Added 2026-04-01
|
|
1968
1968
|
platform_editor_hydration_skip_react_portal: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1969
1969
|
productKeys: {
|
|
@@ -2004,5 +2004,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2004
2004
|
},
|
|
2005
2005
|
param: 'isEnabled',
|
|
2006
2006
|
defaultValue: false
|
|
2007
|
+
}),
|
|
2008
|
+
// Added 2026-04-14
|
|
2009
|
+
platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2010
|
+
productKeys: {
|
|
2011
|
+
confluence: 'platform_editor_ai_rename_add_polish'
|
|
2012
|
+
},
|
|
2013
|
+
param: 'isEnabled',
|
|
2014
|
+
defaultValue: false
|
|
2007
2015
|
})
|
|
2008
2016
|
};
|
|
@@ -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
|
};
|
|
@@ -1622,14 +1622,6 @@ export const editorExperimentsConfig = {
|
|
|
1622
1622
|
param: 'isEnabled',
|
|
1623
1623
|
defaultValue: false
|
|
1624
1624
|
}),
|
|
1625
|
-
// Added 2026-03-05
|
|
1626
|
-
platform_editor_table_resizer_extended_zone: createBooleanExperiment({
|
|
1627
|
-
productKeys: {
|
|
1628
|
-
confluence: 'platform_editor_table_resizer_extended_zone'
|
|
1629
|
-
},
|
|
1630
|
-
param: 'isEnabled',
|
|
1631
|
-
defaultValue: false
|
|
1632
|
-
}),
|
|
1633
1625
|
// Added 2026-03-10
|
|
1634
1626
|
platform_editor_insert_location_check: createBooleanExperiment({
|
|
1635
1627
|
productKeys: {
|
|
@@ -1958,6 +1950,14 @@ export const editorExperimentsConfig = {
|
|
|
1958
1950
|
param: 'isEnabled',
|
|
1959
1951
|
defaultValue: false
|
|
1960
1952
|
}),
|
|
1953
|
+
// Added 2026-04-14
|
|
1954
|
+
improve_3p_smart_link_resolve_rate: createBooleanExperiment({
|
|
1955
|
+
productKeys: {
|
|
1956
|
+
confluence: 'improve_3p_smart_link_resolve_rate'
|
|
1957
|
+
},
|
|
1958
|
+
param: 'isEnabled',
|
|
1959
|
+
defaultValue: false
|
|
1960
|
+
}),
|
|
1961
1961
|
// Added 2026-04-01
|
|
1962
1962
|
platform_editor_hydration_skip_react_portal: createBooleanExperiment({
|
|
1963
1963
|
productKeys: {
|
|
@@ -1998,5 +1998,13 @@ export const editorExperimentsConfig = {
|
|
|
1998
1998
|
},
|
|
1999
1999
|
param: 'isEnabled',
|
|
2000
2000
|
defaultValue: false
|
|
2001
|
+
}),
|
|
2002
|
+
// Added 2026-04-14
|
|
2003
|
+
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2004
|
+
productKeys: {
|
|
2005
|
+
confluence: 'platform_editor_ai_rename_add_polish'
|
|
2006
|
+
},
|
|
2007
|
+
param: 'isEnabled',
|
|
2008
|
+
defaultValue: false
|
|
2001
2009
|
})
|
|
2002
2010
|
};
|
|
@@ -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
|
};
|
|
@@ -1622,14 +1622,6 @@ export var editorExperimentsConfig = {
|
|
|
1622
1622
|
param: 'isEnabled',
|
|
1623
1623
|
defaultValue: false
|
|
1624
1624
|
}),
|
|
1625
|
-
// Added 2026-03-05
|
|
1626
|
-
platform_editor_table_resizer_extended_zone: createBooleanExperiment({
|
|
1627
|
-
productKeys: {
|
|
1628
|
-
confluence: 'platform_editor_table_resizer_extended_zone'
|
|
1629
|
-
},
|
|
1630
|
-
param: 'isEnabled',
|
|
1631
|
-
defaultValue: false
|
|
1632
|
-
}),
|
|
1633
1625
|
// Added 2026-03-10
|
|
1634
1626
|
platform_editor_insert_location_check: createBooleanExperiment({
|
|
1635
1627
|
productKeys: {
|
|
@@ -1958,6 +1950,14 @@ export var editorExperimentsConfig = {
|
|
|
1958
1950
|
param: 'isEnabled',
|
|
1959
1951
|
defaultValue: false
|
|
1960
1952
|
}),
|
|
1953
|
+
// Added 2026-04-14
|
|
1954
|
+
improve_3p_smart_link_resolve_rate: createBooleanExperiment({
|
|
1955
|
+
productKeys: {
|
|
1956
|
+
confluence: 'improve_3p_smart_link_resolve_rate'
|
|
1957
|
+
},
|
|
1958
|
+
param: 'isEnabled',
|
|
1959
|
+
defaultValue: false
|
|
1960
|
+
}),
|
|
1961
1961
|
// Added 2026-04-01
|
|
1962
1962
|
platform_editor_hydration_skip_react_portal: createBooleanExperiment({
|
|
1963
1963
|
productKeys: {
|
|
@@ -1998,5 +1998,13 @@ export var editorExperimentsConfig = {
|
|
|
1998
1998
|
},
|
|
1999
1999
|
param: 'isEnabled',
|
|
2000
2000
|
defaultValue: false
|
|
2001
|
+
}),
|
|
2002
|
+
// Added 2026-04-14
|
|
2003
|
+
platform_editor_ai_rename_add_polish: createBooleanExperiment({
|
|
2004
|
+
productKeys: {
|
|
2005
|
+
confluence: 'platform_editor_ai_rename_add_polish'
|
|
2006
|
+
},
|
|
2007
|
+
param: 'isEnabled',
|
|
2008
|
+
defaultValue: false
|
|
2001
2009
|
})
|
|
2002
2010
|
};
|
|
@@ -1238,12 +1238,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1238
1238
|
productKeys?: ProductKeys;
|
|
1239
1239
|
typeGuard: IsBooleanType;
|
|
1240
1240
|
};
|
|
1241
|
-
platform_editor_table_resizer_extended_zone: {
|
|
1242
|
-
defaultValue: boolean;
|
|
1243
|
-
param: string;
|
|
1244
|
-
productKeys?: ProductKeys;
|
|
1245
|
-
typeGuard: IsBooleanType;
|
|
1246
|
-
};
|
|
1247
1241
|
platform_editor_fix_editor_unhandled_type_errors: {
|
|
1248
1242
|
defaultValue: boolean;
|
|
1249
1243
|
param: string;
|
|
@@ -1466,11 +1460,23 @@ export declare const editorExperimentsConfig: {
|
|
|
1466
1460
|
productKeys?: ProductKeys;
|
|
1467
1461
|
typeGuard: IsBooleanType;
|
|
1468
1462
|
};
|
|
1463
|
+
improve_3p_smart_link_resolve_rate: {
|
|
1464
|
+
defaultValue: boolean;
|
|
1465
|
+
param: string;
|
|
1466
|
+
productKeys?: ProductKeys;
|
|
1467
|
+
typeGuard: IsBooleanType;
|
|
1468
|
+
};
|
|
1469
1469
|
platform_editor_media_reliability_enhancements: {
|
|
1470
1470
|
defaultValue: boolean;
|
|
1471
1471
|
param: string;
|
|
1472
1472
|
productKeys?: ProductKeys;
|
|
1473
1473
|
typeGuard: IsBooleanType;
|
|
1474
1474
|
};
|
|
1475
|
+
platform_editor_ai_rename_add_polish: {
|
|
1476
|
+
defaultValue: boolean;
|
|
1477
|
+
param: string;
|
|
1478
|
+
productKeys?: ProductKeys;
|
|
1479
|
+
typeGuard: IsBooleanType;
|
|
1480
|
+
};
|
|
1475
1481
|
};
|
|
1476
1482
|
export {};
|
|
@@ -1238,12 +1238,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1238
1238
|
productKeys?: ProductKeys;
|
|
1239
1239
|
typeGuard: IsBooleanType;
|
|
1240
1240
|
};
|
|
1241
|
-
platform_editor_table_resizer_extended_zone: {
|
|
1242
|
-
defaultValue: boolean;
|
|
1243
|
-
param: string;
|
|
1244
|
-
productKeys?: ProductKeys;
|
|
1245
|
-
typeGuard: IsBooleanType;
|
|
1246
|
-
};
|
|
1247
1241
|
platform_editor_fix_editor_unhandled_type_errors: {
|
|
1248
1242
|
defaultValue: boolean;
|
|
1249
1243
|
param: string;
|
|
@@ -1466,11 +1460,23 @@ export declare const editorExperimentsConfig: {
|
|
|
1466
1460
|
productKeys?: ProductKeys;
|
|
1467
1461
|
typeGuard: IsBooleanType;
|
|
1468
1462
|
};
|
|
1463
|
+
improve_3p_smart_link_resolve_rate: {
|
|
1464
|
+
defaultValue: boolean;
|
|
1465
|
+
param: string;
|
|
1466
|
+
productKeys?: ProductKeys;
|
|
1467
|
+
typeGuard: IsBooleanType;
|
|
1468
|
+
};
|
|
1469
1469
|
platform_editor_media_reliability_enhancements: {
|
|
1470
1470
|
defaultValue: boolean;
|
|
1471
1471
|
param: string;
|
|
1472
1472
|
productKeys?: ProductKeys;
|
|
1473
1473
|
typeGuard: IsBooleanType;
|
|
1474
1474
|
};
|
|
1475
|
+
platform_editor_ai_rename_add_polish: {
|
|
1476
|
+
defaultValue: boolean;
|
|
1477
|
+
param: string;
|
|
1478
|
+
productKeys?: ProductKeys;
|
|
1479
|
+
typeGuard: IsBooleanType;
|
|
1480
|
+
};
|
|
1475
1481
|
};
|
|
1476
1482
|
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.1",
|
|
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": {
|