@atlaskit/tmp-editor-statsig 13.28.0 → 13.29.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
|
+
## 13.29.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`851ebf59a82a8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/851ebf59a82a8) -
|
|
8
|
+
[EDITOR-2459] add new experiment to config file
|
|
9
|
+
|
|
3
10
|
## 13.28.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1114,5 +1114,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1114
1114
|
},
|
|
1115
1115
|
param: 'isEnabled',
|
|
1116
1116
|
defaultValue: false
|
|
1117
|
+
}),
|
|
1118
|
+
// Added 2025-11-05
|
|
1119
|
+
platform_editor_lovability_emoji_scaling: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1120
|
+
productKeys: {
|
|
1121
|
+
confluence: 'platform_editor_lovability_emoji_scaling'
|
|
1122
|
+
},
|
|
1123
|
+
param: 'isEnabled',
|
|
1124
|
+
defaultValue: false
|
|
1117
1125
|
})
|
|
1118
1126
|
};
|
|
@@ -1108,5 +1108,13 @@ export const editorExperimentsConfig = {
|
|
|
1108
1108
|
},
|
|
1109
1109
|
param: 'isEnabled',
|
|
1110
1110
|
defaultValue: false
|
|
1111
|
+
}),
|
|
1112
|
+
// Added 2025-11-05
|
|
1113
|
+
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
1114
|
+
productKeys: {
|
|
1115
|
+
confluence: 'platform_editor_lovability_emoji_scaling'
|
|
1116
|
+
},
|
|
1117
|
+
param: 'isEnabled',
|
|
1118
|
+
defaultValue: false
|
|
1111
1119
|
})
|
|
1112
1120
|
};
|
|
@@ -1108,5 +1108,13 @@ export var editorExperimentsConfig = {
|
|
|
1108
1108
|
},
|
|
1109
1109
|
param: 'isEnabled',
|
|
1110
1110
|
defaultValue: false
|
|
1111
|
+
}),
|
|
1112
|
+
// Added 2025-11-05
|
|
1113
|
+
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
1114
|
+
productKeys: {
|
|
1115
|
+
confluence: 'platform_editor_lovability_emoji_scaling'
|
|
1116
|
+
},
|
|
1117
|
+
param: 'isEnabled',
|
|
1118
|
+
defaultValue: false
|
|
1111
1119
|
})
|
|
1112
1120
|
};
|
|
@@ -819,4 +819,10 @@ export declare const editorExperimentsConfig: {
|
|
|
819
819
|
param: string;
|
|
820
820
|
productKeys?: import("./types").ProductKeys;
|
|
821
821
|
};
|
|
822
|
+
platform_editor_lovability_emoji_scaling: {
|
|
823
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
824
|
+
defaultValue: boolean;
|
|
825
|
+
param: string;
|
|
826
|
+
productKeys?: import("./types").ProductKeys;
|
|
827
|
+
};
|
|
822
828
|
};
|
|
@@ -819,4 +819,10 @@ export declare const editorExperimentsConfig: {
|
|
|
819
819
|
param: string;
|
|
820
820
|
productKeys?: import("./types").ProductKeys;
|
|
821
821
|
};
|
|
822
|
+
platform_editor_lovability_emoji_scaling: {
|
|
823
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
824
|
+
defaultValue: boolean;
|
|
825
|
+
param: string;
|
|
826
|
+
productKeys?: import("./types").ProductKeys;
|
|
827
|
+
};
|
|
822
828
|
};
|
package/package.json
CHANGED