@atlaskit/tmp-editor-statsig 82.1.0 → 82.3.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,33 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 82.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`8aa63d737699c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8aa63d737699c) -
8
+ Hide create with rovo content type picker pills for site disabled content types
9
+ - [`ab6159c301de9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ab6159c301de9) -
10
+ [ux] Change the fail safe for when typeSettings failed to return for whatever reason to be only
11
+ allow the AIFC finalized flow to create pages
12
+
13
+ Add the `aifc_space_typesettings` experiment to the typed tmp editor Statsig config.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+
19
+ ## 82.2.0
20
+
21
+ ### Minor Changes
22
+
23
+ - [`b284d7fc05568`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b284d7fc05568) -
24
+ Fix tableCell/tableHeader nodes in middle rows of newly-inserted tables missing localId. The
25
+ localId plugin's appendTransaction was keyed by PMNode identity, which incorrectly overwrote
26
+ positions when the same node reference legitimately occupied multiple document positions (as
27
+ createTable from prosemirror-utils does by reusing cell node objects across non-header rows). The
28
+ plugin now tracks all positions per node identity and assigns a unique localId per position. Gated
29
+ behind the `platform_editor_ai_tablecell_localids` experiment.
30
+
3
31
  ## 82.1.0
4
32
 
5
33
  ### Minor Changes
@@ -58,6 +58,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
58
58
  param: 'isEnabled',
59
59
  defaultValue: false
60
60
  }),
61
+ // Added 2026-05-08
62
+ aifc_space_typesettings: (0, _experimentBuilders.createBooleanExperiment)({
63
+ productKeys: {
64
+ confluence: 'aifc_space_typesettings'
65
+ },
66
+ param: 'isEnabled',
67
+ defaultValue: false
68
+ }),
61
69
  // Added 22-12-2025
62
70
  confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
63
71
  productKeys: {
@@ -1386,6 +1394,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1386
1394
  param: 'isEnabled',
1387
1395
  defaultValue: false
1388
1396
  }),
1397
+ // Added 2026-05-11
1398
+ cfe_cwr_outcome_picker_respect_site_settings: (0, _experimentBuilders.createBooleanExperiment)({
1399
+ productKeys: {
1400
+ confluence: 'cfe_cwr_outcome_picker_respect_site_settings'
1401
+ },
1402
+ param: 'isEnabled',
1403
+ defaultValue: false
1404
+ }),
1389
1405
  // Added 2026-04-01
1390
1406
  confluence_fe_cwr_outcome_picker_prompt_autoselect: (0, _experimentBuilders.createBooleanExperiment)({
1391
1407
  productKeys: {
@@ -2125,6 +2141,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2125
2141
  param: 'isEnabled',
2126
2142
  defaultValue: false
2127
2143
  }),
2144
+ // Added 2026-05-20
2145
+ platform_editor_ai_tablecell_localids: (0, _experimentBuilders.createBooleanExperiment)({
2146
+ productKeys: {
2147
+ confluence: 'platform_editor_ai_tablecell_localids'
2148
+ },
2149
+ param: 'isEnabled',
2150
+ defaultValue: false
2151
+ }),
2128
2152
  // Added 2026-04-30
2129
2153
  platform_editor_insert_menu_ai: (0, _experimentBuilders.createBooleanExperiment)({
2130
2154
  productKeys: {
@@ -52,6 +52,14 @@ export const editorExperimentsConfig = {
52
52
  param: 'isEnabled',
53
53
  defaultValue: false
54
54
  }),
55
+ // Added 2026-05-08
56
+ aifc_space_typesettings: createBooleanExperiment({
57
+ productKeys: {
58
+ confluence: 'aifc_space_typesettings'
59
+ },
60
+ param: 'isEnabled',
61
+ defaultValue: false
62
+ }),
55
63
  // Added 22-12-2025
56
64
  confluence_load_editor_title_on_transition: createBooleanExperiment({
57
65
  productKeys: {
@@ -1380,6 +1388,14 @@ export const editorExperimentsConfig = {
1380
1388
  param: 'isEnabled',
1381
1389
  defaultValue: false
1382
1390
  }),
1391
+ // Added 2026-05-11
1392
+ cfe_cwr_outcome_picker_respect_site_settings: createBooleanExperiment({
1393
+ productKeys: {
1394
+ confluence: 'cfe_cwr_outcome_picker_respect_site_settings'
1395
+ },
1396
+ param: 'isEnabled',
1397
+ defaultValue: false
1398
+ }),
1383
1399
  // Added 2026-04-01
1384
1400
  confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
1385
1401
  productKeys: {
@@ -2119,6 +2135,14 @@ export const editorExperimentsConfig = {
2119
2135
  param: 'isEnabled',
2120
2136
  defaultValue: false
2121
2137
  }),
2138
+ // Added 2026-05-20
2139
+ platform_editor_ai_tablecell_localids: createBooleanExperiment({
2140
+ productKeys: {
2141
+ confluence: 'platform_editor_ai_tablecell_localids'
2142
+ },
2143
+ param: 'isEnabled',
2144
+ defaultValue: false
2145
+ }),
2122
2146
  // Added 2026-04-30
2123
2147
  platform_editor_insert_menu_ai: createBooleanExperiment({
2124
2148
  productKeys: {
@@ -52,6 +52,14 @@ export var editorExperimentsConfig = {
52
52
  param: 'isEnabled',
53
53
  defaultValue: false
54
54
  }),
55
+ // Added 2026-05-08
56
+ aifc_space_typesettings: createBooleanExperiment({
57
+ productKeys: {
58
+ confluence: 'aifc_space_typesettings'
59
+ },
60
+ param: 'isEnabled',
61
+ defaultValue: false
62
+ }),
55
63
  // Added 22-12-2025
56
64
  confluence_load_editor_title_on_transition: createBooleanExperiment({
57
65
  productKeys: {
@@ -1380,6 +1388,14 @@ export var editorExperimentsConfig = {
1380
1388
  param: 'isEnabled',
1381
1389
  defaultValue: false
1382
1390
  }),
1391
+ // Added 2026-05-11
1392
+ cfe_cwr_outcome_picker_respect_site_settings: createBooleanExperiment({
1393
+ productKeys: {
1394
+ confluence: 'cfe_cwr_outcome_picker_respect_site_settings'
1395
+ },
1396
+ param: 'isEnabled',
1397
+ defaultValue: false
1398
+ }),
1383
1399
  // Added 2026-04-01
1384
1400
  confluence_fe_cwr_outcome_picker_prompt_autoselect: createBooleanExperiment({
1385
1401
  productKeys: {
@@ -2119,6 +2135,14 @@ export var editorExperimentsConfig = {
2119
2135
  param: 'isEnabled',
2120
2136
  defaultValue: false
2121
2137
  }),
2138
+ // Added 2026-05-20
2139
+ platform_editor_ai_tablecell_localids: createBooleanExperiment({
2140
+ productKeys: {
2141
+ confluence: 'platform_editor_ai_tablecell_localids'
2142
+ },
2143
+ param: 'isEnabled',
2144
+ defaultValue: false
2145
+ }),
2122
2146
  // Added 2026-04-30
2123
2147
  platform_editor_insert_menu_ai: createBooleanExperiment({
2124
2148
  productKeys: {
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
45
45
  productKeys?: ProductKeys;
46
46
  typeGuard: IsBooleanType;
47
47
  };
48
+ aifc_space_typesettings: {
49
+ defaultValue: boolean;
50
+ param: string;
51
+ productKeys?: ProductKeys;
52
+ typeGuard: IsBooleanType;
53
+ };
48
54
  'agent-managed_blocks_mvp': {
49
55
  defaultValue: boolean;
50
56
  param: string;
@@ -1069,6 +1075,12 @@ export declare const editorExperimentsConfig: {
1069
1075
  productKeys?: ProductKeys;
1070
1076
  typeGuard: IsBooleanType;
1071
1077
  };
1078
+ cfe_cwr_outcome_picker_respect_site_settings: {
1079
+ defaultValue: boolean;
1080
+ param: string;
1081
+ productKeys?: ProductKeys;
1082
+ typeGuard: IsBooleanType;
1083
+ };
1072
1084
  confluence_fe_cwr_outcome_picker_prompt_autoselect: {
1073
1085
  defaultValue: boolean;
1074
1086
  param: string;
@@ -1531,6 +1543,12 @@ export declare const editorExperimentsConfig: {
1531
1543
  productKeys?: ProductKeys;
1532
1544
  typeGuard: IsBooleanType;
1533
1545
  };
1546
+ platform_editor_ai_tablecell_localids: {
1547
+ defaultValue: boolean;
1548
+ param: string;
1549
+ productKeys?: ProductKeys;
1550
+ typeGuard: IsBooleanType;
1551
+ };
1534
1552
  platform_sl_fix_cache_unresolved: {
1535
1553
  defaultValue: boolean;
1536
1554
  param: string;
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
45
45
  productKeys?: ProductKeys;
46
46
  typeGuard: IsBooleanType;
47
47
  };
48
+ aifc_space_typesettings: {
49
+ defaultValue: boolean;
50
+ param: string;
51
+ productKeys?: ProductKeys;
52
+ typeGuard: IsBooleanType;
53
+ };
48
54
  'agent-managed_blocks_mvp': {
49
55
  defaultValue: boolean;
50
56
  param: string;
@@ -1069,6 +1075,12 @@ export declare const editorExperimentsConfig: {
1069
1075
  productKeys?: ProductKeys;
1070
1076
  typeGuard: IsBooleanType;
1071
1077
  };
1078
+ cfe_cwr_outcome_picker_respect_site_settings: {
1079
+ defaultValue: boolean;
1080
+ param: string;
1081
+ productKeys?: ProductKeys;
1082
+ typeGuard: IsBooleanType;
1083
+ };
1072
1084
  confluence_fe_cwr_outcome_picker_prompt_autoselect: {
1073
1085
  defaultValue: boolean;
1074
1086
  param: string;
@@ -1531,6 +1543,12 @@ export declare const editorExperimentsConfig: {
1531
1543
  productKeys?: ProductKeys;
1532
1544
  typeGuard: IsBooleanType;
1533
1545
  };
1546
+ platform_editor_ai_tablecell_localids: {
1547
+ defaultValue: boolean;
1548
+ param: string;
1549
+ productKeys?: ProductKeys;
1550
+ typeGuard: IsBooleanType;
1551
+ };
1534
1552
  platform_sl_fix_cache_unresolved: {
1535
1553
  defaultValue: boolean;
1536
1554
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "82.1.0",
3
+ "version": "82.3.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",
@@ -44,7 +44,8 @@
44
44
  }
45
45
  },
46
46
  "devDependencies": {
47
- "@atlassian/feature-flags-test-utils": "^1.1.0"
47
+ "@atlassian/feature-flags-test-utils": "^1.1.0",
48
+ "react": "^18.2.0"
48
49
  },
49
50
  "peerDependencies": {
50
51
  "react": "^18.2.0"