@atlaskit/tmp-editor-statsig 135.4.0 → 135.6.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,20 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 135.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`c1bfdbcc75ef2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c1bfdbcc75ef2) -
8
+ Add a floating table of contents experiment that provides a 24px scroll offset for headings in the
9
+ editor and renderer.
10
+
11
+ ## 135.5.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`90510b2e6e5af`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90510b2e6e5af) -
16
+ Prevent nested renderer tables from incorrectly using content-width mode
17
+
3
18
  ## 135.4.0
4
19
 
5
20
  ### Minor Changes
@@ -1216,6 +1216,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1216
1216
  param: 'isEnabled',
1217
1217
  defaultValue: false
1218
1218
  }),
1219
+ // Added 2026-07-23
1220
+ platform_editor_floating_toc: (0, _experimentBuilders.createBooleanExperiment)({
1221
+ productKeys: {
1222
+ confluence: 'platform_editor_floating_toc'
1223
+ },
1224
+ param: 'isEnabled',
1225
+ defaultValue: false
1226
+ }),
1219
1227
  // Added 2026-02-25
1220
1228
  platform_editor_expand_paste_in_comment_editor: (0, _experimentBuilders.createBooleanExperiment)({
1221
1229
  productKeys: {
@@ -1801,6 +1809,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1801
1809
  param: 'isEnabled',
1802
1810
  defaultValue: false
1803
1811
  }),
1812
+ // Added 2026-07-28
1813
+ platform_editor_table_nested_content_mode_fix: (0, _experimentBuilders.createBooleanExperiment)({
1814
+ productKeys: {
1815
+ confluence: 'platform_editor_table_nested_content_mode_fix'
1816
+ },
1817
+ param: 'isEnabled',
1818
+ defaultValue: false
1819
+ }),
1804
1820
  platform_editor_table_fit_to_content_on_demand: (0, _experimentBuilders.createBooleanExperiment)({
1805
1821
  productKeys: {
1806
1822
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -1210,6 +1210,14 @@ export const editorExperimentsConfig = {
1210
1210
  param: 'isEnabled',
1211
1211
  defaultValue: false
1212
1212
  }),
1213
+ // Added 2026-07-23
1214
+ platform_editor_floating_toc: createBooleanExperiment({
1215
+ productKeys: {
1216
+ confluence: 'platform_editor_floating_toc'
1217
+ },
1218
+ param: 'isEnabled',
1219
+ defaultValue: false
1220
+ }),
1213
1221
  // Added 2026-02-25
1214
1222
  platform_editor_expand_paste_in_comment_editor: createBooleanExperiment({
1215
1223
  productKeys: {
@@ -1795,6 +1803,14 @@ export const editorExperimentsConfig = {
1795
1803
  param: 'isEnabled',
1796
1804
  defaultValue: false
1797
1805
  }),
1806
+ // Added 2026-07-28
1807
+ platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
1808
+ productKeys: {
1809
+ confluence: 'platform_editor_table_nested_content_mode_fix'
1810
+ },
1811
+ param: 'isEnabled',
1812
+ defaultValue: false
1813
+ }),
1798
1814
  platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
1799
1815
  productKeys: {
1800
1816
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -1210,6 +1210,14 @@ export var editorExperimentsConfig = {
1210
1210
  param: 'isEnabled',
1211
1211
  defaultValue: false
1212
1212
  }),
1213
+ // Added 2026-07-23
1214
+ platform_editor_floating_toc: createBooleanExperiment({
1215
+ productKeys: {
1216
+ confluence: 'platform_editor_floating_toc'
1217
+ },
1218
+ param: 'isEnabled',
1219
+ defaultValue: false
1220
+ }),
1213
1221
  // Added 2026-02-25
1214
1222
  platform_editor_expand_paste_in_comment_editor: createBooleanExperiment({
1215
1223
  productKeys: {
@@ -1795,6 +1803,14 @@ export var editorExperimentsConfig = {
1795
1803
  param: 'isEnabled',
1796
1804
  defaultValue: false
1797
1805
  }),
1806
+ // Added 2026-07-28
1807
+ platform_editor_table_nested_content_mode_fix: createBooleanExperiment({
1808
+ productKeys: {
1809
+ confluence: 'platform_editor_table_nested_content_mode_fix'
1810
+ },
1811
+ param: 'isEnabled',
1812
+ defaultValue: false
1813
+ }),
1798
1814
  platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
1799
1815
  productKeys: {
1800
1816
  confluence: 'platform_editor_table_fit_to_content_on_demand'
@@ -191,6 +191,12 @@ export declare const editorExperimentsConfig: {
191
191
  productKeys?: ProductKeys;
192
192
  typeGuard: IsBooleanType;
193
193
  };
194
+ platform_editor_floating_toc: {
195
+ defaultValue: boolean;
196
+ param: string;
197
+ productKeys?: ProductKeys;
198
+ typeGuard: IsBooleanType;
199
+ };
194
200
  cc_fix_hydration_ttvc: {
195
201
  defaultValue: boolean;
196
202
  param: string;
@@ -1401,6 +1407,12 @@ export declare const editorExperimentsConfig: {
1401
1407
  productKeys?: ProductKeys;
1402
1408
  typeGuard: IsBooleanType;
1403
1409
  };
1410
+ platform_editor_table_nested_content_mode_fix: {
1411
+ defaultValue: boolean;
1412
+ param: string;
1413
+ productKeys?: ProductKeys;
1414
+ typeGuard: IsBooleanType;
1415
+ };
1404
1416
  platform_editor_table_fit_to_content_on_demand: {
1405
1417
  defaultValue: boolean;
1406
1418
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "135.4.0",
3
+ "version": "135.6.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",