@atlaskit/tmp-editor-statsig 74.12.0 → 75.0.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
|
+
## 75.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`54ae29f5b3a2c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/54ae29f5b3a2c) -
|
|
8
|
+
Clean up feature gate platform_editor_primary_toolbar_early_exit - promote early exit behaviour
|
|
9
|
+
for empty primary toolbar as default
|
|
10
|
+
|
|
3
11
|
## 74.12.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -948,15 +948,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
948
948
|
param: 'isEnabled',
|
|
949
949
|
defaultValue: false
|
|
950
950
|
}),
|
|
951
|
-
// Added 2025-28-01
|
|
952
|
-
platform_editor_primary_toolbar_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
|
|
953
|
-
productKeys: {
|
|
954
|
-
confluence: 'platform_editor_primary_toolbar_early_exit',
|
|
955
|
-
jira: 'platform_editor_primary_toolbar_early_exit'
|
|
956
|
-
},
|
|
957
|
-
param: 'isEnabled',
|
|
958
|
-
defaultValue: false
|
|
959
|
-
}),
|
|
960
951
|
// Added 2025-11-05
|
|
961
952
|
platform_editor_lovability_emoji_scaling: (0, _experimentBuilders.createBooleanExperiment)({
|
|
962
953
|
productKeys: {
|
|
@@ -942,15 +942,6 @@ export const editorExperimentsConfig = {
|
|
|
942
942
|
param: 'isEnabled',
|
|
943
943
|
defaultValue: false
|
|
944
944
|
}),
|
|
945
|
-
// Added 2025-28-01
|
|
946
|
-
platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
|
|
947
|
-
productKeys: {
|
|
948
|
-
confluence: 'platform_editor_primary_toolbar_early_exit',
|
|
949
|
-
jira: 'platform_editor_primary_toolbar_early_exit'
|
|
950
|
-
},
|
|
951
|
-
param: 'isEnabled',
|
|
952
|
-
defaultValue: false
|
|
953
|
-
}),
|
|
954
945
|
// Added 2025-11-05
|
|
955
946
|
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
956
947
|
productKeys: {
|
|
@@ -942,15 +942,6 @@ export var editorExperimentsConfig = {
|
|
|
942
942
|
param: 'isEnabled',
|
|
943
943
|
defaultValue: false
|
|
944
944
|
}),
|
|
945
|
-
// Added 2025-28-01
|
|
946
|
-
platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
|
|
947
|
-
productKeys: {
|
|
948
|
-
confluence: 'platform_editor_primary_toolbar_early_exit',
|
|
949
|
-
jira: 'platform_editor_primary_toolbar_early_exit'
|
|
950
|
-
},
|
|
951
|
-
param: 'isEnabled',
|
|
952
|
-
defaultValue: false
|
|
953
|
-
}),
|
|
954
945
|
// Added 2025-11-05
|
|
955
946
|
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
956
947
|
productKeys: {
|
|
@@ -488,12 +488,6 @@ export declare const editorExperimentsConfig: {
|
|
|
488
488
|
productKeys?: ProductKeys;
|
|
489
489
|
typeGuard: IsBooleanType;
|
|
490
490
|
};
|
|
491
|
-
platform_editor_primary_toolbar_early_exit: {
|
|
492
|
-
defaultValue: boolean;
|
|
493
|
-
param: string;
|
|
494
|
-
productKeys?: ProductKeys;
|
|
495
|
-
typeGuard: IsBooleanType;
|
|
496
|
-
};
|
|
497
491
|
platform_editor_lovability_navigation_fixes: {
|
|
498
492
|
defaultValue: boolean;
|
|
499
493
|
param: string;
|
|
@@ -488,12 +488,6 @@ export declare const editorExperimentsConfig: {
|
|
|
488
488
|
productKeys?: ProductKeys;
|
|
489
489
|
typeGuard: IsBooleanType;
|
|
490
490
|
};
|
|
491
|
-
platform_editor_primary_toolbar_early_exit: {
|
|
492
|
-
defaultValue: boolean;
|
|
493
|
-
param: string;
|
|
494
|
-
productKeys?: ProductKeys;
|
|
495
|
-
typeGuard: IsBooleanType;
|
|
496
|
-
};
|
|
497
491
|
platform_editor_lovability_navigation_fixes: {
|
|
498
492
|
defaultValue: boolean;
|
|
499
493
|
param: string;
|
package/package.json
CHANGED