@atlaskit/tmp-editor-statsig 14.4.0 → 14.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 14.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`bc11393275e1c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bc11393275e1c) -
|
|
8
|
+
Do not use React State for storing pluginInjectionAPI reference
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 14.4.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -401,6 +401,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
401
401
|
param: 'isEnabled',
|
|
402
402
|
defaultValue: false
|
|
403
403
|
}),
|
|
404
|
+
// Added 2025-12-01
|
|
405
|
+
platform_editor_no_state_plugin_injection_api: (0, _experimentBuilders.createBooleanExperiment)({
|
|
406
|
+
productKeys: {
|
|
407
|
+
confluence: 'platform_editor_no_state_plugin_injection_api'
|
|
408
|
+
},
|
|
409
|
+
param: 'isEnabled',
|
|
410
|
+
defaultValue: false
|
|
411
|
+
}),
|
|
404
412
|
// Added 2025-06-10
|
|
405
413
|
platform_editor_no_cursor_on_edit_page_init: (0, _experimentBuilders.createBooleanExperiment)({
|
|
406
414
|
productKeys: {
|
|
@@ -395,6 +395,14 @@ export const editorExperimentsConfig = {
|
|
|
395
395
|
param: 'isEnabled',
|
|
396
396
|
defaultValue: false
|
|
397
397
|
}),
|
|
398
|
+
// Added 2025-12-01
|
|
399
|
+
platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
|
|
400
|
+
productKeys: {
|
|
401
|
+
confluence: 'platform_editor_no_state_plugin_injection_api'
|
|
402
|
+
},
|
|
403
|
+
param: 'isEnabled',
|
|
404
|
+
defaultValue: false
|
|
405
|
+
}),
|
|
398
406
|
// Added 2025-06-10
|
|
399
407
|
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
400
408
|
productKeys: {
|
|
@@ -395,6 +395,14 @@ export var editorExperimentsConfig = {
|
|
|
395
395
|
param: 'isEnabled',
|
|
396
396
|
defaultValue: false
|
|
397
397
|
}),
|
|
398
|
+
// Added 2025-12-01
|
|
399
|
+
platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
|
|
400
|
+
productKeys: {
|
|
401
|
+
confluence: 'platform_editor_no_state_plugin_injection_api'
|
|
402
|
+
},
|
|
403
|
+
param: 'isEnabled',
|
|
404
|
+
defaultValue: false
|
|
405
|
+
}),
|
|
398
406
|
// Added 2025-06-10
|
|
399
407
|
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
400
408
|
productKeys: {
|
|
@@ -558,6 +558,12 @@ export declare const editorExperimentsConfig: {
|
|
|
558
558
|
productKeys?: ProductKeys;
|
|
559
559
|
typeGuard: IsBooleanType;
|
|
560
560
|
};
|
|
561
|
+
platform_editor_no_state_plugin_injection_api: {
|
|
562
|
+
defaultValue: boolean;
|
|
563
|
+
param: string;
|
|
564
|
+
productKeys?: ProductKeys;
|
|
565
|
+
typeGuard: IsBooleanType;
|
|
566
|
+
};
|
|
561
567
|
platform_editor_offline_editing_web: {
|
|
562
568
|
defaultValue: boolean;
|
|
563
569
|
param: string;
|
|
@@ -558,6 +558,12 @@ export declare const editorExperimentsConfig: {
|
|
|
558
558
|
productKeys?: ProductKeys;
|
|
559
559
|
typeGuard: IsBooleanType;
|
|
560
560
|
};
|
|
561
|
+
platform_editor_no_state_plugin_injection_api: {
|
|
562
|
+
defaultValue: boolean;
|
|
563
|
+
param: string;
|
|
564
|
+
productKeys?: ProductKeys;
|
|
565
|
+
typeGuard: IsBooleanType;
|
|
566
|
+
};
|
|
561
567
|
platform_editor_offline_editing_web: {
|
|
562
568
|
defaultValue: boolean;
|
|
563
569
|
param: string;
|
package/package.json
CHANGED