@atlaskit/tmp-editor-statsig 135.10.0 → 135.11.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6e8461981e75d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6e8461981e75d) -
|
|
8
|
+
Disable row and column move options when merged cells prevent reordering behind the
|
|
9
|
+
platform_editor_table_menu_updates_patch_2 experiment
|
|
10
|
+
|
|
3
11
|
## 135.10.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -2176,6 +2176,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2176
2176
|
param: 'isEnabled',
|
|
2177
2177
|
defaultValue: false
|
|
2178
2178
|
}),
|
|
2179
|
+
// Added 2026-07-30
|
|
2180
|
+
platform_editor_table_menu_updates_patch_2: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2181
|
+
productKeys: {
|
|
2182
|
+
confluence: 'platform_editor_table_menu_updates_patch_2',
|
|
2183
|
+
jira: 'platform_editor_table_menu_updates_patch_2'
|
|
2184
|
+
},
|
|
2185
|
+
param: 'isEnabled',
|
|
2186
|
+
defaultValue: false
|
|
2187
|
+
}),
|
|
2179
2188
|
// Added 2026-07-06
|
|
2180
2189
|
confluence_live_doc_table_sort_bugfix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2181
2190
|
productKeys: {
|
|
@@ -2170,6 +2170,15 @@ export const editorExperimentsConfig = {
|
|
|
2170
2170
|
param: 'isEnabled',
|
|
2171
2171
|
defaultValue: false
|
|
2172
2172
|
}),
|
|
2173
|
+
// Added 2026-07-30
|
|
2174
|
+
platform_editor_table_menu_updates_patch_2: createBooleanExperiment({
|
|
2175
|
+
productKeys: {
|
|
2176
|
+
confluence: 'platform_editor_table_menu_updates_patch_2',
|
|
2177
|
+
jira: 'platform_editor_table_menu_updates_patch_2'
|
|
2178
|
+
},
|
|
2179
|
+
param: 'isEnabled',
|
|
2180
|
+
defaultValue: false
|
|
2181
|
+
}),
|
|
2173
2182
|
// Added 2026-07-06
|
|
2174
2183
|
confluence_live_doc_table_sort_bugfix: createBooleanExperiment({
|
|
2175
2184
|
productKeys: {
|
|
@@ -2170,6 +2170,15 @@ export var editorExperimentsConfig = {
|
|
|
2170
2170
|
param: 'isEnabled',
|
|
2171
2171
|
defaultValue: false
|
|
2172
2172
|
}),
|
|
2173
|
+
// Added 2026-07-30
|
|
2174
|
+
platform_editor_table_menu_updates_patch_2: createBooleanExperiment({
|
|
2175
|
+
productKeys: {
|
|
2176
|
+
confluence: 'platform_editor_table_menu_updates_patch_2',
|
|
2177
|
+
jira: 'platform_editor_table_menu_updates_patch_2'
|
|
2178
|
+
},
|
|
2179
|
+
param: 'isEnabled',
|
|
2180
|
+
defaultValue: false
|
|
2181
|
+
}),
|
|
2173
2182
|
// Added 2026-07-06
|
|
2174
2183
|
confluence_live_doc_table_sort_bugfix: createBooleanExperiment({
|
|
2175
2184
|
productKeys: {
|
|
@@ -1587,6 +1587,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1587
1587
|
productKeys?: ProductKeys;
|
|
1588
1588
|
typeGuard: IsBooleanType;
|
|
1589
1589
|
};
|
|
1590
|
+
platform_editor_table_menu_updates_patch_2: {
|
|
1591
|
+
defaultValue: boolean;
|
|
1592
|
+
param: string;
|
|
1593
|
+
productKeys?: ProductKeys;
|
|
1594
|
+
typeGuard: IsBooleanType;
|
|
1595
|
+
};
|
|
1590
1596
|
confluence_live_doc_table_sort_bugfix: {
|
|
1591
1597
|
defaultValue: boolean;
|
|
1592
1598
|
param: string;
|
package/package.json
CHANGED