@atlaskit/tmp-editor-statsig 16.15.0 → 16.17.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +11 -3
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +11 -3
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +11 -3
- package/dist/types/experiments-config.d.ts +7 -1
- package/dist/types-ts4.5/experiments-config.d.ts +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 16.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`333b858014e54`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/333b858014e54) -
|
|
8
|
+
Move content placeholder behind title_on_transition flag
|
|
9
|
+
|
|
10
|
+
## 16.16.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`87da29e26abe0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87da29e26abe0) -
|
|
15
|
+
Refactoring company hub carousel navigation thumbnails to remove nested interactive elements
|
|
16
|
+
|
|
3
17
|
## 16.15.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -25,6 +25,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
25
25
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
26
26
|
};
|
|
27
27
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
28
|
+
confluence_load_editor_title_on_transition: false,
|
|
28
29
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
29
30
|
platform_editor_feedback_mandatory_rating: false,
|
|
30
31
|
platform_editor_preview_panel_responsiveness: false,
|
|
@@ -39,11 +39,11 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
39
39
|
// lwoollard experiments
|
|
40
40
|
|
|
41
41
|
// Added 22-12-2025
|
|
42
|
-
|
|
42
|
+
confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
|
|
43
43
|
productKeys: {
|
|
44
|
-
confluence: '
|
|
44
|
+
confluence: 'confluence_load_editor_title_on_transition'
|
|
45
45
|
},
|
|
46
|
-
param: '
|
|
46
|
+
param: 'contentPlaceholder',
|
|
47
47
|
defaultValue: false
|
|
48
48
|
}),
|
|
49
49
|
// Added 02-12-2025
|
|
@@ -232,6 +232,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
232
232
|
param: 'isEnabled',
|
|
233
233
|
defaultValue: false
|
|
234
234
|
}),
|
|
235
|
+
// Added 2026-01-05
|
|
236
|
+
'company_hub_carousel_thumbnails-refactor': (0, _experimentBuilders.createBooleanExperiment)({
|
|
237
|
+
productKeys: {
|
|
238
|
+
confluence: 'company_hub_carousel_thumbnails-refactor'
|
|
239
|
+
},
|
|
240
|
+
param: 'isEnabled',
|
|
241
|
+
defaultValue: false
|
|
242
|
+
}),
|
|
235
243
|
// Added 2025-10-10
|
|
236
244
|
platform_editor_experience_tracking: (0, _experimentBuilders.createBooleanExperiment)({
|
|
237
245
|
productKeys: {
|
|
@@ -19,6 +19,7 @@ export const testMultivariateOverrides = {
|
|
|
19
19
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
20
20
|
};
|
|
21
21
|
export const testBooleanOverrides = {
|
|
22
|
+
confluence_load_editor_title_on_transition: false,
|
|
22
23
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
23
24
|
platform_editor_feedback_mandatory_rating: false,
|
|
24
25
|
platform_editor_preview_panel_responsiveness: false,
|
|
@@ -33,11 +33,11 @@ export const editorExperimentsConfig = {
|
|
|
33
33
|
// lwoollard experiments
|
|
34
34
|
|
|
35
35
|
// Added 22-12-2025
|
|
36
|
-
|
|
36
|
+
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
37
37
|
productKeys: {
|
|
38
|
-
confluence: '
|
|
38
|
+
confluence: 'confluence_load_editor_title_on_transition'
|
|
39
39
|
},
|
|
40
|
-
param: '
|
|
40
|
+
param: 'contentPlaceholder',
|
|
41
41
|
defaultValue: false
|
|
42
42
|
}),
|
|
43
43
|
// Added 02-12-2025
|
|
@@ -226,6 +226,14 @@ export const editorExperimentsConfig = {
|
|
|
226
226
|
param: 'isEnabled',
|
|
227
227
|
defaultValue: false
|
|
228
228
|
}),
|
|
229
|
+
// Added 2026-01-05
|
|
230
|
+
'company_hub_carousel_thumbnails-refactor': createBooleanExperiment({
|
|
231
|
+
productKeys: {
|
|
232
|
+
confluence: 'company_hub_carousel_thumbnails-refactor'
|
|
233
|
+
},
|
|
234
|
+
param: 'isEnabled',
|
|
235
|
+
defaultValue: false
|
|
236
|
+
}),
|
|
229
237
|
// Added 2025-10-10
|
|
230
238
|
platform_editor_experience_tracking: createBooleanExperiment({
|
|
231
239
|
productKeys: {
|
|
@@ -19,6 +19,7 @@ export var testMultivariateOverrides = {
|
|
|
19
19
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
20
20
|
};
|
|
21
21
|
export var testBooleanOverrides = {
|
|
22
|
+
confluence_load_editor_title_on_transition: false,
|
|
22
23
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
23
24
|
platform_editor_feedback_mandatory_rating: false,
|
|
24
25
|
platform_editor_preview_panel_responsiveness: false,
|
|
@@ -33,11 +33,11 @@ export var editorExperimentsConfig = {
|
|
|
33
33
|
// lwoollard experiments
|
|
34
34
|
|
|
35
35
|
// Added 22-12-2025
|
|
36
|
-
|
|
36
|
+
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
37
37
|
productKeys: {
|
|
38
|
-
confluence: '
|
|
38
|
+
confluence: 'confluence_load_editor_title_on_transition'
|
|
39
39
|
},
|
|
40
|
-
param: '
|
|
40
|
+
param: 'contentPlaceholder',
|
|
41
41
|
defaultValue: false
|
|
42
42
|
}),
|
|
43
43
|
// Added 02-12-2025
|
|
@@ -226,6 +226,14 @@ export var editorExperimentsConfig = {
|
|
|
226
226
|
param: 'isEnabled',
|
|
227
227
|
defaultValue: false
|
|
228
228
|
}),
|
|
229
|
+
// Added 2026-01-05
|
|
230
|
+
'company_hub_carousel_thumbnails-refactor': createBooleanExperiment({
|
|
231
|
+
productKeys: {
|
|
232
|
+
confluence: 'company_hub_carousel_thumbnails-refactor'
|
|
233
|
+
},
|
|
234
|
+
param: 'isEnabled',
|
|
235
|
+
defaultValue: false
|
|
236
|
+
}),
|
|
229
237
|
// Added 2025-10-10
|
|
230
238
|
platform_editor_experience_tracking: createBooleanExperiment({
|
|
231
239
|
productKeys: {
|
|
@@ -70,7 +70,7 @@ export declare const editorExperimentsConfig: {
|
|
|
70
70
|
productKeys?: ProductKeys;
|
|
71
71
|
typeGuard: IsBooleanType;
|
|
72
72
|
};
|
|
73
|
-
|
|
73
|
+
confluence_load_editor_title_on_transition: {
|
|
74
74
|
defaultValue: boolean;
|
|
75
75
|
param: string;
|
|
76
76
|
productKeys?: ProductKeys;
|
|
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
|
|
|
118
118
|
productKeys?: ProductKeys;
|
|
119
119
|
typeGuard: IsBooleanType;
|
|
120
120
|
};
|
|
121
|
+
'company_hub_carousel_thumbnails-refactor': {
|
|
122
|
+
defaultValue: boolean;
|
|
123
|
+
param: string;
|
|
124
|
+
productKeys?: ProductKeys;
|
|
125
|
+
typeGuard: IsBooleanType;
|
|
126
|
+
};
|
|
121
127
|
confluence_whiteboards_quick_insert: {
|
|
122
128
|
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
123
129
|
param: string;
|
|
@@ -70,7 +70,7 @@ export declare const editorExperimentsConfig: {
|
|
|
70
70
|
productKeys?: ProductKeys;
|
|
71
71
|
typeGuard: IsBooleanType;
|
|
72
72
|
};
|
|
73
|
-
|
|
73
|
+
confluence_load_editor_title_on_transition: {
|
|
74
74
|
defaultValue: boolean;
|
|
75
75
|
param: string;
|
|
76
76
|
productKeys?: ProductKeys;
|
|
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
|
|
|
118
118
|
productKeys?: ProductKeys;
|
|
119
119
|
typeGuard: IsBooleanType;
|
|
120
120
|
};
|
|
121
|
+
'company_hub_carousel_thumbnails-refactor': {
|
|
122
|
+
defaultValue: boolean;
|
|
123
|
+
param: string;
|
|
124
|
+
productKeys?: ProductKeys;
|
|
125
|
+
typeGuard: IsBooleanType;
|
|
126
|
+
};
|
|
121
127
|
confluence_whiteboards_quick_insert: {
|
|
122
128
|
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
123
129
|
param: string;
|
package/package.json
CHANGED