@atlaskit/tmp-editor-statsig 11.7.0 → 11.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 11.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`463f3da1f7822`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/463f3da1f7822) -
|
|
8
|
+
ED-29040 add experiment platform_editor_toolbar_aifc_template_editor which enables the new toolbar
|
|
9
|
+
in the template editor
|
|
10
|
+
|
|
3
11
|
## 11.7.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -777,5 +777,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
777
777
|
},
|
|
778
778
|
param: 'isEnabled',
|
|
779
779
|
defaultValue: false
|
|
780
|
+
}),
|
|
781
|
+
// Added 2025-08-25
|
|
782
|
+
platform_editor_toolbar_aifc_template_editor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
783
|
+
productKeys: {
|
|
784
|
+
confluence: 'platform_editor_toolbar_aifc_template_editor'
|
|
785
|
+
},
|
|
786
|
+
param: 'isEnabled',
|
|
787
|
+
defaultValue: false
|
|
780
788
|
})
|
|
781
789
|
};
|
|
@@ -771,5 +771,13 @@ export const editorExperimentsConfig = {
|
|
|
771
771
|
},
|
|
772
772
|
param: 'isEnabled',
|
|
773
773
|
defaultValue: false
|
|
774
|
+
}),
|
|
775
|
+
// Added 2025-08-25
|
|
776
|
+
platform_editor_toolbar_aifc_template_editor: createBooleanExperiment({
|
|
777
|
+
productKeys: {
|
|
778
|
+
confluence: 'platform_editor_toolbar_aifc_template_editor'
|
|
779
|
+
},
|
|
780
|
+
param: 'isEnabled',
|
|
781
|
+
defaultValue: false
|
|
774
782
|
})
|
|
775
783
|
};
|
|
@@ -771,5 +771,13 @@ export var editorExperimentsConfig = {
|
|
|
771
771
|
},
|
|
772
772
|
param: 'isEnabled',
|
|
773
773
|
defaultValue: false
|
|
774
|
+
}),
|
|
775
|
+
// Added 2025-08-25
|
|
776
|
+
platform_editor_toolbar_aifc_template_editor: createBooleanExperiment({
|
|
777
|
+
productKeys: {
|
|
778
|
+
confluence: 'platform_editor_toolbar_aifc_template_editor'
|
|
779
|
+
},
|
|
780
|
+
param: 'isEnabled',
|
|
781
|
+
defaultValue: false
|
|
774
782
|
})
|
|
775
783
|
};
|
|
@@ -575,4 +575,10 @@ export declare const editorExperimentsConfig: {
|
|
|
575
575
|
param: string;
|
|
576
576
|
productKeys?: import("./types").ProductKeys;
|
|
577
577
|
};
|
|
578
|
+
platform_editor_toolbar_aifc_template_editor: {
|
|
579
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
580
|
+
defaultValue: boolean;
|
|
581
|
+
param: string;
|
|
582
|
+
productKeys?: import("./types").ProductKeys;
|
|
583
|
+
};
|
|
578
584
|
};
|
|
@@ -575,4 +575,10 @@ export declare const editorExperimentsConfig: {
|
|
|
575
575
|
param: string;
|
|
576
576
|
productKeys?: import("./types").ProductKeys;
|
|
577
577
|
};
|
|
578
|
+
platform_editor_toolbar_aifc_template_editor: {
|
|
579
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
580
|
+
defaultValue: boolean;
|
|
581
|
+
param: string;
|
|
582
|
+
productKeys?: import("./types").ProductKeys;
|
|
583
|
+
};
|
|
578
584
|
};
|
package/package.json
CHANGED