@atlaskit/tmp-editor-statsig 17.1.0 → 17.2.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
|
+
## 17.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b17f23c9e3a68`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b17f23c9e3a68) -
|
|
8
|
+
Avoid rendering entire primary toolbar container when primary toolbar is not registered
|
|
9
|
+
|
|
3
10
|
## 17.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -965,6 +965,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
965
965
|
param: 'isEnabled',
|
|
966
966
|
defaultValue: false
|
|
967
967
|
}),
|
|
968
|
+
// Added 2025-28-01
|
|
969
|
+
platform_editor_primary_toolbar_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
|
|
970
|
+
productKeys: {
|
|
971
|
+
confluence: 'platform_editor_primary_toolbar_early_exit',
|
|
972
|
+
jira: 'platform_editor_primary_toolbar_early_exit'
|
|
973
|
+
},
|
|
974
|
+
param: 'isEnabled',
|
|
975
|
+
defaultValue: false
|
|
976
|
+
}),
|
|
968
977
|
// Added 2025-11-05
|
|
969
978
|
platform_editor_lovability_emoji_scaling: (0, _experimentBuilders.createBooleanExperiment)({
|
|
970
979
|
productKeys: {
|
|
@@ -959,6 +959,15 @@ export const editorExperimentsConfig = {
|
|
|
959
959
|
param: 'isEnabled',
|
|
960
960
|
defaultValue: false
|
|
961
961
|
}),
|
|
962
|
+
// Added 2025-28-01
|
|
963
|
+
platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
|
|
964
|
+
productKeys: {
|
|
965
|
+
confluence: 'platform_editor_primary_toolbar_early_exit',
|
|
966
|
+
jira: 'platform_editor_primary_toolbar_early_exit'
|
|
967
|
+
},
|
|
968
|
+
param: 'isEnabled',
|
|
969
|
+
defaultValue: false
|
|
970
|
+
}),
|
|
962
971
|
// Added 2025-11-05
|
|
963
972
|
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
964
973
|
productKeys: {
|
|
@@ -959,6 +959,15 @@ export var editorExperimentsConfig = {
|
|
|
959
959
|
param: 'isEnabled',
|
|
960
960
|
defaultValue: false
|
|
961
961
|
}),
|
|
962
|
+
// Added 2025-28-01
|
|
963
|
+
platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
|
|
964
|
+
productKeys: {
|
|
965
|
+
confluence: 'platform_editor_primary_toolbar_early_exit',
|
|
966
|
+
jira: 'platform_editor_primary_toolbar_early_exit'
|
|
967
|
+
},
|
|
968
|
+
param: 'isEnabled',
|
|
969
|
+
defaultValue: false
|
|
970
|
+
}),
|
|
962
971
|
// Added 2025-11-05
|
|
963
972
|
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
964
973
|
productKeys: {
|
|
@@ -455,6 +455,12 @@ export declare const editorExperimentsConfig: {
|
|
|
455
455
|
productKeys?: ProductKeys;
|
|
456
456
|
typeGuard: IsBooleanType;
|
|
457
457
|
};
|
|
458
|
+
platform_editor_primary_toolbar_early_exit: {
|
|
459
|
+
defaultValue: boolean;
|
|
460
|
+
param: string;
|
|
461
|
+
productKeys?: ProductKeys;
|
|
462
|
+
typeGuard: IsBooleanType;
|
|
463
|
+
};
|
|
458
464
|
platform_editor_lovability_navigation_fixes: {
|
|
459
465
|
defaultValue: boolean;
|
|
460
466
|
param: string;
|
|
@@ -455,6 +455,12 @@ export declare const editorExperimentsConfig: {
|
|
|
455
455
|
productKeys?: ProductKeys;
|
|
456
456
|
typeGuard: IsBooleanType;
|
|
457
457
|
};
|
|
458
|
+
platform_editor_primary_toolbar_early_exit: {
|
|
459
|
+
defaultValue: boolean;
|
|
460
|
+
param: string;
|
|
461
|
+
productKeys?: ProductKeys;
|
|
462
|
+
typeGuard: IsBooleanType;
|
|
463
|
+
};
|
|
458
464
|
platform_editor_lovability_navigation_fixes: {
|
|
459
465
|
defaultValue: boolean;
|
|
460
466
|
param: string;
|
package/package.json
CHANGED