@atlaskit/tmp-editor-statsig 54.2.0 → 54.3.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
|
+
## 54.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2e8697decd076`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2e8697decd076) -
|
|
8
|
+
Migrate @atlaskit/onboarding to @atlaskit/spotlight, gate pulse removal behind
|
|
9
|
+
platform_editor_spotlight_migration experiment. Remove dead spotlight config code from floating
|
|
10
|
+
toolbar.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 54.2.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -1887,6 +1887,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1887
1887
|
param: 'isEnabled',
|
|
1888
1888
|
defaultValue: false
|
|
1889
1889
|
}),
|
|
1890
|
+
// Added 2026-03-30
|
|
1891
|
+
platform_editor_spotlight_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1892
|
+
productKeys: {
|
|
1893
|
+
confluence: 'platform_editor_spotlight_migration'
|
|
1894
|
+
},
|
|
1895
|
+
param: 'isEnabled',
|
|
1896
|
+
defaultValue: false
|
|
1897
|
+
}),
|
|
1890
1898
|
// Added 2026-03-31
|
|
1891
1899
|
platform_editor_dnd_accessibility_fixes_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1892
1900
|
productKeys: {
|
|
@@ -1881,6 +1881,14 @@ export const editorExperimentsConfig = {
|
|
|
1881
1881
|
param: 'isEnabled',
|
|
1882
1882
|
defaultValue: false
|
|
1883
1883
|
}),
|
|
1884
|
+
// Added 2026-03-30
|
|
1885
|
+
platform_editor_spotlight_migration: createBooleanExperiment({
|
|
1886
|
+
productKeys: {
|
|
1887
|
+
confluence: 'platform_editor_spotlight_migration'
|
|
1888
|
+
},
|
|
1889
|
+
param: 'isEnabled',
|
|
1890
|
+
defaultValue: false
|
|
1891
|
+
}),
|
|
1884
1892
|
// Added 2026-03-31
|
|
1885
1893
|
platform_editor_dnd_accessibility_fixes_expand: createBooleanExperiment({
|
|
1886
1894
|
productKeys: {
|
|
@@ -1881,6 +1881,14 @@ export var editorExperimentsConfig = {
|
|
|
1881
1881
|
param: 'isEnabled',
|
|
1882
1882
|
defaultValue: false
|
|
1883
1883
|
}),
|
|
1884
|
+
// Added 2026-03-30
|
|
1885
|
+
platform_editor_spotlight_migration: createBooleanExperiment({
|
|
1886
|
+
productKeys: {
|
|
1887
|
+
confluence: 'platform_editor_spotlight_migration'
|
|
1888
|
+
},
|
|
1889
|
+
param: 'isEnabled',
|
|
1890
|
+
defaultValue: false
|
|
1891
|
+
}),
|
|
1884
1892
|
// Added 2026-03-31
|
|
1885
1893
|
platform_editor_dnd_accessibility_fixes_expand: createBooleanExperiment({
|
|
1886
1894
|
productKeys: {
|
|
@@ -1038,6 +1038,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1038
1038
|
productKeys?: ProductKeys;
|
|
1039
1039
|
typeGuard: IsBooleanType;
|
|
1040
1040
|
};
|
|
1041
|
+
platform_editor_spotlight_migration: {
|
|
1042
|
+
defaultValue: boolean;
|
|
1043
|
+
param: string;
|
|
1044
|
+
productKeys?: ProductKeys;
|
|
1045
|
+
typeGuard: IsBooleanType;
|
|
1046
|
+
};
|
|
1041
1047
|
confluence_frontend_fix_date_hydration_error: {
|
|
1042
1048
|
defaultValue: boolean;
|
|
1043
1049
|
param: string;
|
|
@@ -1038,6 +1038,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1038
1038
|
productKeys?: ProductKeys;
|
|
1039
1039
|
typeGuard: IsBooleanType;
|
|
1040
1040
|
};
|
|
1041
|
+
platform_editor_spotlight_migration: {
|
|
1042
|
+
defaultValue: boolean;
|
|
1043
|
+
param: string;
|
|
1044
|
+
productKeys?: ProductKeys;
|
|
1045
|
+
typeGuard: IsBooleanType;
|
|
1046
|
+
};
|
|
1041
1047
|
confluence_frontend_fix_date_hydration_error: {
|
|
1042
1048
|
defaultValue: boolean;
|
|
1043
1049
|
param: string;
|
package/package.json
CHANGED