@atlaskit/tmp-editor-statsig 74.4.0 → 74.5.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 74.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d5eb28ba8a0f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d5eb28ba8a0f8) -
|
|
8
|
+
EDITOR-6724: Fix object assignment issue in attrs comparison util to avoid attrs being dropped in
|
|
9
|
+
ProseMirror when they're being compared.
|
|
10
|
+
|
|
3
11
|
## 74.4.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -2079,5 +2079,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2079
2079
|
},
|
|
2080
2080
|
param: 'isEnabled',
|
|
2081
2081
|
defaultValue: false
|
|
2082
|
+
}),
|
|
2083
|
+
// Added 2026-05-04
|
|
2084
|
+
platform_editor_show_diff_fix_missing_attrs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2085
|
+
productKeys: {
|
|
2086
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2087
|
+
},
|
|
2088
|
+
param: 'isEnabled',
|
|
2089
|
+
defaultValue: false
|
|
2082
2090
|
})
|
|
2083
2091
|
};
|
|
@@ -2073,5 +2073,13 @@ export const editorExperimentsConfig = {
|
|
|
2073
2073
|
},
|
|
2074
2074
|
param: 'isEnabled',
|
|
2075
2075
|
defaultValue: false
|
|
2076
|
+
}),
|
|
2077
|
+
// Added 2026-05-04
|
|
2078
|
+
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2079
|
+
productKeys: {
|
|
2080
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2081
|
+
},
|
|
2082
|
+
param: 'isEnabled',
|
|
2083
|
+
defaultValue: false
|
|
2076
2084
|
})
|
|
2077
2085
|
};
|
|
@@ -2073,5 +2073,13 @@ export var editorExperimentsConfig = {
|
|
|
2073
2073
|
},
|
|
2074
2074
|
param: 'isEnabled',
|
|
2075
2075
|
defaultValue: false
|
|
2076
|
+
}),
|
|
2077
|
+
// Added 2026-05-04
|
|
2078
|
+
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2079
|
+
productKeys: {
|
|
2080
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2081
|
+
},
|
|
2082
|
+
param: 'isEnabled',
|
|
2083
|
+
defaultValue: false
|
|
2076
2084
|
})
|
|
2077
2085
|
};
|
|
@@ -1530,5 +1530,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1530
1530
|
productKeys?: ProductKeys;
|
|
1531
1531
|
typeGuard: IsBooleanType;
|
|
1532
1532
|
};
|
|
1533
|
+
platform_editor_show_diff_fix_missing_attrs: {
|
|
1534
|
+
defaultValue: boolean;
|
|
1535
|
+
param: string;
|
|
1536
|
+
productKeys?: ProductKeys;
|
|
1537
|
+
typeGuard: IsBooleanType;
|
|
1538
|
+
};
|
|
1533
1539
|
};
|
|
1534
1540
|
export {};
|
|
@@ -1530,5 +1530,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1530
1530
|
productKeys?: ProductKeys;
|
|
1531
1531
|
typeGuard: IsBooleanType;
|
|
1532
1532
|
};
|
|
1533
|
+
platform_editor_show_diff_fix_missing_attrs: {
|
|
1534
|
+
defaultValue: boolean;
|
|
1535
|
+
param: string;
|
|
1536
|
+
productKeys?: ProductKeys;
|
|
1537
|
+
typeGuard: IsBooleanType;
|
|
1538
|
+
};
|
|
1533
1539
|
};
|
|
1534
1540
|
export {};
|
package/package.json
CHANGED