@atlaskit/tmp-editor-statsig 45.1.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 +22 -0
- package/dist/cjs/experiments-config.js +18 -3
- package/dist/es2019/experiments-config.js +18 -3
- package/dist/esm/experiments-config.js +18 -3
- package/dist/types/experiments-config.d.ts +13 -1
- package/dist/types-ts4.5/experiments-config.d.ts +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
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
|
+
|
|
18
|
+
## 46.0.0
|
|
19
|
+
|
|
20
|
+
### Major Changes
|
|
21
|
+
|
|
22
|
+
- [`61f4e0dfbe267`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/61f4e0dfbe267) -
|
|
23
|
+
EDITOR-6067 - Tab to Improve Writing: Create new experiment for Confluence only
|
|
24
|
+
|
|
3
25
|
## 45.1.0
|
|
4
26
|
|
|
5
27
|
### Minor 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: {
|
|
@@ -900,10 +908,9 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
900
908
|
defaultValue: false
|
|
901
909
|
}),
|
|
902
910
|
// Added 2026-03-03
|
|
903
|
-
|
|
911
|
+
platform_editor_ai_quick_prompt_iw_cc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
904
912
|
productKeys: {
|
|
905
|
-
confluence: '
|
|
906
|
-
jira: 'platform_editor_ai_quick_prompt'
|
|
913
|
+
confluence: 'platform_editor_ai_quick_prompt_iw_cc'
|
|
907
914
|
},
|
|
908
915
|
param: 'isEnabled',
|
|
909
916
|
defaultValue: false
|
|
@@ -1857,5 +1864,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1857
1864
|
},
|
|
1858
1865
|
param: 'isEnabled',
|
|
1859
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
|
|
1860
1875
|
})
|
|
1861
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: {
|
|
@@ -894,10 +902,9 @@ export const editorExperimentsConfig = {
|
|
|
894
902
|
defaultValue: false
|
|
895
903
|
}),
|
|
896
904
|
// Added 2026-03-03
|
|
897
|
-
|
|
905
|
+
platform_editor_ai_quick_prompt_iw_cc: createBooleanExperiment({
|
|
898
906
|
productKeys: {
|
|
899
|
-
confluence: '
|
|
900
|
-
jira: 'platform_editor_ai_quick_prompt'
|
|
907
|
+
confluence: 'platform_editor_ai_quick_prompt_iw_cc'
|
|
901
908
|
},
|
|
902
909
|
param: 'isEnabled',
|
|
903
910
|
defaultValue: false
|
|
@@ -1851,5 +1858,13 @@ export const editorExperimentsConfig = {
|
|
|
1851
1858
|
},
|
|
1852
1859
|
param: 'isEnabled',
|
|
1853
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
|
|
1854
1869
|
})
|
|
1855
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: {
|
|
@@ -894,10 +902,9 @@ export var editorExperimentsConfig = {
|
|
|
894
902
|
defaultValue: false
|
|
895
903
|
}),
|
|
896
904
|
// Added 2026-03-03
|
|
897
|
-
|
|
905
|
+
platform_editor_ai_quick_prompt_iw_cc: createBooleanExperiment({
|
|
898
906
|
productKeys: {
|
|
899
|
-
confluence: '
|
|
900
|
-
jira: 'platform_editor_ai_quick_prompt'
|
|
907
|
+
confluence: 'platform_editor_ai_quick_prompt_iw_cc'
|
|
901
908
|
},
|
|
902
909
|
param: 'isEnabled',
|
|
903
910
|
defaultValue: false
|
|
@@ -1851,5 +1858,13 @@ export var editorExperimentsConfig = {
|
|
|
1851
1858
|
},
|
|
1852
1859
|
param: 'isEnabled',
|
|
1853
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
|
|
1854
1869
|
})
|
|
1855
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;
|
|
@@ -136,7 +142,7 @@ export declare const editorExperimentsConfig: {
|
|
|
136
142
|
productKeys?: ProductKeys;
|
|
137
143
|
typeGuard: IsBooleanType;
|
|
138
144
|
};
|
|
139
|
-
|
|
145
|
+
platform_editor_ai_quick_prompt_iw_cc: {
|
|
140
146
|
defaultValue: boolean;
|
|
141
147
|
param: string;
|
|
142
148
|
productKeys?: ProductKeys;
|
|
@@ -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;
|
|
@@ -136,7 +142,7 @@ export declare const editorExperimentsConfig: {
|
|
|
136
142
|
productKeys?: ProductKeys;
|
|
137
143
|
typeGuard: IsBooleanType;
|
|
138
144
|
};
|
|
139
|
-
|
|
145
|
+
platform_editor_ai_quick_prompt_iw_cc: {
|
|
140
146
|
defaultValue: boolean;
|
|
141
147
|
param: string;
|
|
142
148
|
productKeys?: ProductKeys;
|
|
@@ -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