@atlaskit/tmp-editor-statsig 127.0.0 → 127.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 127.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`34d8700aa0e77`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/34d8700aa0e77) -
|
|
8
|
+
[EDITOR-8131] register new experiment platform_editor_add_breakout_marks_on_page_load
|
|
9
|
+
|
|
3
10
|
## 127.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -2436,6 +2436,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2436
2436
|
param: 'isEnabled',
|
|
2437
2437
|
defaultValue: false
|
|
2438
2438
|
}),
|
|
2439
|
+
// Added 2026-07-16
|
|
2440
|
+
platform_editor_add_breakout_marks_on_page_load: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2441
|
+
productKeys: {
|
|
2442
|
+
confluence: 'platform_editor_add_breakout_marks_on_page_load'
|
|
2443
|
+
},
|
|
2444
|
+
param: 'isEnabled',
|
|
2445
|
+
defaultValue: false
|
|
2446
|
+
}),
|
|
2439
2447
|
// Added 2026-06-23
|
|
2440
2448
|
'aifc-confluence-editor-csp-fix': (0, _experimentBuilders.createBooleanExperiment)({
|
|
2441
2449
|
productKeys: {
|
|
@@ -2430,6 +2430,14 @@ export const editorExperimentsConfig = {
|
|
|
2430
2430
|
param: 'isEnabled',
|
|
2431
2431
|
defaultValue: false
|
|
2432
2432
|
}),
|
|
2433
|
+
// Added 2026-07-16
|
|
2434
|
+
platform_editor_add_breakout_marks_on_page_load: createBooleanExperiment({
|
|
2435
|
+
productKeys: {
|
|
2436
|
+
confluence: 'platform_editor_add_breakout_marks_on_page_load'
|
|
2437
|
+
},
|
|
2438
|
+
param: 'isEnabled',
|
|
2439
|
+
defaultValue: false
|
|
2440
|
+
}),
|
|
2433
2441
|
// Added 2026-06-23
|
|
2434
2442
|
'aifc-confluence-editor-csp-fix': createBooleanExperiment({
|
|
2435
2443
|
productKeys: {
|
|
@@ -2430,6 +2430,14 @@ export var editorExperimentsConfig = {
|
|
|
2430
2430
|
param: 'isEnabled',
|
|
2431
2431
|
defaultValue: false
|
|
2432
2432
|
}),
|
|
2433
|
+
// Added 2026-07-16
|
|
2434
|
+
platform_editor_add_breakout_marks_on_page_load: createBooleanExperiment({
|
|
2435
|
+
productKeys: {
|
|
2436
|
+
confluence: 'platform_editor_add_breakout_marks_on_page_load'
|
|
2437
|
+
},
|
|
2438
|
+
param: 'isEnabled',
|
|
2439
|
+
defaultValue: false
|
|
2440
|
+
}),
|
|
2433
2441
|
// Added 2026-06-23
|
|
2434
2442
|
'aifc-confluence-editor-csp-fix': createBooleanExperiment({
|
|
2435
2443
|
productKeys: {
|
|
@@ -1775,6 +1775,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1775
1775
|
productKeys?: ProductKeys;
|
|
1776
1776
|
typeGuard: IsBooleanType;
|
|
1777
1777
|
};
|
|
1778
|
+
platform_editor_add_breakout_marks_on_page_load: {
|
|
1779
|
+
defaultValue: boolean;
|
|
1780
|
+
param: string;
|
|
1781
|
+
productKeys?: ProductKeys;
|
|
1782
|
+
typeGuard: IsBooleanType;
|
|
1783
|
+
};
|
|
1778
1784
|
'aifc-confluence-editor-csp-fix': {
|
|
1779
1785
|
defaultValue: boolean;
|
|
1780
1786
|
param: string;
|
package/package.json
CHANGED