@atlaskit/tmp-editor-statsig 49.0.0 → 50.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,18 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 50.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`f65fa1ea7c0e5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f65fa1ea7c0e5) -
|
|
8
|
+
Cleaned up stale feature flag `platform_editor_fix_button_name_violation_in_table`. The flag has
|
|
9
|
+
been fully rolled out, so the button name fix in table floating insert button is now always
|
|
10
|
+
applied.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 49.0.0
|
|
4
17
|
|
|
5
18
|
### Major Changes
|
|
@@ -949,14 +949,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
949
949
|
param: 'isEnabled',
|
|
950
950
|
defaultValue: false
|
|
951
951
|
}),
|
|
952
|
-
// Added 2025-09-10
|
|
953
|
-
platform_editor_fix_button_name_violation_in_table: (0, _experimentBuilders.createBooleanExperiment)({
|
|
954
|
-
productKeys: {
|
|
955
|
-
confluence: 'platform_editor_fix_button_name_violation_in_table'
|
|
956
|
-
},
|
|
957
|
-
param: 'isEnabled',
|
|
958
|
-
defaultValue: false
|
|
959
|
-
}),
|
|
960
952
|
// Added 2026-03-05
|
|
961
953
|
platform_editor_abort_ufo_on_user_interaction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
962
954
|
productKeys: {
|
|
@@ -943,14 +943,6 @@ export const editorExperimentsConfig = {
|
|
|
943
943
|
param: 'isEnabled',
|
|
944
944
|
defaultValue: false
|
|
945
945
|
}),
|
|
946
|
-
// Added 2025-09-10
|
|
947
|
-
platform_editor_fix_button_name_violation_in_table: createBooleanExperiment({
|
|
948
|
-
productKeys: {
|
|
949
|
-
confluence: 'platform_editor_fix_button_name_violation_in_table'
|
|
950
|
-
},
|
|
951
|
-
param: 'isEnabled',
|
|
952
|
-
defaultValue: false
|
|
953
|
-
}),
|
|
954
946
|
// Added 2026-03-05
|
|
955
947
|
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
956
948
|
productKeys: {
|
|
@@ -943,14 +943,6 @@ export var editorExperimentsConfig = {
|
|
|
943
943
|
param: 'isEnabled',
|
|
944
944
|
defaultValue: false
|
|
945
945
|
}),
|
|
946
|
-
// Added 2025-09-10
|
|
947
|
-
platform_editor_fix_button_name_violation_in_table: createBooleanExperiment({
|
|
948
|
-
productKeys: {
|
|
949
|
-
confluence: 'platform_editor_fix_button_name_violation_in_table'
|
|
950
|
-
},
|
|
951
|
-
param: 'isEnabled',
|
|
952
|
-
defaultValue: false
|
|
953
|
-
}),
|
|
954
946
|
// Added 2026-03-05
|
|
955
947
|
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
956
948
|
productKeys: {
|
|
@@ -487,12 +487,6 @@ export declare const editorExperimentsConfig: {
|
|
|
487
487
|
productKeys?: ProductKeys;
|
|
488
488
|
typeGuard: IsBooleanType;
|
|
489
489
|
};
|
|
490
|
-
platform_editor_fix_button_name_violation_in_table: {
|
|
491
|
-
defaultValue: boolean;
|
|
492
|
-
param: string;
|
|
493
|
-
productKeys?: ProductKeys;
|
|
494
|
-
typeGuard: IsBooleanType;
|
|
495
|
-
};
|
|
496
490
|
platform_editor_floating_toolbar_button_aria_label: {
|
|
497
491
|
defaultValue: boolean;
|
|
498
492
|
param: string;
|
|
@@ -487,12 +487,6 @@ export declare const editorExperimentsConfig: {
|
|
|
487
487
|
productKeys?: ProductKeys;
|
|
488
488
|
typeGuard: IsBooleanType;
|
|
489
489
|
};
|
|
490
|
-
platform_editor_fix_button_name_violation_in_table: {
|
|
491
|
-
defaultValue: boolean;
|
|
492
|
-
param: string;
|
|
493
|
-
productKeys?: ProductKeys;
|
|
494
|
-
typeGuard: IsBooleanType;
|
|
495
|
-
};
|
|
496
490
|
platform_editor_floating_toolbar_button_aria_label: {
|
|
497
491
|
defaultValue: boolean;
|
|
498
492
|
param: string;
|
package/package.json
CHANGED