@atlaskit/tmp-editor-statsig 17.7.0 → 17.9.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 +18 -0
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 17.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b2780992bdc66`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2780992bdc66) -
|
|
8
|
+
Send x-client-platform header when establishing socketio connection
|
|
9
|
+
|
|
10
|
+
## 17.8.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`e98a16b48e245`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e98a16b48e245) -
|
|
15
|
+
Fix a suspected bug where cross-origin selections would throw a dom security error when testing
|
|
16
|
+
whether to set focus
|
|
17
|
+
- [`d88e2cfa7371b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d88e2cfa7371b) -
|
|
18
|
+
[ux] fix copy heading link button a11y behaviours by only having one button, that is outside the
|
|
19
|
+
heading element
|
|
20
|
+
|
|
3
21
|
## 17.7.0
|
|
4
22
|
|
|
5
23
|
### 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: {
|
|
@@ -1249,6 +1257,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1249
1257
|
param: 'isEnabled',
|
|
1250
1258
|
defaultValue: false
|
|
1251
1259
|
}),
|
|
1260
|
+
// Added 2025-01-29
|
|
1261
|
+
platform_editor_send_client_platform_header: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1262
|
+
productKeys: {
|
|
1263
|
+
confluence: 'platform_editor_send_client_platform_header'
|
|
1264
|
+
},
|
|
1265
|
+
param: 'isEnabled',
|
|
1266
|
+
defaultValue: false
|
|
1267
|
+
}),
|
|
1252
1268
|
// Added 2026-01-29
|
|
1253
1269
|
platform_editor_renderer_toolbar_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1254
1270
|
productKeys: {
|
|
@@ -1263,5 +1279,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1263
1279
|
},
|
|
1264
1280
|
param: 'isEnabled',
|
|
1265
1281
|
defaultValue: false
|
|
1282
|
+
}),
|
|
1283
|
+
// Added 2026-01-30
|
|
1284
|
+
platform_editor_fix_cross_origin_editor_focus: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1285
|
+
productKeys: {
|
|
1286
|
+
confluence: 'platform_editor_fix_cross_origin_editor_focus'
|
|
1287
|
+
},
|
|
1288
|
+
param: 'isEnabled',
|
|
1289
|
+
defaultValue: false
|
|
1266
1290
|
})
|
|
1267
1291
|
};
|
|
@@ -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: {
|
|
@@ -1243,6 +1251,14 @@ export const editorExperimentsConfig = {
|
|
|
1243
1251
|
param: 'isEnabled',
|
|
1244
1252
|
defaultValue: false
|
|
1245
1253
|
}),
|
|
1254
|
+
// Added 2025-01-29
|
|
1255
|
+
platform_editor_send_client_platform_header: createBooleanExperiment({
|
|
1256
|
+
productKeys: {
|
|
1257
|
+
confluence: 'platform_editor_send_client_platform_header'
|
|
1258
|
+
},
|
|
1259
|
+
param: 'isEnabled',
|
|
1260
|
+
defaultValue: false
|
|
1261
|
+
}),
|
|
1246
1262
|
// Added 2026-01-29
|
|
1247
1263
|
platform_editor_renderer_toolbar_updates: createBooleanExperiment({
|
|
1248
1264
|
productKeys: {
|
|
@@ -1257,5 +1273,13 @@ export const editorExperimentsConfig = {
|
|
|
1257
1273
|
},
|
|
1258
1274
|
param: 'isEnabled',
|
|
1259
1275
|
defaultValue: false
|
|
1276
|
+
}),
|
|
1277
|
+
// Added 2026-01-30
|
|
1278
|
+
platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
|
|
1279
|
+
productKeys: {
|
|
1280
|
+
confluence: 'platform_editor_fix_cross_origin_editor_focus'
|
|
1281
|
+
},
|
|
1282
|
+
param: 'isEnabled',
|
|
1283
|
+
defaultValue: false
|
|
1260
1284
|
})
|
|
1261
1285
|
};
|
|
@@ -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: {
|
|
@@ -1243,6 +1251,14 @@ export var editorExperimentsConfig = {
|
|
|
1243
1251
|
param: 'isEnabled',
|
|
1244
1252
|
defaultValue: false
|
|
1245
1253
|
}),
|
|
1254
|
+
// Added 2025-01-29
|
|
1255
|
+
platform_editor_send_client_platform_header: createBooleanExperiment({
|
|
1256
|
+
productKeys: {
|
|
1257
|
+
confluence: 'platform_editor_send_client_platform_header'
|
|
1258
|
+
},
|
|
1259
|
+
param: 'isEnabled',
|
|
1260
|
+
defaultValue: false
|
|
1261
|
+
}),
|
|
1246
1262
|
// Added 2026-01-29
|
|
1247
1263
|
platform_editor_renderer_toolbar_updates: createBooleanExperiment({
|
|
1248
1264
|
productKeys: {
|
|
@@ -1257,5 +1273,13 @@ export var editorExperimentsConfig = {
|
|
|
1257
1273
|
},
|
|
1258
1274
|
param: 'isEnabled',
|
|
1259
1275
|
defaultValue: false
|
|
1276
|
+
}),
|
|
1277
|
+
// Added 2026-01-30
|
|
1278
|
+
platform_editor_fix_cross_origin_editor_focus: createBooleanExperiment({
|
|
1279
|
+
productKeys: {
|
|
1280
|
+
confluence: 'platform_editor_fix_cross_origin_editor_focus'
|
|
1281
|
+
},
|
|
1282
|
+
param: 'isEnabled',
|
|
1283
|
+
defaultValue: false
|
|
1260
1284
|
})
|
|
1261
1285
|
};
|
|
@@ -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;
|
|
@@ -922,6 +928,12 @@ export declare const editorExperimentsConfig: {
|
|
|
922
928
|
productKeys?: ProductKeys;
|
|
923
929
|
typeGuard: IsBooleanType;
|
|
924
930
|
};
|
|
931
|
+
platform_editor_send_client_platform_header: {
|
|
932
|
+
defaultValue: boolean;
|
|
933
|
+
param: string;
|
|
934
|
+
productKeys?: ProductKeys;
|
|
935
|
+
typeGuard: IsBooleanType;
|
|
936
|
+
};
|
|
925
937
|
platform_editor_renderer_toolbar_updates: {
|
|
926
938
|
defaultValue: boolean;
|
|
927
939
|
param: string;
|
|
@@ -934,5 +946,11 @@ export declare const editorExperimentsConfig: {
|
|
|
934
946
|
productKeys?: ProductKeys;
|
|
935
947
|
typeGuard: IsBooleanType;
|
|
936
948
|
};
|
|
949
|
+
platform_editor_fix_cross_origin_editor_focus: {
|
|
950
|
+
defaultValue: boolean;
|
|
951
|
+
param: string;
|
|
952
|
+
productKeys?: ProductKeys;
|
|
953
|
+
typeGuard: IsBooleanType;
|
|
954
|
+
};
|
|
937
955
|
};
|
|
938
956
|
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;
|
|
@@ -922,6 +928,12 @@ export declare const editorExperimentsConfig: {
|
|
|
922
928
|
productKeys?: ProductKeys;
|
|
923
929
|
typeGuard: IsBooleanType;
|
|
924
930
|
};
|
|
931
|
+
platform_editor_send_client_platform_header: {
|
|
932
|
+
defaultValue: boolean;
|
|
933
|
+
param: string;
|
|
934
|
+
productKeys?: ProductKeys;
|
|
935
|
+
typeGuard: IsBooleanType;
|
|
936
|
+
};
|
|
925
937
|
platform_editor_renderer_toolbar_updates: {
|
|
926
938
|
defaultValue: boolean;
|
|
927
939
|
param: string;
|
|
@@ -934,5 +946,11 @@ export declare const editorExperimentsConfig: {
|
|
|
934
946
|
productKeys?: ProductKeys;
|
|
935
947
|
typeGuard: IsBooleanType;
|
|
936
948
|
};
|
|
949
|
+
platform_editor_fix_cross_origin_editor_focus: {
|
|
950
|
+
defaultValue: boolean;
|
|
951
|
+
param: string;
|
|
952
|
+
productKeys?: ProductKeys;
|
|
953
|
+
typeGuard: IsBooleanType;
|
|
954
|
+
};
|
|
937
955
|
};
|
|
938
956
|
export {};
|
package/package.json
CHANGED