@atlaskit/tmp-editor-statsig 15.5.0 → 15.6.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.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`63c5e344d169c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/63c5e344d169c) -
|
|
8
|
+
Reduce the VC impact of the editor toolbar
|
|
9
|
+
|
|
3
10
|
## 15.5.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1199,5 +1199,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1199
1199
|
},
|
|
1200
1200
|
param: 'isEnabled',
|
|
1201
1201
|
defaultValue: false
|
|
1202
|
+
}),
|
|
1203
|
+
// Added 2025-12-08
|
|
1204
|
+
platform_editor_reduce_toolbar_vc_impact: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1205
|
+
productKeys: {
|
|
1206
|
+
confluence: 'platform_editor_reduce_toolbar_vc_impact'
|
|
1207
|
+
},
|
|
1208
|
+
param: 'isEnabled',
|
|
1209
|
+
defaultValue: false
|
|
1202
1210
|
})
|
|
1203
1211
|
};
|
|
@@ -1193,5 +1193,13 @@ export const editorExperimentsConfig = {
|
|
|
1193
1193
|
},
|
|
1194
1194
|
param: 'isEnabled',
|
|
1195
1195
|
defaultValue: false
|
|
1196
|
+
}),
|
|
1197
|
+
// Added 2025-12-08
|
|
1198
|
+
platform_editor_reduce_toolbar_vc_impact: createBooleanExperiment({
|
|
1199
|
+
productKeys: {
|
|
1200
|
+
confluence: 'platform_editor_reduce_toolbar_vc_impact'
|
|
1201
|
+
},
|
|
1202
|
+
param: 'isEnabled',
|
|
1203
|
+
defaultValue: false
|
|
1196
1204
|
})
|
|
1197
1205
|
};
|
|
@@ -1193,5 +1193,13 @@ export var editorExperimentsConfig = {
|
|
|
1193
1193
|
},
|
|
1194
1194
|
param: 'isEnabled',
|
|
1195
1195
|
defaultValue: false
|
|
1196
|
+
}),
|
|
1197
|
+
// Added 2025-12-08
|
|
1198
|
+
platform_editor_reduce_toolbar_vc_impact: createBooleanExperiment({
|
|
1199
|
+
productKeys: {
|
|
1200
|
+
confluence: 'platform_editor_reduce_toolbar_vc_impact'
|
|
1201
|
+
},
|
|
1202
|
+
param: 'isEnabled',
|
|
1203
|
+
defaultValue: false
|
|
1196
1204
|
})
|
|
1197
1205
|
};
|
|
@@ -870,6 +870,12 @@ export declare const editorExperimentsConfig: {
|
|
|
870
870
|
productKeys?: ProductKeys;
|
|
871
871
|
typeGuard: IsBooleanType;
|
|
872
872
|
};
|
|
873
|
+
platform_editor_reduce_toolbar_vc_impact: {
|
|
874
|
+
defaultValue: boolean;
|
|
875
|
+
param: string;
|
|
876
|
+
productKeys?: ProductKeys;
|
|
877
|
+
typeGuard: IsBooleanType;
|
|
878
|
+
};
|
|
873
879
|
platform_editor_nested_media_selection_fix: {
|
|
874
880
|
defaultValue: boolean;
|
|
875
881
|
param: string;
|
|
@@ -870,6 +870,12 @@ export declare const editorExperimentsConfig: {
|
|
|
870
870
|
productKeys?: ProductKeys;
|
|
871
871
|
typeGuard: IsBooleanType;
|
|
872
872
|
};
|
|
873
|
+
platform_editor_reduce_toolbar_vc_impact: {
|
|
874
|
+
defaultValue: boolean;
|
|
875
|
+
param: string;
|
|
876
|
+
productKeys?: ProductKeys;
|
|
877
|
+
typeGuard: IsBooleanType;
|
|
878
|
+
};
|
|
873
879
|
platform_editor_nested_media_selection_fix: {
|
|
874
880
|
defaultValue: boolean;
|
|
875
881
|
param: string;
|
package/package.json
CHANGED