@atlaskit/tmp-editor-statsig 133.0.0 → 133.1.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 133.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`bed6e0c408de8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bed6e0c408de8) -
|
|
8
|
+
[ux] Fix: pressing Enter after a heading that has trailing whitespace now creates a paragraph
|
|
9
|
+
instead of another heading — but only when the caret sits after all heading content and
|
|
10
|
+
immediately before the trailing whitespace (so it looks like the end of the heading). Mid-heading
|
|
11
|
+
splits still produce a heading. Behind the `platform_editor_fix_new_line_after_heading`
|
|
12
|
+
experiment.
|
|
13
|
+
|
|
3
14
|
## 133.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
|
@@ -1175,6 +1175,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1175
1175
|
param: 'isEnabled',
|
|
1176
1176
|
defaultValue: false
|
|
1177
1177
|
}),
|
|
1178
|
+
// Added 2026-07-23
|
|
1179
|
+
platform_editor_fix_new_line_after_heading: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1180
|
+
productKeys: {
|
|
1181
|
+
confluence: 'platform_editor_fix_new_line_after_heading',
|
|
1182
|
+
jira: 'platform_editor_fix_new_line_after_heading'
|
|
1183
|
+
},
|
|
1184
|
+
param: 'isEnabled',
|
|
1185
|
+
defaultValue: false
|
|
1186
|
+
}),
|
|
1178
1187
|
// Added 2025-01-21
|
|
1179
1188
|
platform_editor_copy_link_a11y_inconsistency_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1180
1189
|
productKeys: {
|
|
@@ -1169,6 +1169,15 @@ export const editorExperimentsConfig = {
|
|
|
1169
1169
|
param: 'isEnabled',
|
|
1170
1170
|
defaultValue: false
|
|
1171
1171
|
}),
|
|
1172
|
+
// Added 2026-07-23
|
|
1173
|
+
platform_editor_fix_new_line_after_heading: createBooleanExperiment({
|
|
1174
|
+
productKeys: {
|
|
1175
|
+
confluence: 'platform_editor_fix_new_line_after_heading',
|
|
1176
|
+
jira: 'platform_editor_fix_new_line_after_heading'
|
|
1177
|
+
},
|
|
1178
|
+
param: 'isEnabled',
|
|
1179
|
+
defaultValue: false
|
|
1180
|
+
}),
|
|
1172
1181
|
// Added 2025-01-21
|
|
1173
1182
|
platform_editor_copy_link_a11y_inconsistency_fix: createBooleanExperiment({
|
|
1174
1183
|
productKeys: {
|
|
@@ -1169,6 +1169,15 @@ export var editorExperimentsConfig = {
|
|
|
1169
1169
|
param: 'isEnabled',
|
|
1170
1170
|
defaultValue: false
|
|
1171
1171
|
}),
|
|
1172
|
+
// Added 2026-07-23
|
|
1173
|
+
platform_editor_fix_new_line_after_heading: createBooleanExperiment({
|
|
1174
|
+
productKeys: {
|
|
1175
|
+
confluence: 'platform_editor_fix_new_line_after_heading',
|
|
1176
|
+
jira: 'platform_editor_fix_new_line_after_heading'
|
|
1177
|
+
},
|
|
1178
|
+
param: 'isEnabled',
|
|
1179
|
+
defaultValue: false
|
|
1180
|
+
}),
|
|
1172
1181
|
// Added 2025-01-21
|
|
1173
1182
|
platform_editor_copy_link_a11y_inconsistency_fix: createBooleanExperiment({
|
|
1174
1183
|
productKeys: {
|
|
@@ -876,6 +876,12 @@ export declare const editorExperimentsConfig: {
|
|
|
876
876
|
productKeys?: ProductKeys;
|
|
877
877
|
typeGuard: IsBooleanType;
|
|
878
878
|
};
|
|
879
|
+
platform_editor_fix_new_line_after_heading: {
|
|
880
|
+
defaultValue: boolean;
|
|
881
|
+
param: string;
|
|
882
|
+
productKeys?: ProductKeys;
|
|
883
|
+
typeGuard: IsBooleanType;
|
|
884
|
+
};
|
|
879
885
|
platform_editor_copy_link_a11y_inconsistency_fix: {
|
|
880
886
|
defaultValue: boolean;
|
|
881
887
|
param: string;
|
package/package.json
CHANGED