@atlaskit/tmp-editor-statsig 38.0.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 +14 -0
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
10
|
+
## 38.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`1a8d8eb4f0dcb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a8d8eb4f0dcb) -
|
|
15
|
+
Adds experiment to fix broken uploaded images in card macro
|
|
16
|
+
|
|
3
17
|
## 38.0.0
|
|
4
18
|
|
|
5
19
|
### Major Changes
|
|
@@ -806,6 +806,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
806
806
|
param: 'isEnabled',
|
|
807
807
|
defaultValue: false
|
|
808
808
|
}),
|
|
809
|
+
// Added 2026-03-12
|
|
810
|
+
ccpi_fix_broken_uploaded_img: (0, _experimentBuilders.createBooleanExperiment)({
|
|
811
|
+
productKeys: {
|
|
812
|
+
confluence: 'ccpi_fix_broken_uploaded_img'
|
|
813
|
+
},
|
|
814
|
+
param: 'isEnabled',
|
|
815
|
+
defaultValue: false
|
|
816
|
+
}),
|
|
809
817
|
// Added 2026-02-05
|
|
810
818
|
'editor-a11y-fy26-keyboard-move-row-column': (0, _experimentBuilders.createBooleanExperiment)({
|
|
811
819
|
productKeys: {
|
|
@@ -1757,6 +1765,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1757
1765
|
param: 'isEnabled',
|
|
1758
1766
|
defaultValue: false
|
|
1759
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
|
+
}),
|
|
1760
1777
|
// Added 2026-03-09
|
|
1761
1778
|
platform_editor_remove_collab_step_metrics: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1762
1779
|
productKeys: {
|
|
@@ -800,6 +800,14 @@ export const editorExperimentsConfig = {
|
|
|
800
800
|
param: 'isEnabled',
|
|
801
801
|
defaultValue: false
|
|
802
802
|
}),
|
|
803
|
+
// Added 2026-03-12
|
|
804
|
+
ccpi_fix_broken_uploaded_img: createBooleanExperiment({
|
|
805
|
+
productKeys: {
|
|
806
|
+
confluence: 'ccpi_fix_broken_uploaded_img'
|
|
807
|
+
},
|
|
808
|
+
param: 'isEnabled',
|
|
809
|
+
defaultValue: false
|
|
810
|
+
}),
|
|
803
811
|
// Added 2026-02-05
|
|
804
812
|
'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
|
|
805
813
|
productKeys: {
|
|
@@ -1751,6 +1759,15 @@ export const editorExperimentsConfig = {
|
|
|
1751
1759
|
param: 'isEnabled',
|
|
1752
1760
|
defaultValue: false
|
|
1753
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
|
+
}),
|
|
1754
1771
|
// Added 2026-03-09
|
|
1755
1772
|
platform_editor_remove_collab_step_metrics: createBooleanExperiment({
|
|
1756
1773
|
productKeys: {
|
|
@@ -800,6 +800,14 @@ export var editorExperimentsConfig = {
|
|
|
800
800
|
param: 'isEnabled',
|
|
801
801
|
defaultValue: false
|
|
802
802
|
}),
|
|
803
|
+
// Added 2026-03-12
|
|
804
|
+
ccpi_fix_broken_uploaded_img: createBooleanExperiment({
|
|
805
|
+
productKeys: {
|
|
806
|
+
confluence: 'ccpi_fix_broken_uploaded_img'
|
|
807
|
+
},
|
|
808
|
+
param: 'isEnabled',
|
|
809
|
+
defaultValue: false
|
|
810
|
+
}),
|
|
803
811
|
// Added 2026-02-05
|
|
804
812
|
'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
|
|
805
813
|
productKeys: {
|
|
@@ -1751,6 +1759,15 @@ export var editorExperimentsConfig = {
|
|
|
1751
1759
|
param: 'isEnabled',
|
|
1752
1760
|
defaultValue: false
|
|
1753
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
|
+
}),
|
|
1754
1771
|
// Added 2026-03-09
|
|
1755
1772
|
platform_editor_remove_collab_step_metrics: createBooleanExperiment({
|
|
1756
1773
|
productKeys: {
|
|
@@ -178,6 +178,12 @@ export declare const editorExperimentsConfig: {
|
|
|
178
178
|
productKeys?: ProductKeys;
|
|
179
179
|
typeGuard: IsBooleanType;
|
|
180
180
|
};
|
|
181
|
+
ccpi_fix_broken_uploaded_img: {
|
|
182
|
+
defaultValue: boolean;
|
|
183
|
+
param: string;
|
|
184
|
+
productKeys?: ProductKeys;
|
|
185
|
+
typeGuard: IsBooleanType;
|
|
186
|
+
};
|
|
181
187
|
'editor-a11y-fy26-keyboard-move-row-column': {
|
|
182
188
|
defaultValue: boolean;
|
|
183
189
|
param: string;
|
|
@@ -1302,5 +1308,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1302
1308
|
productKeys?: ProductKeys;
|
|
1303
1309
|
typeGuard: IsBooleanType;
|
|
1304
1310
|
};
|
|
1311
|
+
platform_editor_disable_last_node_para: {
|
|
1312
|
+
defaultValue: boolean;
|
|
1313
|
+
param: string;
|
|
1314
|
+
productKeys?: ProductKeys;
|
|
1315
|
+
typeGuard: IsBooleanType;
|
|
1316
|
+
};
|
|
1305
1317
|
};
|
|
1306
1318
|
export {};
|
|
@@ -178,6 +178,12 @@ export declare const editorExperimentsConfig: {
|
|
|
178
178
|
productKeys?: ProductKeys;
|
|
179
179
|
typeGuard: IsBooleanType;
|
|
180
180
|
};
|
|
181
|
+
ccpi_fix_broken_uploaded_img: {
|
|
182
|
+
defaultValue: boolean;
|
|
183
|
+
param: string;
|
|
184
|
+
productKeys?: ProductKeys;
|
|
185
|
+
typeGuard: IsBooleanType;
|
|
186
|
+
};
|
|
181
187
|
'editor-a11y-fy26-keyboard-move-row-column': {
|
|
182
188
|
defaultValue: boolean;
|
|
183
189
|
param: string;
|
|
@@ -1302,5 +1308,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1302
1308
|
productKeys?: ProductKeys;
|
|
1303
1309
|
typeGuard: IsBooleanType;
|
|
1304
1310
|
};
|
|
1311
|
+
platform_editor_disable_last_node_para: {
|
|
1312
|
+
defaultValue: boolean;
|
|
1313
|
+
param: string;
|
|
1314
|
+
productKeys?: ProductKeys;
|
|
1315
|
+
typeGuard: IsBooleanType;
|
|
1316
|
+
};
|
|
1305
1317
|
};
|
|
1306
1318
|
export {};
|
package/package.json
CHANGED