@atlaskit/tmp-editor-statsig 54.4.0 → 54.5.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,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 54.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`8bfeeef7734ca`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8bfeeef7734ca) -
8
+ Extending userflow analytics to have step where event is fired when user changes inline prompt
9
+ text
10
+
11
+ ## 54.5.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`bd6a75f50c1e9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd6a75f50c1e9) -
16
+ [ux] [EDITOR-6267] add support to SelectAll table keymap to first select the active table cell
17
+ behind experiment `platform_editor_lovability_select_all_shortcut`
18
+
3
19
  ## 54.4.0
4
20
 
5
21
  ### Minor Changes
@@ -420,14 +420,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
420
420
  param: 'isEnabled',
421
421
  defaultValue: false
422
422
  }),
423
- // Added 2026-03-30
424
- platform_editor_editor_ssr_streaming: (0, _experimentBuilders.createBooleanExperiment)({
425
- productKeys: {
426
- confluence: 'platform_editor_editor_ssr_streaming'
427
- },
428
- param: 'isEnabled',
429
- defaultValue: false
430
- }),
431
423
  // Added 2025-01-19
432
424
  platform_editor_ai_edit_response_in_preview: (0, _experimentBuilders.createBooleanExperiment)({
433
425
  productKeys: {
@@ -1952,5 +1944,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1952
1944
  },
1953
1945
  param: 'isEnabled',
1954
1946
  defaultValue: false
1947
+ }),
1948
+ // Added 2026-04-07
1949
+ platform_editor_lovability_select_all_shortcut: (0, _experimentBuilders.createBooleanExperiment)({
1950
+ productKeys: {
1951
+ confluence: 'platform_editor_lovability_select_all_shortcut',
1952
+ jira: 'platform_editor_lovability_select_all_shortcut'
1953
+ },
1954
+ param: 'isEnabled',
1955
+ defaultValue: false
1955
1956
  })
1956
1957
  };
@@ -414,14 +414,6 @@ export const editorExperimentsConfig = {
414
414
  param: 'isEnabled',
415
415
  defaultValue: false
416
416
  }),
417
- // Added 2026-03-30
418
- platform_editor_editor_ssr_streaming: createBooleanExperiment({
419
- productKeys: {
420
- confluence: 'platform_editor_editor_ssr_streaming'
421
- },
422
- param: 'isEnabled',
423
- defaultValue: false
424
- }),
425
417
  // Added 2025-01-19
426
418
  platform_editor_ai_edit_response_in_preview: createBooleanExperiment({
427
419
  productKeys: {
@@ -1946,5 +1938,14 @@ export const editorExperimentsConfig = {
1946
1938
  },
1947
1939
  param: 'isEnabled',
1948
1940
  defaultValue: false
1941
+ }),
1942
+ // Added 2026-04-07
1943
+ platform_editor_lovability_select_all_shortcut: createBooleanExperiment({
1944
+ productKeys: {
1945
+ confluence: 'platform_editor_lovability_select_all_shortcut',
1946
+ jira: 'platform_editor_lovability_select_all_shortcut'
1947
+ },
1948
+ param: 'isEnabled',
1949
+ defaultValue: false
1949
1950
  })
1950
1951
  };
@@ -414,14 +414,6 @@ export var editorExperimentsConfig = {
414
414
  param: 'isEnabled',
415
415
  defaultValue: false
416
416
  }),
417
- // Added 2026-03-30
418
- platform_editor_editor_ssr_streaming: createBooleanExperiment({
419
- productKeys: {
420
- confluence: 'platform_editor_editor_ssr_streaming'
421
- },
422
- param: 'isEnabled',
423
- defaultValue: false
424
- }),
425
417
  // Added 2025-01-19
426
418
  platform_editor_ai_edit_response_in_preview: createBooleanExperiment({
427
419
  productKeys: {
@@ -1946,5 +1938,14 @@ export var editorExperimentsConfig = {
1946
1938
  },
1947
1939
  param: 'isEnabled',
1948
1940
  defaultValue: false
1941
+ }),
1942
+ // Added 2026-04-07
1943
+ platform_editor_lovability_select_all_shortcut: createBooleanExperiment({
1944
+ productKeys: {
1945
+ confluence: 'platform_editor_lovability_select_all_shortcut',
1946
+ jira: 'platform_editor_lovability_select_all_shortcut'
1947
+ },
1948
+ param: 'isEnabled',
1949
+ defaultValue: false
1949
1950
  })
1950
1951
  };
@@ -244,12 +244,6 @@ export declare const editorExperimentsConfig: {
244
244
  productKeys?: ProductKeys;
245
245
  typeGuard: IsBooleanType;
246
246
  };
247
- platform_editor_editor_ssr_streaming: {
248
- defaultValue: boolean;
249
- param: string;
250
- productKeys?: ProductKeys;
251
- typeGuard: IsBooleanType;
252
- };
253
247
  confluence_remix_icon_right_side: {
254
248
  defaultValue: boolean;
255
249
  param: string;
@@ -1435,5 +1429,11 @@ export declare const editorExperimentsConfig: {
1435
1429
  productKeys?: ProductKeys;
1436
1430
  typeGuard: IsBooleanType;
1437
1431
  };
1432
+ platform_editor_lovability_select_all_shortcut: {
1433
+ defaultValue: boolean;
1434
+ param: string;
1435
+ productKeys?: ProductKeys;
1436
+ typeGuard: IsBooleanType;
1437
+ };
1438
1438
  };
1439
1439
  export {};
@@ -244,12 +244,6 @@ export declare const editorExperimentsConfig: {
244
244
  productKeys?: ProductKeys;
245
245
  typeGuard: IsBooleanType;
246
246
  };
247
- platform_editor_editor_ssr_streaming: {
248
- defaultValue: boolean;
249
- param: string;
250
- productKeys?: ProductKeys;
251
- typeGuard: IsBooleanType;
252
- };
253
247
  confluence_remix_icon_right_side: {
254
248
  defaultValue: boolean;
255
249
  param: string;
@@ -1435,5 +1429,11 @@ export declare const editorExperimentsConfig: {
1435
1429
  productKeys?: ProductKeys;
1436
1430
  typeGuard: IsBooleanType;
1437
1431
  };
1432
+ platform_editor_lovability_select_all_shortcut: {
1433
+ defaultValue: boolean;
1434
+ param: string;
1435
+ productKeys?: ProductKeys;
1436
+ typeGuard: IsBooleanType;
1437
+ };
1438
1438
  };
1439
1439
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "54.4.0",
3
+ "version": "54.5.1",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",