@atlaskit/tmp-editor-statsig 16.21.0 → 16.23.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 +20 -0
- package/dist/cjs/experiments-config.js +24 -1
- package/dist/es2019/experiments-config.js +24 -1
- package/dist/esm/experiments-config.js +24 -1
- 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,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.23.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e91ea1cbba89a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e91ea1cbba89a) -
|
|
8
|
+
JRACLOUD-96830: Fix navigating and editing codeblocks with CRLF new lines.
|
|
9
|
+
|
|
10
|
+
## 16.22.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`5a01e256502a0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a01e256502a0) -
|
|
15
|
+
[EDITOR-3531] Fixed bug where focus is not set to the Editor for chromeless comments editor in
|
|
16
|
+
inline comments
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [`25b6f03d52fb3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/25b6f03d52fb3) -
|
|
21
|
+
Remove platform_editor_toolbar_aifc_jira from config
|
|
22
|
+
|
|
3
23
|
## 16.21.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -684,7 +684,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
684
684
|
//Added 2025-07-16
|
|
685
685
|
platform_editor_toolbar_aifc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
686
686
|
productKeys: {
|
|
687
|
-
jira: 'platform_editor_toolbar_aifc_jira',
|
|
688
687
|
confluence: 'platform_editor_toolbar_aifc_confluence'
|
|
689
688
|
},
|
|
690
689
|
param: 'isEnabled',
|
|
@@ -1216,5 +1215,29 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1216
1215
|
},
|
|
1217
1216
|
param: 'isEnabled',
|
|
1218
1217
|
defaultValue: false
|
|
1218
|
+
}),
|
|
1219
|
+
// Added 2026-01-15
|
|
1220
|
+
platform_editor_fix_advanced_codeblocks_crlf: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1221
|
+
productKeys: {
|
|
1222
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1223
|
+
},
|
|
1224
|
+
param: 'isEnabled',
|
|
1225
|
+
defaultValue: false
|
|
1226
|
+
}),
|
|
1227
|
+
// Added 2026-01-08
|
|
1228
|
+
platform_editor_focus_on_chromeless_editor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1229
|
+
productKeys: {
|
|
1230
|
+
confluence: 'platform_editor_focus_on_chromeless_editor'
|
|
1231
|
+
},
|
|
1232
|
+
param: 'isEnabled',
|
|
1233
|
+
defaultValue: false
|
|
1234
|
+
}),
|
|
1235
|
+
// Added 2025-01-15
|
|
1236
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1237
|
+
productKeys: {
|
|
1238
|
+
confluence: 'platform_editor_table_toolbar_icon_ext_fix_exp'
|
|
1239
|
+
},
|
|
1240
|
+
param: 'isEnabled',
|
|
1241
|
+
defaultValue: false
|
|
1219
1242
|
})
|
|
1220
1243
|
};
|
|
@@ -678,7 +678,6 @@ export const editorExperimentsConfig = {
|
|
|
678
678
|
//Added 2025-07-16
|
|
679
679
|
platform_editor_toolbar_aifc: createBooleanExperiment({
|
|
680
680
|
productKeys: {
|
|
681
|
-
jira: 'platform_editor_toolbar_aifc_jira',
|
|
682
681
|
confluence: 'platform_editor_toolbar_aifc_confluence'
|
|
683
682
|
},
|
|
684
683
|
param: 'isEnabled',
|
|
@@ -1210,5 +1209,29 @@ export const editorExperimentsConfig = {
|
|
|
1210
1209
|
},
|
|
1211
1210
|
param: 'isEnabled',
|
|
1212
1211
|
defaultValue: false
|
|
1212
|
+
}),
|
|
1213
|
+
// Added 2026-01-15
|
|
1214
|
+
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1215
|
+
productKeys: {
|
|
1216
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1217
|
+
},
|
|
1218
|
+
param: 'isEnabled',
|
|
1219
|
+
defaultValue: false
|
|
1220
|
+
}),
|
|
1221
|
+
// Added 2026-01-08
|
|
1222
|
+
platform_editor_focus_on_chromeless_editor: createBooleanExperiment({
|
|
1223
|
+
productKeys: {
|
|
1224
|
+
confluence: 'platform_editor_focus_on_chromeless_editor'
|
|
1225
|
+
},
|
|
1226
|
+
param: 'isEnabled',
|
|
1227
|
+
defaultValue: false
|
|
1228
|
+
}),
|
|
1229
|
+
// Added 2025-01-15
|
|
1230
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
|
|
1231
|
+
productKeys: {
|
|
1232
|
+
confluence: 'platform_editor_table_toolbar_icon_ext_fix_exp'
|
|
1233
|
+
},
|
|
1234
|
+
param: 'isEnabled',
|
|
1235
|
+
defaultValue: false
|
|
1213
1236
|
})
|
|
1214
1237
|
};
|
|
@@ -678,7 +678,6 @@ export var editorExperimentsConfig = {
|
|
|
678
678
|
//Added 2025-07-16
|
|
679
679
|
platform_editor_toolbar_aifc: createBooleanExperiment({
|
|
680
680
|
productKeys: {
|
|
681
|
-
jira: 'platform_editor_toolbar_aifc_jira',
|
|
682
681
|
confluence: 'platform_editor_toolbar_aifc_confluence'
|
|
683
682
|
},
|
|
684
683
|
param: 'isEnabled',
|
|
@@ -1210,5 +1209,29 @@ export var editorExperimentsConfig = {
|
|
|
1210
1209
|
},
|
|
1211
1210
|
param: 'isEnabled',
|
|
1212
1211
|
defaultValue: false
|
|
1212
|
+
}),
|
|
1213
|
+
// Added 2026-01-15
|
|
1214
|
+
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1215
|
+
productKeys: {
|
|
1216
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1217
|
+
},
|
|
1218
|
+
param: 'isEnabled',
|
|
1219
|
+
defaultValue: false
|
|
1220
|
+
}),
|
|
1221
|
+
// Added 2026-01-08
|
|
1222
|
+
platform_editor_focus_on_chromeless_editor: createBooleanExperiment({
|
|
1223
|
+
productKeys: {
|
|
1224
|
+
confluence: 'platform_editor_focus_on_chromeless_editor'
|
|
1225
|
+
},
|
|
1226
|
+
param: 'isEnabled',
|
|
1227
|
+
defaultValue: false
|
|
1228
|
+
}),
|
|
1229
|
+
// Added 2025-01-15
|
|
1230
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: createBooleanExperiment({
|
|
1231
|
+
productKeys: {
|
|
1232
|
+
confluence: 'platform_editor_table_toolbar_icon_ext_fix_exp'
|
|
1233
|
+
},
|
|
1234
|
+
param: 'isEnabled',
|
|
1235
|
+
defaultValue: false
|
|
1213
1236
|
})
|
|
1214
1237
|
};
|
|
@@ -890,11 +890,29 @@ export declare const editorExperimentsConfig: {
|
|
|
890
890
|
productKeys?: ProductKeys;
|
|
891
891
|
typeGuard: IsBooleanType;
|
|
892
892
|
};
|
|
893
|
+
platform_editor_fix_advanced_codeblocks_crlf: {
|
|
894
|
+
defaultValue: boolean;
|
|
895
|
+
param: string;
|
|
896
|
+
productKeys?: ProductKeys;
|
|
897
|
+
typeGuard: IsBooleanType;
|
|
898
|
+
};
|
|
893
899
|
platform_editor_table_sticky_header_patch_11: {
|
|
894
900
|
defaultValue: boolean;
|
|
895
901
|
param: string;
|
|
896
902
|
productKeys?: ProductKeys;
|
|
897
903
|
typeGuard: IsBooleanType;
|
|
898
904
|
};
|
|
905
|
+
platform_editor_focus_on_chromeless_editor: {
|
|
906
|
+
defaultValue: boolean;
|
|
907
|
+
param: string;
|
|
908
|
+
productKeys?: ProductKeys;
|
|
909
|
+
typeGuard: IsBooleanType;
|
|
910
|
+
};
|
|
911
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: {
|
|
912
|
+
defaultValue: boolean;
|
|
913
|
+
param: string;
|
|
914
|
+
productKeys?: ProductKeys;
|
|
915
|
+
typeGuard: IsBooleanType;
|
|
916
|
+
};
|
|
899
917
|
};
|
|
900
918
|
export {};
|
|
@@ -890,11 +890,29 @@ export declare const editorExperimentsConfig: {
|
|
|
890
890
|
productKeys?: ProductKeys;
|
|
891
891
|
typeGuard: IsBooleanType;
|
|
892
892
|
};
|
|
893
|
+
platform_editor_fix_advanced_codeblocks_crlf: {
|
|
894
|
+
defaultValue: boolean;
|
|
895
|
+
param: string;
|
|
896
|
+
productKeys?: ProductKeys;
|
|
897
|
+
typeGuard: IsBooleanType;
|
|
898
|
+
};
|
|
893
899
|
platform_editor_table_sticky_header_patch_11: {
|
|
894
900
|
defaultValue: boolean;
|
|
895
901
|
param: string;
|
|
896
902
|
productKeys?: ProductKeys;
|
|
897
903
|
typeGuard: IsBooleanType;
|
|
898
904
|
};
|
|
905
|
+
platform_editor_focus_on_chromeless_editor: {
|
|
906
|
+
defaultValue: boolean;
|
|
907
|
+
param: string;
|
|
908
|
+
productKeys?: ProductKeys;
|
|
909
|
+
typeGuard: IsBooleanType;
|
|
910
|
+
};
|
|
911
|
+
platform_editor_table_toolbar_icon_ext_fix_exp: {
|
|
912
|
+
defaultValue: boolean;
|
|
913
|
+
param: string;
|
|
914
|
+
productKeys?: ProductKeys;
|
|
915
|
+
typeGuard: IsBooleanType;
|
|
916
|
+
};
|
|
899
917
|
};
|
|
900
918
|
export {};
|
package/package.json
CHANGED