@atlaskit/tmp-editor-statsig 17.7.0 → 17.8.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
+ ## 17.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`e98a16b48e245`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e98a16b48e245) -
8
+ Fix a suspected bug where cross-origin selections would throw a dom security error when testing
9
+ whether to set focus
10
+ - [`d88e2cfa7371b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d88e2cfa7371b) -
11
+ [ux] fix copy heading link button a11y behaviours by only having one button, that is outside the
12
+ heading element
13
+
3
14
  ## 17.7.0
4
15
 
5
16
  ### Minor Changes
@@ -1135,6 +1135,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1135
1135
  param: 'isEnabled',
1136
1136
  defaultValue: false
1137
1137
  }),
1138
+ // Added 2025-01-21
1139
+ platform_editor_copy_link_a11y_inconsistency_fix: (0, _experimentBuilders.createBooleanExperiment)({
1140
+ productKeys: {
1141
+ confluence: 'platform_editor_copy_link_a11y_inconsistency_fix'
1142
+ },
1143
+ param: 'isEnabled',
1144
+ defaultValue: false
1145
+ }),
1138
1146
  // Added 2026-01-12
1139
1147
  platform_editor_table_sticky_header_patch_11: (0, _experimentBuilders.createBooleanExperiment)({
1140
1148
  productKeys: {
@@ -1263,5 +1271,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1263
1271
  },
1264
1272
  param: 'isEnabled',
1265
1273
  defaultValue: false
1274
+ }),
1275
+ // Added 2026-01-30
1276
+ platform_editor_fix_cross_origin_editor_focus: (0, _experimentBuilders.createBooleanExperiment)({
1277
+ productKeys: {
1278
+ confluence: 'platform_editor_fix_cross_origin_editor_focus'
1279
+ },
1280
+ param: 'isEnabled',
1281
+ defaultValue: false
1266
1282
  })
1267
1283
  };
@@ -1129,6 +1129,14 @@ export const editorExperimentsConfig = {
1129
1129
  param: 'isEnabled',
1130
1130
  defaultValue: false
1131
1131
  }),
1132
+ // Added 2025-01-21
1133
+ platform_editor_copy_link_a11y_inconsistency_fix: createBooleanExperiment({
1134
+ productKeys: {
1135
+ confluence: 'platform_editor_copy_link_a11y_inconsistency_fix'
1136
+ },
1137
+ param: 'isEnabled',
1138
+ defaultValue: false
1139
+ }),
1132
1140
  // Added 2026-01-12
1133
1141
  platform_editor_table_sticky_header_patch_11: createBooleanExperiment({
1134
1142
  productKeys: {
@@ -1257,5 +1265,13 @@ export const editorExperimentsConfig = {
1257
1265
  },
1258
1266
  param: 'isEnabled',
1259
1267
  defaultValue: false
1268
+ }),
1269
+ // Added 2026-01-30
1270
+ platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
1271
+ productKeys: {
1272
+ confluence: 'platform_editor_fix_cross_origin_editor_focus'
1273
+ },
1274
+ param: 'isEnabled',
1275
+ defaultValue: false
1260
1276
  })
1261
1277
  };
@@ -1129,6 +1129,14 @@ export var editorExperimentsConfig = {
1129
1129
  param: 'isEnabled',
1130
1130
  defaultValue: false
1131
1131
  }),
1132
+ // Added 2025-01-21
1133
+ platform_editor_copy_link_a11y_inconsistency_fix: createBooleanExperiment({
1134
+ productKeys: {
1135
+ confluence: 'platform_editor_copy_link_a11y_inconsistency_fix'
1136
+ },
1137
+ param: 'isEnabled',
1138
+ defaultValue: false
1139
+ }),
1132
1140
  // Added 2026-01-12
1133
1141
  platform_editor_table_sticky_header_patch_11: createBooleanExperiment({
1134
1142
  productKeys: {
@@ -1257,5 +1265,13 @@ export var editorExperimentsConfig = {
1257
1265
  },
1258
1266
  param: 'isEnabled',
1259
1267
  defaultValue: false
1268
+ }),
1269
+ // Added 2026-01-30
1270
+ platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
1271
+ productKeys: {
1272
+ confluence: 'platform_editor_fix_cross_origin_editor_focus'
1273
+ },
1274
+ param: 'isEnabled',
1275
+ defaultValue: false
1260
1276
  })
1261
1277
  };
@@ -850,6 +850,12 @@ export declare const editorExperimentsConfig: {
850
850
  productKeys?: ProductKeys;
851
851
  typeGuard: IsBooleanType;
852
852
  };
853
+ platform_editor_copy_link_a11y_inconsistency_fix: {
854
+ defaultValue: boolean;
855
+ param: string;
856
+ productKeys?: ProductKeys;
857
+ typeGuard: IsBooleanType;
858
+ };
853
859
  platform_editor_focus_on_chromeless_editor: {
854
860
  defaultValue: boolean;
855
861
  param: string;
@@ -934,5 +940,11 @@ export declare const editorExperimentsConfig: {
934
940
  productKeys?: ProductKeys;
935
941
  typeGuard: IsBooleanType;
936
942
  };
943
+ platform_editor_fix_cross_origin_editor_focus: {
944
+ defaultValue: boolean;
945
+ param: string;
946
+ productKeys?: ProductKeys;
947
+ typeGuard: IsBooleanType;
948
+ };
937
949
  };
938
950
  export {};
@@ -850,6 +850,12 @@ export declare const editorExperimentsConfig: {
850
850
  productKeys?: ProductKeys;
851
851
  typeGuard: IsBooleanType;
852
852
  };
853
+ platform_editor_copy_link_a11y_inconsistency_fix: {
854
+ defaultValue: boolean;
855
+ param: string;
856
+ productKeys?: ProductKeys;
857
+ typeGuard: IsBooleanType;
858
+ };
853
859
  platform_editor_focus_on_chromeless_editor: {
854
860
  defaultValue: boolean;
855
861
  param: string;
@@ -934,5 +940,11 @@ export declare const editorExperimentsConfig: {
934
940
  productKeys?: ProductKeys;
935
941
  typeGuard: IsBooleanType;
936
942
  };
943
+ platform_editor_fix_cross_origin_editor_focus: {
944
+ defaultValue: boolean;
945
+ param: string;
946
+ productKeys?: ProductKeys;
947
+ typeGuard: IsBooleanType;
948
+ };
937
949
  };
938
950
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.7.0",
3
+ "version": "17.8.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",