@atlaskit/tmp-editor-statsig 46.0.0 → 46.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,20 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 46.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`673732f902814`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/673732f902814) -
8
+ Add error handling with plugin context to EditorPresetBuilder to improve debugging of plugin
9
+ initialization failures. When a plugin fails to initialize, the name of the plugin is added to the
10
+ error message before it's thrown.
11
+ - [`6da6979e0583c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6da6979e0583c) -
12
+ fix a11y issue for InlineImageWrapper for media inline
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 46.0.0
4
19
 
5
20
  ### Major Changes
@@ -70,6 +70,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
70
70
  param: 'isEnabled',
71
71
  defaultValue: false
72
72
  }),
73
+ // Added 2026-03-25
74
+ 'editor_a11y__enghealth-46814_fy26': (0, _experimentBuilders.createBooleanExperiment)({
75
+ productKeys: {
76
+ confluence: 'editor_a11y__enghealth-46814_fy26'
77
+ },
78
+ param: 'isEnabled',
79
+ defaultValue: false
80
+ }),
73
81
  // Added 2026-02-20
74
82
  editor_a11y_decision_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
75
83
  productKeys: {
@@ -1856,5 +1864,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1856
1864
  },
1857
1865
  param: 'isEnabled',
1858
1866
  defaultValue: false
1867
+ }),
1868
+ // Added 2026-03-25
1869
+ platform_editor_improve_preset_builder_logging: (0, _experimentBuilders.createBooleanExperiment)({
1870
+ productKeys: {
1871
+ confluence: 'platform_editor_improve_preset_builder_logging'
1872
+ },
1873
+ param: 'isEnabled',
1874
+ defaultValue: false
1859
1875
  })
1860
1876
  };
@@ -64,6 +64,14 @@ export const editorExperimentsConfig = {
64
64
  param: 'isEnabled',
65
65
  defaultValue: false
66
66
  }),
67
+ // Added 2026-03-25
68
+ 'editor_a11y__enghealth-46814_fy26': createBooleanExperiment({
69
+ productKeys: {
70
+ confluence: 'editor_a11y__enghealth-46814_fy26'
71
+ },
72
+ param: 'isEnabled',
73
+ defaultValue: false
74
+ }),
67
75
  // Added 2026-02-20
68
76
  editor_a11y_decision_aria_label: createBooleanExperiment({
69
77
  productKeys: {
@@ -1850,5 +1858,13 @@ export const editorExperimentsConfig = {
1850
1858
  },
1851
1859
  param: 'isEnabled',
1852
1860
  defaultValue: false
1861
+ }),
1862
+ // Added 2026-03-25
1863
+ platform_editor_improve_preset_builder_logging: createBooleanExperiment({
1864
+ productKeys: {
1865
+ confluence: 'platform_editor_improve_preset_builder_logging'
1866
+ },
1867
+ param: 'isEnabled',
1868
+ defaultValue: false
1853
1869
  })
1854
1870
  };
@@ -64,6 +64,14 @@ export var editorExperimentsConfig = {
64
64
  param: 'isEnabled',
65
65
  defaultValue: false
66
66
  }),
67
+ // Added 2026-03-25
68
+ 'editor_a11y__enghealth-46814_fy26': createBooleanExperiment({
69
+ productKeys: {
70
+ confluence: 'editor_a11y__enghealth-46814_fy26'
71
+ },
72
+ param: 'isEnabled',
73
+ defaultValue: false
74
+ }),
67
75
  // Added 2026-02-20
68
76
  editor_a11y_decision_aria_label: createBooleanExperiment({
69
77
  productKeys: {
@@ -1850,5 +1858,13 @@ export var editorExperimentsConfig = {
1850
1858
  },
1851
1859
  param: 'isEnabled',
1852
1860
  defaultValue: false
1861
+ }),
1862
+ // Added 2026-03-25
1863
+ platform_editor_improve_preset_builder_logging: createBooleanExperiment({
1864
+ productKeys: {
1865
+ confluence: 'platform_editor_improve_preset_builder_logging'
1866
+ },
1867
+ param: 'isEnabled',
1868
+ defaultValue: false
1853
1869
  })
1854
1870
  };
@@ -64,6 +64,12 @@ export declare const editorExperimentsConfig: {
64
64
  typeGuard: (value: unknown) => value is 'control' | 'test';
65
65
  values: ('control' | 'test')[];
66
66
  };
67
+ 'editor_a11y__enghealth-46814_fy26': {
68
+ defaultValue: boolean;
69
+ param: string;
70
+ productKeys?: ProductKeys;
71
+ typeGuard: IsBooleanType;
72
+ };
67
73
  editor_a11y_decision_aria_label: {
68
74
  defaultValue: boolean;
69
75
  param: string;
@@ -1356,6 +1362,12 @@ export declare const editorExperimentsConfig: {
1356
1362
  productKeys?: ProductKeys;
1357
1363
  typeGuard: IsBooleanType;
1358
1364
  };
1365
+ platform_editor_improve_preset_builder_logging: {
1366
+ defaultValue: boolean;
1367
+ param: string;
1368
+ productKeys?: ProductKeys;
1369
+ typeGuard: IsBooleanType;
1370
+ };
1359
1371
  confluence_toc_nav_a11y: {
1360
1372
  defaultValue: boolean;
1361
1373
  param: string;
@@ -64,6 +64,12 @@ export declare const editorExperimentsConfig: {
64
64
  typeGuard: (value: unknown) => value is 'control' | 'test';
65
65
  values: ('control' | 'test')[];
66
66
  };
67
+ 'editor_a11y__enghealth-46814_fy26': {
68
+ defaultValue: boolean;
69
+ param: string;
70
+ productKeys?: ProductKeys;
71
+ typeGuard: IsBooleanType;
72
+ };
67
73
  editor_a11y_decision_aria_label: {
68
74
  defaultValue: boolean;
69
75
  param: string;
@@ -1356,6 +1362,12 @@ export declare const editorExperimentsConfig: {
1356
1362
  productKeys?: ProductKeys;
1357
1363
  typeGuard: IsBooleanType;
1358
1364
  };
1365
+ platform_editor_improve_preset_builder_logging: {
1366
+ defaultValue: boolean;
1367
+ param: string;
1368
+ productKeys?: ProductKeys;
1369
+ typeGuard: IsBooleanType;
1370
+ };
1359
1371
  confluence_toc_nav_a11y: {
1360
1372
  defaultValue: boolean;
1361
1373
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "46.0.0",
3
+ "version": "46.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",