@atlaskit/tmp-editor-statsig 70.2.0 → 70.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 70.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8ba7595a14e53`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8ba7595a14e53) -
|
|
8
|
+
[ux] Opens iframe preview panel for smart links and related works links in new work item view for
|
|
9
|
+
certain routes ( boards, backlog).
|
|
10
|
+
|
|
3
11
|
## 70.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -2017,6 +2017,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2017
2017
|
param: 'isEnabled',
|
|
2018
2018
|
defaultValue: false
|
|
2019
2019
|
}),
|
|
2020
|
+
// Added 2026-04-23
|
|
2021
|
+
work_item_modernization: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2022
|
+
productKeys: {
|
|
2023
|
+
jira: 'work_item_modernization'
|
|
2024
|
+
},
|
|
2025
|
+
param: 'isEnabled',
|
|
2026
|
+
defaultValue: false
|
|
2027
|
+
}),
|
|
2020
2028
|
// Added 2026-04-27
|
|
2021
2029
|
platform_sl_fix_cache_unresolved: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2022
2030
|
productKeys: {
|
|
@@ -2011,6 +2011,14 @@ export const editorExperimentsConfig = {
|
|
|
2011
2011
|
param: 'isEnabled',
|
|
2012
2012
|
defaultValue: false
|
|
2013
2013
|
}),
|
|
2014
|
+
// Added 2026-04-23
|
|
2015
|
+
work_item_modernization: createBooleanExperiment({
|
|
2016
|
+
productKeys: {
|
|
2017
|
+
jira: 'work_item_modernization'
|
|
2018
|
+
},
|
|
2019
|
+
param: 'isEnabled',
|
|
2020
|
+
defaultValue: false
|
|
2021
|
+
}),
|
|
2014
2022
|
// Added 2026-04-27
|
|
2015
2023
|
platform_sl_fix_cache_unresolved: createBooleanExperiment({
|
|
2016
2024
|
productKeys: {
|
|
@@ -2011,6 +2011,14 @@ export var editorExperimentsConfig = {
|
|
|
2011
2011
|
param: 'isEnabled',
|
|
2012
2012
|
defaultValue: false
|
|
2013
2013
|
}),
|
|
2014
|
+
// Added 2026-04-23
|
|
2015
|
+
work_item_modernization: createBooleanExperiment({
|
|
2016
|
+
productKeys: {
|
|
2017
|
+
jira: 'work_item_modernization'
|
|
2018
|
+
},
|
|
2019
|
+
param: 'isEnabled',
|
|
2020
|
+
defaultValue: false
|
|
2021
|
+
}),
|
|
2014
2022
|
// Added 2026-04-27
|
|
2015
2023
|
platform_sl_fix_cache_unresolved: createBooleanExperiment({
|
|
2016
2024
|
productKeys: {
|
|
@@ -1482,6 +1482,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1482
1482
|
productKeys?: ProductKeys;
|
|
1483
1483
|
typeGuard: IsBooleanType;
|
|
1484
1484
|
};
|
|
1485
|
+
work_item_modernization: {
|
|
1486
|
+
defaultValue: boolean;
|
|
1487
|
+
param: string;
|
|
1488
|
+
productKeys?: ProductKeys;
|
|
1489
|
+
typeGuard: IsBooleanType;
|
|
1490
|
+
};
|
|
1485
1491
|
platform_sl_fix_cache_unresolved: {
|
|
1486
1492
|
defaultValue: boolean;
|
|
1487
1493
|
param: string;
|
|
@@ -1482,6 +1482,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1482
1482
|
productKeys?: ProductKeys;
|
|
1483
1483
|
typeGuard: IsBooleanType;
|
|
1484
1484
|
};
|
|
1485
|
+
work_item_modernization: {
|
|
1486
|
+
defaultValue: boolean;
|
|
1487
|
+
param: string;
|
|
1488
|
+
productKeys?: ProductKeys;
|
|
1489
|
+
typeGuard: IsBooleanType;
|
|
1490
|
+
};
|
|
1485
1491
|
platform_sl_fix_cache_unresolved: {
|
|
1486
1492
|
defaultValue: boolean;
|
|
1487
1493
|
param: string;
|
package/package.json
CHANGED