@atlaskit/tmp-editor-statsig 1.1.0 → 1.3.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 +21 -0
- package/dist/cjs/experiments-config.js +24 -1
- package/dist/es2019/experiments-config.js +24 -1
- package/dist/esm/experiments-config.js +24 -1
- package/dist/types/experiments-config.d.ts +17 -1
- package/dist/types-ts4.5/experiments-config.d.ts +17 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
|
+
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#134006](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/134006)
|
|
8
|
+
[`51179090981ef`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/51179090981ef) -
|
|
9
|
+
EDF-1302 updated condensed dloating toolbar feature flag to use statsig instrumentation
|
|
10
|
+
|
|
11
|
+
## 1.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#131878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131878)
|
|
16
|
+
[`705fe39cae267`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/705fe39cae267) -
|
|
17
|
+
[ED-24597] Update to log `platform_editor_basic_text_transformations` exposure event only for
|
|
18
|
+
users meet all of 3 checks:
|
|
19
|
+
|
|
20
|
+
- Are enrolled to the experiment
|
|
21
|
+
- Have AI disabled
|
|
22
|
+
- Make top level text selection
|
|
@@ -7,6 +7,11 @@ exports.editorExperimentsConfig = void 0;
|
|
|
7
7
|
function isBoolean(value) {
|
|
8
8
|
return typeof value === 'boolean';
|
|
9
9
|
}
|
|
10
|
+
function oneOf(values) {
|
|
11
|
+
return function (value) {
|
|
12
|
+
return values.includes(value);
|
|
13
|
+
};
|
|
14
|
+
}
|
|
10
15
|
/**
|
|
11
16
|
* When adding a new experiment, you need to add it here.
|
|
12
17
|
* Please follow the pattern established in the examples and any
|
|
@@ -29,7 +34,7 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
29
34
|
confluence: 'confluence_editor_experiment_test_new_package_multivariate'
|
|
30
35
|
},
|
|
31
36
|
param: 'variant',
|
|
32
|
-
typeGuard:
|
|
37
|
+
typeGuard: oneOf(['one', 'two', 'three']),
|
|
33
38
|
// Note -- you need to specify the type of the default value as the union of all possible values
|
|
34
39
|
// This is used to provide type safety on consumption
|
|
35
40
|
defaultValue: 'one'
|
|
@@ -43,5 +48,23 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
43
48
|
param: 'isEnabled',
|
|
44
49
|
typeGuard: isBoolean,
|
|
45
50
|
defaultValue: false
|
|
51
|
+
},
|
|
52
|
+
// Add 2024-08-14
|
|
53
|
+
'basic-text-transformations': {
|
|
54
|
+
productKeys: {
|
|
55
|
+
confluence: 'platform_editor_basic_text_transformations'
|
|
56
|
+
},
|
|
57
|
+
param: 'isEnabled',
|
|
58
|
+
typeGuard: isBoolean,
|
|
59
|
+
defaultValue: false
|
|
60
|
+
},
|
|
61
|
+
// Added 2024-08-23
|
|
62
|
+
'platform-editor-ai-condensed-floating-toobar': {
|
|
63
|
+
productKeys: {
|
|
64
|
+
confluence: 'platform_editor_ai_condensed_floating_toobar'
|
|
65
|
+
},
|
|
66
|
+
param: 'isEnabled',
|
|
67
|
+
typeGuard: isBoolean,
|
|
68
|
+
defaultValue: false
|
|
46
69
|
}
|
|
47
70
|
};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
function isBoolean(value) {
|
|
2
2
|
return typeof value === 'boolean';
|
|
3
3
|
}
|
|
4
|
+
function oneOf(values) {
|
|
5
|
+
return value => {
|
|
6
|
+
return values.includes(value);
|
|
7
|
+
};
|
|
8
|
+
}
|
|
4
9
|
/**
|
|
5
10
|
* When adding a new experiment, you need to add it here.
|
|
6
11
|
* Please follow the pattern established in the examples and any
|
|
@@ -23,7 +28,7 @@ export const editorExperimentsConfig = {
|
|
|
23
28
|
confluence: 'confluence_editor_experiment_test_new_package_multivariate'
|
|
24
29
|
},
|
|
25
30
|
param: 'variant',
|
|
26
|
-
typeGuard:
|
|
31
|
+
typeGuard: oneOf(['one', 'two', 'three']),
|
|
27
32
|
// Note -- you need to specify the type of the default value as the union of all possible values
|
|
28
33
|
// This is used to provide type safety on consumption
|
|
29
34
|
defaultValue: 'one'
|
|
@@ -37,5 +42,23 @@ export const editorExperimentsConfig = {
|
|
|
37
42
|
param: 'isEnabled',
|
|
38
43
|
typeGuard: isBoolean,
|
|
39
44
|
defaultValue: false
|
|
45
|
+
},
|
|
46
|
+
// Add 2024-08-14
|
|
47
|
+
'basic-text-transformations': {
|
|
48
|
+
productKeys: {
|
|
49
|
+
confluence: 'platform_editor_basic_text_transformations'
|
|
50
|
+
},
|
|
51
|
+
param: 'isEnabled',
|
|
52
|
+
typeGuard: isBoolean,
|
|
53
|
+
defaultValue: false
|
|
54
|
+
},
|
|
55
|
+
// Added 2024-08-23
|
|
56
|
+
'platform-editor-ai-condensed-floating-toobar': {
|
|
57
|
+
productKeys: {
|
|
58
|
+
confluence: 'platform_editor_ai_condensed_floating_toobar'
|
|
59
|
+
},
|
|
60
|
+
param: 'isEnabled',
|
|
61
|
+
typeGuard: isBoolean,
|
|
62
|
+
defaultValue: false
|
|
40
63
|
}
|
|
41
64
|
};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
function isBoolean(value) {
|
|
2
2
|
return typeof value === 'boolean';
|
|
3
3
|
}
|
|
4
|
+
function oneOf(values) {
|
|
5
|
+
return function (value) {
|
|
6
|
+
return values.includes(value);
|
|
7
|
+
};
|
|
8
|
+
}
|
|
4
9
|
/**
|
|
5
10
|
* When adding a new experiment, you need to add it here.
|
|
6
11
|
* Please follow the pattern established in the examples and any
|
|
@@ -23,7 +28,7 @@ export var editorExperimentsConfig = {
|
|
|
23
28
|
confluence: 'confluence_editor_experiment_test_new_package_multivariate'
|
|
24
29
|
},
|
|
25
30
|
param: 'variant',
|
|
26
|
-
typeGuard:
|
|
31
|
+
typeGuard: oneOf(['one', 'two', 'three']),
|
|
27
32
|
// Note -- you need to specify the type of the default value as the union of all possible values
|
|
28
33
|
// This is used to provide type safety on consumption
|
|
29
34
|
defaultValue: 'one'
|
|
@@ -37,5 +42,23 @@ export var editorExperimentsConfig = {
|
|
|
37
42
|
param: 'isEnabled',
|
|
38
43
|
typeGuard: isBoolean,
|
|
39
44
|
defaultValue: false
|
|
45
|
+
},
|
|
46
|
+
// Add 2024-08-14
|
|
47
|
+
'basic-text-transformations': {
|
|
48
|
+
productKeys: {
|
|
49
|
+
confluence: 'platform_editor_basic_text_transformations'
|
|
50
|
+
},
|
|
51
|
+
param: 'isEnabled',
|
|
52
|
+
typeGuard: isBoolean,
|
|
53
|
+
defaultValue: false
|
|
54
|
+
},
|
|
55
|
+
// Added 2024-08-23
|
|
56
|
+
'platform-editor-ai-condensed-floating-toobar': {
|
|
57
|
+
productKeys: {
|
|
58
|
+
confluence: 'platform_editor_ai_condensed_floating_toobar'
|
|
59
|
+
},
|
|
60
|
+
param: 'isEnabled',
|
|
61
|
+
typeGuard: isBoolean,
|
|
62
|
+
defaultValue: false
|
|
40
63
|
}
|
|
41
64
|
};
|
|
@@ -19,7 +19,7 @@ export declare const editorExperimentsConfig: {
|
|
|
19
19
|
confluence: string;
|
|
20
20
|
};
|
|
21
21
|
param: string;
|
|
22
|
-
typeGuard:
|
|
22
|
+
typeGuard: (value: unknown) => value is "one" | "two" | "three";
|
|
23
23
|
defaultValue: "one" | "two" | "three";
|
|
24
24
|
};
|
|
25
25
|
'test-new-experiments-package': {
|
|
@@ -31,5 +31,21 @@ export declare const editorExperimentsConfig: {
|
|
|
31
31
|
typeGuard: typeof isBoolean;
|
|
32
32
|
defaultValue: boolean;
|
|
33
33
|
};
|
|
34
|
+
'basic-text-transformations': {
|
|
35
|
+
productKeys: {
|
|
36
|
+
confluence: string;
|
|
37
|
+
};
|
|
38
|
+
param: string;
|
|
39
|
+
typeGuard: typeof isBoolean;
|
|
40
|
+
defaultValue: boolean;
|
|
41
|
+
};
|
|
42
|
+
'platform-editor-ai-condensed-floating-toobar': {
|
|
43
|
+
productKeys: {
|
|
44
|
+
confluence: string;
|
|
45
|
+
};
|
|
46
|
+
param: string;
|
|
47
|
+
typeGuard: typeof isBoolean;
|
|
48
|
+
defaultValue: boolean;
|
|
49
|
+
};
|
|
34
50
|
};
|
|
35
51
|
export {};
|
|
@@ -19,7 +19,7 @@ export declare const editorExperimentsConfig: {
|
|
|
19
19
|
confluence: string;
|
|
20
20
|
};
|
|
21
21
|
param: string;
|
|
22
|
-
typeGuard:
|
|
22
|
+
typeGuard: (value: unknown) => value is "one" | "two" | "three";
|
|
23
23
|
defaultValue: "one" | "two" | "three";
|
|
24
24
|
};
|
|
25
25
|
'test-new-experiments-package': {
|
|
@@ -31,5 +31,21 @@ export declare const editorExperimentsConfig: {
|
|
|
31
31
|
typeGuard: typeof isBoolean;
|
|
32
32
|
defaultValue: boolean;
|
|
33
33
|
};
|
|
34
|
+
'basic-text-transformations': {
|
|
35
|
+
productKeys: {
|
|
36
|
+
confluence: string;
|
|
37
|
+
};
|
|
38
|
+
param: string;
|
|
39
|
+
typeGuard: typeof isBoolean;
|
|
40
|
+
defaultValue: boolean;
|
|
41
|
+
};
|
|
42
|
+
'platform-editor-ai-condensed-floating-toobar': {
|
|
43
|
+
productKeys: {
|
|
44
|
+
confluence: string;
|
|
45
|
+
};
|
|
46
|
+
param: string;
|
|
47
|
+
typeGuard: typeof isBoolean;
|
|
48
|
+
defaultValue: boolean;
|
|
49
|
+
};
|
|
34
50
|
};
|
|
35
51
|
export {};
|
package/package.json
CHANGED