@atlaskit/tmp-editor-statsig 15.9.0 → 15.10.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
|
+
## 15.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`31417f38e1e12`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31417f38e1e12) -
|
|
8
|
+
Update toolbar experiments configuration
|
|
9
|
+
|
|
3
10
|
## 15.9.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1164,6 +1164,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1164
1164
|
param: 'isEnabled',
|
|
1165
1165
|
defaultValue: false
|
|
1166
1166
|
}),
|
|
1167
|
+
// Added 2025-12-12
|
|
1168
|
+
platform_editor_toolbar_delay_render_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1169
|
+
productKeys: {
|
|
1170
|
+
confluence: 'platform_editor_toolbar_delay_render_fix'
|
|
1171
|
+
},
|
|
1172
|
+
param: 'isEnabled',
|
|
1173
|
+
defaultValue: false
|
|
1174
|
+
}),
|
|
1167
1175
|
// Added 2025-12-03
|
|
1168
1176
|
platform_editor_nested_media_selection_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1169
1177
|
productKeys: {
|
|
@@ -1158,6 +1158,14 @@ export const editorExperimentsConfig = {
|
|
|
1158
1158
|
param: 'isEnabled',
|
|
1159
1159
|
defaultValue: false
|
|
1160
1160
|
}),
|
|
1161
|
+
// Added 2025-12-12
|
|
1162
|
+
platform_editor_toolbar_delay_render_fix: createBooleanExperiment({
|
|
1163
|
+
productKeys: {
|
|
1164
|
+
confluence: 'platform_editor_toolbar_delay_render_fix'
|
|
1165
|
+
},
|
|
1166
|
+
param: 'isEnabled',
|
|
1167
|
+
defaultValue: false
|
|
1168
|
+
}),
|
|
1161
1169
|
// Added 2025-12-03
|
|
1162
1170
|
platform_editor_nested_media_selection_fix: createBooleanExperiment({
|
|
1163
1171
|
productKeys: {
|
|
@@ -1158,6 +1158,14 @@ export var editorExperimentsConfig = {
|
|
|
1158
1158
|
param: 'isEnabled',
|
|
1159
1159
|
defaultValue: false
|
|
1160
1160
|
}),
|
|
1161
|
+
// Added 2025-12-12
|
|
1162
|
+
platform_editor_toolbar_delay_render_fix: createBooleanExperiment({
|
|
1163
|
+
productKeys: {
|
|
1164
|
+
confluence: 'platform_editor_toolbar_delay_render_fix'
|
|
1165
|
+
},
|
|
1166
|
+
param: 'isEnabled',
|
|
1167
|
+
defaultValue: false
|
|
1168
|
+
}),
|
|
1161
1169
|
// Added 2025-12-03
|
|
1162
1170
|
platform_editor_nested_media_selection_fix: createBooleanExperiment({
|
|
1163
1171
|
productKeys: {
|
|
@@ -868,6 +868,12 @@ export declare const editorExperimentsConfig: {
|
|
|
868
868
|
productKeys?: ProductKeys;
|
|
869
869
|
typeGuard: IsBooleanType;
|
|
870
870
|
};
|
|
871
|
+
platform_editor_toolbar_delay_render_fix: {
|
|
872
|
+
defaultValue: boolean;
|
|
873
|
+
param: string;
|
|
874
|
+
productKeys?: ProductKeys;
|
|
875
|
+
typeGuard: IsBooleanType;
|
|
876
|
+
};
|
|
871
877
|
platform_editor_nested_media_selection_fix: {
|
|
872
878
|
defaultValue: boolean;
|
|
873
879
|
param: string;
|
|
@@ -868,6 +868,12 @@ export declare const editorExperimentsConfig: {
|
|
|
868
868
|
productKeys?: ProductKeys;
|
|
869
869
|
typeGuard: IsBooleanType;
|
|
870
870
|
};
|
|
871
|
+
platform_editor_toolbar_delay_render_fix: {
|
|
872
|
+
defaultValue: boolean;
|
|
873
|
+
param: string;
|
|
874
|
+
productKeys?: ProductKeys;
|
|
875
|
+
typeGuard: IsBooleanType;
|
|
876
|
+
};
|
|
871
877
|
platform_editor_nested_media_selection_fix: {
|
|
872
878
|
defaultValue: boolean;
|
|
873
879
|
param: string;
|
package/package.json
CHANGED