@atlaskit/tmp-editor-statsig 14.4.0 → 14.6.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 +18 -0
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 14.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`fdef841890edf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fdef841890edf) -
|
|
8
|
+
Add gate for vc fixes
|
|
9
|
+
|
|
10
|
+
## 14.5.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`bc11393275e1c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bc11393275e1c) -
|
|
15
|
+
Do not use React State for storing pluginInjectionAPI reference
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 14.4.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.editorExperimentsConfig = void 0;
|
|
7
7
|
var _experimentBuilders = require("./experiment-builders");
|
|
8
|
+
/* eslint-disable perfectionist/sort-object-types */
|
|
8
9
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
9
10
|
// Entry file in package.json
|
|
10
11
|
|
|
@@ -36,6 +37,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
36
37
|
|
|
37
38
|
// Editor Platform experiments
|
|
38
39
|
// lwoollard experiments
|
|
40
|
+
// Added 02-12-2025
|
|
41
|
+
cc_fix_hydration_ttvc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
42
|
+
productKeys: {
|
|
43
|
+
confluence: 'cc_fix_hydration_ttvc'
|
|
44
|
+
},
|
|
45
|
+
param: 'isEnabled',
|
|
46
|
+
defaultValue: false
|
|
47
|
+
}),
|
|
39
48
|
// Added 03-09-2025
|
|
40
49
|
cc_editor_limited_mode_include_lcm: (0, _experimentBuilders.createBooleanExperiment)({
|
|
41
50
|
productKeys: {
|
|
@@ -401,6 +410,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
401
410
|
param: 'isEnabled',
|
|
402
411
|
defaultValue: false
|
|
403
412
|
}),
|
|
413
|
+
// Added 2025-12-01
|
|
414
|
+
platform_editor_no_state_plugin_injection_api: (0, _experimentBuilders.createBooleanExperiment)({
|
|
415
|
+
productKeys: {
|
|
416
|
+
confluence: 'platform_editor_no_state_plugin_injection_api'
|
|
417
|
+
},
|
|
418
|
+
param: 'isEnabled',
|
|
419
|
+
defaultValue: false
|
|
420
|
+
}),
|
|
404
421
|
// Added 2025-06-10
|
|
405
422
|
platform_editor_no_cursor_on_edit_page_init: (0, _experimentBuilders.createBooleanExperiment)({
|
|
406
423
|
productKeys: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable perfectionist/sort-object-types */
|
|
1
2
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
2
3
|
// Entry file in package.json
|
|
3
4
|
|
|
@@ -30,6 +31,14 @@ export const editorExperimentsConfig = {
|
|
|
30
31
|
|
|
31
32
|
// Editor Platform experiments
|
|
32
33
|
// lwoollard experiments
|
|
34
|
+
// Added 02-12-2025
|
|
35
|
+
cc_fix_hydration_ttvc: createBooleanExperiment({
|
|
36
|
+
productKeys: {
|
|
37
|
+
confluence: 'cc_fix_hydration_ttvc'
|
|
38
|
+
},
|
|
39
|
+
param: 'isEnabled',
|
|
40
|
+
defaultValue: false
|
|
41
|
+
}),
|
|
33
42
|
// Added 03-09-2025
|
|
34
43
|
cc_editor_limited_mode_include_lcm: createBooleanExperiment({
|
|
35
44
|
productKeys: {
|
|
@@ -395,6 +404,14 @@ export const editorExperimentsConfig = {
|
|
|
395
404
|
param: 'isEnabled',
|
|
396
405
|
defaultValue: false
|
|
397
406
|
}),
|
|
407
|
+
// Added 2025-12-01
|
|
408
|
+
platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
|
|
409
|
+
productKeys: {
|
|
410
|
+
confluence: 'platform_editor_no_state_plugin_injection_api'
|
|
411
|
+
},
|
|
412
|
+
param: 'isEnabled',
|
|
413
|
+
defaultValue: false
|
|
414
|
+
}),
|
|
398
415
|
// Added 2025-06-10
|
|
399
416
|
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
400
417
|
productKeys: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable perfectionist/sort-object-types */
|
|
1
2
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
2
3
|
// Entry file in package.json
|
|
3
4
|
|
|
@@ -30,6 +31,14 @@ export var editorExperimentsConfig = {
|
|
|
30
31
|
|
|
31
32
|
// Editor Platform experiments
|
|
32
33
|
// lwoollard experiments
|
|
34
|
+
// Added 02-12-2025
|
|
35
|
+
cc_fix_hydration_ttvc: createBooleanExperiment({
|
|
36
|
+
productKeys: {
|
|
37
|
+
confluence: 'cc_fix_hydration_ttvc'
|
|
38
|
+
},
|
|
39
|
+
param: 'isEnabled',
|
|
40
|
+
defaultValue: false
|
|
41
|
+
}),
|
|
33
42
|
// Added 03-09-2025
|
|
34
43
|
cc_editor_limited_mode_include_lcm: createBooleanExperiment({
|
|
35
44
|
productKeys: {
|
|
@@ -395,6 +404,14 @@ export var editorExperimentsConfig = {
|
|
|
395
404
|
param: 'isEnabled',
|
|
396
405
|
defaultValue: false
|
|
397
406
|
}),
|
|
407
|
+
// Added 2025-12-01
|
|
408
|
+
platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
|
|
409
|
+
productKeys: {
|
|
410
|
+
confluence: 'platform_editor_no_state_plugin_injection_api'
|
|
411
|
+
},
|
|
412
|
+
param: 'isEnabled',
|
|
413
|
+
defaultValue: false
|
|
414
|
+
}),
|
|
398
415
|
// Added 2025-06-10
|
|
399
416
|
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
400
417
|
productKeys: {
|
|
@@ -64,6 +64,12 @@ export declare const editorExperimentsConfig: {
|
|
|
64
64
|
productKeys?: ProductKeys;
|
|
65
65
|
typeGuard: IsBooleanType;
|
|
66
66
|
};
|
|
67
|
+
cc_fix_hydration_ttvc: {
|
|
68
|
+
defaultValue: boolean;
|
|
69
|
+
param: string;
|
|
70
|
+
productKeys?: ProductKeys;
|
|
71
|
+
typeGuard: IsBooleanType;
|
|
72
|
+
};
|
|
67
73
|
cc_editor_limited_mode_include_lcm: {
|
|
68
74
|
defaultValue: boolean;
|
|
69
75
|
param: string;
|
|
@@ -558,6 +564,12 @@ export declare const editorExperimentsConfig: {
|
|
|
558
564
|
productKeys?: ProductKeys;
|
|
559
565
|
typeGuard: IsBooleanType;
|
|
560
566
|
};
|
|
567
|
+
platform_editor_no_state_plugin_injection_api: {
|
|
568
|
+
defaultValue: boolean;
|
|
569
|
+
param: string;
|
|
570
|
+
productKeys?: ProductKeys;
|
|
571
|
+
typeGuard: IsBooleanType;
|
|
572
|
+
};
|
|
561
573
|
platform_editor_offline_editing_web: {
|
|
562
574
|
defaultValue: boolean;
|
|
563
575
|
param: string;
|
|
@@ -64,6 +64,12 @@ export declare const editorExperimentsConfig: {
|
|
|
64
64
|
productKeys?: ProductKeys;
|
|
65
65
|
typeGuard: IsBooleanType;
|
|
66
66
|
};
|
|
67
|
+
cc_fix_hydration_ttvc: {
|
|
68
|
+
defaultValue: boolean;
|
|
69
|
+
param: string;
|
|
70
|
+
productKeys?: ProductKeys;
|
|
71
|
+
typeGuard: IsBooleanType;
|
|
72
|
+
};
|
|
67
73
|
cc_editor_limited_mode_include_lcm: {
|
|
68
74
|
defaultValue: boolean;
|
|
69
75
|
param: string;
|
|
@@ -558,6 +564,12 @@ export declare const editorExperimentsConfig: {
|
|
|
558
564
|
productKeys?: ProductKeys;
|
|
559
565
|
typeGuard: IsBooleanType;
|
|
560
566
|
};
|
|
567
|
+
platform_editor_no_state_plugin_injection_api: {
|
|
568
|
+
defaultValue: boolean;
|
|
569
|
+
param: string;
|
|
570
|
+
productKeys?: ProductKeys;
|
|
571
|
+
typeGuard: IsBooleanType;
|
|
572
|
+
};
|
|
561
573
|
platform_editor_offline_editing_web: {
|
|
562
574
|
defaultValue: boolean;
|
|
563
575
|
param: string;
|
package/package.json
CHANGED