@atlaskit/tmp-editor-statsig 82.0.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,28 @@
|
|
|
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
|
+
|
|
15
|
+
## 82.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`e481e48b7f35f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e481e48b7f35f) -
|
|
20
|
+
Cleaned up platform_editor_ai_aifc_listitem_indentation_fix experiment.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
3
26
|
## 82.0.0
|
|
4
27
|
|
|
5
28
|
### Major Changes
|
|
@@ -1914,14 +1914,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1914
1914
|
param: 'isEnabled',
|
|
1915
1915
|
defaultValue: false
|
|
1916
1916
|
}),
|
|
1917
|
-
// Added 2026-04-02
|
|
1918
|
-
platform_editor_ai_aifc_listitem_indentation_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1919
|
-
productKeys: {
|
|
1920
|
-
confluence: 'platform_editor_ai_aifc_listitem_indentation_fix'
|
|
1921
|
-
},
|
|
1922
|
-
param: 'isEnabled',
|
|
1923
|
-
defaultValue: false
|
|
1924
|
-
}),
|
|
1925
1917
|
// Added 2026-04-09
|
|
1926
1918
|
platform_editor_fix_selection_wrapped_media_embed: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1927
1919
|
productKeys: {
|
|
@@ -2133,6 +2125,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2133
2125
|
param: 'isEnabled',
|
|
2134
2126
|
defaultValue: false
|
|
2135
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
|
+
}),
|
|
2136
2136
|
// Added 2026-04-30
|
|
2137
2137
|
platform_editor_insert_menu_ai: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2138
2138
|
productKeys: {
|
|
@@ -1908,14 +1908,6 @@ export const editorExperimentsConfig = {
|
|
|
1908
1908
|
param: 'isEnabled',
|
|
1909
1909
|
defaultValue: false
|
|
1910
1910
|
}),
|
|
1911
|
-
// Added 2026-04-02
|
|
1912
|
-
platform_editor_ai_aifc_listitem_indentation_fix: createBooleanExperiment({
|
|
1913
|
-
productKeys: {
|
|
1914
|
-
confluence: 'platform_editor_ai_aifc_listitem_indentation_fix'
|
|
1915
|
-
},
|
|
1916
|
-
param: 'isEnabled',
|
|
1917
|
-
defaultValue: false
|
|
1918
|
-
}),
|
|
1919
1911
|
// Added 2026-04-09
|
|
1920
1912
|
platform_editor_fix_selection_wrapped_media_embed: createBooleanExperiment({
|
|
1921
1913
|
productKeys: {
|
|
@@ -2127,6 +2119,14 @@ export const editorExperimentsConfig = {
|
|
|
2127
2119
|
param: 'isEnabled',
|
|
2128
2120
|
defaultValue: false
|
|
2129
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
|
+
}),
|
|
2130
2130
|
// Added 2026-04-30
|
|
2131
2131
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2132
2132
|
productKeys: {
|
|
@@ -1908,14 +1908,6 @@ export var editorExperimentsConfig = {
|
|
|
1908
1908
|
param: 'isEnabled',
|
|
1909
1909
|
defaultValue: false
|
|
1910
1910
|
}),
|
|
1911
|
-
// Added 2026-04-02
|
|
1912
|
-
platform_editor_ai_aifc_listitem_indentation_fix: createBooleanExperiment({
|
|
1913
|
-
productKeys: {
|
|
1914
|
-
confluence: 'platform_editor_ai_aifc_listitem_indentation_fix'
|
|
1915
|
-
},
|
|
1916
|
-
param: 'isEnabled',
|
|
1917
|
-
defaultValue: false
|
|
1918
|
-
}),
|
|
1919
1911
|
// Added 2026-04-09
|
|
1920
1912
|
platform_editor_fix_selection_wrapped_media_embed: createBooleanExperiment({
|
|
1921
1913
|
productKeys: {
|
|
@@ -2127,6 +2119,14 @@ export var editorExperimentsConfig = {
|
|
|
2127
2119
|
param: 'isEnabled',
|
|
2128
2120
|
defaultValue: false
|
|
2129
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
|
+
}),
|
|
2130
2130
|
// Added 2026-04-30
|
|
2131
2131
|
platform_editor_insert_menu_ai: createBooleanExperiment({
|
|
2132
2132
|
productKeys: {
|
|
@@ -506,12 +506,6 @@ export declare const editorExperimentsConfig: {
|
|
|
506
506
|
productKeys?: ProductKeys;
|
|
507
507
|
typeGuard: IsBooleanType;
|
|
508
508
|
};
|
|
509
|
-
platform_editor_ai_aifc_listitem_indentation_fix: {
|
|
510
|
-
defaultValue: boolean;
|
|
511
|
-
param: string;
|
|
512
|
-
productKeys?: ProductKeys;
|
|
513
|
-
typeGuard: IsBooleanType;
|
|
514
|
-
};
|
|
515
509
|
platform_editor_lovability_distribute_column_fix: {
|
|
516
510
|
defaultValue: boolean;
|
|
517
511
|
param: string;
|
|
@@ -1537,6 +1531,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1537
1531
|
productKeys?: ProductKeys;
|
|
1538
1532
|
typeGuard: IsBooleanType;
|
|
1539
1533
|
};
|
|
1534
|
+
platform_editor_ai_tablecell_localids: {
|
|
1535
|
+
defaultValue: boolean;
|
|
1536
|
+
param: string;
|
|
1537
|
+
productKeys?: ProductKeys;
|
|
1538
|
+
typeGuard: IsBooleanType;
|
|
1539
|
+
};
|
|
1540
1540
|
platform_sl_fix_cache_unresolved: {
|
|
1541
1541
|
defaultValue: boolean;
|
|
1542
1542
|
param: string;
|
|
@@ -506,12 +506,6 @@ export declare const editorExperimentsConfig: {
|
|
|
506
506
|
productKeys?: ProductKeys;
|
|
507
507
|
typeGuard: IsBooleanType;
|
|
508
508
|
};
|
|
509
|
-
platform_editor_ai_aifc_listitem_indentation_fix: {
|
|
510
|
-
defaultValue: boolean;
|
|
511
|
-
param: string;
|
|
512
|
-
productKeys?: ProductKeys;
|
|
513
|
-
typeGuard: IsBooleanType;
|
|
514
|
-
};
|
|
515
509
|
platform_editor_lovability_distribute_column_fix: {
|
|
516
510
|
defaultValue: boolean;
|
|
517
511
|
param: string;
|
|
@@ -1537,6 +1531,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1537
1531
|
productKeys?: ProductKeys;
|
|
1538
1532
|
typeGuard: IsBooleanType;
|
|
1539
1533
|
};
|
|
1534
|
+
platform_editor_ai_tablecell_localids: {
|
|
1535
|
+
defaultValue: boolean;
|
|
1536
|
+
param: string;
|
|
1537
|
+
productKeys?: ProductKeys;
|
|
1538
|
+
typeGuard: IsBooleanType;
|
|
1539
|
+
};
|
|
1540
1540
|
platform_sl_fix_cache_unresolved: {
|
|
1541
1541
|
defaultValue: boolean;
|
|
1542
1542
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "82.
|
|
3
|
+
"version": "82.2.0",
|
|
4
4
|
"description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.7.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
|
-
"@atlaskit/react-ufo": "^
|
|
38
|
+
"@atlaskit/react-ufo": "^6.0.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"platform-feature-flags": {
|