@atlaskit/tmp-editor-statsig 82.1.0 → 82.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,17 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 82.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b284d7fc05568`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b284d7fc05568) -
|
|
8
|
+
Fix tableCell/tableHeader nodes in middle rows of newly-inserted tables missing localId. The
|
|
9
|
+
localId plugin's appendTransaction was keyed by PMNode identity, which incorrectly overwrote
|
|
10
|
+
positions when the same node reference legitimately occupied multiple document positions (as
|
|
11
|
+
createTable from prosemirror-utils does by reusing cell node objects across non-header rows). The
|
|
12
|
+
plugin now tracks all positions per node identity and assigns a unique localId per position. Gated
|
|
13
|
+
behind the `platform_editor_ai_tablecell_localids` experiment.
|
|
14
|
+
|
|
3
15
|
## 82.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -2125,6 +2125,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2125
2125
|
param: 'isEnabled',
|
|
2126
2126
|
defaultValue: false
|
|
2127
2127
|
}),
|
|
2128
|
+
// Added 2026-05-20
|
|
2129
|
+
platform_editor_ai_tablecell_localids: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2130
|
+
productKeys: {
|
|
2131
|
+
confluence: 'platform_editor_ai_tablecell_localids'
|
|
2132
|
+
},
|
|
2133
|
+
param: 'isEnabled',
|
|
2134
|
+
defaultValue: false
|
|
2135
|
+
}),
|
|
2128
2136
|
// Added 2026-04-30
|
|
2129
2137
|
platform_editor_insert_menu_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2130
2138
|
productKeys: {
|
|
@@ -2119,6 +2119,14 @@ export const editorExperimentsConfig = {
|
|
|
2119
2119
|
param: 'isEnabled',
|
|
2120
2120
|
defaultValue: false
|
|
2121
2121
|
}),
|
|
2122
|
+
// Added 2026-05-20
|
|
2123
|
+
platform_editor_ai_tablecell_localids: createBooleanExperiment({
|
|
2124
|
+
productKeys: {
|
|
2125
|
+
confluence: 'platform_editor_ai_tablecell_localids'
|
|
2126
|
+
},
|
|
2127
|
+
param: 'isEnabled',
|
|
2128
|
+
defaultValue: false
|
|
2129
|
+
}),
|
|
2122
2130
|
// Added 2026-04-30
|
|
2123
2131
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2124
2132
|
productKeys: {
|
|
@@ -2119,6 +2119,14 @@ export var editorExperimentsConfig = {
|
|
|
2119
2119
|
param: 'isEnabled',
|
|
2120
2120
|
defaultValue: false
|
|
2121
2121
|
}),
|
|
2122
|
+
// Added 2026-05-20
|
|
2123
|
+
platform_editor_ai_tablecell_localids: createBooleanExperiment({
|
|
2124
|
+
productKeys: {
|
|
2125
|
+
confluence: 'platform_editor_ai_tablecell_localids'
|
|
2126
|
+
},
|
|
2127
|
+
param: 'isEnabled',
|
|
2128
|
+
defaultValue: false
|
|
2129
|
+
}),
|
|
2122
2130
|
// Added 2026-04-30
|
|
2123
2131
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2124
2132
|
productKeys: {
|
|
@@ -1531,6 +1531,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1531
1531
|
productKeys?: ProductKeys;
|
|
1532
1532
|
typeGuard: IsBooleanType;
|
|
1533
1533
|
};
|
|
1534
|
+
platform_editor_ai_tablecell_localids: {
|
|
1535
|
+
defaultValue: boolean;
|
|
1536
|
+
param: string;
|
|
1537
|
+
productKeys?: ProductKeys;
|
|
1538
|
+
typeGuard: IsBooleanType;
|
|
1539
|
+
};
|
|
1534
1540
|
platform_sl_fix_cache_unresolved: {
|
|
1535
1541
|
defaultValue: boolean;
|
|
1536
1542
|
param: string;
|
|
@@ -1531,6 +1531,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1531
1531
|
productKeys?: ProductKeys;
|
|
1532
1532
|
typeGuard: IsBooleanType;
|
|
1533
1533
|
};
|
|
1534
|
+
platform_editor_ai_tablecell_localids: {
|
|
1535
|
+
defaultValue: boolean;
|
|
1536
|
+
param: string;
|
|
1537
|
+
productKeys?: ProductKeys;
|
|
1538
|
+
typeGuard: IsBooleanType;
|
|
1539
|
+
};
|
|
1534
1540
|
platform_sl_fix_cache_unresolved: {
|
|
1535
1541
|
defaultValue: boolean;
|
|
1536
1542
|
param: string;
|
package/package.json
CHANGED