@atlaskit/tmp-editor-statsig 35.1.0 → 35.2.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
|
+
## 35.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`9e9a406ad71a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9e9a406ad71a9) -
|
|
8
|
+
[EDITOR-1682] add new experiment `platform_editor_analyse_table_with_merged_cells` to config file
|
|
9
|
+
- [`5d27d5dc155ff`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d27d5dc155ff) -
|
|
10
|
+
Editor-5020: Fix the column drop hint not visible inside sync block
|
|
11
|
+
|
|
3
12
|
## 35.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -1639,5 +1639,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1639
1639
|
},
|
|
1640
1640
|
param: 'isEnabled',
|
|
1641
1641
|
defaultValue: false
|
|
1642
|
+
}),
|
|
1643
|
+
// Added 2026-03-10
|
|
1644
|
+
platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1645
|
+
productKeys: {
|
|
1646
|
+
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1647
|
+
},
|
|
1648
|
+
param: 'isEnabled',
|
|
1649
|
+
defaultValue: false
|
|
1642
1650
|
})
|
|
1643
1651
|
};
|
|
@@ -1633,5 +1633,13 @@ export const editorExperimentsConfig = {
|
|
|
1633
1633
|
},
|
|
1634
1634
|
param: 'isEnabled',
|
|
1635
1635
|
defaultValue: false
|
|
1636
|
+
}),
|
|
1637
|
+
// Added 2026-03-10
|
|
1638
|
+
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1639
|
+
productKeys: {
|
|
1640
|
+
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1641
|
+
},
|
|
1642
|
+
param: 'isEnabled',
|
|
1643
|
+
defaultValue: false
|
|
1636
1644
|
})
|
|
1637
1645
|
};
|
|
@@ -1633,5 +1633,13 @@ export var editorExperimentsConfig = {
|
|
|
1633
1633
|
},
|
|
1634
1634
|
param: 'isEnabled',
|
|
1635
1635
|
defaultValue: false
|
|
1636
|
+
}),
|
|
1637
|
+
// Added 2026-03-10
|
|
1638
|
+
platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
|
|
1639
|
+
productKeys: {
|
|
1640
|
+
confluence: 'platform_editor_analyse_table_with_merged_cells'
|
|
1641
|
+
},
|
|
1642
|
+
param: 'isEnabled',
|
|
1643
|
+
defaultValue: false
|
|
1636
1644
|
})
|
|
1637
1645
|
};
|
|
@@ -1206,5 +1206,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1206
1206
|
productKeys?: ProductKeys;
|
|
1207
1207
|
typeGuard: IsBooleanType;
|
|
1208
1208
|
};
|
|
1209
|
+
platform_editor_analyse_table_with_merged_cells: {
|
|
1210
|
+
defaultValue: boolean;
|
|
1211
|
+
param: string;
|
|
1212
|
+
productKeys?: ProductKeys;
|
|
1213
|
+
typeGuard: IsBooleanType;
|
|
1214
|
+
};
|
|
1209
1215
|
};
|
|
1210
1216
|
export {};
|
|
@@ -1206,5 +1206,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1206
1206
|
productKeys?: ProductKeys;
|
|
1207
1207
|
typeGuard: IsBooleanType;
|
|
1208
1208
|
};
|
|
1209
|
+
platform_editor_analyse_table_with_merged_cells: {
|
|
1210
|
+
defaultValue: boolean;
|
|
1211
|
+
param: string;
|
|
1212
|
+
productKeys?: ProductKeys;
|
|
1213
|
+
typeGuard: IsBooleanType;
|
|
1214
|
+
};
|
|
1209
1215
|
};
|
|
1210
1216
|
export {};
|
package/package.json
CHANGED