@atlaskit/tmp-editor-statsig 13.6.0 → 13.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
|
+
## 13.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`925eb6478e9a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/925eb6478e9a5) -
|
|
8
|
+
Remove overflowY on tables to prevent Y axis scroll bar showing on Windows.
|
|
9
|
+
|
|
3
10
|
## 13.6.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -863,15 +863,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
863
863
|
param: 'isEnabled',
|
|
864
864
|
defaultValue: false
|
|
865
865
|
}),
|
|
866
|
-
// Added 2025-09-08
|
|
867
|
-
platform_editor_table_container_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
868
|
-
productKeys: {
|
|
869
|
-
confluence: 'platform_editor_table_container_width_fix',
|
|
870
|
-
jira: 'platform_editor_table_container_width_fix'
|
|
871
|
-
},
|
|
872
|
-
param: 'isEnabled',
|
|
873
|
-
defaultValue: false
|
|
874
|
-
}),
|
|
875
866
|
// Added 2025-09-01
|
|
876
867
|
cc_editor_ai_content_mode: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
877
868
|
productKeys: {
|
|
@@ -857,15 +857,6 @@ export const editorExperimentsConfig = {
|
|
|
857
857
|
param: 'isEnabled',
|
|
858
858
|
defaultValue: false
|
|
859
859
|
}),
|
|
860
|
-
// Added 2025-09-08
|
|
861
|
-
platform_editor_table_container_width_fix: createBooleanExperiment({
|
|
862
|
-
productKeys: {
|
|
863
|
-
confluence: 'platform_editor_table_container_width_fix',
|
|
864
|
-
jira: 'platform_editor_table_container_width_fix'
|
|
865
|
-
},
|
|
866
|
-
param: 'isEnabled',
|
|
867
|
-
defaultValue: false
|
|
868
|
-
}),
|
|
869
860
|
// Added 2025-09-01
|
|
870
861
|
cc_editor_ai_content_mode: createMultivariateExperiment({
|
|
871
862
|
productKeys: {
|
|
@@ -857,15 +857,6 @@ export var editorExperimentsConfig = {
|
|
|
857
857
|
param: 'isEnabled',
|
|
858
858
|
defaultValue: false
|
|
859
859
|
}),
|
|
860
|
-
// Added 2025-09-08
|
|
861
|
-
platform_editor_table_container_width_fix: createBooleanExperiment({
|
|
862
|
-
productKeys: {
|
|
863
|
-
confluence: 'platform_editor_table_container_width_fix',
|
|
864
|
-
jira: 'platform_editor_table_container_width_fix'
|
|
865
|
-
},
|
|
866
|
-
param: 'isEnabled',
|
|
867
|
-
defaultValue: false
|
|
868
|
-
}),
|
|
869
860
|
// Added 2025-09-01
|
|
870
861
|
cc_editor_ai_content_mode: createMultivariateExperiment({
|
|
871
862
|
productKeys: {
|
|
@@ -631,12 +631,6 @@ export declare const editorExperimentsConfig: {
|
|
|
631
631
|
param: string;
|
|
632
632
|
productKeys?: import("./types").ProductKeys;
|
|
633
633
|
};
|
|
634
|
-
platform_editor_table_container_width_fix: {
|
|
635
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
636
|
-
defaultValue: boolean;
|
|
637
|
-
param: string;
|
|
638
|
-
productKeys?: import("./types").ProductKeys;
|
|
639
|
-
};
|
|
640
634
|
cc_editor_ai_content_mode: {
|
|
641
635
|
values: ("test" | "control")[];
|
|
642
636
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
@@ -631,12 +631,6 @@ export declare const editorExperimentsConfig: {
|
|
|
631
631
|
param: string;
|
|
632
632
|
productKeys?: import("./types").ProductKeys;
|
|
633
633
|
};
|
|
634
|
-
platform_editor_table_container_width_fix: {
|
|
635
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
636
|
-
defaultValue: boolean;
|
|
637
|
-
param: string;
|
|
638
|
-
productKeys?: import("./types").ProductKeys;
|
|
639
|
-
};
|
|
640
634
|
cc_editor_ai_content_mode: {
|
|
641
635
|
values: ("test" | "control")[];
|
|
642
636
|
typeGuard: (value: unknown) => value is "test" | "control";
|
package/package.json
CHANGED