@atlaskit/tmp-editor-statsig 72.1.0 → 72.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,26 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 72.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`e790234874a2a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e790234874a2a) -
8
+ [ux] The page selector dropdown in the "Create Confluence page comment" message action was not
9
+ stretching to fill the available width. The fix wraps the ConfluencePageSelector in a
10
+ MaybeContainer component that, when the platform_rovo_page_comment_selector_full_width experiment
11
+ is enabled, applies flexGrow: 1 to the wrapper box — causing the selector to expand and fill the
12
+ remaining horizontal space in its Inline container.
13
+ - [`7f1df88caac2a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f1df88caac2a) -
14
+ Add active cell highlight to table cells - highlights the current table cell when cursor is inside
15
+ it
16
+
17
+ ## 72.1.1
18
+
19
+ ### Patch Changes
20
+
21
+ - [`387b9066cd2c2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/387b9066cd2c2) -
22
+ Update CWR modal illustration size behind cwr-modal-ui-refresh experiment
23
+
3
24
  ## 72.1.0
4
25
 
5
26
  ### Minor Changes
@@ -53,5 +53,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
53
53
  platform_editor_preserve_node_identity: false,
54
54
  platform_editor_ai_rename_add_polish: false,
55
55
  platform_editor_table_fit_to_content_on_demand: false,
56
- platform_editor_table_fit_to_content_auto_convert: false
56
+ platform_editor_table_fit_to_content_auto_convert: false,
57
+ platform_editor_table_q4_loveability: false
57
58
  };
@@ -1316,6 +1316,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1316
1316
  param: 'isEnabled',
1317
1317
  defaultValue: false
1318
1318
  }),
1319
+ // Added 2026-04-24
1320
+ platform_rovo_page_comment_selector_full_width: (0, _experimentBuilders.createBooleanExperiment)({
1321
+ productKeys: {
1322
+ confluence: 'platform_rovo_page_comment_selector_full_width'
1323
+ },
1324
+ param: 'isEnabled',
1325
+ defaultValue: false
1326
+ }),
1319
1327
  // Added 2026-02-12
1320
1328
  platform_editor_bodiedextension_layoutshift_fix: (0, _experimentBuilders.createBooleanExperiment)({
1321
1329
  productKeys: {
@@ -1389,6 +1397,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1389
1397
  param: 'isEnabled',
1390
1398
  defaultValue: false
1391
1399
  }),
1400
+ // Added 2026-04-24
1401
+ 'cwr-modal-ui-refresh': (0, _experimentBuilders.createBooleanExperiment)({
1402
+ productKeys: {
1403
+ confluence: 'cwr-modal-ui-refresh'
1404
+ },
1405
+ param: 'isEnabled',
1406
+ defaultValue: false
1407
+ }),
1392
1408
  // Added 2026-02-12
1393
1409
  platform_editor_a11y_escape_link_dialog: (0, _experimentBuilders.createBooleanExperiment)({
1394
1410
  productKeys: {
@@ -1977,6 +1993,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1977
1993
  param: 'isEnabled',
1978
1994
  defaultValue: false
1979
1995
  }),
1996
+ platform_editor_table_q4_loveability: (0, _experimentBuilders.createBooleanExperiment)({
1997
+ productKeys: {
1998
+ confluence: 'platform_editor_table_q4_loveability',
1999
+ jira: 'platform_editor_table_q4_loveability'
2000
+ },
2001
+ param: 'isEnabled',
2002
+ defaultValue: false
2003
+ }),
1980
2004
  // Added 2026-04-14
1981
2005
  platform_editor_ai_rename_add_polish: (0, _experimentBuilders.createBooleanExperiment)({
1982
2006
  productKeys: {
@@ -47,5 +47,6 @@ export const testBooleanOverrides = {
47
47
  platform_editor_preserve_node_identity: false,
48
48
  platform_editor_ai_rename_add_polish: false,
49
49
  platform_editor_table_fit_to_content_on_demand: false,
50
- platform_editor_table_fit_to_content_auto_convert: false
50
+ platform_editor_table_fit_to_content_auto_convert: false,
51
+ platform_editor_table_q4_loveability: false
51
52
  };
@@ -1310,6 +1310,14 @@ export const editorExperimentsConfig = {
1310
1310
  param: 'isEnabled',
1311
1311
  defaultValue: false
1312
1312
  }),
1313
+ // Added 2026-04-24
1314
+ platform_rovo_page_comment_selector_full_width: createBooleanExperiment({
1315
+ productKeys: {
1316
+ confluence: 'platform_rovo_page_comment_selector_full_width'
1317
+ },
1318
+ param: 'isEnabled',
1319
+ defaultValue: false
1320
+ }),
1313
1321
  // Added 2026-02-12
1314
1322
  platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
1315
1323
  productKeys: {
@@ -1383,6 +1391,14 @@ export const editorExperimentsConfig = {
1383
1391
  param: 'isEnabled',
1384
1392
  defaultValue: false
1385
1393
  }),
1394
+ // Added 2026-04-24
1395
+ 'cwr-modal-ui-refresh': createBooleanExperiment({
1396
+ productKeys: {
1397
+ confluence: 'cwr-modal-ui-refresh'
1398
+ },
1399
+ param: 'isEnabled',
1400
+ defaultValue: false
1401
+ }),
1386
1402
  // Added 2026-02-12
1387
1403
  platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
1388
1404
  productKeys: {
@@ -1971,6 +1987,14 @@ export const editorExperimentsConfig = {
1971
1987
  param: 'isEnabled',
1972
1988
  defaultValue: false
1973
1989
  }),
1990
+ platform_editor_table_q4_loveability: createBooleanExperiment({
1991
+ productKeys: {
1992
+ confluence: 'platform_editor_table_q4_loveability',
1993
+ jira: 'platform_editor_table_q4_loveability'
1994
+ },
1995
+ param: 'isEnabled',
1996
+ defaultValue: false
1997
+ }),
1974
1998
  // Added 2026-04-14
1975
1999
  platform_editor_ai_rename_add_polish: createBooleanExperiment({
1976
2000
  productKeys: {
@@ -47,5 +47,6 @@ export var testBooleanOverrides = {
47
47
  platform_editor_preserve_node_identity: false,
48
48
  platform_editor_ai_rename_add_polish: false,
49
49
  platform_editor_table_fit_to_content_on_demand: false,
50
- platform_editor_table_fit_to_content_auto_convert: false
50
+ platform_editor_table_fit_to_content_auto_convert: false,
51
+ platform_editor_table_q4_loveability: false
51
52
  };
@@ -1310,6 +1310,14 @@ export var editorExperimentsConfig = {
1310
1310
  param: 'isEnabled',
1311
1311
  defaultValue: false
1312
1312
  }),
1313
+ // Added 2026-04-24
1314
+ platform_rovo_page_comment_selector_full_width: createBooleanExperiment({
1315
+ productKeys: {
1316
+ confluence: 'platform_rovo_page_comment_selector_full_width'
1317
+ },
1318
+ param: 'isEnabled',
1319
+ defaultValue: false
1320
+ }),
1313
1321
  // Added 2026-02-12
1314
1322
  platform_editor_bodiedextension_layoutshift_fix: createBooleanExperiment({
1315
1323
  productKeys: {
@@ -1383,6 +1391,14 @@ export var editorExperimentsConfig = {
1383
1391
  param: 'isEnabled',
1384
1392
  defaultValue: false
1385
1393
  }),
1394
+ // Added 2026-04-24
1395
+ 'cwr-modal-ui-refresh': createBooleanExperiment({
1396
+ productKeys: {
1397
+ confluence: 'cwr-modal-ui-refresh'
1398
+ },
1399
+ param: 'isEnabled',
1400
+ defaultValue: false
1401
+ }),
1386
1402
  // Added 2026-02-12
1387
1403
  platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
1388
1404
  productKeys: {
@@ -1971,6 +1987,14 @@ export var editorExperimentsConfig = {
1971
1987
  param: 'isEnabled',
1972
1988
  defaultValue: false
1973
1989
  }),
1990
+ platform_editor_table_q4_loveability: createBooleanExperiment({
1991
+ productKeys: {
1992
+ confluence: 'platform_editor_table_q4_loveability',
1993
+ jira: 'platform_editor_table_q4_loveability'
1994
+ },
1995
+ param: 'isEnabled',
1996
+ defaultValue: false
1997
+ }),
1974
1998
  // Added 2026-04-14
1975
1999
  platform_editor_ai_rename_add_polish: createBooleanExperiment({
1976
2000
  productKeys: {
@@ -972,6 +972,12 @@ export declare const editorExperimentsConfig: {
972
972
  productKeys?: ProductKeys;
973
973
  typeGuard: IsBooleanType;
974
974
  };
975
+ platform_rovo_page_comment_selector_full_width: {
976
+ defaultValue: boolean;
977
+ param: string;
978
+ productKeys?: ProductKeys;
979
+ typeGuard: IsBooleanType;
980
+ };
975
981
  platform_editor_bodiedextension_layoutshift_fix: {
976
982
  defaultValue: boolean;
977
983
  param: string;
@@ -1056,6 +1062,12 @@ export declare const editorExperimentsConfig: {
1056
1062
  productKeys?: ProductKeys;
1057
1063
  typeGuard: IsBooleanType;
1058
1064
  };
1065
+ 'cwr-modal-ui-refresh': {
1066
+ defaultValue: boolean;
1067
+ param: string;
1068
+ productKeys?: ProductKeys;
1069
+ typeGuard: IsBooleanType;
1070
+ };
1059
1071
  platform_editor_a11y_escape_link_dialog: {
1060
1072
  defaultValue: boolean;
1061
1073
  param: string;
@@ -1446,6 +1458,12 @@ export declare const editorExperimentsConfig: {
1446
1458
  productKeys?: ProductKeys;
1447
1459
  typeGuard: IsBooleanType;
1448
1460
  };
1461
+ platform_editor_table_q4_loveability: {
1462
+ defaultValue: boolean;
1463
+ param: string;
1464
+ productKeys?: ProductKeys;
1465
+ typeGuard: IsBooleanType;
1466
+ };
1449
1467
  platform_editor_ai_rename_add_polish: {
1450
1468
  defaultValue: boolean;
1451
1469
  param: string;
@@ -972,6 +972,12 @@ export declare const editorExperimentsConfig: {
972
972
  productKeys?: ProductKeys;
973
973
  typeGuard: IsBooleanType;
974
974
  };
975
+ platform_rovo_page_comment_selector_full_width: {
976
+ defaultValue: boolean;
977
+ param: string;
978
+ productKeys?: ProductKeys;
979
+ typeGuard: IsBooleanType;
980
+ };
975
981
  platform_editor_bodiedextension_layoutshift_fix: {
976
982
  defaultValue: boolean;
977
983
  param: string;
@@ -1056,6 +1062,12 @@ export declare const editorExperimentsConfig: {
1056
1062
  productKeys?: ProductKeys;
1057
1063
  typeGuard: IsBooleanType;
1058
1064
  };
1065
+ 'cwr-modal-ui-refresh': {
1066
+ defaultValue: boolean;
1067
+ param: string;
1068
+ productKeys?: ProductKeys;
1069
+ typeGuard: IsBooleanType;
1070
+ };
1059
1071
  platform_editor_a11y_escape_link_dialog: {
1060
1072
  defaultValue: boolean;
1061
1073
  param: string;
@@ -1446,6 +1458,12 @@ export declare const editorExperimentsConfig: {
1446
1458
  productKeys?: ProductKeys;
1447
1459
  typeGuard: IsBooleanType;
1448
1460
  };
1461
+ platform_editor_table_q4_loveability: {
1462
+ defaultValue: boolean;
1463
+ param: string;
1464
+ productKeys?: ProductKeys;
1465
+ typeGuard: IsBooleanType;
1466
+ };
1449
1467
  platform_editor_ai_rename_add_polish: {
1450
1468
  defaultValue: boolean;
1451
1469
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "72.1.0",
3
+ "version": "72.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",