@atlaskit/tmp-editor-statsig 38.1.0 → 38.1.1
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
|
+
## 38.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7386e335aa805`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7386e335aa805) -
|
|
8
|
+
EDITOR-3953: Fix unwanted paragraph insertion when adding lists at end of document
|
|
9
|
+
|
|
3
10
|
## 38.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1765,6 +1765,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1765
1765
|
param: 'isEnabled',
|
|
1766
1766
|
defaultValue: false
|
|
1767
1767
|
}),
|
|
1768
|
+
// Added 2026-03-11
|
|
1769
|
+
platform_editor_disable_last_node_para: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1770
|
+
productKeys: {
|
|
1771
|
+
confluence: 'platform_editor_disable_last_node_para',
|
|
1772
|
+
jira: 'platform_editor_disable_last_node_para'
|
|
1773
|
+
},
|
|
1774
|
+
param: 'isEnabled',
|
|
1775
|
+
defaultValue: false
|
|
1776
|
+
}),
|
|
1768
1777
|
// Added 2026-03-09
|
|
1769
1778
|
platform_editor_remove_collab_step_metrics: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1770
1779
|
productKeys: {
|
|
@@ -1759,6 +1759,15 @@ export const editorExperimentsConfig = {
|
|
|
1759
1759
|
param: 'isEnabled',
|
|
1760
1760
|
defaultValue: false
|
|
1761
1761
|
}),
|
|
1762
|
+
// Added 2026-03-11
|
|
1763
|
+
platform_editor_disable_last_node_para: createBooleanExperiment({
|
|
1764
|
+
productKeys: {
|
|
1765
|
+
confluence: 'platform_editor_disable_last_node_para',
|
|
1766
|
+
jira: 'platform_editor_disable_last_node_para'
|
|
1767
|
+
},
|
|
1768
|
+
param: 'isEnabled',
|
|
1769
|
+
defaultValue: false
|
|
1770
|
+
}),
|
|
1762
1771
|
// Added 2026-03-09
|
|
1763
1772
|
platform_editor_remove_collab_step_metrics: createBooleanExperiment({
|
|
1764
1773
|
productKeys: {
|
|
@@ -1759,6 +1759,15 @@ export var editorExperimentsConfig = {
|
|
|
1759
1759
|
param: 'isEnabled',
|
|
1760
1760
|
defaultValue: false
|
|
1761
1761
|
}),
|
|
1762
|
+
// Added 2026-03-11
|
|
1763
|
+
platform_editor_disable_last_node_para: createBooleanExperiment({
|
|
1764
|
+
productKeys: {
|
|
1765
|
+
confluence: 'platform_editor_disable_last_node_para',
|
|
1766
|
+
jira: 'platform_editor_disable_last_node_para'
|
|
1767
|
+
},
|
|
1768
|
+
param: 'isEnabled',
|
|
1769
|
+
defaultValue: false
|
|
1770
|
+
}),
|
|
1762
1771
|
// Added 2026-03-09
|
|
1763
1772
|
platform_editor_remove_collab_step_metrics: createBooleanExperiment({
|
|
1764
1773
|
productKeys: {
|
|
@@ -1308,5 +1308,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1308
1308
|
productKeys?: ProductKeys;
|
|
1309
1309
|
typeGuard: IsBooleanType;
|
|
1310
1310
|
};
|
|
1311
|
+
platform_editor_disable_last_node_para: {
|
|
1312
|
+
defaultValue: boolean;
|
|
1313
|
+
param: string;
|
|
1314
|
+
productKeys?: ProductKeys;
|
|
1315
|
+
typeGuard: IsBooleanType;
|
|
1316
|
+
};
|
|
1311
1317
|
};
|
|
1312
1318
|
export {};
|
|
@@ -1308,5 +1308,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1308
1308
|
productKeys?: ProductKeys;
|
|
1309
1309
|
typeGuard: IsBooleanType;
|
|
1310
1310
|
};
|
|
1311
|
+
platform_editor_disable_last_node_para: {
|
|
1312
|
+
defaultValue: boolean;
|
|
1313
|
+
param: string;
|
|
1314
|
+
productKeys?: ProductKeys;
|
|
1315
|
+
typeGuard: IsBooleanType;
|
|
1316
|
+
};
|
|
1311
1317
|
};
|
|
1312
1318
|
export {};
|
package/package.json
CHANGED