@atlaskit/tmp-editor-statsig 13.19.0 → 13.19.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.19.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`da82d015556d4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/da82d015556d4) -
|
|
8
|
+
Fix a bug where repeatedly cloning the media plugin state would cause severe performance
|
|
9
|
+
degradation over time
|
|
10
|
+
|
|
3
11
|
## 13.19.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1081,5 +1081,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1081
1081
|
},
|
|
1082
1082
|
param: 'isEnabled',
|
|
1083
1083
|
defaultValue: false
|
|
1084
|
+
}),
|
|
1085
|
+
// Added 2025-10-24
|
|
1086
|
+
platform_editor_fix_clone_nesting_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1087
|
+
productKeys: {
|
|
1088
|
+
confluence: 'platform_editor_fix_clone_nesting_exp'
|
|
1089
|
+
},
|
|
1090
|
+
param: 'isEnabled',
|
|
1091
|
+
defaultValue: false
|
|
1084
1092
|
})
|
|
1085
1093
|
};
|
|
@@ -1075,5 +1075,13 @@ export const editorExperimentsConfig = {
|
|
|
1075
1075
|
},
|
|
1076
1076
|
param: 'isEnabled',
|
|
1077
1077
|
defaultValue: false
|
|
1078
|
+
}),
|
|
1079
|
+
// Added 2025-10-24
|
|
1080
|
+
platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
|
|
1081
|
+
productKeys: {
|
|
1082
|
+
confluence: 'platform_editor_fix_clone_nesting_exp'
|
|
1083
|
+
},
|
|
1084
|
+
param: 'isEnabled',
|
|
1085
|
+
defaultValue: false
|
|
1078
1086
|
})
|
|
1079
1087
|
};
|
|
@@ -1075,5 +1075,13 @@ export var editorExperimentsConfig = {
|
|
|
1075
1075
|
},
|
|
1076
1076
|
param: 'isEnabled',
|
|
1077
1077
|
defaultValue: false
|
|
1078
|
+
}),
|
|
1079
|
+
// Added 2025-10-24
|
|
1080
|
+
platform_editor_fix_clone_nesting_exp: createBooleanExperiment({
|
|
1081
|
+
productKeys: {
|
|
1082
|
+
confluence: 'platform_editor_fix_clone_nesting_exp'
|
|
1083
|
+
},
|
|
1084
|
+
param: 'isEnabled',
|
|
1085
|
+
defaultValue: false
|
|
1078
1086
|
})
|
|
1079
1087
|
};
|
|
@@ -793,4 +793,10 @@ export declare const editorExperimentsConfig: {
|
|
|
793
793
|
param: string;
|
|
794
794
|
productKeys?: import("./types").ProductKeys;
|
|
795
795
|
};
|
|
796
|
+
platform_editor_fix_clone_nesting_exp: {
|
|
797
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
798
|
+
defaultValue: boolean;
|
|
799
|
+
param: string;
|
|
800
|
+
productKeys?: import("./types").ProductKeys;
|
|
801
|
+
};
|
|
796
802
|
};
|
|
@@ -793,4 +793,10 @@ export declare const editorExperimentsConfig: {
|
|
|
793
793
|
param: string;
|
|
794
794
|
productKeys?: import("./types").ProductKeys;
|
|
795
795
|
};
|
|
796
|
+
platform_editor_fix_clone_nesting_exp: {
|
|
797
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
798
|
+
defaultValue: boolean;
|
|
799
|
+
param: string;
|
|
800
|
+
productKeys?: import("./types").ProductKeys;
|
|
801
|
+
};
|
|
796
802
|
};
|
package/package.json
CHANGED