@atlaskit/tmp-editor-statsig 38.0.0 → 38.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
|
+
## 38.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1a8d8eb4f0dcb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a8d8eb4f0dcb) -
|
|
8
|
+
Adds experiment to fix broken uploaded images in card macro
|
|
9
|
+
|
|
3
10
|
## 38.0.0
|
|
4
11
|
|
|
5
12
|
### 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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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;
|
package/package.json
CHANGED