@atlaskit/tmp-editor-statsig 15.0.0 → 15.1.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
|
+
## 15.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5935652291a5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5935652291a5f) -
|
|
8
|
+
Remove platform_editor_table_drag_handle_hover experiment and enable hover behavior permanently
|
|
9
|
+
|
|
3
10
|
## 15.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -179,14 +179,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
179
179
|
param: 'isEnabled',
|
|
180
180
|
defaultValue: false
|
|
181
181
|
}),
|
|
182
|
-
platform_editor_table_drag_handle_hover: (0, _experimentBuilders.createBooleanExperiment)({
|
|
183
|
-
productKeys: {
|
|
184
|
-
confluence: 'platform_editor_table_drag_handle_hover',
|
|
185
|
-
jira: 'platform_editor_table_drag_handle_hover'
|
|
186
|
-
},
|
|
187
|
-
param: 'isEnabled',
|
|
188
|
-
defaultValue: false
|
|
189
|
-
}),
|
|
190
182
|
// Added 2024-09-05
|
|
191
183
|
support_table_in_comment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
192
184
|
productKeys: {
|
|
@@ -173,14 +173,6 @@ export const editorExperimentsConfig = {
|
|
|
173
173
|
param: 'isEnabled',
|
|
174
174
|
defaultValue: false
|
|
175
175
|
}),
|
|
176
|
-
platform_editor_table_drag_handle_hover: createBooleanExperiment({
|
|
177
|
-
productKeys: {
|
|
178
|
-
confluence: 'platform_editor_table_drag_handle_hover',
|
|
179
|
-
jira: 'platform_editor_table_drag_handle_hover'
|
|
180
|
-
},
|
|
181
|
-
param: 'isEnabled',
|
|
182
|
-
defaultValue: false
|
|
183
|
-
}),
|
|
184
176
|
// Added 2024-09-05
|
|
185
177
|
support_table_in_comment: createBooleanExperiment({
|
|
186
178
|
productKeys: {
|
|
@@ -173,14 +173,6 @@ export var editorExperimentsConfig = {
|
|
|
173
173
|
param: 'isEnabled',
|
|
174
174
|
defaultValue: false
|
|
175
175
|
}),
|
|
176
|
-
platform_editor_table_drag_handle_hover: createBooleanExperiment({
|
|
177
|
-
productKeys: {
|
|
178
|
-
confluence: 'platform_editor_table_drag_handle_hover',
|
|
179
|
-
jira: 'platform_editor_table_drag_handle_hover'
|
|
180
|
-
},
|
|
181
|
-
param: 'isEnabled',
|
|
182
|
-
defaultValue: false
|
|
183
|
-
}),
|
|
184
176
|
// Added 2024-09-05
|
|
185
177
|
support_table_in_comment: createBooleanExperiment({
|
|
186
178
|
productKeys: {
|
|
@@ -672,12 +672,6 @@ export declare const editorExperimentsConfig: {
|
|
|
672
672
|
productKeys?: ProductKeys;
|
|
673
673
|
typeGuard: IsBooleanType;
|
|
674
674
|
};
|
|
675
|
-
platform_editor_table_drag_handle_hover: {
|
|
676
|
-
defaultValue: boolean;
|
|
677
|
-
param: string;
|
|
678
|
-
productKeys?: ProductKeys;
|
|
679
|
-
typeGuard: IsBooleanType;
|
|
680
|
-
};
|
|
681
675
|
platform_editor_table_sticky_header_improvements: {
|
|
682
676
|
defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
683
677
|
param: string;
|
|
@@ -672,12 +672,6 @@ export declare const editorExperimentsConfig: {
|
|
|
672
672
|
productKeys?: ProductKeys;
|
|
673
673
|
typeGuard: IsBooleanType;
|
|
674
674
|
};
|
|
675
|
-
platform_editor_table_drag_handle_hover: {
|
|
676
|
-
defaultValue: boolean;
|
|
677
|
-
param: string;
|
|
678
|
-
productKeys?: ProductKeys;
|
|
679
|
-
typeGuard: IsBooleanType;
|
|
680
|
-
};
|
|
681
675
|
platform_editor_table_sticky_header_improvements: {
|
|
682
676
|
defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
683
677
|
param: string;
|
package/package.json
CHANGED