@atlaskit/tmp-editor-statsig 29.6.0 → 29.6.1
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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 29.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`abf0f1a208ab4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/abf0f1a208ab4) -
|
|
8
|
+
EDITOR-5441 Update comment editor border raidus
|
|
9
|
+
|
|
3
10
|
## 29.6.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -718,6 +718,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
718
718
|
param: 'isEnabled',
|
|
719
719
|
defaultValue: false
|
|
720
720
|
}),
|
|
721
|
+
// Added 2026-02-19
|
|
722
|
+
platform_editor_comment_editor_border_radius: (0, _experimentBuilders.createBooleanExperiment)({
|
|
723
|
+
productKeys: {
|
|
724
|
+
confluence: 'platform_editor_comment_editor_border_radius'
|
|
725
|
+
},
|
|
726
|
+
param: 'isEnabled',
|
|
727
|
+
defaultValue: false
|
|
728
|
+
}),
|
|
721
729
|
// Added 2025-07-30
|
|
722
730
|
platform_editor_blocktaskitem_node_tenantid: (0, _experimentBuilders.createBooleanExperiment)({
|
|
723
731
|
productKeys: {
|
|
@@ -712,6 +712,14 @@ export const editorExperimentsConfig = {
|
|
|
712
712
|
param: 'isEnabled',
|
|
713
713
|
defaultValue: false
|
|
714
714
|
}),
|
|
715
|
+
// Added 2026-02-19
|
|
716
|
+
platform_editor_comment_editor_border_radius: createBooleanExperiment({
|
|
717
|
+
productKeys: {
|
|
718
|
+
confluence: 'platform_editor_comment_editor_border_radius'
|
|
719
|
+
},
|
|
720
|
+
param: 'isEnabled',
|
|
721
|
+
defaultValue: false
|
|
722
|
+
}),
|
|
715
723
|
// Added 2025-07-30
|
|
716
724
|
platform_editor_blocktaskitem_node_tenantid: createBooleanExperiment({
|
|
717
725
|
productKeys: {
|
|
@@ -712,6 +712,14 @@ export var editorExperimentsConfig = {
|
|
|
712
712
|
param: 'isEnabled',
|
|
713
713
|
defaultValue: false
|
|
714
714
|
}),
|
|
715
|
+
// Added 2026-02-19
|
|
716
|
+
platform_editor_comment_editor_border_radius: createBooleanExperiment({
|
|
717
|
+
productKeys: {
|
|
718
|
+
confluence: 'platform_editor_comment_editor_border_radius'
|
|
719
|
+
},
|
|
720
|
+
param: 'isEnabled',
|
|
721
|
+
defaultValue: false
|
|
722
|
+
}),
|
|
715
723
|
// Added 2025-07-30
|
|
716
724
|
platform_editor_blocktaskitem_node_tenantid: createBooleanExperiment({
|
|
717
725
|
productKeys: {
|
|
@@ -1056,6 +1056,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1056
1056
|
productKeys?: ProductKeys;
|
|
1057
1057
|
typeGuard: IsBooleanType;
|
|
1058
1058
|
};
|
|
1059
|
+
platform_editor_comment_editor_border_radius: {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1059
1065
|
confluence_frontend_fix_date_hydration_error: {
|
|
1060
1066
|
defaultValue: boolean;
|
|
1061
1067
|
param: string;
|
|
@@ -1056,6 +1056,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1056
1056
|
productKeys?: ProductKeys;
|
|
1057
1057
|
typeGuard: IsBooleanType;
|
|
1058
1058
|
};
|
|
1059
|
+
platform_editor_comment_editor_border_radius: {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1059
1065
|
confluence_frontend_fix_date_hydration_error: {
|
|
1060
1066
|
defaultValue: boolean;
|
|
1061
1067
|
param: string;
|
package/package.json
CHANGED