@atlaskit/tmp-editor-statsig 14.8.0 → 14.9.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,17 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 14.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c7acfc11f076a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c7acfc11f076a) -
|
|
8
|
+
[https://hello.jira.atlassian.cloud/browse/EDITOR-3745](EDITOR-3745) - adopt EditorSSRRenderer to
|
|
9
|
+
ReactEditorView
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 14.8.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -302,6 +302,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
302
302
|
param: 'isEnabled',
|
|
303
303
|
defaultValue: false
|
|
304
304
|
}),
|
|
305
|
+
platform_editor_ssr_renderer: (0, _experimentBuilders.createBooleanExperiment)({
|
|
306
|
+
productKeys: {
|
|
307
|
+
confluence: 'platform_editor_ssr_renderer'
|
|
308
|
+
},
|
|
309
|
+
param: 'isEnabled',
|
|
310
|
+
defaultValue: false
|
|
311
|
+
}),
|
|
305
312
|
// Added 2025-01-13
|
|
306
313
|
platform_editor_element_drag_and_drop_multiselect: (0, _experimentBuilders.createBooleanExperiment)({
|
|
307
314
|
productKeys: {
|
|
@@ -296,6 +296,13 @@ export const editorExperimentsConfig = {
|
|
|
296
296
|
param: 'isEnabled',
|
|
297
297
|
defaultValue: false
|
|
298
298
|
}),
|
|
299
|
+
platform_editor_ssr_renderer: createBooleanExperiment({
|
|
300
|
+
productKeys: {
|
|
301
|
+
confluence: 'platform_editor_ssr_renderer'
|
|
302
|
+
},
|
|
303
|
+
param: 'isEnabled',
|
|
304
|
+
defaultValue: false
|
|
305
|
+
}),
|
|
299
306
|
// Added 2025-01-13
|
|
300
307
|
platform_editor_element_drag_and_drop_multiselect: createBooleanExperiment({
|
|
301
308
|
productKeys: {
|
|
@@ -296,6 +296,13 @@ export var editorExperimentsConfig = {
|
|
|
296
296
|
param: 'isEnabled',
|
|
297
297
|
defaultValue: false
|
|
298
298
|
}),
|
|
299
|
+
platform_editor_ssr_renderer: createBooleanExperiment({
|
|
300
|
+
productKeys: {
|
|
301
|
+
confluence: 'platform_editor_ssr_renderer'
|
|
302
|
+
},
|
|
303
|
+
param: 'isEnabled',
|
|
304
|
+
defaultValue: false
|
|
305
|
+
}),
|
|
299
306
|
// Added 2025-01-13
|
|
300
307
|
platform_editor_element_drag_and_drop_multiselect: createBooleanExperiment({
|
|
301
308
|
productKeys: {
|
|
@@ -666,6 +666,12 @@ export declare const editorExperimentsConfig: {
|
|
|
666
666
|
productKeys?: ProductKeys;
|
|
667
667
|
typeGuard: IsBooleanType;
|
|
668
668
|
};
|
|
669
|
+
platform_editor_ssr_renderer: {
|
|
670
|
+
defaultValue: boolean;
|
|
671
|
+
param: string;
|
|
672
|
+
productKeys?: ProductKeys;
|
|
673
|
+
typeGuard: IsBooleanType;
|
|
674
|
+
};
|
|
669
675
|
platform_editor_stop_width_reflows: {
|
|
670
676
|
defaultValue: boolean;
|
|
671
677
|
param: string;
|
|
@@ -666,6 +666,12 @@ export declare const editorExperimentsConfig: {
|
|
|
666
666
|
productKeys?: ProductKeys;
|
|
667
667
|
typeGuard: IsBooleanType;
|
|
668
668
|
};
|
|
669
|
+
platform_editor_ssr_renderer: {
|
|
670
|
+
defaultValue: boolean;
|
|
671
|
+
param: string;
|
|
672
|
+
productKeys?: ProductKeys;
|
|
673
|
+
typeGuard: IsBooleanType;
|
|
674
|
+
};
|
|
669
675
|
platform_editor_stop_width_reflows: {
|
|
670
676
|
defaultValue: boolean;
|
|
671
677
|
param: string;
|
package/package.json
CHANGED