@atlaskit/tmp-editor-statsig 114.6.0 → 115.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
|
+
## 115.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2c2c8bf9e0f13`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2c2c8bf9e0f13) -
|
|
8
|
+
[EDITOR-7929] move the colors schema change behind a different experiment that can be rolled out
|
|
9
|
+
for graceful rendering
|
|
10
|
+
- [`0219070f68f42`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0219070f68f42) -
|
|
11
|
+
migrate from a11y feature gates to experiment
|
|
12
|
+
|
|
13
|
+
## 115.0.0
|
|
14
|
+
|
|
15
|
+
### Major Changes
|
|
16
|
+
|
|
17
|
+
- [`2df690b75a773`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2df690b75a773) -
|
|
18
|
+
Cleanup experiment `confluence_toc_nav_a11y`. Renderer headings now always set `tabIndex={-1}` for
|
|
19
|
+
table-of-contents keyboard focus accessibility, and the experiment definition has been removed
|
|
20
|
+
from the editor statsig config.
|
|
21
|
+
|
|
3
22
|
## 114.6.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -1741,14 +1741,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1741
1741
|
param: 'isEnabled',
|
|
1742
1742
|
defaultValue: false
|
|
1743
1743
|
}),
|
|
1744
|
-
// Added 2026-03-23
|
|
1745
|
-
confluence_toc_nav_a11y: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1746
|
-
productKeys: {
|
|
1747
|
-
confluence: 'confluence_toc_nav_a11y'
|
|
1748
|
-
},
|
|
1749
|
-
param: 'isEnabled',
|
|
1750
|
-
defaultValue: false
|
|
1751
|
-
}),
|
|
1752
1744
|
// Added 2026-03-25
|
|
1753
1745
|
platform_editor_improve_preset_builder_logging: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1754
1746
|
productKeys: {
|
|
@@ -2199,6 +2191,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2199
2191
|
param: 'isEnabled',
|
|
2200
2192
|
defaultValue: false
|
|
2201
2193
|
}),
|
|
2194
|
+
// Added 2026-06-26
|
|
2195
|
+
'a11y-fixes-week1-june-2026': (0, _experimentBuilders.createBooleanExperiment)({
|
|
2196
|
+
productKeys: {
|
|
2197
|
+
confluence: 'a11y-fixes-week1-june-2026',
|
|
2198
|
+
jira: 'a11y-fixes-week1-june-2026'
|
|
2199
|
+
},
|
|
2200
|
+
param: 'isEnabled',
|
|
2201
|
+
defaultValue: false
|
|
2202
|
+
}),
|
|
2202
2203
|
// Added 2026-05-21
|
|
2203
2204
|
fix_free_gen_prompt_bar_position: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2204
2205
|
productKeys: {
|
|
@@ -2333,5 +2334,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2333
2334
|
},
|
|
2334
2335
|
param: 'value',
|
|
2335
2336
|
defaultValue: false
|
|
2337
|
+
}),
|
|
2338
|
+
// Added 2026-06-29
|
|
2339
|
+
platform_editor_lovability_color_schema_change: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2340
|
+
productKeys: {
|
|
2341
|
+
confluence: 'platform_editor_lovability_color_schema_change',
|
|
2342
|
+
jira: 'platform_editor_lovability_color_schema_change'
|
|
2343
|
+
},
|
|
2344
|
+
param: 'isEnabled',
|
|
2345
|
+
defaultValue: false
|
|
2336
2346
|
})
|
|
2337
2347
|
};
|
|
@@ -1735,14 +1735,6 @@ export const editorExperimentsConfig = {
|
|
|
1735
1735
|
param: 'isEnabled',
|
|
1736
1736
|
defaultValue: false
|
|
1737
1737
|
}),
|
|
1738
|
-
// Added 2026-03-23
|
|
1739
|
-
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1740
|
-
productKeys: {
|
|
1741
|
-
confluence: 'confluence_toc_nav_a11y'
|
|
1742
|
-
},
|
|
1743
|
-
param: 'isEnabled',
|
|
1744
|
-
defaultValue: false
|
|
1745
|
-
}),
|
|
1746
1738
|
// Added 2026-03-25
|
|
1747
1739
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1748
1740
|
productKeys: {
|
|
@@ -2193,6 +2185,15 @@ export const editorExperimentsConfig = {
|
|
|
2193
2185
|
param: 'isEnabled',
|
|
2194
2186
|
defaultValue: false
|
|
2195
2187
|
}),
|
|
2188
|
+
// Added 2026-06-26
|
|
2189
|
+
'a11y-fixes-week1-june-2026': createBooleanExperiment({
|
|
2190
|
+
productKeys: {
|
|
2191
|
+
confluence: 'a11y-fixes-week1-june-2026',
|
|
2192
|
+
jira: 'a11y-fixes-week1-june-2026'
|
|
2193
|
+
},
|
|
2194
|
+
param: 'isEnabled',
|
|
2195
|
+
defaultValue: false
|
|
2196
|
+
}),
|
|
2196
2197
|
// Added 2026-05-21
|
|
2197
2198
|
fix_free_gen_prompt_bar_position: createBooleanExperiment({
|
|
2198
2199
|
productKeys: {
|
|
@@ -2327,5 +2328,14 @@ export const editorExperimentsConfig = {
|
|
|
2327
2328
|
},
|
|
2328
2329
|
param: 'value',
|
|
2329
2330
|
defaultValue: false
|
|
2331
|
+
}),
|
|
2332
|
+
// Added 2026-06-29
|
|
2333
|
+
platform_editor_lovability_color_schema_change: createBooleanExperiment({
|
|
2334
|
+
productKeys: {
|
|
2335
|
+
confluence: 'platform_editor_lovability_color_schema_change',
|
|
2336
|
+
jira: 'platform_editor_lovability_color_schema_change'
|
|
2337
|
+
},
|
|
2338
|
+
param: 'isEnabled',
|
|
2339
|
+
defaultValue: false
|
|
2330
2340
|
})
|
|
2331
2341
|
};
|
|
@@ -1735,14 +1735,6 @@ export var editorExperimentsConfig = {
|
|
|
1735
1735
|
param: 'isEnabled',
|
|
1736
1736
|
defaultValue: false
|
|
1737
1737
|
}),
|
|
1738
|
-
// Added 2026-03-23
|
|
1739
|
-
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1740
|
-
productKeys: {
|
|
1741
|
-
confluence: 'confluence_toc_nav_a11y'
|
|
1742
|
-
},
|
|
1743
|
-
param: 'isEnabled',
|
|
1744
|
-
defaultValue: false
|
|
1745
|
-
}),
|
|
1746
1738
|
// Added 2026-03-25
|
|
1747
1739
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1748
1740
|
productKeys: {
|
|
@@ -2193,6 +2185,15 @@ export var editorExperimentsConfig = {
|
|
|
2193
2185
|
param: 'isEnabled',
|
|
2194
2186
|
defaultValue: false
|
|
2195
2187
|
}),
|
|
2188
|
+
// Added 2026-06-26
|
|
2189
|
+
'a11y-fixes-week1-june-2026': createBooleanExperiment({
|
|
2190
|
+
productKeys: {
|
|
2191
|
+
confluence: 'a11y-fixes-week1-june-2026',
|
|
2192
|
+
jira: 'a11y-fixes-week1-june-2026'
|
|
2193
|
+
},
|
|
2194
|
+
param: 'isEnabled',
|
|
2195
|
+
defaultValue: false
|
|
2196
|
+
}),
|
|
2196
2197
|
// Added 2026-05-21
|
|
2197
2198
|
fix_free_gen_prompt_bar_position: createBooleanExperiment({
|
|
2198
2199
|
productKeys: {
|
|
@@ -2327,5 +2328,14 @@ export var editorExperimentsConfig = {
|
|
|
2327
2328
|
},
|
|
2328
2329
|
param: 'value',
|
|
2329
2330
|
defaultValue: false
|
|
2331
|
+
}),
|
|
2332
|
+
// Added 2026-06-29
|
|
2333
|
+
platform_editor_lovability_color_schema_change: createBooleanExperiment({
|
|
2334
|
+
productKeys: {
|
|
2335
|
+
confluence: 'platform_editor_lovability_color_schema_change',
|
|
2336
|
+
jira: 'platform_editor_lovability_color_schema_change'
|
|
2337
|
+
},
|
|
2338
|
+
param: 'isEnabled',
|
|
2339
|
+
defaultValue: false
|
|
2330
2340
|
})
|
|
2331
2341
|
};
|
|
@@ -1340,12 +1340,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1340
1340
|
productKeys?: ProductKeys;
|
|
1341
1341
|
typeGuard: IsBooleanType;
|
|
1342
1342
|
};
|
|
1343
|
-
confluence_toc_nav_a11y: {
|
|
1344
|
-
defaultValue: boolean;
|
|
1345
|
-
param: string;
|
|
1346
|
-
productKeys?: ProductKeys;
|
|
1347
|
-
typeGuard: IsBooleanType;
|
|
1348
|
-
};
|
|
1349
1343
|
platform_editor_ai_xstate_migration: {
|
|
1350
1344
|
defaultValue: boolean;
|
|
1351
1345
|
param: string;
|
|
@@ -1611,6 +1605,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1611
1605
|
productKeys?: ProductKeys;
|
|
1612
1606
|
typeGuard: IsBooleanType;
|
|
1613
1607
|
};
|
|
1608
|
+
'a11y-fixes-week1-june-2026': {
|
|
1609
|
+
defaultValue: boolean;
|
|
1610
|
+
param: string;
|
|
1611
|
+
productKeys?: ProductKeys;
|
|
1612
|
+
typeGuard: IsBooleanType;
|
|
1613
|
+
};
|
|
1614
1614
|
fix_free_gen_prompt_bar_position: {
|
|
1615
1615
|
defaultValue: boolean;
|
|
1616
1616
|
param: string;
|
|
@@ -1701,5 +1701,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1701
1701
|
productKeys?: ProductKeys;
|
|
1702
1702
|
typeGuard: IsBooleanType;
|
|
1703
1703
|
};
|
|
1704
|
+
platform_editor_lovability_color_schema_change: {
|
|
1705
|
+
defaultValue: boolean;
|
|
1706
|
+
param: string;
|
|
1707
|
+
productKeys?: ProductKeys;
|
|
1708
|
+
typeGuard: IsBooleanType;
|
|
1709
|
+
};
|
|
1704
1710
|
};
|
|
1705
1711
|
export {};
|
package/package.json
CHANGED