@atlaskit/tmp-editor-statsig 132.6.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,23 @@
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
+
14
+ ## 133.0.0
15
+
16
+ ### Major Changes
17
+
18
+ - [`3e55e8eea5a11`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e55e8eea5a11) -
19
+ Fixes reduced profile card exp flag name
20
+
3
21
  ## 132.6.0
4
22
 
5
23
  ### Minor Changes
@@ -544,10 +544,10 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
544
544
  defaultValue: false
545
545
  }),
546
546
  // Added 2026-07-09
547
- platform_editor_reduced_profile_cards: (0, _experimentBuilders.createBooleanExperiment)({
547
+ platform_editor_reduced_agent_profile_cards: (0, _experimentBuilders.createBooleanExperiment)({
548
548
  productKeys: {
549
- confluence: 'platform_editor_reduced_profile_cards',
550
- jira: 'platform_editor_reduced_profile_cards'
549
+ confluence: 'platform_editor_reduced_agent_profile_cards',
550
+ jira: 'platform_editor_reduced_agent_profile_cards'
551
551
  },
552
552
  param: 'isEnabled',
553
553
  defaultValue: false
@@ -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: {
@@ -538,10 +538,10 @@ export const editorExperimentsConfig = {
538
538
  defaultValue: false
539
539
  }),
540
540
  // Added 2026-07-09
541
- platform_editor_reduced_profile_cards: createBooleanExperiment({
541
+ platform_editor_reduced_agent_profile_cards: createBooleanExperiment({
542
542
  productKeys: {
543
- confluence: 'platform_editor_reduced_profile_cards',
544
- jira: 'platform_editor_reduced_profile_cards'
543
+ confluence: 'platform_editor_reduced_agent_profile_cards',
544
+ jira: 'platform_editor_reduced_agent_profile_cards'
545
545
  },
546
546
  param: 'isEnabled',
547
547
  defaultValue: false
@@ -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: {
@@ -538,10 +538,10 @@ export var editorExperimentsConfig = {
538
538
  defaultValue: false
539
539
  }),
540
540
  // Added 2026-07-09
541
- platform_editor_reduced_profile_cards: createBooleanExperiment({
541
+ platform_editor_reduced_agent_profile_cards: createBooleanExperiment({
542
542
  productKeys: {
543
- confluence: 'platform_editor_reduced_profile_cards',
544
- jira: 'platform_editor_reduced_profile_cards'
543
+ confluence: 'platform_editor_reduced_agent_profile_cards',
544
+ jira: 'platform_editor_reduced_agent_profile_cards'
545
545
  },
546
546
  param: 'isEnabled',
547
547
  defaultValue: false
@@ -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: {
@@ -604,7 +604,7 @@ export declare const editorExperimentsConfig: {
604
604
  productKeys?: ProductKeys;
605
605
  typeGuard: IsBooleanType;
606
606
  };
607
- platform_editor_reduced_profile_cards: {
607
+ platform_editor_reduced_agent_profile_cards: {
608
608
  defaultValue: boolean;
609
609
  param: string;
610
610
  productKeys?: 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "132.6.0",
3
+ "version": "133.1.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",