@atlaskit/tmp-editor-statsig 40.0.0 → 40.1.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
|
+
## 40.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`be5f64b1c1011`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/be5f64b1c1011) -
|
|
8
|
+
[ux] Patch for image editor tool bar border drop downUI size
|
|
9
|
+
|
|
3
10
|
## 40.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -1708,6 +1708,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1708
1708
|
defaultValue: false
|
|
1709
1709
|
}),
|
|
1710
1710
|
// Added 2026-03-10
|
|
1711
|
+
platform_editor_fix_media_toolbar_border_dropdown: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1712
|
+
productKeys: {
|
|
1713
|
+
confluence: 'platform_editor_fix_media_toolbar_border_dropdown'
|
|
1714
|
+
},
|
|
1715
|
+
param: 'isEnabled',
|
|
1716
|
+
defaultValue: false
|
|
1717
|
+
}),
|
|
1718
|
+
// Added 2026-03-10
|
|
1711
1719
|
platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1712
1720
|
productKeys: {
|
|
1713
1721
|
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
@@ -1702,6 +1702,14 @@ export const editorExperimentsConfig = {
|
|
|
1702
1702
|
defaultValue: false
|
|
1703
1703
|
}),
|
|
1704
1704
|
// Added 2026-03-10
|
|
1705
|
+
platform_editor_fix_media_toolbar_border_dropdown: createBooleanExperiment({
|
|
1706
|
+
productKeys: {
|
|
1707
|
+
confluence: 'platform_editor_fix_media_toolbar_border_dropdown'
|
|
1708
|
+
},
|
|
1709
|
+
param: 'isEnabled',
|
|
1710
|
+
defaultValue: false
|
|
1711
|
+
}),
|
|
1712
|
+
// Added 2026-03-10
|
|
1705
1713
|
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1706
1714
|
productKeys: {
|
|
1707
1715
|
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
@@ -1702,6 +1702,14 @@ export var editorExperimentsConfig = {
|
|
|
1702
1702
|
defaultValue: false
|
|
1703
1703
|
}),
|
|
1704
1704
|
// Added 2026-03-10
|
|
1705
|
+
platform_editor_fix_media_toolbar_border_dropdown: createBooleanExperiment({
|
|
1706
|
+
productKeys: {
|
|
1707
|
+
confluence: 'platform_editor_fix_media_toolbar_border_dropdown'
|
|
1708
|
+
},
|
|
1709
|
+
param: 'isEnabled',
|
|
1710
|
+
defaultValue: false
|
|
1711
|
+
}),
|
|
1712
|
+
// Added 2026-03-10
|
|
1705
1713
|
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1706
1714
|
productKeys: {
|
|
1707
1715
|
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
@@ -1254,6 +1254,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1254
1254
|
productKeys?: ProductKeys;
|
|
1255
1255
|
typeGuard: IsBooleanType;
|
|
1256
1256
|
};
|
|
1257
|
+
platform_editor_fix_media_toolbar_border_dropdown: {
|
|
1258
|
+
defaultValue: boolean;
|
|
1259
|
+
param: string;
|
|
1260
|
+
productKeys?: ProductKeys;
|
|
1261
|
+
typeGuard: IsBooleanType;
|
|
1262
|
+
};
|
|
1257
1263
|
platform_editor_analyse_table_with_merged_cells: {
|
|
1258
1264
|
defaultValue: boolean;
|
|
1259
1265
|
param: string;
|
|
@@ -1254,6 +1254,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1254
1254
|
productKeys?: ProductKeys;
|
|
1255
1255
|
typeGuard: IsBooleanType;
|
|
1256
1256
|
};
|
|
1257
|
+
platform_editor_fix_media_toolbar_border_dropdown: {
|
|
1258
|
+
defaultValue: boolean;
|
|
1259
|
+
param: string;
|
|
1260
|
+
productKeys?: ProductKeys;
|
|
1261
|
+
typeGuard: IsBooleanType;
|
|
1262
|
+
};
|
|
1257
1263
|
platform_editor_analyse_table_with_merged_cells: {
|
|
1258
1264
|
defaultValue: boolean;
|
|
1259
1265
|
param: string;
|
package/package.json
CHANGED