@atlaskit/tmp-editor-statsig 135.5.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,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 135.5.0
|
|
4
12
|
|
|
5
13
|
### 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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
package/package.json
CHANGED