@atlaskit/tmp-editor-statsig 16.23.0 → 16.25.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 +17 -9
- package/dist/es2019/experiments-config.js +17 -9
- package/dist/esm/experiments-config.js +17 -9
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ee5135bafb31d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ee5135bafb31d) -
|
|
8
|
+
[EDITOR-4495] clean up platform_editor_toolbar_aifc_patch_4
|
|
9
|
+
|
|
10
|
+
## 16.24.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`498fc3298e069`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/498fc3298e069) -
|
|
15
|
+
[ux] EDITOR-3463: Keep extension breakout aligned with page width in full-width and max modes. The
|
|
16
|
+
rollout is guarded by `confluence_max_width_content_appearance` and the new
|
|
17
|
+
`confluence_max_width_breakout_extension_fix` experiment so the bugfix can be toggled
|
|
18
|
+
independently.
|
|
19
|
+
- [`a7fd4015da337`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a7fd4015da337) -
|
|
20
|
+
phase out contextTypes for editor context
|
|
21
|
+
|
|
3
22
|
## 16.23.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'
|
|
@@ -706,15 +714,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
706
714
|
param: 'isEnabled',
|
|
707
715
|
defaultValue: false
|
|
708
716
|
}),
|
|
709
|
-
//Added 2025-09-09
|
|
710
|
-
platform_editor_toolbar_aifc_patch_4: (0, _experimentBuilders.createBooleanExperiment)({
|
|
711
|
-
productKeys: {
|
|
712
|
-
jira: 'platform_editor_toolbar_aifc_patch_4',
|
|
713
|
-
confluence: 'platform_editor_toolbar_aifc_patch_4'
|
|
714
|
-
},
|
|
715
|
-
param: 'isEnabled',
|
|
716
|
-
defaultValue: false
|
|
717
|
-
}),
|
|
718
717
|
// Added 2025-08-04
|
|
719
718
|
platform_editor_floating_toolbar_button_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
|
|
720
719
|
productKeys: {
|
|
@@ -1239,5 +1238,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1239
1238
|
},
|
|
1240
1239
|
param: 'isEnabled',
|
|
1241
1240
|
defaultValue: false
|
|
1241
|
+
}),
|
|
1242
|
+
// Added 2026-01-14
|
|
1243
|
+
platform_editor_context_context_types_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1244
|
+
productKeys: {
|
|
1245
|
+
confluence: 'platform_editor_context_context_types_migration',
|
|
1246
|
+
jira: 'platform_editor_context_context_types_migration'
|
|
1247
|
+
},
|
|
1248
|
+
param: 'isEnabled',
|
|
1249
|
+
defaultValue: false
|
|
1242
1250
|
})
|
|
1243
1251
|
};
|
|
@@ -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'
|
|
@@ -700,15 +708,6 @@ export const editorExperimentsConfig = {
|
|
|
700
708
|
param: 'isEnabled',
|
|
701
709
|
defaultValue: false
|
|
702
710
|
}),
|
|
703
|
-
//Added 2025-09-09
|
|
704
|
-
platform_editor_toolbar_aifc_patch_4: createBooleanExperiment({
|
|
705
|
-
productKeys: {
|
|
706
|
-
jira: 'platform_editor_toolbar_aifc_patch_4',
|
|
707
|
-
confluence: 'platform_editor_toolbar_aifc_patch_4'
|
|
708
|
-
},
|
|
709
|
-
param: 'isEnabled',
|
|
710
|
-
defaultValue: false
|
|
711
|
-
}),
|
|
712
711
|
// Added 2025-08-04
|
|
713
712
|
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
714
713
|
productKeys: {
|
|
@@ -1233,5 +1232,14 @@ export const editorExperimentsConfig = {
|
|
|
1233
1232
|
},
|
|
1234
1233
|
param: 'isEnabled',
|
|
1235
1234
|
defaultValue: false
|
|
1235
|
+
}),
|
|
1236
|
+
// Added 2026-01-14
|
|
1237
|
+
platform_editor_context_context_types_migration: createBooleanExperiment({
|
|
1238
|
+
productKeys: {
|
|
1239
|
+
confluence: 'platform_editor_context_context_types_migration',
|
|
1240
|
+
jira: 'platform_editor_context_context_types_migration'
|
|
1241
|
+
},
|
|
1242
|
+
param: 'isEnabled',
|
|
1243
|
+
defaultValue: false
|
|
1236
1244
|
})
|
|
1237
1245
|
};
|
|
@@ -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'
|
|
@@ -700,15 +708,6 @@ export var editorExperimentsConfig = {
|
|
|
700
708
|
param: 'isEnabled',
|
|
701
709
|
defaultValue: false
|
|
702
710
|
}),
|
|
703
|
-
//Added 2025-09-09
|
|
704
|
-
platform_editor_toolbar_aifc_patch_4: createBooleanExperiment({
|
|
705
|
-
productKeys: {
|
|
706
|
-
jira: 'platform_editor_toolbar_aifc_patch_4',
|
|
707
|
-
confluence: 'platform_editor_toolbar_aifc_patch_4'
|
|
708
|
-
},
|
|
709
|
-
param: 'isEnabled',
|
|
710
|
-
defaultValue: false
|
|
711
|
-
}),
|
|
712
711
|
// Added 2025-08-04
|
|
713
712
|
platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
|
|
714
713
|
productKeys: {
|
|
@@ -1233,5 +1232,14 @@ export var editorExperimentsConfig = {
|
|
|
1233
1232
|
},
|
|
1234
1233
|
param: 'isEnabled',
|
|
1235
1234
|
defaultValue: false
|
|
1235
|
+
}),
|
|
1236
|
+
// Added 2026-01-14
|
|
1237
|
+
platform_editor_context_context_types_migration: createBooleanExperiment({
|
|
1238
|
+
productKeys: {
|
|
1239
|
+
confluence: 'platform_editor_context_context_types_migration',
|
|
1240
|
+
jira: 'platform_editor_context_context_types_migration'
|
|
1241
|
+
},
|
|
1242
|
+
param: 'isEnabled',
|
|
1243
|
+
defaultValue: false
|
|
1236
1244
|
})
|
|
1237
1245
|
};
|
|
@@ -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;
|
|
@@ -669,12 +675,6 @@ export declare const editorExperimentsConfig: {
|
|
|
669
675
|
productKeys?: ProductKeys;
|
|
670
676
|
typeGuard: IsBooleanType;
|
|
671
677
|
};
|
|
672
|
-
platform_editor_toolbar_aifc_patch_4: {
|
|
673
|
-
defaultValue: boolean;
|
|
674
|
-
param: string;
|
|
675
|
-
productKeys?: ProductKeys;
|
|
676
|
-
typeGuard: IsBooleanType;
|
|
677
|
-
};
|
|
678
678
|
platform_editor_toolbar_aifc_patch_6: {
|
|
679
679
|
defaultValue: boolean;
|
|
680
680
|
param: string;
|
|
@@ -914,5 +914,11 @@ export declare const editorExperimentsConfig: {
|
|
|
914
914
|
productKeys?: ProductKeys;
|
|
915
915
|
typeGuard: IsBooleanType;
|
|
916
916
|
};
|
|
917
|
+
platform_editor_context_context_types_migration: {
|
|
918
|
+
defaultValue: boolean;
|
|
919
|
+
param: string;
|
|
920
|
+
productKeys?: ProductKeys;
|
|
921
|
+
typeGuard: IsBooleanType;
|
|
922
|
+
};
|
|
917
923
|
};
|
|
918
924
|
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;
|
|
@@ -669,12 +675,6 @@ export declare const editorExperimentsConfig: {
|
|
|
669
675
|
productKeys?: ProductKeys;
|
|
670
676
|
typeGuard: IsBooleanType;
|
|
671
677
|
};
|
|
672
|
-
platform_editor_toolbar_aifc_patch_4: {
|
|
673
|
-
defaultValue: boolean;
|
|
674
|
-
param: string;
|
|
675
|
-
productKeys?: ProductKeys;
|
|
676
|
-
typeGuard: IsBooleanType;
|
|
677
|
-
};
|
|
678
678
|
platform_editor_toolbar_aifc_patch_6: {
|
|
679
679
|
defaultValue: boolean;
|
|
680
680
|
param: string;
|
|
@@ -914,5 +914,11 @@ export declare const editorExperimentsConfig: {
|
|
|
914
914
|
productKeys?: ProductKeys;
|
|
915
915
|
typeGuard: IsBooleanType;
|
|
916
916
|
};
|
|
917
|
+
platform_editor_context_context_types_migration: {
|
|
918
|
+
defaultValue: boolean;
|
|
919
|
+
param: string;
|
|
920
|
+
productKeys?: ProductKeys;
|
|
921
|
+
typeGuard: IsBooleanType;
|
|
922
|
+
};
|
|
917
923
|
};
|
|
918
924
|
export {};
|
package/package.json
CHANGED