@atlaskit/tmp-editor-statsig 32.3.0 → 32.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 32.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`ab3866dd7f659`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ab3866dd7f659) -
8
+ Add editor_a11y_7152_profile_card_tab_order experiment to package
9
+
10
+ ## 32.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`d78ff724d3bce`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d78ff724d3bce) -
15
+ Add editor_a11y_decision_aria_label boolean experiment
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 32.3.0
4
22
 
5
23
  ### Minor Changes
@@ -62,6 +62,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
62
62
  param: 'isEnabled',
63
63
  defaultValue: false
64
64
  }),
65
+ // Added 2026-02-20
66
+ editor_a11y_decision_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
67
+ productKeys: {
68
+ confluence: 'editor_a11y_decision_aria_label',
69
+ jira: 'editor_a11y_decision_aria_label'
70
+ },
71
+ param: 'isEnabled',
72
+ defaultValue: false
73
+ }),
65
74
  // Added 03-09-2025
66
75
  cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
67
76
  productKeys: {
@@ -989,6 +998,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
989
998
  param: 'isEnabled',
990
999
  defaultValue: false
991
1000
  }),
1001
+ // Added 2026-02-18
1002
+ editor_a11y_7152_profile_card_tab_order: (0, _experimentBuilders.createBooleanExperiment)({
1003
+ productKeys: {
1004
+ confluence: 'editor_a11y_7152_profile_card_tab_order'
1005
+ },
1006
+ param: 'isEnabled',
1007
+ defaultValue: false
1008
+ }),
992
1009
  // Added 2025-11-19
993
1010
  platform_editor_lovability_navigation_fixes: (0, _experimentBuilders.createBooleanExperiment)({
994
1011
  productKeys: {
@@ -56,6 +56,15 @@ export const editorExperimentsConfig = {
56
56
  param: 'isEnabled',
57
57
  defaultValue: false
58
58
  }),
59
+ // Added 2026-02-20
60
+ editor_a11y_decision_aria_label: createBooleanExperiment({
61
+ productKeys: {
62
+ confluence: 'editor_a11y_decision_aria_label',
63
+ jira: 'editor_a11y_decision_aria_label'
64
+ },
65
+ param: 'isEnabled',
66
+ defaultValue: false
67
+ }),
59
68
  // Added 03-09-2025
60
69
  cc_editor_interactivity_monitoring: createBooleanExperiment({
61
70
  productKeys: {
@@ -983,6 +992,14 @@ export const editorExperimentsConfig = {
983
992
  param: 'isEnabled',
984
993
  defaultValue: false
985
994
  }),
995
+ // Added 2026-02-18
996
+ editor_a11y_7152_profile_card_tab_order: createBooleanExperiment({
997
+ productKeys: {
998
+ confluence: 'editor_a11y_7152_profile_card_tab_order'
999
+ },
1000
+ param: 'isEnabled',
1001
+ defaultValue: false
1002
+ }),
986
1003
  // Added 2025-11-19
987
1004
  platform_editor_lovability_navigation_fixes: createBooleanExperiment({
988
1005
  productKeys: {
@@ -56,6 +56,15 @@ export var editorExperimentsConfig = {
56
56
  param: 'isEnabled',
57
57
  defaultValue: false
58
58
  }),
59
+ // Added 2026-02-20
60
+ editor_a11y_decision_aria_label: createBooleanExperiment({
61
+ productKeys: {
62
+ confluence: 'editor_a11y_decision_aria_label',
63
+ jira: 'editor_a11y_decision_aria_label'
64
+ },
65
+ param: 'isEnabled',
66
+ defaultValue: false
67
+ }),
59
68
  // Added 03-09-2025
60
69
  cc_editor_interactivity_monitoring: createBooleanExperiment({
61
70
  productKeys: {
@@ -983,6 +992,14 @@ export var editorExperimentsConfig = {
983
992
  param: 'isEnabled',
984
993
  defaultValue: false
985
994
  }),
995
+ // Added 2026-02-18
996
+ editor_a11y_7152_profile_card_tab_order: createBooleanExperiment({
997
+ productKeys: {
998
+ confluence: 'editor_a11y_7152_profile_card_tab_order'
999
+ },
1000
+ param: 'isEnabled',
1001
+ defaultValue: false
1002
+ }),
986
1003
  // Added 2025-11-19
987
1004
  platform_editor_lovability_navigation_fixes: createBooleanExperiment({
988
1005
  productKeys: {
@@ -51,6 +51,12 @@ export declare const editorExperimentsConfig: {
51
51
  productKeys?: ProductKeys;
52
52
  typeGuard: IsBooleanType;
53
53
  };
54
+ editor_a11y_7152_profile_card_tab_order: {
55
+ defaultValue: boolean;
56
+ param: string;
57
+ productKeys?: ProductKeys;
58
+ typeGuard: IsBooleanType;
59
+ };
54
60
  cc_editor_insm_outlier_events: {
55
61
  defaultValue: 'control' | 'test';
56
62
  param: string;
@@ -58,6 +64,12 @@ export declare const editorExperimentsConfig: {
58
64
  typeGuard: (value: unknown) => value is 'control' | 'test';
59
65
  values: ('control' | 'test')[];
60
66
  };
67
+ editor_a11y_decision_aria_label: {
68
+ defaultValue: boolean;
69
+ param: string;
70
+ productKeys?: ProductKeys;
71
+ typeGuard: IsBooleanType;
72
+ };
61
73
  cc_editor_interactivity_monitoring: {
62
74
  defaultValue: boolean;
63
75
  param: string;
@@ -51,6 +51,12 @@ export declare const editorExperimentsConfig: {
51
51
  productKeys?: ProductKeys;
52
52
  typeGuard: IsBooleanType;
53
53
  };
54
+ editor_a11y_7152_profile_card_tab_order: {
55
+ defaultValue: boolean;
56
+ param: string;
57
+ productKeys?: ProductKeys;
58
+ typeGuard: IsBooleanType;
59
+ };
54
60
  cc_editor_insm_outlier_events: {
55
61
  defaultValue: 'control' | 'test';
56
62
  param: string;
@@ -58,6 +64,12 @@ export declare const editorExperimentsConfig: {
58
64
  typeGuard: (value: unknown) => value is 'control' | 'test';
59
65
  values: ('control' | 'test')[];
60
66
  };
67
+ editor_a11y_decision_aria_label: {
68
+ defaultValue: boolean;
69
+ param: string;
70
+ productKeys?: ProductKeys;
71
+ typeGuard: IsBooleanType;
72
+ };
61
73
  cc_editor_interactivity_monitoring: {
62
74
  defaultValue: boolean;
63
75
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "32.3.0",
3
+ "version": "32.5.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",