@atlaskit/tmp-editor-statsig 93.0.0 → 93.0.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,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 93.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`a4f97c853dccf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4f97c853dccf) -
|
|
8
|
+
Extend `no-module-level-eval` lint rule to cover editor experiment APIs (`expValEquals`, `expVal`,
|
|
9
|
+
`editorExperiment`, `expValEqualsNoExposure`) imported from `@atlaskit/tmp-editor-statsig`
|
|
10
|
+
subpaths. Module-level evaluation of these functions causes flakiness because experiment values
|
|
11
|
+
may not be resolved yet at import time.
|
|
12
|
+
|
|
13
|
+
Fix existing violations in `editor-plugin-block-controls` (`global-styles.tsx`) and
|
|
14
|
+
`editor-plugin-table` (`ContextualMenu.tsx`) by converting module-level experiment evaluations to
|
|
15
|
+
lazy function calls.
|
|
16
|
+
|
|
17
|
+
Clean up fully-launched experiment `platform_editor_unify_native_dnd_selectors` — replace
|
|
18
|
+
conditional selector logic with the winning `dragHandlerAnchorSelectorWithTaskExclusion` value and
|
|
19
|
+
remove the experiment from `experiments-config.ts`.
|
|
20
|
+
|
|
3
21
|
## 93.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
|
@@ -941,14 +941,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
941
941
|
param: 'isEnabled',
|
|
942
942
|
defaultValue: false
|
|
943
943
|
}),
|
|
944
|
-
platform_editor_unify_native_dnd_selectors: (0, _experimentBuilders.createBooleanExperiment)({
|
|
945
|
-
productKeys: {
|
|
946
|
-
confluence: 'platform_editor_unify_native_dnd_selectors',
|
|
947
|
-
jira: 'platform_editor_unify_native_dnd_selectors'
|
|
948
|
-
},
|
|
949
|
-
param: 'isEnabled',
|
|
950
|
-
defaultValue: false
|
|
951
|
-
}),
|
|
952
944
|
// Added 2026-03-05
|
|
953
945
|
platform_editor_abort_ufo_on_user_interaction: (0, _experimentBuilders.createBooleanExperiment)({
|
|
954
946
|
productKeys: {
|
|
@@ -935,14 +935,6 @@ export const editorExperimentsConfig = {
|
|
|
935
935
|
param: 'isEnabled',
|
|
936
936
|
defaultValue: false
|
|
937
937
|
}),
|
|
938
|
-
platform_editor_unify_native_dnd_selectors: createBooleanExperiment({
|
|
939
|
-
productKeys: {
|
|
940
|
-
confluence: 'platform_editor_unify_native_dnd_selectors',
|
|
941
|
-
jira: 'platform_editor_unify_native_dnd_selectors'
|
|
942
|
-
},
|
|
943
|
-
param: 'isEnabled',
|
|
944
|
-
defaultValue: false
|
|
945
|
-
}),
|
|
946
938
|
// Added 2026-03-05
|
|
947
939
|
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
948
940
|
productKeys: {
|
|
@@ -935,14 +935,6 @@ export var editorExperimentsConfig = {
|
|
|
935
935
|
param: 'isEnabled',
|
|
936
936
|
defaultValue: false
|
|
937
937
|
}),
|
|
938
|
-
platform_editor_unify_native_dnd_selectors: createBooleanExperiment({
|
|
939
|
-
productKeys: {
|
|
940
|
-
confluence: 'platform_editor_unify_native_dnd_selectors',
|
|
941
|
-
jira: 'platform_editor_unify_native_dnd_selectors'
|
|
942
|
-
},
|
|
943
|
-
param: 'isEnabled',
|
|
944
|
-
defaultValue: false
|
|
945
|
-
}),
|
|
946
938
|
// Added 2026-03-05
|
|
947
939
|
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
948
940
|
productKeys: {
|
|
@@ -203,12 +203,6 @@ export declare const editorExperimentsConfig: {
|
|
|
203
203
|
productKeys?: ProductKeys;
|
|
204
204
|
typeGuard: IsBooleanType;
|
|
205
205
|
};
|
|
206
|
-
platform_editor_unify_native_dnd_selectors: {
|
|
207
|
-
defaultValue: boolean;
|
|
208
|
-
param: string;
|
|
209
|
-
productKeys?: ProductKeys;
|
|
210
|
-
typeGuard: IsBooleanType;
|
|
211
|
-
};
|
|
212
206
|
ai_speech_to_text_in_editor: {
|
|
213
207
|
defaultValue: boolean;
|
|
214
208
|
param: string;
|
|
@@ -203,12 +203,6 @@ export declare const editorExperimentsConfig: {
|
|
|
203
203
|
productKeys?: ProductKeys;
|
|
204
204
|
typeGuard: IsBooleanType;
|
|
205
205
|
};
|
|
206
|
-
platform_editor_unify_native_dnd_selectors: {
|
|
207
|
-
defaultValue: boolean;
|
|
208
|
-
param: string;
|
|
209
|
-
productKeys?: ProductKeys;
|
|
210
|
-
typeGuard: IsBooleanType;
|
|
211
|
-
};
|
|
212
206
|
ai_speech_to_text_in_editor: {
|
|
213
207
|
defaultValue: boolean;
|
|
214
208
|
param: string;
|
package/package.json
CHANGED