@atlaskit/tmp-editor-statsig 17.10.1 → 17.11.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
|
+
## 17.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4de30defb09c5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4de30defb09c5) -
|
|
8
|
+
Fix overflow of table inside multi-column layouts.
|
|
9
|
+
|
|
3
10
|
## 17.10.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -605,6 +605,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
605
605
|
param: 'isEnabled',
|
|
606
606
|
defaultValue: false
|
|
607
607
|
}),
|
|
608
|
+
// Added 2026-01-27
|
|
609
|
+
platform_editor_table_excerpts_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
610
|
+
productKeys: {
|
|
611
|
+
confluence: 'platform_editor_table_excerpts_fix'
|
|
612
|
+
},
|
|
613
|
+
param: 'isEnabled',
|
|
614
|
+
defaultValue: false
|
|
615
|
+
}),
|
|
608
616
|
// Added 2026-01-10
|
|
609
617
|
platform_editor_task_item_styles: (0, _experimentBuilders.createBooleanExperiment)({
|
|
610
618
|
productKeys: {
|
|
@@ -599,6 +599,14 @@ export const editorExperimentsConfig = {
|
|
|
599
599
|
param: 'isEnabled',
|
|
600
600
|
defaultValue: false
|
|
601
601
|
}),
|
|
602
|
+
// Added 2026-01-27
|
|
603
|
+
platform_editor_table_excerpts_fix: createBooleanExperiment({
|
|
604
|
+
productKeys: {
|
|
605
|
+
confluence: 'platform_editor_table_excerpts_fix'
|
|
606
|
+
},
|
|
607
|
+
param: 'isEnabled',
|
|
608
|
+
defaultValue: false
|
|
609
|
+
}),
|
|
602
610
|
// Added 2026-01-10
|
|
603
611
|
platform_editor_task_item_styles: createBooleanExperiment({
|
|
604
612
|
productKeys: {
|
|
@@ -599,6 +599,14 @@ export var editorExperimentsConfig = {
|
|
|
599
599
|
param: 'isEnabled',
|
|
600
600
|
defaultValue: false
|
|
601
601
|
}),
|
|
602
|
+
// Added 2026-01-27
|
|
603
|
+
platform_editor_table_excerpts_fix: createBooleanExperiment({
|
|
604
|
+
productKeys: {
|
|
605
|
+
confluence: 'platform_editor_table_excerpts_fix'
|
|
606
|
+
},
|
|
607
|
+
param: 'isEnabled',
|
|
608
|
+
defaultValue: false
|
|
609
|
+
}),
|
|
602
610
|
// Added 2026-01-10
|
|
603
611
|
platform_editor_task_item_styles: createBooleanExperiment({
|
|
604
612
|
productKeys: {
|
|
@@ -623,6 +623,12 @@ export declare const editorExperimentsConfig: {
|
|
|
623
623
|
productKeys?: ProductKeys;
|
|
624
624
|
typeGuard: IsBooleanType;
|
|
625
625
|
};
|
|
626
|
+
platform_editor_table_excerpts_fix: {
|
|
627
|
+
defaultValue: boolean;
|
|
628
|
+
param: string;
|
|
629
|
+
productKeys?: ProductKeys;
|
|
630
|
+
typeGuard: IsBooleanType;
|
|
631
|
+
};
|
|
626
632
|
platform_editor_table_sticky_header_improvements: {
|
|
627
633
|
defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
628
634
|
param: string;
|
|
@@ -623,6 +623,12 @@ export declare const editorExperimentsConfig: {
|
|
|
623
623
|
productKeys?: ProductKeys;
|
|
624
624
|
typeGuard: IsBooleanType;
|
|
625
625
|
};
|
|
626
|
+
platform_editor_table_excerpts_fix: {
|
|
627
|
+
defaultValue: boolean;
|
|
628
|
+
param: string;
|
|
629
|
+
productKeys?: ProductKeys;
|
|
630
|
+
typeGuard: IsBooleanType;
|
|
631
|
+
};
|
|
626
632
|
platform_editor_table_sticky_header_improvements: {
|
|
627
633
|
defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
628
634
|
param: string;
|
package/package.json
CHANGED