@atlaskit/tmp-editor-statsig 135.9.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,24 @@
|
|
|
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
|
+
|
|
11
|
+
## 135.10.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`894f9e2ba765a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/894f9e2ba765a) -
|
|
16
|
+
Decouple paste-as-markdown GFM transformer rollout from `cc-markdown-mode` and gate it with the
|
|
17
|
+
new `platform_editor_paste_as_md_use_gfm` experiment for independent rollout control.
|
|
18
|
+
|
|
19
|
+
Consumers can gate the new transformer path with:
|
|
20
|
+
`expValEquals('platform_editor_paste_as_md_use_gfm', 'isEnabled', true)`.
|
|
21
|
+
|
|
3
22
|
## 135.9.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -1929,6 +1929,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1929
1929
|
param: 'isEnabled',
|
|
1930
1930
|
defaultValue: false
|
|
1931
1931
|
}),
|
|
1932
|
+
// Added 2026-07-28
|
|
1933
|
+
platform_editor_paste_as_md_use_gfm: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1934
|
+
productKeys: {
|
|
1935
|
+
confluence: 'platform_editor_paste_as_md_use_gfm'
|
|
1936
|
+
},
|
|
1937
|
+
param: 'isEnabled',
|
|
1938
|
+
defaultValue: false
|
|
1939
|
+
}),
|
|
1932
1940
|
// Added 2026-03-30
|
|
1933
1941
|
platform_editor_ai_xstate_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1934
1942
|
productKeys: {
|
|
@@ -2168,6 +2176,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2168
2176
|
param: 'isEnabled',
|
|
2169
2177
|
defaultValue: false
|
|
2170
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
|
+
}),
|
|
2171
2188
|
// Added 2026-07-06
|
|
2172
2189
|
confluence_live_doc_table_sort_bugfix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2173
2190
|
productKeys: {
|
|
@@ -1923,6 +1923,14 @@ export const editorExperimentsConfig = {
|
|
|
1923
1923
|
param: 'isEnabled',
|
|
1924
1924
|
defaultValue: false
|
|
1925
1925
|
}),
|
|
1926
|
+
// Added 2026-07-28
|
|
1927
|
+
platform_editor_paste_as_md_use_gfm: createBooleanExperiment({
|
|
1928
|
+
productKeys: {
|
|
1929
|
+
confluence: 'platform_editor_paste_as_md_use_gfm'
|
|
1930
|
+
},
|
|
1931
|
+
param: 'isEnabled',
|
|
1932
|
+
defaultValue: false
|
|
1933
|
+
}),
|
|
1926
1934
|
// Added 2026-03-30
|
|
1927
1935
|
platform_editor_ai_xstate_migration: createBooleanExperiment({
|
|
1928
1936
|
productKeys: {
|
|
@@ -2162,6 +2170,15 @@ export const editorExperimentsConfig = {
|
|
|
2162
2170
|
param: 'isEnabled',
|
|
2163
2171
|
defaultValue: false
|
|
2164
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
|
+
}),
|
|
2165
2182
|
// Added 2026-07-06
|
|
2166
2183
|
confluence_live_doc_table_sort_bugfix: createBooleanExperiment({
|
|
2167
2184
|
productKeys: {
|
|
@@ -1923,6 +1923,14 @@ export var editorExperimentsConfig = {
|
|
|
1923
1923
|
param: 'isEnabled',
|
|
1924
1924
|
defaultValue: false
|
|
1925
1925
|
}),
|
|
1926
|
+
// Added 2026-07-28
|
|
1927
|
+
platform_editor_paste_as_md_use_gfm: createBooleanExperiment({
|
|
1928
|
+
productKeys: {
|
|
1929
|
+
confluence: 'platform_editor_paste_as_md_use_gfm'
|
|
1930
|
+
},
|
|
1931
|
+
param: 'isEnabled',
|
|
1932
|
+
defaultValue: false
|
|
1933
|
+
}),
|
|
1926
1934
|
// Added 2026-03-30
|
|
1927
1935
|
platform_editor_ai_xstate_migration: createBooleanExperiment({
|
|
1928
1936
|
productKeys: {
|
|
@@ -2162,6 +2170,15 @@ export var editorExperimentsConfig = {
|
|
|
2162
2170
|
param: 'isEnabled',
|
|
2163
2171
|
defaultValue: false
|
|
2164
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
|
+
}),
|
|
2165
2182
|
// Added 2026-07-06
|
|
2166
2183
|
confluence_live_doc_table_sort_bugfix: createBooleanExperiment({
|
|
2167
2184
|
productKeys: {
|
|
@@ -508,6 +508,12 @@ export declare const editorExperimentsConfig: {
|
|
|
508
508
|
productKeys?: ProductKeys;
|
|
509
509
|
typeGuard: IsBooleanType;
|
|
510
510
|
};
|
|
511
|
+
platform_editor_paste_as_md_use_gfm: {
|
|
512
|
+
defaultValue: boolean;
|
|
513
|
+
param: string;
|
|
514
|
+
productKeys?: ProductKeys;
|
|
515
|
+
typeGuard: IsBooleanType;
|
|
516
|
+
};
|
|
511
517
|
platform_editor_exp_lazy_node_views: {
|
|
512
518
|
defaultValue: boolean;
|
|
513
519
|
param: string;
|
|
@@ -1581,6 +1587,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1581
1587
|
productKeys?: ProductKeys;
|
|
1582
1588
|
typeGuard: IsBooleanType;
|
|
1583
1589
|
};
|
|
1590
|
+
platform_editor_table_menu_updates_patch_2: {
|
|
1591
|
+
defaultValue: boolean;
|
|
1592
|
+
param: string;
|
|
1593
|
+
productKeys?: ProductKeys;
|
|
1594
|
+
typeGuard: IsBooleanType;
|
|
1595
|
+
};
|
|
1584
1596
|
confluence_live_doc_table_sort_bugfix: {
|
|
1585
1597
|
defaultValue: boolean;
|
|
1586
1598
|
param: string;
|
package/package.json
CHANGED