@atlaskit/tmp-editor-statsig 114.5.0 → 114.6.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 114.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`283c55290e6cc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/283c55290e6cc) -
|
|
8
|
+
Preserve visual selection after applying text color or highlight
|
|
9
|
+
|
|
3
10
|
## 114.5.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -2268,6 +2268,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2268
2268
|
param: 'isEnabled',
|
|
2269
2269
|
defaultValue: false
|
|
2270
2270
|
}),
|
|
2271
|
+
// Added 2026-06-25
|
|
2272
|
+
platform_editor_fix_selection_text_color_change: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2273
|
+
productKeys: {
|
|
2274
|
+
confluence: 'platform_editor_fix_selection_text_color_change',
|
|
2275
|
+
jira: 'platform_editor_fix_selection_text_color_change'
|
|
2276
|
+
},
|
|
2277
|
+
param: 'isEnabled',
|
|
2278
|
+
defaultValue: false
|
|
2279
|
+
}),
|
|
2271
2280
|
// Added 2026-06-08
|
|
2272
2281
|
cc_ai_insert_to_page_rovo_chat_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2273
2282
|
productKeys: {
|
|
@@ -2262,6 +2262,15 @@ export const editorExperimentsConfig = {
|
|
|
2262
2262
|
param: 'isEnabled',
|
|
2263
2263
|
defaultValue: false
|
|
2264
2264
|
}),
|
|
2265
|
+
// Added 2026-06-25
|
|
2266
|
+
platform_editor_fix_selection_text_color_change: createBooleanExperiment({
|
|
2267
|
+
productKeys: {
|
|
2268
|
+
confluence: 'platform_editor_fix_selection_text_color_change',
|
|
2269
|
+
jira: 'platform_editor_fix_selection_text_color_change'
|
|
2270
|
+
},
|
|
2271
|
+
param: 'isEnabled',
|
|
2272
|
+
defaultValue: false
|
|
2273
|
+
}),
|
|
2265
2274
|
// Added 2026-06-08
|
|
2266
2275
|
cc_ai_insert_to_page_rovo_chat_experiment: createBooleanExperiment({
|
|
2267
2276
|
productKeys: {
|
|
@@ -2262,6 +2262,15 @@ export var editorExperimentsConfig = {
|
|
|
2262
2262
|
param: 'isEnabled',
|
|
2263
2263
|
defaultValue: false
|
|
2264
2264
|
}),
|
|
2265
|
+
// Added 2026-06-25
|
|
2266
|
+
platform_editor_fix_selection_text_color_change: createBooleanExperiment({
|
|
2267
|
+
productKeys: {
|
|
2268
|
+
confluence: 'platform_editor_fix_selection_text_color_change',
|
|
2269
|
+
jira: 'platform_editor_fix_selection_text_color_change'
|
|
2270
|
+
},
|
|
2271
|
+
param: 'isEnabled',
|
|
2272
|
+
defaultValue: false
|
|
2273
|
+
}),
|
|
2265
2274
|
// Added 2026-06-08
|
|
2266
2275
|
cc_ai_insert_to_page_rovo_chat_experiment: createBooleanExperiment({
|
|
2267
2276
|
productKeys: {
|
|
@@ -1653,6 +1653,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1653
1653
|
productKeys?: ProductKeys;
|
|
1654
1654
|
typeGuard: IsBooleanType;
|
|
1655
1655
|
};
|
|
1656
|
+
platform_editor_fix_selection_text_color_change: {
|
|
1657
|
+
defaultValue: boolean;
|
|
1658
|
+
param: string;
|
|
1659
|
+
productKeys?: ProductKeys;
|
|
1660
|
+
typeGuard: IsBooleanType;
|
|
1661
|
+
};
|
|
1656
1662
|
cc_ai_insert_to_page_rovo_chat_experiment: {
|
|
1657
1663
|
defaultValue: boolean;
|
|
1658
1664
|
param: string;
|
package/package.json
CHANGED