@atlaskit/tmp-editor-statsig 16.22.0 → 16.24.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 +19 -0
- package/dist/cjs/experiments-config.js +33 -0
- package/dist/es2019/experiments-config.js +33 -0
- package/dist/esm/experiments-config.js +33 -0
- package/dist/types/experiments-config.d.ts +24 -0
- package/dist/types-ts4.5/experiments-config.d.ts +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`498fc3298e069`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/498fc3298e069) -
|
|
8
|
+
[ux] EDITOR-3463: Keep extension breakout aligned with page width in full-width and max modes. The
|
|
9
|
+
rollout is guarded by `confluence_max_width_content_appearance` and the new
|
|
10
|
+
`confluence_max_width_breakout_extension_fix` experiment so the bugfix can be toggled
|
|
11
|
+
independently.
|
|
12
|
+
- [`a7fd4015da337`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a7fd4015da337) -
|
|
13
|
+
phase out contextTypes for editor context
|
|
14
|
+
|
|
15
|
+
## 16.23.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`e91ea1cbba89a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e91ea1cbba89a) -
|
|
20
|
+
JRACLOUD-96830: Fix navigating and editing codeblocks with CRLF new lines.
|
|
21
|
+
|
|
3
22
|
## 16.22.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -86,6 +86,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
86
86
|
param: 'isEnabled',
|
|
87
87
|
defaultValue: false
|
|
88
88
|
}),
|
|
89
|
+
// Added 2026-01-15
|
|
90
|
+
confluence_max_width_breakout_extension_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
91
|
+
productKeys: {
|
|
92
|
+
confluence: 'confluence_max_width_breakout_extension_fix'
|
|
93
|
+
},
|
|
94
|
+
param: 'isEnabled',
|
|
95
|
+
defaultValue: false
|
|
96
|
+
}),
|
|
89
97
|
cc_editor_insm_doc_size_stats: (0, _experimentBuilders.createBooleanExperiment)({
|
|
90
98
|
productKeys: {
|
|
91
99
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -1216,6 +1224,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1216
1224
|
param: 'isEnabled',
|
|
1217
1225
|
defaultValue: false
|
|
1218
1226
|
}),
|
|
1227
|
+
// Added 2026-01-15
|
|
1228
|
+
platform_editor_fix_advanced_codeblocks_crlf: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1229
|
+
productKeys: {
|
|
1230
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1231
|
+
},
|
|
1232
|
+
param: 'isEnabled',
|
|
1233
|
+
defaultValue: false
|
|
1234
|
+
}),
|
|
1219
1235
|
// Added 2026-01-08
|
|
1220
1236
|
platform_editor_focus_on_chromeless_editor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1221
1237
|
productKeys: {
|
|
@@ -1223,5 +1239,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1223
1239
|
},
|
|
1224
1240
|
param: 'isEnabled',
|
|
1225
1241
|
defaultValue: false
|
|
1242
|
+
}),
|
|
1243
|
+
// Added 2025-01-15
|
|
1244
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1245
|
+
productKeys: {
|
|
1246
|
+
confluence: 'platform_editor_table_toolbar_icon_ext_fix_exp'
|
|
1247
|
+
},
|
|
1248
|
+
param: 'isEnabled',
|
|
1249
|
+
defaultValue: false
|
|
1250
|
+
}),
|
|
1251
|
+
// Added 2026-01-14
|
|
1252
|
+
platform_editor_context_context_types_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1253
|
+
productKeys: {
|
|
1254
|
+
confluence: 'platform_editor_context_context_types_migration',
|
|
1255
|
+
jira: 'platform_editor_context_context_types_migration'
|
|
1256
|
+
},
|
|
1257
|
+
param: 'isEnabled',
|
|
1258
|
+
defaultValue: false
|
|
1226
1259
|
})
|
|
1227
1260
|
};
|
|
@@ -80,6 +80,14 @@ export const editorExperimentsConfig = {
|
|
|
80
80
|
param: 'isEnabled',
|
|
81
81
|
defaultValue: false
|
|
82
82
|
}),
|
|
83
|
+
// Added 2026-01-15
|
|
84
|
+
confluence_max_width_breakout_extension_fix: createBooleanExperiment({
|
|
85
|
+
productKeys: {
|
|
86
|
+
confluence: 'confluence_max_width_breakout_extension_fix'
|
|
87
|
+
},
|
|
88
|
+
param: 'isEnabled',
|
|
89
|
+
defaultValue: false
|
|
90
|
+
}),
|
|
83
91
|
cc_editor_insm_doc_size_stats: createBooleanExperiment({
|
|
84
92
|
productKeys: {
|
|
85
93
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -1210,6 +1218,14 @@ export const editorExperimentsConfig = {
|
|
|
1210
1218
|
param: 'isEnabled',
|
|
1211
1219
|
defaultValue: false
|
|
1212
1220
|
}),
|
|
1221
|
+
// Added 2026-01-15
|
|
1222
|
+
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1223
|
+
productKeys: {
|
|
1224
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1225
|
+
},
|
|
1226
|
+
param: 'isEnabled',
|
|
1227
|
+
defaultValue: false
|
|
1228
|
+
}),
|
|
1213
1229
|
// Added 2026-01-08
|
|
1214
1230
|
platform_editor_focus_on_chromeless_editor: createBooleanExperiment({
|
|
1215
1231
|
productKeys: {
|
|
@@ -1217,5 +1233,22 @@ export const editorExperimentsConfig = {
|
|
|
1217
1233
|
},
|
|
1218
1234
|
param: 'isEnabled',
|
|
1219
1235
|
defaultValue: false
|
|
1236
|
+
}),
|
|
1237
|
+
// Added 2025-01-15
|
|
1238
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
|
|
1239
|
+
productKeys: {
|
|
1240
|
+
confluence: 'platform_editor_table_toolbar_icon_ext_fix_exp'
|
|
1241
|
+
},
|
|
1242
|
+
param: 'isEnabled',
|
|
1243
|
+
defaultValue: false
|
|
1244
|
+
}),
|
|
1245
|
+
// Added 2026-01-14
|
|
1246
|
+
platform_editor_context_context_types_migration: createBooleanExperiment({
|
|
1247
|
+
productKeys: {
|
|
1248
|
+
confluence: 'platform_editor_context_context_types_migration',
|
|
1249
|
+
jira: 'platform_editor_context_context_types_migration'
|
|
1250
|
+
},
|
|
1251
|
+
param: 'isEnabled',
|
|
1252
|
+
defaultValue: false
|
|
1220
1253
|
})
|
|
1221
1254
|
};
|
|
@@ -80,6 +80,14 @@ export var editorExperimentsConfig = {
|
|
|
80
80
|
param: 'isEnabled',
|
|
81
81
|
defaultValue: false
|
|
82
82
|
}),
|
|
83
|
+
// Added 2026-01-15
|
|
84
|
+
confluence_max_width_breakout_extension_fix: createBooleanExperiment({
|
|
85
|
+
productKeys: {
|
|
86
|
+
confluence: 'confluence_max_width_breakout_extension_fix'
|
|
87
|
+
},
|
|
88
|
+
param: 'isEnabled',
|
|
89
|
+
defaultValue: false
|
|
90
|
+
}),
|
|
83
91
|
cc_editor_insm_doc_size_stats: createBooleanExperiment({
|
|
84
92
|
productKeys: {
|
|
85
93
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -1210,6 +1218,14 @@ export var editorExperimentsConfig = {
|
|
|
1210
1218
|
param: 'isEnabled',
|
|
1211
1219
|
defaultValue: false
|
|
1212
1220
|
}),
|
|
1221
|
+
// Added 2026-01-15
|
|
1222
|
+
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1223
|
+
productKeys: {
|
|
1224
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1225
|
+
},
|
|
1226
|
+
param: 'isEnabled',
|
|
1227
|
+
defaultValue: false
|
|
1228
|
+
}),
|
|
1213
1229
|
// Added 2026-01-08
|
|
1214
1230
|
platform_editor_focus_on_chromeless_editor: createBooleanExperiment({
|
|
1215
1231
|
productKeys: {
|
|
@@ -1217,5 +1233,22 @@ export var editorExperimentsConfig = {
|
|
|
1217
1233
|
},
|
|
1218
1234
|
param: 'isEnabled',
|
|
1219
1235
|
defaultValue: false
|
|
1236
|
+
}),
|
|
1237
|
+
// Added 2025-01-15
|
|
1238
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
|
|
1239
|
+
productKeys: {
|
|
1240
|
+
confluence: 'platform_editor_table_toolbar_icon_ext_fix_exp'
|
|
1241
|
+
},
|
|
1242
|
+
param: 'isEnabled',
|
|
1243
|
+
defaultValue: false
|
|
1244
|
+
}),
|
|
1245
|
+
// Added 2026-01-14
|
|
1246
|
+
platform_editor_context_context_types_migration: createBooleanExperiment({
|
|
1247
|
+
productKeys: {
|
|
1248
|
+
confluence: 'platform_editor_context_context_types_migration',
|
|
1249
|
+
jira: 'platform_editor_context_context_types_migration'
|
|
1250
|
+
},
|
|
1251
|
+
param: 'isEnabled',
|
|
1252
|
+
defaultValue: false
|
|
1220
1253
|
})
|
|
1221
1254
|
};
|
|
@@ -193,6 +193,12 @@ export declare const editorExperimentsConfig: {
|
|
|
193
193
|
productKeys?: ProductKeys;
|
|
194
194
|
typeGuard: IsBooleanType;
|
|
195
195
|
};
|
|
196
|
+
confluence_max_width_breakout_extension_fix: {
|
|
197
|
+
defaultValue: boolean;
|
|
198
|
+
param: string;
|
|
199
|
+
productKeys?: ProductKeys;
|
|
200
|
+
typeGuard: IsBooleanType;
|
|
201
|
+
};
|
|
196
202
|
'example-boolean': {
|
|
197
203
|
defaultValue: boolean;
|
|
198
204
|
param: string;
|
|
@@ -890,6 +896,12 @@ export declare const editorExperimentsConfig: {
|
|
|
890
896
|
productKeys?: ProductKeys;
|
|
891
897
|
typeGuard: IsBooleanType;
|
|
892
898
|
};
|
|
899
|
+
platform_editor_fix_advanced_codeblocks_crlf: {
|
|
900
|
+
defaultValue: boolean;
|
|
901
|
+
param: string;
|
|
902
|
+
productKeys?: ProductKeys;
|
|
903
|
+
typeGuard: IsBooleanType;
|
|
904
|
+
};
|
|
893
905
|
platform_editor_table_sticky_header_patch_11: {
|
|
894
906
|
defaultValue: boolean;
|
|
895
907
|
param: string;
|
|
@@ -902,5 +914,17 @@ export declare const editorExperimentsConfig: {
|
|
|
902
914
|
productKeys?: ProductKeys;
|
|
903
915
|
typeGuard: IsBooleanType;
|
|
904
916
|
};
|
|
917
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: {
|
|
918
|
+
defaultValue: boolean;
|
|
919
|
+
param: string;
|
|
920
|
+
productKeys?: ProductKeys;
|
|
921
|
+
typeGuard: IsBooleanType;
|
|
922
|
+
};
|
|
923
|
+
platform_editor_context_context_types_migration: {
|
|
924
|
+
defaultValue: boolean;
|
|
925
|
+
param: string;
|
|
926
|
+
productKeys?: ProductKeys;
|
|
927
|
+
typeGuard: IsBooleanType;
|
|
928
|
+
};
|
|
905
929
|
};
|
|
906
930
|
export {};
|
|
@@ -193,6 +193,12 @@ export declare const editorExperimentsConfig: {
|
|
|
193
193
|
productKeys?: ProductKeys;
|
|
194
194
|
typeGuard: IsBooleanType;
|
|
195
195
|
};
|
|
196
|
+
confluence_max_width_breakout_extension_fix: {
|
|
197
|
+
defaultValue: boolean;
|
|
198
|
+
param: string;
|
|
199
|
+
productKeys?: ProductKeys;
|
|
200
|
+
typeGuard: IsBooleanType;
|
|
201
|
+
};
|
|
196
202
|
'example-boolean': {
|
|
197
203
|
defaultValue: boolean;
|
|
198
204
|
param: string;
|
|
@@ -890,6 +896,12 @@ export declare const editorExperimentsConfig: {
|
|
|
890
896
|
productKeys?: ProductKeys;
|
|
891
897
|
typeGuard: IsBooleanType;
|
|
892
898
|
};
|
|
899
|
+
platform_editor_fix_advanced_codeblocks_crlf: {
|
|
900
|
+
defaultValue: boolean;
|
|
901
|
+
param: string;
|
|
902
|
+
productKeys?: ProductKeys;
|
|
903
|
+
typeGuard: IsBooleanType;
|
|
904
|
+
};
|
|
893
905
|
platform_editor_table_sticky_header_patch_11: {
|
|
894
906
|
defaultValue: boolean;
|
|
895
907
|
param: string;
|
|
@@ -902,5 +914,17 @@ export declare const editorExperimentsConfig: {
|
|
|
902
914
|
productKeys?: ProductKeys;
|
|
903
915
|
typeGuard: IsBooleanType;
|
|
904
916
|
};
|
|
917
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: {
|
|
918
|
+
defaultValue: boolean;
|
|
919
|
+
param: string;
|
|
920
|
+
productKeys?: ProductKeys;
|
|
921
|
+
typeGuard: IsBooleanType;
|
|
922
|
+
};
|
|
923
|
+
platform_editor_context_context_types_migration: {
|
|
924
|
+
defaultValue: boolean;
|
|
925
|
+
param: string;
|
|
926
|
+
productKeys?: ProductKeys;
|
|
927
|
+
typeGuard: IsBooleanType;
|
|
928
|
+
};
|
|
905
929
|
};
|
|
906
930
|
export {};
|
package/package.json
CHANGED