@atlaskit/tmp-editor-statsig 35.7.0 → 35.8.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
|
+
## 35.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`477d48a3021a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/477d48a3021a5) -
|
|
8
|
+
EDITOR-5818 fix to not send dispatch during render or in ref callback
|
|
9
|
+
|
|
3
10
|
## 35.7.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1658,6 +1658,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1658
1658
|
param: 'isEnabled',
|
|
1659
1659
|
defaultValue: false
|
|
1660
1660
|
}),
|
|
1661
|
+
// Added 2026-03-10
|
|
1662
|
+
platform_editor_fix_editor_unhandled_type_errors: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1663
|
+
productKeys: {
|
|
1664
|
+
confluence: 'platform_editor_fix_editor_unhandled_type_errors'
|
|
1665
|
+
},
|
|
1666
|
+
param: 'isEnabled',
|
|
1667
|
+
defaultValue: false
|
|
1668
|
+
}),
|
|
1661
1669
|
// Added 2026-03-05
|
|
1662
1670
|
platform_editor_table_resizer_extended_zone: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1663
1671
|
productKeys: {
|
|
@@ -1652,6 +1652,14 @@ export const editorExperimentsConfig = {
|
|
|
1652
1652
|
param: 'isEnabled',
|
|
1653
1653
|
defaultValue: false
|
|
1654
1654
|
}),
|
|
1655
|
+
// Added 2026-03-10
|
|
1656
|
+
platform_editor_fix_editor_unhandled_type_errors: createBooleanExperiment({
|
|
1657
|
+
productKeys: {
|
|
1658
|
+
confluence: 'platform_editor_fix_editor_unhandled_type_errors'
|
|
1659
|
+
},
|
|
1660
|
+
param: 'isEnabled',
|
|
1661
|
+
defaultValue: false
|
|
1662
|
+
}),
|
|
1655
1663
|
// Added 2026-03-05
|
|
1656
1664
|
platform_editor_table_resizer_extended_zone: createBooleanExperiment({
|
|
1657
1665
|
productKeys: {
|
|
@@ -1652,6 +1652,14 @@ export var editorExperimentsConfig = {
|
|
|
1652
1652
|
param: 'isEnabled',
|
|
1653
1653
|
defaultValue: false
|
|
1654
1654
|
}),
|
|
1655
|
+
// Added 2026-03-10
|
|
1656
|
+
platform_editor_fix_editor_unhandled_type_errors: createBooleanExperiment({
|
|
1657
|
+
productKeys: {
|
|
1658
|
+
confluence: 'platform_editor_fix_editor_unhandled_type_errors'
|
|
1659
|
+
},
|
|
1660
|
+
param: 'isEnabled',
|
|
1661
|
+
defaultValue: false
|
|
1662
|
+
}),
|
|
1655
1663
|
// Added 2026-03-05
|
|
1656
1664
|
platform_editor_table_resizer_extended_zone: createBooleanExperiment({
|
|
1657
1665
|
productKeys: {
|
|
@@ -1224,6 +1224,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1224
1224
|
productKeys?: ProductKeys;
|
|
1225
1225
|
typeGuard: IsBooleanType;
|
|
1226
1226
|
};
|
|
1227
|
+
platform_editor_fix_editor_unhandled_type_errors: {
|
|
1228
|
+
defaultValue: boolean;
|
|
1229
|
+
param: string;
|
|
1230
|
+
productKeys?: ProductKeys;
|
|
1231
|
+
typeGuard: IsBooleanType;
|
|
1232
|
+
};
|
|
1227
1233
|
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1228
1234
|
defaultValue: boolean;
|
|
1229
1235
|
param: string;
|
|
@@ -1224,6 +1224,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1224
1224
|
productKeys?: ProductKeys;
|
|
1225
1225
|
typeGuard: IsBooleanType;
|
|
1226
1226
|
};
|
|
1227
|
+
platform_editor_fix_editor_unhandled_type_errors: {
|
|
1228
|
+
defaultValue: boolean;
|
|
1229
|
+
param: string;
|
|
1230
|
+
productKeys?: ProductKeys;
|
|
1231
|
+
typeGuard: IsBooleanType;
|
|
1232
|
+
};
|
|
1227
1233
|
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1228
1234
|
defaultValue: boolean;
|
|
1229
1235
|
param: string;
|
package/package.json
CHANGED