@atlaskit/tmp-editor-statsig 16.13.0 → 16.14.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`7c8501566cbe0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7c8501566cbe0) -
|
|
8
|
+
improve task item styles by using 1 inline svg instead of 2
|
|
9
|
+
|
|
3
10
|
## 16.13.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -602,6 +602,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
602
602
|
param: 'isEnabled',
|
|
603
603
|
defaultValue: false
|
|
604
604
|
}),
|
|
605
|
+
// Added 2026-01-10
|
|
606
|
+
platform_editor_task_item_styles: (0, _experimentBuilders.createBooleanExperiment)({
|
|
607
|
+
productKeys: {
|
|
608
|
+
confluence: 'platform_editor_task_item_styles'
|
|
609
|
+
},
|
|
610
|
+
param: 'isEnabled',
|
|
611
|
+
defaultValue: false
|
|
612
|
+
}),
|
|
605
613
|
// Added 2025-08-17
|
|
606
614
|
platform_hover_card_preview_panel: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
607
615
|
productKeys: {
|
|
@@ -596,6 +596,14 @@ export const editorExperimentsConfig = {
|
|
|
596
596
|
param: 'isEnabled',
|
|
597
597
|
defaultValue: false
|
|
598
598
|
}),
|
|
599
|
+
// Added 2026-01-10
|
|
600
|
+
platform_editor_task_item_styles: createBooleanExperiment({
|
|
601
|
+
productKeys: {
|
|
602
|
+
confluence: 'platform_editor_task_item_styles'
|
|
603
|
+
},
|
|
604
|
+
param: 'isEnabled',
|
|
605
|
+
defaultValue: false
|
|
606
|
+
}),
|
|
599
607
|
// Added 2025-08-17
|
|
600
608
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
601
609
|
productKeys: {
|
|
@@ -596,6 +596,14 @@ export var editorExperimentsConfig = {
|
|
|
596
596
|
param: 'isEnabled',
|
|
597
597
|
defaultValue: false
|
|
598
598
|
}),
|
|
599
|
+
// Added 2026-01-10
|
|
600
|
+
platform_editor_task_item_styles: createBooleanExperiment({
|
|
601
|
+
productKeys: {
|
|
602
|
+
confluence: 'platform_editor_task_item_styles'
|
|
603
|
+
},
|
|
604
|
+
param: 'isEnabled',
|
|
605
|
+
defaultValue: false
|
|
606
|
+
}),
|
|
599
607
|
// Added 2025-08-17
|
|
600
608
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
601
609
|
productKeys: {
|
|
@@ -705,6 +705,12 @@ export declare const editorExperimentsConfig: {
|
|
|
705
705
|
productKeys?: ProductKeys;
|
|
706
706
|
typeGuard: IsBooleanType;
|
|
707
707
|
};
|
|
708
|
+
platform_editor_task_item_styles: {
|
|
709
|
+
defaultValue: boolean;
|
|
710
|
+
param: string;
|
|
711
|
+
productKeys?: ProductKeys;
|
|
712
|
+
typeGuard: IsBooleanType;
|
|
713
|
+
};
|
|
708
714
|
platform_editor_wait_for_space_after_ascii_emoji: {
|
|
709
715
|
defaultValue: boolean;
|
|
710
716
|
param: string;
|
|
@@ -705,6 +705,12 @@ export declare const editorExperimentsConfig: {
|
|
|
705
705
|
productKeys?: ProductKeys;
|
|
706
706
|
typeGuard: IsBooleanType;
|
|
707
707
|
};
|
|
708
|
+
platform_editor_task_item_styles: {
|
|
709
|
+
defaultValue: boolean;
|
|
710
|
+
param: string;
|
|
711
|
+
productKeys?: ProductKeys;
|
|
712
|
+
typeGuard: IsBooleanType;
|
|
713
|
+
};
|
|
708
714
|
platform_editor_wait_for_space_after_ascii_emoji: {
|
|
709
715
|
defaultValue: boolean;
|
|
710
716
|
param: string;
|
package/package.json
CHANGED