@atlaskit/tmp-editor-statsig 198.0.0 → 199.0.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 +16 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/experiments-config.js +1 -26
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/experiments-config.js +1 -26
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/experiments-config.js +1 -26
- package/dist/types/experiments-config.d.ts +0 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 199.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`04a147a4ed8b5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/04a147a4ed8b5) -
|
|
8
|
+
Remove the platform_editor_table_excerpts_fix experiment and make its enabled behavior permanent.
|
|
9
|
+
Tables inside layout columns retain their full-width styling in both Emotion and Compiled editors.
|
|
10
|
+
|
|
11
|
+
The experiment key has been removed from tmp-editor-statsig configuration. Consumers must remove
|
|
12
|
+
checks for this key and retain the isEnabled: true behavior.
|
|
13
|
+
|
|
14
|
+
- [`6c7f03ca0f4ad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6c7f03ca0f4ad) -
|
|
15
|
+
Clean up experiment `editor_a11y__toolbar-item-aria-described-by_fy27`
|
|
16
|
+
- [`edc1eb0f84ed8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/edc1eb0f84ed8) -
|
|
17
|
+
Clean up experiment `platform_editor_comment_on_bodied_extensions`
|
|
18
|
+
|
|
3
19
|
## 198.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
|
@@ -30,7 +30,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
30
30
|
platform_editor_toolbar_aifc: false,
|
|
31
31
|
'test-new-experiments-package': false,
|
|
32
32
|
platform_renderer_table_sticky_scrollbar: false,
|
|
33
|
-
comment_on_bodied_extensions: false,
|
|
34
33
|
advanced_layouts: false,
|
|
35
34
|
single_column_layouts: false,
|
|
36
35
|
platform_editor_ai_unsplash_page_header: false,
|
|
@@ -14,7 +14,7 @@ var _createMultivariateExperiment = require("./create-multivariate-experiment");
|
|
|
14
14
|
|
|
15
15
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
16
16
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
17
|
-
var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc'
|
|
17
|
+
var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc'];
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Extract valid expected values.
|
|
@@ -93,15 +93,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
93
93
|
param: 'isEnabled',
|
|
94
94
|
defaultValue: false
|
|
95
95
|
}),
|
|
96
|
-
// Added 2026-07-21
|
|
97
|
-
'editor_a11y__toolbar-item-aria-described-by_fy27': (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
98
|
-
productKeys: {
|
|
99
|
-
confluence: 'editor_a11y__toolbar-item-aria-described-by_fy27',
|
|
100
|
-
jira: 'editor_a11y__toolbar-item-aria-described-by_fy27'
|
|
101
|
-
},
|
|
102
|
-
param: 'isEnabled',
|
|
103
|
-
defaultValue: false
|
|
104
|
-
}),
|
|
105
96
|
// Added 2026-06-19
|
|
106
97
|
'enghealth-53346_fix_redaction_marker_editor': (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
107
98
|
productKeys: {
|
|
@@ -288,14 +279,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
288
279
|
param: 'isEnabled',
|
|
289
280
|
defaultValue: false
|
|
290
281
|
}),
|
|
291
|
-
// Added 2024-10-01
|
|
292
|
-
comment_on_bodied_extensions: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
293
|
-
productKeys: {
|
|
294
|
-
confluence: 'platform_editor_comment_on_bodied_extensions'
|
|
295
|
-
},
|
|
296
|
-
param: 'isEnabled',
|
|
297
|
-
defaultValue: false
|
|
298
|
-
}),
|
|
299
282
|
// Added 2024-10-14
|
|
300
283
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_advanced_layouts/setup
|
|
301
284
|
advanced_layouts: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
@@ -513,14 +496,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
513
496
|
param: 'isEnabled',
|
|
514
497
|
defaultValue: false
|
|
515
498
|
}),
|
|
516
|
-
// Added 2026-01-27
|
|
517
|
-
platform_editor_table_excerpts_fix: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
518
|
-
productKeys: {
|
|
519
|
-
confluence: 'platform_editor_table_excerpts_fix'
|
|
520
|
-
},
|
|
521
|
-
param: 'isEnabled',
|
|
522
|
-
defaultValue: false
|
|
523
|
-
}),
|
|
524
499
|
// Added 2025-08-17
|
|
525
500
|
platform_hover_card_preview_panel: (0, _createMultivariateExperiment.createMultivariateExperiment)({
|
|
526
501
|
productKeys: {
|
|
@@ -24,7 +24,6 @@ export const testBooleanOverrides = {
|
|
|
24
24
|
platform_editor_toolbar_aifc: false,
|
|
25
25
|
'test-new-experiments-package': false,
|
|
26
26
|
platform_renderer_table_sticky_scrollbar: false,
|
|
27
|
-
comment_on_bodied_extensions: false,
|
|
28
27
|
advanced_layouts: false,
|
|
29
28
|
single_column_layouts: false,
|
|
30
29
|
platform_editor_ai_unsplash_page_header: false,
|
|
@@ -8,7 +8,7 @@ import { createMultivariateExperiment } from './create-multivariate-experiment';
|
|
|
8
8
|
|
|
9
9
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
10
10
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
11
|
-
export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc'
|
|
11
|
+
export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc'];
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Extract valid expected values.
|
|
@@ -87,15 +87,6 @@ export const editorExperimentsConfig = {
|
|
|
87
87
|
param: 'isEnabled',
|
|
88
88
|
defaultValue: false
|
|
89
89
|
}),
|
|
90
|
-
// Added 2026-07-21
|
|
91
|
-
'editor_a11y__toolbar-item-aria-described-by_fy27': createBooleanExperiment({
|
|
92
|
-
productKeys: {
|
|
93
|
-
confluence: 'editor_a11y__toolbar-item-aria-described-by_fy27',
|
|
94
|
-
jira: 'editor_a11y__toolbar-item-aria-described-by_fy27'
|
|
95
|
-
},
|
|
96
|
-
param: 'isEnabled',
|
|
97
|
-
defaultValue: false
|
|
98
|
-
}),
|
|
99
90
|
// Added 2026-06-19
|
|
100
91
|
'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
|
|
101
92
|
productKeys: {
|
|
@@ -282,14 +273,6 @@ export const editorExperimentsConfig = {
|
|
|
282
273
|
param: 'isEnabled',
|
|
283
274
|
defaultValue: false
|
|
284
275
|
}),
|
|
285
|
-
// Added 2024-10-01
|
|
286
|
-
comment_on_bodied_extensions: createBooleanExperiment({
|
|
287
|
-
productKeys: {
|
|
288
|
-
confluence: 'platform_editor_comment_on_bodied_extensions'
|
|
289
|
-
},
|
|
290
|
-
param: 'isEnabled',
|
|
291
|
-
defaultValue: false
|
|
292
|
-
}),
|
|
293
276
|
// Added 2024-10-14
|
|
294
277
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_advanced_layouts/setup
|
|
295
278
|
advanced_layouts: createBooleanExperiment({
|
|
@@ -507,14 +490,6 @@ export const editorExperimentsConfig = {
|
|
|
507
490
|
param: 'isEnabled',
|
|
508
491
|
defaultValue: false
|
|
509
492
|
}),
|
|
510
|
-
// Added 2026-01-27
|
|
511
|
-
platform_editor_table_excerpts_fix: createBooleanExperiment({
|
|
512
|
-
productKeys: {
|
|
513
|
-
confluence: 'platform_editor_table_excerpts_fix'
|
|
514
|
-
},
|
|
515
|
-
param: 'isEnabled',
|
|
516
|
-
defaultValue: false
|
|
517
|
-
}),
|
|
518
493
|
// Added 2025-08-17
|
|
519
494
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
520
495
|
productKeys: {
|
|
@@ -24,7 +24,6 @@ export var testBooleanOverrides = {
|
|
|
24
24
|
platform_editor_toolbar_aifc: false,
|
|
25
25
|
'test-new-experiments-package': false,
|
|
26
26
|
platform_renderer_table_sticky_scrollbar: false,
|
|
27
|
-
comment_on_bodied_extensions: false,
|
|
28
27
|
advanced_layouts: false,
|
|
29
28
|
single_column_layouts: false,
|
|
30
29
|
platform_editor_ai_unsplash_page_header: false,
|
|
@@ -8,7 +8,7 @@ import { createMultivariateExperiment } from './create-multivariate-experiment';
|
|
|
8
8
|
|
|
9
9
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
10
10
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
11
|
-
export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc'
|
|
11
|
+
export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc'];
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Extract valid expected values.
|
|
@@ -87,15 +87,6 @@ export var editorExperimentsConfig = {
|
|
|
87
87
|
param: 'isEnabled',
|
|
88
88
|
defaultValue: false
|
|
89
89
|
}),
|
|
90
|
-
// Added 2026-07-21
|
|
91
|
-
'editor_a11y__toolbar-item-aria-described-by_fy27': createBooleanExperiment({
|
|
92
|
-
productKeys: {
|
|
93
|
-
confluence: 'editor_a11y__toolbar-item-aria-described-by_fy27',
|
|
94
|
-
jira: 'editor_a11y__toolbar-item-aria-described-by_fy27'
|
|
95
|
-
},
|
|
96
|
-
param: 'isEnabled',
|
|
97
|
-
defaultValue: false
|
|
98
|
-
}),
|
|
99
90
|
// Added 2026-06-19
|
|
100
91
|
'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
|
|
101
92
|
productKeys: {
|
|
@@ -282,14 +273,6 @@ export var editorExperimentsConfig = {
|
|
|
282
273
|
param: 'isEnabled',
|
|
283
274
|
defaultValue: false
|
|
284
275
|
}),
|
|
285
|
-
// Added 2024-10-01
|
|
286
|
-
comment_on_bodied_extensions: createBooleanExperiment({
|
|
287
|
-
productKeys: {
|
|
288
|
-
confluence: 'platform_editor_comment_on_bodied_extensions'
|
|
289
|
-
},
|
|
290
|
-
param: 'isEnabled',
|
|
291
|
-
defaultValue: false
|
|
292
|
-
}),
|
|
293
276
|
// Added 2024-10-14
|
|
294
277
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_advanced_layouts/setup
|
|
295
278
|
advanced_layouts: createBooleanExperiment({
|
|
@@ -507,14 +490,6 @@ export var editorExperimentsConfig = {
|
|
|
507
490
|
param: 'isEnabled',
|
|
508
491
|
defaultValue: false
|
|
509
492
|
}),
|
|
510
|
-
// Added 2026-01-27
|
|
511
|
-
platform_editor_table_excerpts_fix: createBooleanExperiment({
|
|
512
|
-
productKeys: {
|
|
513
|
-
confluence: 'platform_editor_table_excerpts_fix'
|
|
514
|
-
},
|
|
515
|
-
param: 'isEnabled',
|
|
516
|
-
defaultValue: false
|
|
517
|
-
}),
|
|
518
493
|
// Added 2025-08-17
|
|
519
494
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
520
495
|
productKeys: {
|
|
@@ -113,12 +113,6 @@ export declare const editorExperimentsConfig: {
|
|
|
113
113
|
productKeys?: ProductKeys;
|
|
114
114
|
typeGuard: IsBooleanType;
|
|
115
115
|
};
|
|
116
|
-
'editor_a11y__toolbar-item-aria-described-by_fy27': {
|
|
117
|
-
defaultValue: boolean;
|
|
118
|
-
param: string;
|
|
119
|
-
productKeys?: ProductKeys;
|
|
120
|
-
typeGuard: IsBooleanType;
|
|
121
|
-
};
|
|
122
116
|
'enghealth-53346_fix_redaction_marker_editor': {
|
|
123
117
|
defaultValue: boolean;
|
|
124
118
|
param: string;
|
|
@@ -143,12 +137,6 @@ export declare const editorExperimentsConfig: {
|
|
|
143
137
|
productKeys?: ProductKeys;
|
|
144
138
|
typeGuard: IsBooleanType;
|
|
145
139
|
};
|
|
146
|
-
comment_on_bodied_extensions: {
|
|
147
|
-
defaultValue: boolean;
|
|
148
|
-
param: string;
|
|
149
|
-
productKeys?: ProductKeys;
|
|
150
|
-
typeGuard: IsBooleanType;
|
|
151
|
-
};
|
|
152
140
|
platform_editor_code_block_q4_lovability: {
|
|
153
141
|
defaultValue: boolean;
|
|
154
142
|
param: string;
|
|
@@ -454,12 +442,6 @@ export declare const editorExperimentsConfig: {
|
|
|
454
442
|
productKeys?: ProductKeys;
|
|
455
443
|
typeGuard: IsBooleanType;
|
|
456
444
|
};
|
|
457
|
-
platform_editor_table_excerpts_fix: {
|
|
458
|
-
defaultValue: boolean;
|
|
459
|
-
param: string;
|
|
460
|
-
productKeys?: ProductKeys;
|
|
461
|
-
typeGuard: IsBooleanType;
|
|
462
|
-
};
|
|
463
445
|
platform_editor_table_sticky_header_improvements: {
|
|
464
446
|
defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
465
447
|
param: string;
|
package/package.json
CHANGED