@atlaskit/tmp-editor-statsig 56.1.0 → 56.2.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 +8 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 56.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1bd6f56c55358`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1bd6f56c55358) -
|
|
8
|
+
Add gated analytics for Smart Link go-to-link actions, including extensionKey, status, and
|
|
9
|
+
statusDetails, with supporting editor/card test updates.
|
|
10
|
+
|
|
3
11
|
## 56.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -174,6 +174,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
174
174
|
param: 'isEnabled',
|
|
175
175
|
defaultValue: false
|
|
176
176
|
}),
|
|
177
|
+
// Added 2026-04-08
|
|
178
|
+
cc_integrations_editor_open_link_click_analytics: (0, _experimentBuilders.createBooleanExperiment)({
|
|
179
|
+
productKeys: {
|
|
180
|
+
confluence: 'cc_integrations_editor_open_link_click_analytics'
|
|
181
|
+
},
|
|
182
|
+
param: 'isEnabled',
|
|
183
|
+
defaultValue: false
|
|
184
|
+
}),
|
|
177
185
|
// Added 2026-01-7
|
|
178
186
|
platform_editor_table_sticky_header_patch_10: (0, _experimentBuilders.createBooleanExperiment)({
|
|
179
187
|
productKeys: {
|
|
@@ -1849,6 +1857,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1849
1857
|
param: 'isEnabled',
|
|
1850
1858
|
defaultValue: false
|
|
1851
1859
|
}),
|
|
1860
|
+
// Added 2026-04-06
|
|
1861
|
+
confluence_fe_create_page_suggestion: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1862
|
+
productKeys: {
|
|
1863
|
+
confluence: 'confluence_fe_create_page_suggestion'
|
|
1864
|
+
},
|
|
1865
|
+
param: 'isEnabled',
|
|
1866
|
+
defaultValue: false
|
|
1867
|
+
}),
|
|
1852
1868
|
// Added 2026-03-18
|
|
1853
1869
|
platform_editor_selection_toolbar_block_handle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1854
1870
|
productKeys: {
|
|
@@ -168,6 +168,14 @@ export const editorExperimentsConfig = {
|
|
|
168
168
|
param: 'isEnabled',
|
|
169
169
|
defaultValue: false
|
|
170
170
|
}),
|
|
171
|
+
// Added 2026-04-08
|
|
172
|
+
cc_integrations_editor_open_link_click_analytics: createBooleanExperiment({
|
|
173
|
+
productKeys: {
|
|
174
|
+
confluence: 'cc_integrations_editor_open_link_click_analytics'
|
|
175
|
+
},
|
|
176
|
+
param: 'isEnabled',
|
|
177
|
+
defaultValue: false
|
|
178
|
+
}),
|
|
171
179
|
// Added 2026-01-7
|
|
172
180
|
platform_editor_table_sticky_header_patch_10: createBooleanExperiment({
|
|
173
181
|
productKeys: {
|
|
@@ -1843,6 +1851,14 @@ export const editorExperimentsConfig = {
|
|
|
1843
1851
|
param: 'isEnabled',
|
|
1844
1852
|
defaultValue: false
|
|
1845
1853
|
}),
|
|
1854
|
+
// Added 2026-04-06
|
|
1855
|
+
confluence_fe_create_page_suggestion: createBooleanExperiment({
|
|
1856
|
+
productKeys: {
|
|
1857
|
+
confluence: 'confluence_fe_create_page_suggestion'
|
|
1858
|
+
},
|
|
1859
|
+
param: 'isEnabled',
|
|
1860
|
+
defaultValue: false
|
|
1861
|
+
}),
|
|
1846
1862
|
// Added 2026-03-18
|
|
1847
1863
|
platform_editor_selection_toolbar_block_handle: createBooleanExperiment({
|
|
1848
1864
|
productKeys: {
|
|
@@ -168,6 +168,14 @@ export var editorExperimentsConfig = {
|
|
|
168
168
|
param: 'isEnabled',
|
|
169
169
|
defaultValue: false
|
|
170
170
|
}),
|
|
171
|
+
// Added 2026-04-08
|
|
172
|
+
cc_integrations_editor_open_link_click_analytics: createBooleanExperiment({
|
|
173
|
+
productKeys: {
|
|
174
|
+
confluence: 'cc_integrations_editor_open_link_click_analytics'
|
|
175
|
+
},
|
|
176
|
+
param: 'isEnabled',
|
|
177
|
+
defaultValue: false
|
|
178
|
+
}),
|
|
171
179
|
// Added 2026-01-7
|
|
172
180
|
platform_editor_table_sticky_header_patch_10: createBooleanExperiment({
|
|
173
181
|
productKeys: {
|
|
@@ -1843,6 +1851,14 @@ export var editorExperimentsConfig = {
|
|
|
1843
1851
|
param: 'isEnabled',
|
|
1844
1852
|
defaultValue: false
|
|
1845
1853
|
}),
|
|
1854
|
+
// Added 2026-04-06
|
|
1855
|
+
confluence_fe_create_page_suggestion: createBooleanExperiment({
|
|
1856
|
+
productKeys: {
|
|
1857
|
+
confluence: 'confluence_fe_create_page_suggestion'
|
|
1858
|
+
},
|
|
1859
|
+
param: 'isEnabled',
|
|
1860
|
+
defaultValue: false
|
|
1861
|
+
}),
|
|
1846
1862
|
// Added 2026-03-18
|
|
1847
1863
|
platform_editor_selection_toolbar_block_handle: createBooleanExperiment({
|
|
1848
1864
|
productKeys: {
|
|
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
|
|
|
45
45
|
productKeys?: ProductKeys;
|
|
46
46
|
typeGuard: IsBooleanType;
|
|
47
47
|
};
|
|
48
|
+
cc_integrations_editor_open_link_click_analytics: {
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
param: string;
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: IsBooleanType;
|
|
53
|
+
};
|
|
48
54
|
cc_editor_insm_doc_size_stats: {
|
|
49
55
|
defaultValue: boolean;
|
|
50
56
|
param: string;
|
|
@@ -1399,6 +1405,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1399
1405
|
productKeys?: ProductKeys;
|
|
1400
1406
|
typeGuard: IsBooleanType;
|
|
1401
1407
|
};
|
|
1408
|
+
confluence_fe_create_page_suggestion: {
|
|
1409
|
+
defaultValue: boolean;
|
|
1410
|
+
param: string;
|
|
1411
|
+
productKeys?: ProductKeys;
|
|
1412
|
+
typeGuard: IsBooleanType;
|
|
1413
|
+
};
|
|
1402
1414
|
platform_editor_user_highlight_contrast: {
|
|
1403
1415
|
defaultValue: boolean;
|
|
1404
1416
|
param: string;
|
|
@@ -45,6 +45,12 @@ export declare const editorExperimentsConfig: {
|
|
|
45
45
|
productKeys?: ProductKeys;
|
|
46
46
|
typeGuard: IsBooleanType;
|
|
47
47
|
};
|
|
48
|
+
cc_integrations_editor_open_link_click_analytics: {
|
|
49
|
+
defaultValue: boolean;
|
|
50
|
+
param: string;
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: IsBooleanType;
|
|
53
|
+
};
|
|
48
54
|
cc_editor_insm_doc_size_stats: {
|
|
49
55
|
defaultValue: boolean;
|
|
50
56
|
param: string;
|
|
@@ -1399,6 +1405,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1399
1405
|
productKeys?: ProductKeys;
|
|
1400
1406
|
typeGuard: IsBooleanType;
|
|
1401
1407
|
};
|
|
1408
|
+
confluence_fe_create_page_suggestion: {
|
|
1409
|
+
defaultValue: boolean;
|
|
1410
|
+
param: string;
|
|
1411
|
+
productKeys?: ProductKeys;
|
|
1412
|
+
typeGuard: IsBooleanType;
|
|
1413
|
+
};
|
|
1402
1414
|
platform_editor_user_highlight_contrast: {
|
|
1403
1415
|
defaultValue: boolean;
|
|
1404
1416
|
param: string;
|
package/package.json
CHANGED