@atlaskit/tmp-editor-statsig 54.4.0 → 54.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 54.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`bd6a75f50c1e9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd6a75f50c1e9) -
|
|
8
|
+
[ux] [EDITOR-6267] add support to SelectAll table keymap to first select the active table cell
|
|
9
|
+
behind experiment `platform_editor_lovability_select_all_shortcut`
|
|
10
|
+
|
|
3
11
|
## 54.4.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1952,5 +1952,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1952
1952
|
},
|
|
1953
1953
|
param: 'isEnabled',
|
|
1954
1954
|
defaultValue: false
|
|
1955
|
+
}),
|
|
1956
|
+
// Added 2026-04-07
|
|
1957
|
+
platform_editor_lovability_select_all_shortcut: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1958
|
+
productKeys: {
|
|
1959
|
+
confluence: 'platform_editor_lovability_select_all_shortcut',
|
|
1960
|
+
jira: 'platform_editor_lovability_select_all_shortcut'
|
|
1961
|
+
},
|
|
1962
|
+
param: 'isEnabled',
|
|
1963
|
+
defaultValue: false
|
|
1955
1964
|
})
|
|
1956
1965
|
};
|
|
@@ -1946,5 +1946,14 @@ export const editorExperimentsConfig = {
|
|
|
1946
1946
|
},
|
|
1947
1947
|
param: 'isEnabled',
|
|
1948
1948
|
defaultValue: false
|
|
1949
|
+
}),
|
|
1950
|
+
// Added 2026-04-07
|
|
1951
|
+
platform_editor_lovability_select_all_shortcut: createBooleanExperiment({
|
|
1952
|
+
productKeys: {
|
|
1953
|
+
confluence: 'platform_editor_lovability_select_all_shortcut',
|
|
1954
|
+
jira: 'platform_editor_lovability_select_all_shortcut'
|
|
1955
|
+
},
|
|
1956
|
+
param: 'isEnabled',
|
|
1957
|
+
defaultValue: false
|
|
1949
1958
|
})
|
|
1950
1959
|
};
|
|
@@ -1946,5 +1946,14 @@ export var editorExperimentsConfig = {
|
|
|
1946
1946
|
},
|
|
1947
1947
|
param: 'isEnabled',
|
|
1948
1948
|
defaultValue: false
|
|
1949
|
+
}),
|
|
1950
|
+
// Added 2026-04-07
|
|
1951
|
+
platform_editor_lovability_select_all_shortcut: createBooleanExperiment({
|
|
1952
|
+
productKeys: {
|
|
1953
|
+
confluence: 'platform_editor_lovability_select_all_shortcut',
|
|
1954
|
+
jira: 'platform_editor_lovability_select_all_shortcut'
|
|
1955
|
+
},
|
|
1956
|
+
param: 'isEnabled',
|
|
1957
|
+
defaultValue: false
|
|
1949
1958
|
})
|
|
1950
1959
|
};
|
|
@@ -1435,5 +1435,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1435
1435
|
productKeys?: ProductKeys;
|
|
1436
1436
|
typeGuard: IsBooleanType;
|
|
1437
1437
|
};
|
|
1438
|
+
platform_editor_lovability_select_all_shortcut: {
|
|
1439
|
+
defaultValue: boolean;
|
|
1440
|
+
param: string;
|
|
1441
|
+
productKeys?: ProductKeys;
|
|
1442
|
+
typeGuard: IsBooleanType;
|
|
1443
|
+
};
|
|
1438
1444
|
};
|
|
1439
1445
|
export {};
|
|
@@ -1435,5 +1435,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1435
1435
|
productKeys?: ProductKeys;
|
|
1436
1436
|
typeGuard: IsBooleanType;
|
|
1437
1437
|
};
|
|
1438
|
+
platform_editor_lovability_select_all_shortcut: {
|
|
1439
|
+
defaultValue: boolean;
|
|
1440
|
+
param: string;
|
|
1441
|
+
productKeys?: ProductKeys;
|
|
1442
|
+
typeGuard: IsBooleanType;
|
|
1443
|
+
};
|
|
1438
1444
|
};
|
|
1439
1445
|
export {};
|
package/package.json
CHANGED