@atlaskit/tmp-editor-statsig 16.14.0 → 16.15.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
|
+
## 16.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`9ee3f2262dfcf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9ee3f2262dfcf) -
|
|
8
|
+
improve performance of table floating toolbar when determine the disabled state of distribute
|
|
9
|
+
column button
|
|
10
|
+
|
|
3
11
|
## 16.14.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -855,6 +855,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
855
855
|
param: 'isEnabled',
|
|
856
856
|
defaultValue: false
|
|
857
857
|
}),
|
|
858
|
+
// Added 2026-01-08
|
|
859
|
+
platform_editor_table_toolbar_perf_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
860
|
+
productKeys: {
|
|
861
|
+
confluence: 'platform_editor_table_toolbar_perf_fix'
|
|
862
|
+
},
|
|
863
|
+
param: 'isEnabled',
|
|
864
|
+
defaultValue: false
|
|
865
|
+
}),
|
|
858
866
|
// Added 2025-09-01
|
|
859
867
|
cc_editor_ai_content_mode: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
860
868
|
productKeys: {
|
|
@@ -849,6 +849,14 @@ export const editorExperimentsConfig = {
|
|
|
849
849
|
param: 'isEnabled',
|
|
850
850
|
defaultValue: false
|
|
851
851
|
}),
|
|
852
|
+
// Added 2026-01-08
|
|
853
|
+
platform_editor_table_toolbar_perf_fix: createBooleanExperiment({
|
|
854
|
+
productKeys: {
|
|
855
|
+
confluence: 'platform_editor_table_toolbar_perf_fix'
|
|
856
|
+
},
|
|
857
|
+
param: 'isEnabled',
|
|
858
|
+
defaultValue: false
|
|
859
|
+
}),
|
|
852
860
|
// Added 2025-09-01
|
|
853
861
|
cc_editor_ai_content_mode: createMultivariateExperiment({
|
|
854
862
|
productKeys: {
|
|
@@ -849,6 +849,14 @@ export var editorExperimentsConfig = {
|
|
|
849
849
|
param: 'isEnabled',
|
|
850
850
|
defaultValue: false
|
|
851
851
|
}),
|
|
852
|
+
// Added 2026-01-08
|
|
853
|
+
platform_editor_table_toolbar_perf_fix: createBooleanExperiment({
|
|
854
|
+
productKeys: {
|
|
855
|
+
confluence: 'platform_editor_table_toolbar_perf_fix'
|
|
856
|
+
},
|
|
857
|
+
param: 'isEnabled',
|
|
858
|
+
defaultValue: false
|
|
859
|
+
}),
|
|
852
860
|
// Added 2025-09-01
|
|
853
861
|
cc_editor_ai_content_mode: createMultivariateExperiment({
|
|
854
862
|
productKeys: {
|
|
@@ -723,6 +723,12 @@ export declare const editorExperimentsConfig: {
|
|
|
723
723
|
productKeys?: ProductKeys;
|
|
724
724
|
typeGuard: IsBooleanType;
|
|
725
725
|
};
|
|
726
|
+
platform_editor_table_toolbar_perf_fix: {
|
|
727
|
+
defaultValue: boolean;
|
|
728
|
+
param: string;
|
|
729
|
+
productKeys?: ProductKeys;
|
|
730
|
+
typeGuard: IsBooleanType;
|
|
731
|
+
};
|
|
726
732
|
platform_hover_card_preview_panel: {
|
|
727
733
|
defaultValue: 'control' | 'test';
|
|
728
734
|
param: string;
|
|
@@ -723,6 +723,12 @@ export declare const editorExperimentsConfig: {
|
|
|
723
723
|
productKeys?: ProductKeys;
|
|
724
724
|
typeGuard: IsBooleanType;
|
|
725
725
|
};
|
|
726
|
+
platform_editor_table_toolbar_perf_fix: {
|
|
727
|
+
defaultValue: boolean;
|
|
728
|
+
param: string;
|
|
729
|
+
productKeys?: ProductKeys;
|
|
730
|
+
typeGuard: IsBooleanType;
|
|
731
|
+
};
|
|
726
732
|
platform_hover_card_preview_panel: {
|
|
727
733
|
defaultValue: 'control' | 'test';
|
|
728
734
|
param: string;
|
package/package.json
CHANGED