@atlaskit/tmp-editor-statsig 113.0.0 → 114.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
|
+
## 114.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`a8c135d0b7bfb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a8c135d0b7bfb) -
|
|
8
|
+
Cleanup experiment `confluence_load_editor_title_on_transition`. The placeholder loading spinner
|
|
9
|
+
and the collab-not-ready placeholder skip during transitions are now always enabled, and the
|
|
10
|
+
experiment definition has been removed from the editor statsig config.
|
|
11
|
+
|
|
3
12
|
## 113.0.0
|
|
4
13
|
|
|
5
14
|
### Major Changes
|
|
@@ -66,14 +66,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
66
66
|
param: 'isEnabled',
|
|
67
67
|
defaultValue: false
|
|
68
68
|
}),
|
|
69
|
-
// Added 22-12-2025
|
|
70
|
-
confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
|
|
71
|
-
productKeys: {
|
|
72
|
-
confluence: 'confluence_load_editor_title_on_transition'
|
|
73
|
-
},
|
|
74
|
-
param: 'contentPlaceholder',
|
|
75
|
-
defaultValue: false
|
|
76
|
-
}),
|
|
77
69
|
// Added 02-12-2025
|
|
78
70
|
cc_fix_hydration_ttvc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
79
71
|
productKeys: {
|
|
@@ -60,14 +60,6 @@ export const editorExperimentsConfig = {
|
|
|
60
60
|
param: 'isEnabled',
|
|
61
61
|
defaultValue: false
|
|
62
62
|
}),
|
|
63
|
-
// Added 22-12-2025
|
|
64
|
-
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
65
|
-
productKeys: {
|
|
66
|
-
confluence: 'confluence_load_editor_title_on_transition'
|
|
67
|
-
},
|
|
68
|
-
param: 'contentPlaceholder',
|
|
69
|
-
defaultValue: false
|
|
70
|
-
}),
|
|
71
63
|
// Added 02-12-2025
|
|
72
64
|
cc_fix_hydration_ttvc: createBooleanExperiment({
|
|
73
65
|
productKeys: {
|
|
@@ -60,14 +60,6 @@ export var editorExperimentsConfig = {
|
|
|
60
60
|
param: 'isEnabled',
|
|
61
61
|
defaultValue: false
|
|
62
62
|
}),
|
|
63
|
-
// Added 22-12-2025
|
|
64
|
-
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
65
|
-
productKeys: {
|
|
66
|
-
confluence: 'confluence_load_editor_title_on_transition'
|
|
67
|
-
},
|
|
68
|
-
param: 'contentPlaceholder',
|
|
69
|
-
defaultValue: false
|
|
70
|
-
}),
|
|
71
63
|
// Added 02-12-2025
|
|
72
64
|
cc_fix_hydration_ttvc: createBooleanExperiment({
|
|
73
65
|
productKeys: {
|
|
@@ -125,12 +125,6 @@ export declare const editorExperimentsConfig: {
|
|
|
125
125
|
productKeys?: ProductKeys;
|
|
126
126
|
typeGuard: IsBooleanType;
|
|
127
127
|
};
|
|
128
|
-
confluence_load_editor_title_on_transition: {
|
|
129
|
-
defaultValue: boolean;
|
|
130
|
-
param: string;
|
|
131
|
-
productKeys?: ProductKeys;
|
|
132
|
-
typeGuard: IsBooleanType;
|
|
133
|
-
};
|
|
134
128
|
platform_editor_ai_headingautocomplete: {
|
|
135
129
|
defaultValue: boolean;
|
|
136
130
|
param: string;
|
package/package.json
CHANGED