@atlaskit/tmp-editor-statsig 14.5.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
CHANGED
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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;
|
package/package.json
CHANGED