@atlaskit/tmp-editor-statsig 22.3.0 → 23.1.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 23.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`fcc51e510981b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fcc51e510981b) -
8
+ [ux] Add logic to filter and pin create database menu item to editor toolbar for experiment.
9
+
10
+ ## 23.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`280d14e2d5518`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/280d14e2d5518) -
15
+ Clean up platform_editor_drag_handle_aria_label
16
+
17
+ ### Minor Changes
18
+
19
+ - [`95a9857d9f007`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/95a9857d9f007) -
20
+ Replaced keymaps for moving table columns/rows in the Editor behind experiment
21
+
3
22
  ## 22.3.0
4
23
 
5
24
  ### Minor Changes
@@ -14,7 +14,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
14
14
  cc_editor_insm_outlier_events: 'test',
15
15
  platform_editor_hoverlink_ui_fixes_exp: 'control',
16
16
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
17
- platform_sl_3p_unauth_paste_as_block_card: 'control'
17
+ platform_sl_3p_unauth_paste_as_block_card: 'control',
18
+ cc_fd_db_top_editor_toolbar: 'control'
18
19
  };
19
20
  var testBooleanOverrides = exports.testBooleanOverrides = {
20
21
  cc_editor_hover_link_overlay_css_fix: false,
@@ -553,14 +553,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
553
553
  param: 'isEnabled',
554
554
  defaultValue: false
555
555
  }),
556
- // Added 2025-07-30
557
- platform_editor_drag_handle_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
558
- productKeys: {
559
- confluence: 'platform_editor_drag_handle_aria_label'
560
- },
561
- param: 'isEnabled',
562
- defaultValue: false
563
- }),
564
556
  // Added 2025-07-07
565
557
  platform_editor_toggle_expand_on_match_found: (0, _experimentBuilders.createBooleanExperiment)({
566
558
  productKeys: {
@@ -744,6 +736,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
744
736
  param: 'isEnabled',
745
737
  defaultValue: false
746
738
  }),
739
+ // Added 2026-02-05
740
+ 'editor-a11y-fy26-keyboard-move-row-column': (0, _experimentBuilders.createBooleanExperiment)({
741
+ productKeys: {
742
+ confluence: 'editor-a11y-fy26-keyboard-move-row-column',
743
+ jira: 'editor-a11y-fy26-keyboard-move-row-column'
744
+ },
745
+ param: 'isEnabled',
746
+ defaultValue: false
747
+ }),
747
748
  // Added 2025-08-28
748
749
  editor_enable_image_alignment_in_expand: (0, _experimentBuilders.createBooleanExperiment)({
749
750
  productKeys: {
@@ -1323,6 +1324,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1323
1324
  param: 'isEnabled',
1324
1325
  defaultValue: false
1325
1326
  }),
1327
+ // Added 2026-02-05
1328
+ cc_fd_db_top_editor_toolbar: (0, _experimentBuilders.createMultivariateExperiment)({
1329
+ productKeys: {
1330
+ confluence: 'cc_fd_db_top_editor_toolbar'
1331
+ },
1332
+ param: 'cohort',
1333
+ values: ['control', 'new-description', 'orig-description'],
1334
+ defaultValue: 'control'
1335
+ }),
1326
1336
  // Added 2026-01-28
1327
1337
  platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
1328
1338
  productKeys: {
@@ -8,7 +8,8 @@ export const testMultivariateOverrides = {
8
8
  cc_editor_insm_outlier_events: 'test',
9
9
  platform_editor_hoverlink_ui_fixes_exp: 'control',
10
10
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
11
- platform_sl_3p_unauth_paste_as_block_card: 'control'
11
+ platform_sl_3p_unauth_paste_as_block_card: 'control',
12
+ cc_fd_db_top_editor_toolbar: 'control'
12
13
  };
13
14
  export const testBooleanOverrides = {
14
15
  cc_editor_hover_link_overlay_css_fix: false,
@@ -547,14 +547,6 @@ export const editorExperimentsConfig = {
547
547
  param: 'isEnabled',
548
548
  defaultValue: false
549
549
  }),
550
- // Added 2025-07-30
551
- platform_editor_drag_handle_aria_label: createBooleanExperiment({
552
- productKeys: {
553
- confluence: 'platform_editor_drag_handle_aria_label'
554
- },
555
- param: 'isEnabled',
556
- defaultValue: false
557
- }),
558
550
  // Added 2025-07-07
559
551
  platform_editor_toggle_expand_on_match_found: createBooleanExperiment({
560
552
  productKeys: {
@@ -738,6 +730,15 @@ export const editorExperimentsConfig = {
738
730
  param: 'isEnabled',
739
731
  defaultValue: false
740
732
  }),
733
+ // Added 2026-02-05
734
+ 'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
735
+ productKeys: {
736
+ confluence: 'editor-a11y-fy26-keyboard-move-row-column',
737
+ jira: 'editor-a11y-fy26-keyboard-move-row-column'
738
+ },
739
+ param: 'isEnabled',
740
+ defaultValue: false
741
+ }),
741
742
  // Added 2025-08-28
742
743
  editor_enable_image_alignment_in_expand: createBooleanExperiment({
743
744
  productKeys: {
@@ -1317,6 +1318,15 @@ export const editorExperimentsConfig = {
1317
1318
  param: 'isEnabled',
1318
1319
  defaultValue: false
1319
1320
  }),
1321
+ // Added 2026-02-05
1322
+ cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
1323
+ productKeys: {
1324
+ confluence: 'cc_fd_db_top_editor_toolbar'
1325
+ },
1326
+ param: 'cohort',
1327
+ values: ['control', 'new-description', 'orig-description'],
1328
+ defaultValue: 'control'
1329
+ }),
1320
1330
  // Added 2026-01-28
1321
1331
  platform_editor_smartlink_local_cache: createBooleanExperiment({
1322
1332
  productKeys: {
@@ -8,7 +8,8 @@ export var testMultivariateOverrides = {
8
8
  cc_editor_insm_outlier_events: 'test',
9
9
  platform_editor_hoverlink_ui_fixes_exp: 'control',
10
10
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
11
- platform_sl_3p_unauth_paste_as_block_card: 'control'
11
+ platform_sl_3p_unauth_paste_as_block_card: 'control',
12
+ cc_fd_db_top_editor_toolbar: 'control'
12
13
  };
13
14
  export var testBooleanOverrides = {
14
15
  cc_editor_hover_link_overlay_css_fix: false,
@@ -547,14 +547,6 @@ export var editorExperimentsConfig = {
547
547
  param: 'isEnabled',
548
548
  defaultValue: false
549
549
  }),
550
- // Added 2025-07-30
551
- platform_editor_drag_handle_aria_label: createBooleanExperiment({
552
- productKeys: {
553
- confluence: 'platform_editor_drag_handle_aria_label'
554
- },
555
- param: 'isEnabled',
556
- defaultValue: false
557
- }),
558
550
  // Added 2025-07-07
559
551
  platform_editor_toggle_expand_on_match_found: createBooleanExperiment({
560
552
  productKeys: {
@@ -738,6 +730,15 @@ export var editorExperimentsConfig = {
738
730
  param: 'isEnabled',
739
731
  defaultValue: false
740
732
  }),
733
+ // Added 2026-02-05
734
+ 'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
735
+ productKeys: {
736
+ confluence: 'editor-a11y-fy26-keyboard-move-row-column',
737
+ jira: 'editor-a11y-fy26-keyboard-move-row-column'
738
+ },
739
+ param: 'isEnabled',
740
+ defaultValue: false
741
+ }),
741
742
  // Added 2025-08-28
742
743
  editor_enable_image_alignment_in_expand: createBooleanExperiment({
743
744
  productKeys: {
@@ -1317,6 +1318,15 @@ export var editorExperimentsConfig = {
1317
1318
  param: 'isEnabled',
1318
1319
  defaultValue: false
1319
1320
  }),
1321
+ // Added 2026-02-05
1322
+ cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
1323
+ productKeys: {
1324
+ confluence: 'cc_fd_db_top_editor_toolbar'
1325
+ },
1326
+ param: 'cohort',
1327
+ values: ['control', 'new-description', 'orig-description'],
1328
+ defaultValue: 'control'
1329
+ }),
1320
1330
  // Added 2026-01-28
1321
1331
  platform_editor_smartlink_local_cache: createBooleanExperiment({
1322
1332
  productKeys: {
@@ -130,6 +130,12 @@ export declare const editorExperimentsConfig: {
130
130
  productKeys?: ProductKeys;
131
131
  typeGuard: IsBooleanType;
132
132
  };
133
+ 'editor-a11y-fy26-keyboard-move-row-column': {
134
+ defaultValue: boolean;
135
+ param: string;
136
+ productKeys?: ProductKeys;
137
+ typeGuard: IsBooleanType;
138
+ };
133
139
  editor_enable_image_alignment_in_expand: {
134
140
  defaultValue: boolean;
135
141
  param: string;
@@ -355,12 +361,6 @@ export declare const editorExperimentsConfig: {
355
361
  productKeys?: ProductKeys;
356
362
  typeGuard: IsBooleanType;
357
363
  };
358
- platform_editor_drag_handle_aria_label: {
359
- defaultValue: boolean;
360
- param: string;
361
- productKeys?: ProductKeys;
362
- typeGuard: IsBooleanType;
363
- };
364
364
  platform_editor_editor_width_analytics: {
365
365
  defaultValue: boolean;
366
366
  param: string;
@@ -978,6 +978,13 @@ export declare const editorExperimentsConfig: {
978
978
  productKeys?: ProductKeys;
979
979
  typeGuard: IsBooleanType;
980
980
  };
981
+ cc_fd_db_top_editor_toolbar: {
982
+ defaultValue: 'control' | 'new-description' | 'orig-description';
983
+ param: string;
984
+ productKeys?: ProductKeys;
985
+ typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
986
+ values: ('control' | 'new-description' | 'orig-description')[];
987
+ };
981
988
  platform_editor_smartlink_local_cache: {
982
989
  defaultValue: boolean;
983
990
  param: string;
@@ -130,6 +130,12 @@ export declare const editorExperimentsConfig: {
130
130
  productKeys?: ProductKeys;
131
131
  typeGuard: IsBooleanType;
132
132
  };
133
+ 'editor-a11y-fy26-keyboard-move-row-column': {
134
+ defaultValue: boolean;
135
+ param: string;
136
+ productKeys?: ProductKeys;
137
+ typeGuard: IsBooleanType;
138
+ };
133
139
  editor_enable_image_alignment_in_expand: {
134
140
  defaultValue: boolean;
135
141
  param: string;
@@ -355,12 +361,6 @@ export declare const editorExperimentsConfig: {
355
361
  productKeys?: ProductKeys;
356
362
  typeGuard: IsBooleanType;
357
363
  };
358
- platform_editor_drag_handle_aria_label: {
359
- defaultValue: boolean;
360
- param: string;
361
- productKeys?: ProductKeys;
362
- typeGuard: IsBooleanType;
363
- };
364
364
  platform_editor_editor_width_analytics: {
365
365
  defaultValue: boolean;
366
366
  param: string;
@@ -978,6 +978,13 @@ export declare const editorExperimentsConfig: {
978
978
  productKeys?: ProductKeys;
979
979
  typeGuard: IsBooleanType;
980
980
  };
981
+ cc_fd_db_top_editor_toolbar: {
982
+ defaultValue: 'control' | 'new-description' | 'orig-description';
983
+ param: string;
984
+ productKeys?: ProductKeys;
985
+ typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
986
+ values: ('control' | 'new-description' | 'orig-description')[];
987
+ };
981
988
  platform_editor_smartlink_local_cache: {
982
989
  defaultValue: boolean;
983
990
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "22.3.0",
3
+ "version": "23.1.0",
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",
@@ -34,7 +34,7 @@
34
34
  "atlaskit:src": "src/index.ts",
35
35
  "dependencies": {
36
36
  "@atlaskit/feature-gate-js-client": "^5.5.0",
37
- "@atlaskit/react-ufo": "^5.1.0",
37
+ "@atlaskit/react-ufo": "^5.2.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {