@atlaskit/tmp-editor-statsig 12.7.0 → 12.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c0113eeccb2df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0113eeccb2df) -
|
|
8
|
+
[ux] ED-29120 add a new config option for default editor preset
|
|
9
|
+
(`toolbar.enableNewToolbarExperience`) which allows the new toolbar to be disabled. This is needed
|
|
10
|
+
for editors that can't be excluded at the experiment level.
|
|
11
|
+
|
|
3
12
|
## 12.7.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -797,6 +797,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
797
797
|
param: 'isEnabled',
|
|
798
798
|
defaultValue: false
|
|
799
799
|
}),
|
|
800
|
+
// Added 2025-08-29
|
|
801
|
+
platform_editor_toolbar_aifc_exp_code_toggle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
802
|
+
productKeys: {
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
805
|
+
},
|
|
806
|
+
param: 'isEnabled',
|
|
807
|
+
defaultValue: false
|
|
808
|
+
}),
|
|
800
809
|
// Added 2025-08-27
|
|
801
810
|
platform_editor_toolbar_support_custom_components: (0, _experimentBuilders.createBooleanExperiment)({
|
|
802
811
|
productKeys: {
|
|
@@ -791,6 +791,15 @@ export const editorExperimentsConfig = {
|
|
|
791
791
|
param: 'isEnabled',
|
|
792
792
|
defaultValue: false
|
|
793
793
|
}),
|
|
794
|
+
// Added 2025-08-29
|
|
795
|
+
platform_editor_toolbar_aifc_exp_code_toggle: createBooleanExperiment({
|
|
796
|
+
productKeys: {
|
|
797
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
798
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
799
|
+
},
|
|
800
|
+
param: 'isEnabled',
|
|
801
|
+
defaultValue: false
|
|
802
|
+
}),
|
|
794
803
|
// Added 2025-08-27
|
|
795
804
|
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
796
805
|
productKeys: {
|
|
@@ -791,6 +791,15 @@ export var editorExperimentsConfig = {
|
|
|
791
791
|
param: 'isEnabled',
|
|
792
792
|
defaultValue: false
|
|
793
793
|
}),
|
|
794
|
+
// Added 2025-08-29
|
|
795
|
+
platform_editor_toolbar_aifc_exp_code_toggle: createBooleanExperiment({
|
|
796
|
+
productKeys: {
|
|
797
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
798
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
799
|
+
},
|
|
800
|
+
param: 'isEnabled',
|
|
801
|
+
defaultValue: false
|
|
802
|
+
}),
|
|
794
803
|
// Added 2025-08-27
|
|
795
804
|
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
796
805
|
productKeys: {
|
|
@@ -588,6 +588,12 @@ export declare const editorExperimentsConfig: {
|
|
|
588
588
|
param: string;
|
|
589
589
|
productKeys?: import("./types").ProductKeys;
|
|
590
590
|
};
|
|
591
|
+
platform_editor_toolbar_aifc_exp_code_toggle: {
|
|
592
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
|
+
defaultValue: boolean;
|
|
594
|
+
param: string;
|
|
595
|
+
productKeys?: import("./types").ProductKeys;
|
|
596
|
+
};
|
|
591
597
|
platform_editor_toolbar_support_custom_components: {
|
|
592
598
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
599
|
defaultValue: boolean;
|
|
@@ -588,6 +588,12 @@ export declare const editorExperimentsConfig: {
|
|
|
588
588
|
param: string;
|
|
589
589
|
productKeys?: import("./types").ProductKeys;
|
|
590
590
|
};
|
|
591
|
+
platform_editor_toolbar_aifc_exp_code_toggle: {
|
|
592
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
|
+
defaultValue: boolean;
|
|
594
|
+
param: string;
|
|
595
|
+
productKeys?: import("./types").ProductKeys;
|
|
596
|
+
};
|
|
591
597
|
platform_editor_toolbar_support_custom_components: {
|
|
592
598
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
599
|
defaultValue: boolean;
|
package/package.json
CHANGED