@atlaskit/tmp-editor-statsig 193.0.0 → 194.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 194.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`9e6211ceb4ceb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9e6211ceb4ceb) -
|
|
8
|
+
Clean up the fully rolled-out `platform_editor_small_font_size` experiment and make its permanent
|
|
9
|
+
`true` behavior unconditional across editor formatting, task and list handling, paste behavior,
|
|
10
|
+
controls, and rendering.
|
|
11
|
+
|
|
3
12
|
## 193.0.0
|
|
4
13
|
|
|
5
14
|
### Major Changes
|
|
@@ -1112,14 +1112,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1112
1112
|
param: 'isEnabled',
|
|
1113
1113
|
defaultValue: false
|
|
1114
1114
|
}),
|
|
1115
|
-
platform_editor_small_font_size: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
1116
|
-
productKeys: {
|
|
1117
|
-
confluence: 'platform_editor_small_font_size',
|
|
1118
|
-
jira: 'platform_editor_small_font_size'
|
|
1119
|
-
},
|
|
1120
|
-
param: 'isEnabled',
|
|
1121
|
-
defaultValue: false
|
|
1122
|
-
}),
|
|
1123
1115
|
// Added 2026-03-10
|
|
1124
1116
|
platform_editor_diff_plugin_extended: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
1125
1117
|
productKeys: {
|
|
@@ -1106,14 +1106,6 @@ export const editorExperimentsConfig = {
|
|
|
1106
1106
|
param: 'isEnabled',
|
|
1107
1107
|
defaultValue: false
|
|
1108
1108
|
}),
|
|
1109
|
-
platform_editor_small_font_size: createBooleanExperiment({
|
|
1110
|
-
productKeys: {
|
|
1111
|
-
confluence: 'platform_editor_small_font_size',
|
|
1112
|
-
jira: 'platform_editor_small_font_size'
|
|
1113
|
-
},
|
|
1114
|
-
param: 'isEnabled',
|
|
1115
|
-
defaultValue: false
|
|
1116
|
-
}),
|
|
1117
1109
|
// Added 2026-03-10
|
|
1118
1110
|
platform_editor_diff_plugin_extended: createBooleanExperiment({
|
|
1119
1111
|
productKeys: {
|
|
@@ -1106,14 +1106,6 @@ export var editorExperimentsConfig = {
|
|
|
1106
1106
|
param: 'isEnabled',
|
|
1107
1107
|
defaultValue: false
|
|
1108
1108
|
}),
|
|
1109
|
-
platform_editor_small_font_size: createBooleanExperiment({
|
|
1110
|
-
productKeys: {
|
|
1111
|
-
confluence: 'platform_editor_small_font_size',
|
|
1112
|
-
jira: 'platform_editor_small_font_size'
|
|
1113
|
-
},
|
|
1114
|
-
param: 'isEnabled',
|
|
1115
|
-
defaultValue: false
|
|
1116
|
-
}),
|
|
1117
1109
|
// Added 2026-03-10
|
|
1118
1110
|
platform_editor_diff_plugin_extended: createBooleanExperiment({
|
|
1119
1111
|
productKeys: {
|
|
@@ -866,12 +866,6 @@ export declare const editorExperimentsConfig: {
|
|
|
866
866
|
productKeys?: ProductKeys;
|
|
867
867
|
typeGuard: IsBooleanType;
|
|
868
868
|
};
|
|
869
|
-
platform_editor_small_font_size: {
|
|
870
|
-
defaultValue: boolean;
|
|
871
|
-
param: string;
|
|
872
|
-
productKeys?: ProductKeys;
|
|
873
|
-
typeGuard: IsBooleanType;
|
|
874
|
-
};
|
|
875
869
|
platform_editor_diff_plugin_extended: {
|
|
876
870
|
defaultValue: boolean;
|
|
877
871
|
param: string;
|
package/package.json
CHANGED