@atlaskit/tmp-editor-statsig 82.4.0 → 82.5.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
|
+
## 82.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`bc59bccc2fc5c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bc59bccc2fc5c) -
|
|
8
|
+
Reorder advanced layout quick insert suggestions
|
|
9
|
+
|
|
3
10
|
## 82.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1922,6 +1922,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1922
1922
|
param: 'isEnabled',
|
|
1923
1923
|
defaultValue: false
|
|
1924
1924
|
}),
|
|
1925
|
+
// Added 2026-05-21
|
|
1926
|
+
platform_editor_layout_typeahead_reorder: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1927
|
+
productKeys: {
|
|
1928
|
+
confluence: 'platform_editor_layout_typeahead_reorder',
|
|
1929
|
+
jira: 'platform_editor_layout_typeahead_reorder'
|
|
1930
|
+
},
|
|
1931
|
+
param: 'isEnabled',
|
|
1932
|
+
defaultValue: false
|
|
1933
|
+
}),
|
|
1925
1934
|
// Added 2026-03-31
|
|
1926
1935
|
platform_editor_lovability_distribute_column_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1927
1936
|
productKeys: {
|
|
@@ -1916,6 +1916,15 @@ export const editorExperimentsConfig = {
|
|
|
1916
1916
|
param: 'isEnabled',
|
|
1917
1917
|
defaultValue: false
|
|
1918
1918
|
}),
|
|
1919
|
+
// Added 2026-05-21
|
|
1920
|
+
platform_editor_layout_typeahead_reorder: createBooleanExperiment({
|
|
1921
|
+
productKeys: {
|
|
1922
|
+
confluence: 'platform_editor_layout_typeahead_reorder',
|
|
1923
|
+
jira: 'platform_editor_layout_typeahead_reorder'
|
|
1924
|
+
},
|
|
1925
|
+
param: 'isEnabled',
|
|
1926
|
+
defaultValue: false
|
|
1927
|
+
}),
|
|
1919
1928
|
// Added 2026-03-31
|
|
1920
1929
|
platform_editor_lovability_distribute_column_fix: createBooleanExperiment({
|
|
1921
1930
|
productKeys: {
|
|
@@ -1916,6 +1916,15 @@ export var editorExperimentsConfig = {
|
|
|
1916
1916
|
param: 'isEnabled',
|
|
1917
1917
|
defaultValue: false
|
|
1918
1918
|
}),
|
|
1919
|
+
// Added 2026-05-21
|
|
1920
|
+
platform_editor_layout_typeahead_reorder: createBooleanExperiment({
|
|
1921
|
+
productKeys: {
|
|
1922
|
+
confluence: 'platform_editor_layout_typeahead_reorder',
|
|
1923
|
+
jira: 'platform_editor_layout_typeahead_reorder'
|
|
1924
|
+
},
|
|
1925
|
+
param: 'isEnabled',
|
|
1926
|
+
defaultValue: false
|
|
1927
|
+
}),
|
|
1919
1928
|
// Added 2026-03-31
|
|
1920
1929
|
platform_editor_lovability_distribute_column_fix: createBooleanExperiment({
|
|
1921
1930
|
productKeys: {
|
|
@@ -1027,6 +1027,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1027
1027
|
productKeys?: ProductKeys;
|
|
1028
1028
|
typeGuard: IsBooleanType;
|
|
1029
1029
|
};
|
|
1030
|
+
platform_editor_layout_typeahead_reorder: {
|
|
1031
|
+
defaultValue: boolean;
|
|
1032
|
+
param: string;
|
|
1033
|
+
productKeys?: ProductKeys;
|
|
1034
|
+
typeGuard: IsBooleanType;
|
|
1035
|
+
};
|
|
1030
1036
|
platform_editor_perf_lint_cleanup: {
|
|
1031
1037
|
defaultValue: boolean;
|
|
1032
1038
|
param: string;
|
|
@@ -1027,6 +1027,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1027
1027
|
productKeys?: ProductKeys;
|
|
1028
1028
|
typeGuard: IsBooleanType;
|
|
1029
1029
|
};
|
|
1030
|
+
platform_editor_layout_typeahead_reorder: {
|
|
1031
|
+
defaultValue: boolean;
|
|
1032
|
+
param: string;
|
|
1033
|
+
productKeys?: ProductKeys;
|
|
1034
|
+
typeGuard: IsBooleanType;
|
|
1035
|
+
};
|
|
1030
1036
|
platform_editor_perf_lint_cleanup: {
|
|
1031
1037
|
defaultValue: boolean;
|
|
1032
1038
|
param: string;
|
package/package.json
CHANGED