@atlaskit/tmp-editor-statsig 135.7.0 → 135.9.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,27 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 135.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`109c3998554f2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/109c3998554f2) -
8
+ Add SSR-safe, experiment-gated CSS overflow shadows for editor tables and keep renderer shadows
9
+ within table bounds when sticky scrollbars are present.
10
+
11
+ ## 135.8.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`d98f609f1fc23`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d98f609f1fc23) -
16
+ Register the platform_editor_nest_expand_in_panel boolean experiment used to gate the
17
+ expand-in-panel nesting scenario.
18
+ - [`9425f3fa081e4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9425f3fa081e4) -
19
+ Fix nested content selection inside layouts
20
+ - [`09b86875f59c3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/09b86875f59c3) -
21
+ Add cc_maui_polish_changes_batch_3 and cc_maui_polish_changes_batch_4 editor experiment gates
22
+ - [`3cfefe56db017`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3cfefe56db017) -
23
+ Close the Confluence Remix chooser when a remix is cancelled
24
+
3
25
  ## 135.7.0
4
26
 
5
27
  ### Minor Changes
@@ -24,6 +24,8 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
24
24
  'cc-maui-ai-edit-loading-experiment': true,
25
25
  cc_maui_polish_changes_batch_1: false,
26
26
  cc_maui_polish_changes_batch_2: false,
27
+ cc_maui_polish_changes_batch_3: false,
28
+ cc_maui_polish_changes_batch_4: false,
27
29
  social_proof_3p_unauth_block_exp: false,
28
30
  linking_platform_track_non_primary_3p_clicks: false,
29
31
  platform_sl_3p_preauth_better_hovercard: true,
@@ -46,6 +46,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
46
46
  param: 'isEnabled',
47
47
  defaultValue: false
48
48
  }),
49
+ // Added 2026-07-28
50
+ platform_editor_table_css_overflow_shadow: (0, _experimentBuilders.createBooleanExperiment)({
51
+ productKeys: {
52
+ confluence: 'platform_editor_table_css_overflow_shadow',
53
+ jira: 'platform_editor_table_css_overflow_shadow'
54
+ },
55
+ param: 'isEnabled',
56
+ defaultValue: false
57
+ }),
49
58
  // Added 2026-07-24
50
59
  platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
51
60
  productKeys: {
@@ -1474,6 +1483,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1474
1483
  param: 'isEnabled',
1475
1484
  defaultValue: false
1476
1485
  }),
1486
+ // Added 2026-07-29
1487
+ cc_maui_polish_changes_batch_3: (0, _experimentBuilders.createBooleanExperiment)({
1488
+ productKeys: {
1489
+ confluence: 'cc_maui_polish_changes_batch_3'
1490
+ },
1491
+ param: 'isEnabled',
1492
+ defaultValue: false
1493
+ }),
1494
+ // Added 2026-07-29
1495
+ cc_maui_polish_changes_batch_4: (0, _experimentBuilders.createBooleanExperiment)({
1496
+ productKeys: {
1497
+ confluence: 'cc_maui_polish_changes_batch_4'
1498
+ },
1499
+ param: 'isEnabled',
1500
+ defaultValue: false
1501
+ }),
1477
1502
  // Added 2026-03-05
1478
1503
  'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
1479
1504
  productKeys: {
@@ -1960,6 +1985,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1960
1985
  param: 'isEnabled',
1961
1986
  defaultValue: false
1962
1987
  }),
1988
+ // Added 2026-07-29
1989
+ platform_editor_layout_column_selection_fix: (0, _experimentBuilders.createBooleanExperiment)({
1990
+ productKeys: {
1991
+ confluence: 'platform_editor_layout_column_selection_fix',
1992
+ jira: 'platform_editor_layout_column_selection_fix'
1993
+ },
1994
+ param: 'isEnabled',
1995
+ defaultValue: false
1996
+ }),
1963
1997
  // Added 2026-06-15
1964
1998
  platform_editor_layout_column_valign_rendering: (0, _experimentBuilders.createBooleanExperiment)({
1965
1999
  productKeys: {
@@ -2284,6 +2318,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2284
2318
  param: 'isEnabled',
2285
2319
  defaultValue: false
2286
2320
  }),
2321
+ // Added 2026-07-24
2322
+ platform_editor_nest_expand_in_panel: (0, _experimentBuilders.createBooleanExperiment)({
2323
+ productKeys: {
2324
+ confluence: 'platform_editor_nest_expand_in_panel'
2325
+ },
2326
+ param: 'isEnabled',
2327
+ defaultValue: false
2328
+ }),
2287
2329
  // Added 2026-05-20
2288
2330
  platform_editor_default_toolbar_state: (0, _experimentBuilders.createBooleanExperiment)({
2289
2331
  productKeys: {
@@ -18,6 +18,8 @@ export const testBooleanOverrides = {
18
18
  'cc-maui-ai-edit-loading-experiment': true,
19
19
  cc_maui_polish_changes_batch_1: false,
20
20
  cc_maui_polish_changes_batch_2: false,
21
+ cc_maui_polish_changes_batch_3: false,
22
+ cc_maui_polish_changes_batch_4: false,
21
23
  social_proof_3p_unauth_block_exp: false,
22
24
  linking_platform_track_non_primary_3p_clicks: false,
23
25
  platform_sl_3p_preauth_better_hovercard: true,
@@ -40,6 +40,15 @@ export const editorExperimentsConfig = {
40
40
  param: 'isEnabled',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 2026-07-28
44
+ platform_editor_table_css_overflow_shadow: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'platform_editor_table_css_overflow_shadow',
47
+ jira: 'platform_editor_table_css_overflow_shadow'
48
+ },
49
+ param: 'isEnabled',
50
+ defaultValue: false
51
+ }),
43
52
  // Added 2026-07-24
44
53
  platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
45
54
  productKeys: {
@@ -1468,6 +1477,22 @@ export const editorExperimentsConfig = {
1468
1477
  param: 'isEnabled',
1469
1478
  defaultValue: false
1470
1479
  }),
1480
+ // Added 2026-07-29
1481
+ cc_maui_polish_changes_batch_3: createBooleanExperiment({
1482
+ productKeys: {
1483
+ confluence: 'cc_maui_polish_changes_batch_3'
1484
+ },
1485
+ param: 'isEnabled',
1486
+ defaultValue: false
1487
+ }),
1488
+ // Added 2026-07-29
1489
+ cc_maui_polish_changes_batch_4: createBooleanExperiment({
1490
+ productKeys: {
1491
+ confluence: 'cc_maui_polish_changes_batch_4'
1492
+ },
1493
+ param: 'isEnabled',
1494
+ defaultValue: false
1495
+ }),
1471
1496
  // Added 2026-03-05
1472
1497
  'cc-mui-slides-experiment': createBooleanExperiment({
1473
1498
  productKeys: {
@@ -1954,6 +1979,15 @@ export const editorExperimentsConfig = {
1954
1979
  param: 'isEnabled',
1955
1980
  defaultValue: false
1956
1981
  }),
1982
+ // Added 2026-07-29
1983
+ platform_editor_layout_column_selection_fix: createBooleanExperiment({
1984
+ productKeys: {
1985
+ confluence: 'platform_editor_layout_column_selection_fix',
1986
+ jira: 'platform_editor_layout_column_selection_fix'
1987
+ },
1988
+ param: 'isEnabled',
1989
+ defaultValue: false
1990
+ }),
1957
1991
  // Added 2026-06-15
1958
1992
  platform_editor_layout_column_valign_rendering: createBooleanExperiment({
1959
1993
  productKeys: {
@@ -2278,6 +2312,14 @@ export const editorExperimentsConfig = {
2278
2312
  param: 'isEnabled',
2279
2313
  defaultValue: false
2280
2314
  }),
2315
+ // Added 2026-07-24
2316
+ platform_editor_nest_expand_in_panel: createBooleanExperiment({
2317
+ productKeys: {
2318
+ confluence: 'platform_editor_nest_expand_in_panel'
2319
+ },
2320
+ param: 'isEnabled',
2321
+ defaultValue: false
2322
+ }),
2281
2323
  // Added 2026-05-20
2282
2324
  platform_editor_default_toolbar_state: createBooleanExperiment({
2283
2325
  productKeys: {
@@ -18,6 +18,8 @@ export var testBooleanOverrides = {
18
18
  'cc-maui-ai-edit-loading-experiment': true,
19
19
  cc_maui_polish_changes_batch_1: false,
20
20
  cc_maui_polish_changes_batch_2: false,
21
+ cc_maui_polish_changes_batch_3: false,
22
+ cc_maui_polish_changes_batch_4: false,
21
23
  social_proof_3p_unauth_block_exp: false,
22
24
  linking_platform_track_non_primary_3p_clicks: false,
23
25
  platform_sl_3p_preauth_better_hovercard: true,
@@ -40,6 +40,15 @@ export var editorExperimentsConfig = {
40
40
  param: 'isEnabled',
41
41
  defaultValue: false
42
42
  }),
43
+ // Added 2026-07-28
44
+ platform_editor_table_css_overflow_shadow: createBooleanExperiment({
45
+ productKeys: {
46
+ confluence: 'platform_editor_table_css_overflow_shadow',
47
+ jira: 'platform_editor_table_css_overflow_shadow'
48
+ },
49
+ param: 'isEnabled',
50
+ defaultValue: false
51
+ }),
43
52
  // Added 2026-07-24
44
53
  platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
45
54
  productKeys: {
@@ -1468,6 +1477,22 @@ export var editorExperimentsConfig = {
1468
1477
  param: 'isEnabled',
1469
1478
  defaultValue: false
1470
1479
  }),
1480
+ // Added 2026-07-29
1481
+ cc_maui_polish_changes_batch_3: createBooleanExperiment({
1482
+ productKeys: {
1483
+ confluence: 'cc_maui_polish_changes_batch_3'
1484
+ },
1485
+ param: 'isEnabled',
1486
+ defaultValue: false
1487
+ }),
1488
+ // Added 2026-07-29
1489
+ cc_maui_polish_changes_batch_4: createBooleanExperiment({
1490
+ productKeys: {
1491
+ confluence: 'cc_maui_polish_changes_batch_4'
1492
+ },
1493
+ param: 'isEnabled',
1494
+ defaultValue: false
1495
+ }),
1471
1496
  // Added 2026-03-05
1472
1497
  'cc-mui-slides-experiment': createBooleanExperiment({
1473
1498
  productKeys: {
@@ -1954,6 +1979,15 @@ export var editorExperimentsConfig = {
1954
1979
  param: 'isEnabled',
1955
1980
  defaultValue: false
1956
1981
  }),
1982
+ // Added 2026-07-29
1983
+ platform_editor_layout_column_selection_fix: createBooleanExperiment({
1984
+ productKeys: {
1985
+ confluence: 'platform_editor_layout_column_selection_fix',
1986
+ jira: 'platform_editor_layout_column_selection_fix'
1987
+ },
1988
+ param: 'isEnabled',
1989
+ defaultValue: false
1990
+ }),
1957
1991
  // Added 2026-06-15
1958
1992
  platform_editor_layout_column_valign_rendering: createBooleanExperiment({
1959
1993
  productKeys: {
@@ -2278,6 +2312,14 @@ export var editorExperimentsConfig = {
2278
2312
  param: 'isEnabled',
2279
2313
  defaultValue: false
2280
2314
  }),
2315
+ // Added 2026-07-24
2316
+ platform_editor_nest_expand_in_panel: createBooleanExperiment({
2317
+ productKeys: {
2318
+ confluence: 'platform_editor_nest_expand_in_panel'
2319
+ },
2320
+ param: 'isEnabled',
2321
+ defaultValue: false
2322
+ }),
2281
2323
  // Added 2026-05-20
2282
2324
  platform_editor_default_toolbar_state: createBooleanExperiment({
2283
2325
  productKeys: {
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
21
21
  * existing experiments.
22
22
  */
23
23
  export declare const editorExperimentsConfig: {
24
+ platform_editor_table_css_overflow_shadow: {
25
+ defaultValue: boolean;
26
+ param: string;
27
+ productKeys?: ProductKeys;
28
+ typeGuard: IsBooleanType;
29
+ };
24
30
  platform_editor_layout_column_delete_shortcut_fix: {
25
31
  defaultValue: boolean;
26
32
  param: string;
@@ -1028,6 +1034,12 @@ export declare const editorExperimentsConfig: {
1028
1034
  productKeys?: ProductKeys;
1029
1035
  typeGuard: IsBooleanType;
1030
1036
  };
1037
+ platform_editor_layout_column_selection_fix: {
1038
+ defaultValue: boolean;
1039
+ param: string;
1040
+ productKeys?: ProductKeys;
1041
+ typeGuard: IsBooleanType;
1042
+ };
1031
1043
  platform_editor_layout_column_valign_rendering: {
1032
1044
  defaultValue: boolean;
1033
1045
  param: string;
@@ -1124,6 +1136,18 @@ export declare const editorExperimentsConfig: {
1124
1136
  productKeys?: ProductKeys;
1125
1137
  typeGuard: IsBooleanType;
1126
1138
  };
1139
+ cc_maui_polish_changes_batch_3: {
1140
+ defaultValue: boolean;
1141
+ param: string;
1142
+ productKeys?: ProductKeys;
1143
+ typeGuard: IsBooleanType;
1144
+ };
1145
+ cc_maui_polish_changes_batch_4: {
1146
+ defaultValue: boolean;
1147
+ param: string;
1148
+ productKeys?: ProductKeys;
1149
+ typeGuard: IsBooleanType;
1150
+ };
1127
1151
  'cc-mui-slides-experiment': {
1128
1152
  defaultValue: boolean;
1129
1153
  param: string;
@@ -1690,6 +1714,12 @@ export declare const editorExperimentsConfig: {
1690
1714
  productKeys?: ProductKeys;
1691
1715
  typeGuard: IsBooleanType;
1692
1716
  };
1717
+ platform_editor_nest_expand_in_panel: {
1718
+ defaultValue: boolean;
1719
+ param: string;
1720
+ productKeys?: ProductKeys;
1721
+ typeGuard: IsBooleanType;
1722
+ };
1693
1723
  platform_rovo_support_create_inline_comment: {
1694
1724
  defaultValue: boolean;
1695
1725
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "135.7.0",
3
+ "version": "135.9.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",