@atlaskit/tmp-editor-statsig 51.1.0 → 52.0.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
|
+
## 52.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`e2f512c5e8eba`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e2f512c5e8eba) -
|
|
8
|
+
Clean up feature flag platform_editor_task_item_styles for task item checkbox and remove unused
|
|
9
|
+
styles objects taskItemCheckboxStylesWithBlockTaskItem and taskItemCheckboxStyles. Renamed
|
|
10
|
+
taskItemNextCheckboxStyles to taskItemCheckboxStyles
|
|
11
|
+
|
|
3
12
|
## 51.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -665,14 +665,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
665
665
|
param: 'isEnabled',
|
|
666
666
|
defaultValue: false
|
|
667
667
|
}),
|
|
668
|
-
// Added 2026-01-10
|
|
669
|
-
platform_editor_task_item_styles: (0, _experimentBuilders.createBooleanExperiment)({
|
|
670
|
-
productKeys: {
|
|
671
|
-
confluence: 'platform_editor_task_item_styles'
|
|
672
|
-
},
|
|
673
|
-
param: 'isEnabled',
|
|
674
|
-
defaultValue: false
|
|
675
|
-
}),
|
|
676
668
|
// Added 2025-08-17
|
|
677
669
|
platform_hover_card_preview_panel: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
678
670
|
productKeys: {
|
|
@@ -659,14 +659,6 @@ export const editorExperimentsConfig = {
|
|
|
659
659
|
param: 'isEnabled',
|
|
660
660
|
defaultValue: false
|
|
661
661
|
}),
|
|
662
|
-
// Added 2026-01-10
|
|
663
|
-
platform_editor_task_item_styles: createBooleanExperiment({
|
|
664
|
-
productKeys: {
|
|
665
|
-
confluence: 'platform_editor_task_item_styles'
|
|
666
|
-
},
|
|
667
|
-
param: 'isEnabled',
|
|
668
|
-
defaultValue: false
|
|
669
|
-
}),
|
|
670
662
|
// Added 2025-08-17
|
|
671
663
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
672
664
|
productKeys: {
|
|
@@ -659,14 +659,6 @@ export var editorExperimentsConfig = {
|
|
|
659
659
|
param: 'isEnabled',
|
|
660
660
|
defaultValue: false
|
|
661
661
|
}),
|
|
662
|
-
// Added 2026-01-10
|
|
663
|
-
platform_editor_task_item_styles: createBooleanExperiment({
|
|
664
|
-
productKeys: {
|
|
665
|
-
confluence: 'platform_editor_task_item_styles'
|
|
666
|
-
},
|
|
667
|
-
param: 'isEnabled',
|
|
668
|
-
defaultValue: false
|
|
669
|
-
}),
|
|
670
662
|
// Added 2025-08-17
|
|
671
663
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
672
664
|
productKeys: {
|
|
@@ -692,12 +692,6 @@ export declare const editorExperimentsConfig: {
|
|
|
692
692
|
productKeys?: ProductKeys;
|
|
693
693
|
typeGuard: IsBooleanType;
|
|
694
694
|
};
|
|
695
|
-
platform_editor_task_item_styles: {
|
|
696
|
-
defaultValue: boolean;
|
|
697
|
-
param: string;
|
|
698
|
-
productKeys?: ProductKeys;
|
|
699
|
-
typeGuard: IsBooleanType;
|
|
700
|
-
};
|
|
701
695
|
platform_editor_add_image_editing: {
|
|
702
696
|
defaultValue: boolean;
|
|
703
697
|
param: string;
|
|
@@ -692,12 +692,6 @@ export declare const editorExperimentsConfig: {
|
|
|
692
692
|
productKeys?: ProductKeys;
|
|
693
693
|
typeGuard: IsBooleanType;
|
|
694
694
|
};
|
|
695
|
-
platform_editor_task_item_styles: {
|
|
696
|
-
defaultValue: boolean;
|
|
697
|
-
param: string;
|
|
698
|
-
productKeys?: ProductKeys;
|
|
699
|
-
typeGuard: IsBooleanType;
|
|
700
|
-
};
|
|
701
695
|
platform_editor_add_image_editing: {
|
|
702
696
|
defaultValue: boolean;
|
|
703
697
|
param: string;
|
package/package.json
CHANGED