@atlaskit/tmp-editor-statsig 25.7.0 → 27.1.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 +36 -0
- package/README.md +118 -0
- package/dist/cjs/exp-test-overrides.js +2 -2
- package/dist/cjs/experiments-config.js +25 -17
- package/dist/es2019/exp-test-overrides.js +2 -2
- package/dist/es2019/experiments-config.js +25 -17
- package/dist/esm/exp-test-overrides.js +2 -2
- package/dist/esm/experiments-config.js +25 -17
- package/dist/types/experiments-config.d.ts +18 -13
- package/dist/types-ts4.5/experiments-config.d.ts +18 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 27.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0eed66892511e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0eed66892511e) -
|
|
8
|
+
EDITOR-5120 - Add additional ProseMirror rendered analytics attributes behind the
|
|
9
|
+
platform_editor_prosemirror_rendered_data experiment.
|
|
10
|
+
|
|
11
|
+
## 27.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- [`19911524eaec5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/19911524eaec5) -
|
|
16
|
+
Cleanup A/A test for cc_fd_db_top_editor_toolbar experiment.
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [`dece098c3ab1f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dece098c3ab1f) -
|
|
21
|
+
[ux] ENGHEALTH-46818 Add focus and blur handlers to table buttons to fix a11y
|
|
22
|
+
|
|
23
|
+
## 26.0.0
|
|
24
|
+
|
|
25
|
+
### Major Changes
|
|
26
|
+
|
|
27
|
+
- [`1caeaf4c95a2e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1caeaf4c95a2e) -
|
|
28
|
+
[NO-ISSUE] Cleaning up platform_editor_ai_exp_inline_date_year_refresh
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- [`81937b9af604e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/81937b9af604e) -
|
|
33
|
+
[ux] fix table border late render issue
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
|
|
3
39
|
## 25.7.0
|
|
4
40
|
|
|
5
41
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,124 @@
|
|
|
1
1
|
# @atlaskit/tmp-editor-statsig
|
|
2
2
|
|
|
3
3
|
Temp plugin to ease use of statsig feature flags until platform feature flags are available
|
|
4
|
+
Temp plugin to ease use of statsig experiment until a platform solution is available.
|
|
5
|
+
|
|
6
|
+
**Warning:** This is a temporary solution and will be removed once there is a platform solution for statsig experiments.
|
|
7
|
+
|
|
8
|
+
**Warning:** This requires per product setup via the \`setupEditorExperiments\` api (products without this setup will receive the
|
|
9
|
+
default value setup for experiments).
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Experiments
|
|
14
|
+
|
|
15
|
+
All experiments must be registered in the \`editorExperimentsConfig\` object in the experiments.ts file.
|
|
16
|
+
|
|
17
|
+
Once they are registered, they can be accessed using the \`editorExperiment\` function from \`@atlaskit/tmp-editor-statsig/experiments\`.
|
|
18
|
+
|
|
19
|
+
#### Boolean experiments
|
|
20
|
+
|
|
21
|
+
```tsx
|
|
22
|
+
import { editorExperiment } from '@atlaskit/editor-statsig-tmp/experiments';
|
|
23
|
+
|
|
24
|
+
if (editorExperiment('editor_inline_comments_on_inline_nodes', true)) {
|
|
25
|
+
// do something
|
|
26
|
+
} else {
|
|
27
|
+
// do something else
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
#### Multivariate experiments
|
|
32
|
+
|
|
33
|
+
```tsx
|
|
34
|
+
import { editorExperiment } from '@atlaskit/editor-statsig-tmp/experiments';
|
|
35
|
+
|
|
36
|
+
switch (true) {
|
|
37
|
+
case editorExperiment('editor_new_control_variants', 'variant-one'): {
|
|
38
|
+
// do something for variant one
|
|
39
|
+
return
|
|
40
|
+
}
|
|
41
|
+
case editorExperiment('editor_new_control_variants', 'variant-two'): {
|
|
42
|
+
// do something for variant two
|
|
43
|
+
return
|
|
44
|
+
}
|
|
45
|
+
case editorExperiment('editor_new_control_variants', 'variant-three'): {
|
|
46
|
+
// do something for variant three
|
|
47
|
+
return
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
`}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Testing experiments
|
|
54
|
+
|
|
55
|
+
#### Atlaskit examples
|
|
56
|
+
|
|
57
|
+
Not yet supported.
|
|
58
|
+
|
|
59
|
+
#### Jest tests
|
|
60
|
+
##### Boolean experiments
|
|
61
|
+
|
|
62
|
+
```tsx
|
|
63
|
+
import { eeTest } from '@atlaskit/tmp-editor-statsig/editor-experiments-test-utils';
|
|
64
|
+
|
|
65
|
+
eeTest('example-boolean', {
|
|
66
|
+
true: () => {
|
|
67
|
+
expect(editorExperiment('example-boolean', true)).toBe(true);
|
|
68
|
+
},
|
|
69
|
+
false: () => {
|
|
70
|
+
expect(editorExperiment('example-boolean', false)).toBe(false);
|
|
71
|
+
},
|
|
72
|
+
});
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
##### Multivariate experiments
|
|
76
|
+
|
|
77
|
+
```tsx
|
|
78
|
+
import { eeTest } from '@atlaskit/tmp-editor-statsig/editor-experiments-test-utils';
|
|
79
|
+
|
|
80
|
+
eeTest('example-multivariate', {
|
|
81
|
+
one: () => {
|
|
82
|
+
expect(editorExperiment('example-boolean')).toBe('variant-one');
|
|
83
|
+
},
|
|
84
|
+
two: () => {
|
|
85
|
+
expect(editorExperiment('example-boolean')).toBe('variant-two');
|
|
86
|
+
},
|
|
87
|
+
three: () => {
|
|
88
|
+
expect(editorExperiment('example-boolean')).toBe('variant-three');
|
|
89
|
+
},
|
|
90
|
+
});
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
#### Playwright tests
|
|
94
|
+
|
|
95
|
+
Editor Experiments are setup similar to platformFeatureFlags.
|
|
96
|
+
|
|
97
|
+
```tsx
|
|
98
|
+
test.use({
|
|
99
|
+
adf: exampleAdf,
|
|
100
|
+
platformFeatureFlags: {
|
|
101
|
+
// ...
|
|
102
|
+
},
|
|
103
|
+
editorExperiments: {
|
|
104
|
+
'example-boolean': true,
|
|
105
|
+
'example-multivariate': 'variant',
|
|
106
|
+
},
|
|
107
|
+
});
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Configuration
|
|
111
|
+
|
|
112
|
+
```tsx
|
|
113
|
+
import { setupEditorExperiments } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
114
|
+
|
|
115
|
+
// Example confluence setup
|
|
116
|
+
setupEditorExperiments('confluence');
|
|
117
|
+
|
|
118
|
+
// Example dev util setup -- takes overrides as a second param (and otherwise defaults all experiments to their default values)
|
|
119
|
+
setupEditorExperiments('test', { 'example-boolean': true });
|
|
120
|
+
```tsx
|
|
121
|
+
|
|
4
122
|
|
|
5
123
|
## Usage
|
|
6
124
|
|
|
@@ -14,8 +14,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
14
14
|
cc_editor_insm_outlier_events: 'test',
|
|
15
15
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
16
16
|
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
17
|
-
cc_fd_db_top_editor_toolbar: 'control'
|
|
18
|
-
cc_fd_db_top_editor_toolbar_aa: 'control'
|
|
17
|
+
cc_fd_db_top_editor_toolbar: 'control'
|
|
19
18
|
};
|
|
20
19
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
21
20
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -50,5 +49,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
50
49
|
platform_editor_find_and_replace_improvements: false,
|
|
51
50
|
platform_editor_toggle_expand_on_match_found: false,
|
|
52
51
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
52
|
+
platform_editor_prosemirror_rendered_data: false,
|
|
53
53
|
confluence_compact_text_format: false
|
|
54
54
|
};
|
|
@@ -1051,14 +1051,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1051
1051
|
defaultValue: false
|
|
1052
1052
|
}),
|
|
1053
1053
|
// Added 2025-12-15
|
|
1054
|
-
platform_editor_ai_exp_inline_date_year_refresh: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1055
|
-
productKeys: {
|
|
1056
|
-
confluence: 'platform_editor_ai_exp_inline_date_year_refresh'
|
|
1057
|
-
},
|
|
1058
|
-
param: 'isEnabled',
|
|
1059
|
-
defaultValue: false
|
|
1060
|
-
}),
|
|
1061
|
-
// Added 2025-12-15
|
|
1062
1054
|
platform_editor_ai_exp_suggestion_date_comma_delim: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1063
1055
|
productKeys: {
|
|
1064
1056
|
confluence: 'platform_editor_ai_exp_suggestion_date_comma_delim'
|
|
@@ -1238,6 +1230,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1238
1230
|
param: 'isEnabled',
|
|
1239
1231
|
defaultValue: false
|
|
1240
1232
|
}),
|
|
1233
|
+
// Added 2026-02-18
|
|
1234
|
+
platform_editor_table_a11y_eslint_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1235
|
+
productKeys: {
|
|
1236
|
+
confluence: 'platform_editor_table_a11y_eslint_fix'
|
|
1237
|
+
},
|
|
1238
|
+
param: 'isEnabled',
|
|
1239
|
+
defaultValue: false
|
|
1240
|
+
}),
|
|
1241
1241
|
// Added 2026-01-27
|
|
1242
1242
|
platform_editor_table_cell_colour_change: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1243
1243
|
productKeys: {
|
|
@@ -1340,15 +1340,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1340
1340
|
values: ['control', 'new-description', 'orig-description'],
|
|
1341
1341
|
defaultValue: 'control'
|
|
1342
1342
|
}),
|
|
1343
|
-
// Added 2026-02-11
|
|
1344
|
-
cc_fd_db_top_editor_toolbar_aa: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1345
|
-
productKeys: {
|
|
1346
|
-
confluence: 'cc_fd_db_top_editor_toolbar_aa'
|
|
1347
|
-
},
|
|
1348
|
-
param: 'cohort',
|
|
1349
|
-
values: ['control', 'new-description', 'orig-description'],
|
|
1350
|
-
defaultValue: 'control'
|
|
1351
|
-
}),
|
|
1352
1343
|
// Added 2026-01-28
|
|
1353
1344
|
platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1354
1345
|
productKeys: {
|
|
@@ -1430,5 +1421,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1430
1421
|
},
|
|
1431
1422
|
param: 'isEnabled',
|
|
1432
1423
|
defaultValue: false
|
|
1424
|
+
}),
|
|
1425
|
+
// Added 2026-02-19
|
|
1426
|
+
platform_editor_table_borders_ready_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1427
|
+
productKeys: {
|
|
1428
|
+
confluence: 'platform_editor_table_borders_ready_fix'
|
|
1429
|
+
},
|
|
1430
|
+
param: 'isEnabled',
|
|
1431
|
+
defaultValue: false
|
|
1432
|
+
}),
|
|
1433
|
+
// Added 2026-02-11
|
|
1434
|
+
platform_editor_prosemirror_rendered_data: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1435
|
+
productKeys: {
|
|
1436
|
+
confluence: 'platform_editor_prosemirror_rendered_data',
|
|
1437
|
+
jira: 'platform_editor_prosemirror_rendered_data'
|
|
1438
|
+
},
|
|
1439
|
+
param: 'isEnabled',
|
|
1440
|
+
defaultValue: false
|
|
1433
1441
|
})
|
|
1434
1442
|
};
|
|
@@ -8,8 +8,7 @@ export const testMultivariateOverrides = {
|
|
|
8
8
|
cc_editor_insm_outlier_events: 'test',
|
|
9
9
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
10
10
|
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
11
|
-
cc_fd_db_top_editor_toolbar: 'control'
|
|
12
|
-
cc_fd_db_top_editor_toolbar_aa: 'control'
|
|
11
|
+
cc_fd_db_top_editor_toolbar: 'control'
|
|
13
12
|
};
|
|
14
13
|
export const testBooleanOverrides = {
|
|
15
14
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -44,5 +43,6 @@ export const testBooleanOverrides = {
|
|
|
44
43
|
platform_editor_find_and_replace_improvements: false,
|
|
45
44
|
platform_editor_toggle_expand_on_match_found: false,
|
|
46
45
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
46
|
+
platform_editor_prosemirror_rendered_data: false,
|
|
47
47
|
confluence_compact_text_format: false
|
|
48
48
|
};
|
|
@@ -1045,14 +1045,6 @@ export const editorExperimentsConfig = {
|
|
|
1045
1045
|
defaultValue: false
|
|
1046
1046
|
}),
|
|
1047
1047
|
// Added 2025-12-15
|
|
1048
|
-
platform_editor_ai_exp_inline_date_year_refresh: createBooleanExperiment({
|
|
1049
|
-
productKeys: {
|
|
1050
|
-
confluence: 'platform_editor_ai_exp_inline_date_year_refresh'
|
|
1051
|
-
},
|
|
1052
|
-
param: 'isEnabled',
|
|
1053
|
-
defaultValue: false
|
|
1054
|
-
}),
|
|
1055
|
-
// Added 2025-12-15
|
|
1056
1048
|
platform_editor_ai_exp_suggestion_date_comma_delim: createBooleanExperiment({
|
|
1057
1049
|
productKeys: {
|
|
1058
1050
|
confluence: 'platform_editor_ai_exp_suggestion_date_comma_delim'
|
|
@@ -1232,6 +1224,14 @@ export const editorExperimentsConfig = {
|
|
|
1232
1224
|
param: 'isEnabled',
|
|
1233
1225
|
defaultValue: false
|
|
1234
1226
|
}),
|
|
1227
|
+
// Added 2026-02-18
|
|
1228
|
+
platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
|
|
1229
|
+
productKeys: {
|
|
1230
|
+
confluence: 'platform_editor_table_a11y_eslint_fix'
|
|
1231
|
+
},
|
|
1232
|
+
param: 'isEnabled',
|
|
1233
|
+
defaultValue: false
|
|
1234
|
+
}),
|
|
1235
1235
|
// Added 2026-01-27
|
|
1236
1236
|
platform_editor_table_cell_colour_change: createBooleanExperiment({
|
|
1237
1237
|
productKeys: {
|
|
@@ -1334,15 +1334,6 @@ export const editorExperimentsConfig = {
|
|
|
1334
1334
|
values: ['control', 'new-description', 'orig-description'],
|
|
1335
1335
|
defaultValue: 'control'
|
|
1336
1336
|
}),
|
|
1337
|
-
// Added 2026-02-11
|
|
1338
|
-
cc_fd_db_top_editor_toolbar_aa: createMultivariateExperiment({
|
|
1339
|
-
productKeys: {
|
|
1340
|
-
confluence: 'cc_fd_db_top_editor_toolbar_aa'
|
|
1341
|
-
},
|
|
1342
|
-
param: 'cohort',
|
|
1343
|
-
values: ['control', 'new-description', 'orig-description'],
|
|
1344
|
-
defaultValue: 'control'
|
|
1345
|
-
}),
|
|
1346
1337
|
// Added 2026-01-28
|
|
1347
1338
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1348
1339
|
productKeys: {
|
|
@@ -1424,5 +1415,22 @@ export const editorExperimentsConfig = {
|
|
|
1424
1415
|
},
|
|
1425
1416
|
param: 'isEnabled',
|
|
1426
1417
|
defaultValue: false
|
|
1418
|
+
}),
|
|
1419
|
+
// Added 2026-02-19
|
|
1420
|
+
platform_editor_table_borders_ready_fix: createBooleanExperiment({
|
|
1421
|
+
productKeys: {
|
|
1422
|
+
confluence: 'platform_editor_table_borders_ready_fix'
|
|
1423
|
+
},
|
|
1424
|
+
param: 'isEnabled',
|
|
1425
|
+
defaultValue: false
|
|
1426
|
+
}),
|
|
1427
|
+
// Added 2026-02-11
|
|
1428
|
+
platform_editor_prosemirror_rendered_data: createBooleanExperiment({
|
|
1429
|
+
productKeys: {
|
|
1430
|
+
confluence: 'platform_editor_prosemirror_rendered_data',
|
|
1431
|
+
jira: 'platform_editor_prosemirror_rendered_data'
|
|
1432
|
+
},
|
|
1433
|
+
param: 'isEnabled',
|
|
1434
|
+
defaultValue: false
|
|
1427
1435
|
})
|
|
1428
1436
|
};
|
|
@@ -8,8 +8,7 @@ export var testMultivariateOverrides = {
|
|
|
8
8
|
cc_editor_insm_outlier_events: 'test',
|
|
9
9
|
platform_editor_table_sticky_header_improvements: 'test_with_overflow',
|
|
10
10
|
platform_sl_3p_unauth_paste_as_block_card: 'control',
|
|
11
|
-
cc_fd_db_top_editor_toolbar: 'control'
|
|
12
|
-
cc_fd_db_top_editor_toolbar_aa: 'control'
|
|
11
|
+
cc_fd_db_top_editor_toolbar: 'control'
|
|
13
12
|
};
|
|
14
13
|
export var testBooleanOverrides = {
|
|
15
14
|
cc_editor_hover_link_overlay_css_fix: false,
|
|
@@ -44,5 +43,6 @@ export var testBooleanOverrides = {
|
|
|
44
43
|
platform_editor_find_and_replace_improvements: false,
|
|
45
44
|
platform_editor_toggle_expand_on_match_found: false,
|
|
46
45
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
46
|
+
platform_editor_prosemirror_rendered_data: false,
|
|
47
47
|
confluence_compact_text_format: false
|
|
48
48
|
};
|
|
@@ -1045,14 +1045,6 @@ export var editorExperimentsConfig = {
|
|
|
1045
1045
|
defaultValue: false
|
|
1046
1046
|
}),
|
|
1047
1047
|
// Added 2025-12-15
|
|
1048
|
-
platform_editor_ai_exp_inline_date_year_refresh: createBooleanExperiment({
|
|
1049
|
-
productKeys: {
|
|
1050
|
-
confluence: 'platform_editor_ai_exp_inline_date_year_refresh'
|
|
1051
|
-
},
|
|
1052
|
-
param: 'isEnabled',
|
|
1053
|
-
defaultValue: false
|
|
1054
|
-
}),
|
|
1055
|
-
// Added 2025-12-15
|
|
1056
1048
|
platform_editor_ai_exp_suggestion_date_comma_delim: createBooleanExperiment({
|
|
1057
1049
|
productKeys: {
|
|
1058
1050
|
confluence: 'platform_editor_ai_exp_suggestion_date_comma_delim'
|
|
@@ -1232,6 +1224,14 @@ export var editorExperimentsConfig = {
|
|
|
1232
1224
|
param: 'isEnabled',
|
|
1233
1225
|
defaultValue: false
|
|
1234
1226
|
}),
|
|
1227
|
+
// Added 2026-02-18
|
|
1228
|
+
platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
|
|
1229
|
+
productKeys: {
|
|
1230
|
+
confluence: 'platform_editor_table_a11y_eslint_fix'
|
|
1231
|
+
},
|
|
1232
|
+
param: 'isEnabled',
|
|
1233
|
+
defaultValue: false
|
|
1234
|
+
}),
|
|
1235
1235
|
// Added 2026-01-27
|
|
1236
1236
|
platform_editor_table_cell_colour_change: createBooleanExperiment({
|
|
1237
1237
|
productKeys: {
|
|
@@ -1334,15 +1334,6 @@ export var editorExperimentsConfig = {
|
|
|
1334
1334
|
values: ['control', 'new-description', 'orig-description'],
|
|
1335
1335
|
defaultValue: 'control'
|
|
1336
1336
|
}),
|
|
1337
|
-
// Added 2026-02-11
|
|
1338
|
-
cc_fd_db_top_editor_toolbar_aa: createMultivariateExperiment({
|
|
1339
|
-
productKeys: {
|
|
1340
|
-
confluence: 'cc_fd_db_top_editor_toolbar_aa'
|
|
1341
|
-
},
|
|
1342
|
-
param: 'cohort',
|
|
1343
|
-
values: ['control', 'new-description', 'orig-description'],
|
|
1344
|
-
defaultValue: 'control'
|
|
1345
|
-
}),
|
|
1346
1337
|
// Added 2026-01-28
|
|
1347
1338
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1348
1339
|
productKeys: {
|
|
@@ -1424,5 +1415,22 @@ export var editorExperimentsConfig = {
|
|
|
1424
1415
|
},
|
|
1425
1416
|
param: 'isEnabled',
|
|
1426
1417
|
defaultValue: false
|
|
1418
|
+
}),
|
|
1419
|
+
// Added 2026-02-19
|
|
1420
|
+
platform_editor_table_borders_ready_fix: createBooleanExperiment({
|
|
1421
|
+
productKeys: {
|
|
1422
|
+
confluence: 'platform_editor_table_borders_ready_fix'
|
|
1423
|
+
},
|
|
1424
|
+
param: 'isEnabled',
|
|
1425
|
+
defaultValue: false
|
|
1426
|
+
}),
|
|
1427
|
+
// Added 2026-02-11
|
|
1428
|
+
platform_editor_prosemirror_rendered_data: createBooleanExperiment({
|
|
1429
|
+
productKeys: {
|
|
1430
|
+
confluence: 'platform_editor_prosemirror_rendered_data',
|
|
1431
|
+
jira: 'platform_editor_prosemirror_rendered_data'
|
|
1432
|
+
},
|
|
1433
|
+
param: 'isEnabled',
|
|
1434
|
+
defaultValue: false
|
|
1427
1435
|
})
|
|
1428
1436
|
};
|
|
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
|
|
|
118
118
|
productKeys?: ProductKeys;
|
|
119
119
|
typeGuard: IsBooleanType;
|
|
120
120
|
};
|
|
121
|
+
platform_editor_prosemirror_rendered_data: {
|
|
122
|
+
defaultValue: boolean;
|
|
123
|
+
param: string;
|
|
124
|
+
productKeys?: ProductKeys;
|
|
125
|
+
typeGuard: IsBooleanType;
|
|
126
|
+
};
|
|
121
127
|
confluence_compact_text_format: {
|
|
122
128
|
defaultValue: boolean;
|
|
123
129
|
param: string;
|
|
@@ -403,6 +409,12 @@ export declare const editorExperimentsConfig: {
|
|
|
403
409
|
productKeys?: ProductKeys;
|
|
404
410
|
typeGuard: IsBooleanType;
|
|
405
411
|
};
|
|
412
|
+
platform_editor_table_a11y_eslint_fix: {
|
|
413
|
+
defaultValue: boolean;
|
|
414
|
+
param: string;
|
|
415
|
+
productKeys?: ProductKeys;
|
|
416
|
+
typeGuard: IsBooleanType;
|
|
417
|
+
};
|
|
406
418
|
platform_editor_find_and_replace_improvements: {
|
|
407
419
|
defaultValue: boolean;
|
|
408
420
|
param: string;
|
|
@@ -767,12 +779,6 @@ export declare const editorExperimentsConfig: {
|
|
|
767
779
|
productKeys?: ProductKeys;
|
|
768
780
|
typeGuard: IsBooleanType;
|
|
769
781
|
};
|
|
770
|
-
platform_editor_ai_exp_inline_date_year_refresh: {
|
|
771
|
-
defaultValue: boolean;
|
|
772
|
-
param: string;
|
|
773
|
-
productKeys?: ProductKeys;
|
|
774
|
-
typeGuard: IsBooleanType;
|
|
775
|
-
};
|
|
776
782
|
platform_editor_ai_disable_bridge_without_ai: {
|
|
777
783
|
defaultValue: boolean;
|
|
778
784
|
param: string;
|
|
@@ -990,13 +996,6 @@ export declare const editorExperimentsConfig: {
|
|
|
990
996
|
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
991
997
|
values: ('control' | 'new-description' | 'orig-description')[];
|
|
992
998
|
};
|
|
993
|
-
cc_fd_db_top_editor_toolbar_aa: {
|
|
994
|
-
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
995
|
-
param: string;
|
|
996
|
-
productKeys?: ProductKeys;
|
|
997
|
-
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
998
|
-
values: ('control' | 'new-description' | 'orig-description')[];
|
|
999
|
-
};
|
|
1000
999
|
platform_editor_smartlink_local_cache: {
|
|
1001
1000
|
defaultValue: boolean;
|
|
1002
1001
|
param: string;
|
|
@@ -1057,5 +1056,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1057
1056
|
productKeys?: ProductKeys;
|
|
1058
1057
|
typeGuard: IsBooleanType;
|
|
1059
1058
|
};
|
|
1059
|
+
platform_editor_table_borders_ready_fix: {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1060
1065
|
};
|
|
1061
1066
|
export {};
|
|
@@ -118,6 +118,12 @@ export declare const editorExperimentsConfig: {
|
|
|
118
118
|
productKeys?: ProductKeys;
|
|
119
119
|
typeGuard: IsBooleanType;
|
|
120
120
|
};
|
|
121
|
+
platform_editor_prosemirror_rendered_data: {
|
|
122
|
+
defaultValue: boolean;
|
|
123
|
+
param: string;
|
|
124
|
+
productKeys?: ProductKeys;
|
|
125
|
+
typeGuard: IsBooleanType;
|
|
126
|
+
};
|
|
121
127
|
confluence_compact_text_format: {
|
|
122
128
|
defaultValue: boolean;
|
|
123
129
|
param: string;
|
|
@@ -403,6 +409,12 @@ export declare const editorExperimentsConfig: {
|
|
|
403
409
|
productKeys?: ProductKeys;
|
|
404
410
|
typeGuard: IsBooleanType;
|
|
405
411
|
};
|
|
412
|
+
platform_editor_table_a11y_eslint_fix: {
|
|
413
|
+
defaultValue: boolean;
|
|
414
|
+
param: string;
|
|
415
|
+
productKeys?: ProductKeys;
|
|
416
|
+
typeGuard: IsBooleanType;
|
|
417
|
+
};
|
|
406
418
|
platform_editor_find_and_replace_improvements: {
|
|
407
419
|
defaultValue: boolean;
|
|
408
420
|
param: string;
|
|
@@ -767,12 +779,6 @@ export declare const editorExperimentsConfig: {
|
|
|
767
779
|
productKeys?: ProductKeys;
|
|
768
780
|
typeGuard: IsBooleanType;
|
|
769
781
|
};
|
|
770
|
-
platform_editor_ai_exp_inline_date_year_refresh: {
|
|
771
|
-
defaultValue: boolean;
|
|
772
|
-
param: string;
|
|
773
|
-
productKeys?: ProductKeys;
|
|
774
|
-
typeGuard: IsBooleanType;
|
|
775
|
-
};
|
|
776
782
|
platform_editor_ai_disable_bridge_without_ai: {
|
|
777
783
|
defaultValue: boolean;
|
|
778
784
|
param: string;
|
|
@@ -990,13 +996,6 @@ export declare const editorExperimentsConfig: {
|
|
|
990
996
|
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
991
997
|
values: ('control' | 'new-description' | 'orig-description')[];
|
|
992
998
|
};
|
|
993
|
-
cc_fd_db_top_editor_toolbar_aa: {
|
|
994
|
-
defaultValue: 'control' | 'new-description' | 'orig-description';
|
|
995
|
-
param: string;
|
|
996
|
-
productKeys?: ProductKeys;
|
|
997
|
-
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
998
|
-
values: ('control' | 'new-description' | 'orig-description')[];
|
|
999
|
-
};
|
|
1000
999
|
platform_editor_smartlink_local_cache: {
|
|
1001
1000
|
defaultValue: boolean;
|
|
1002
1001
|
param: string;
|
|
@@ -1057,5 +1056,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1057
1056
|
productKeys?: ProductKeys;
|
|
1058
1057
|
typeGuard: IsBooleanType;
|
|
1059
1058
|
};
|
|
1059
|
+
platform_editor_table_borders_ready_fix: {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1060
1065
|
};
|
|
1061
1066
|
export {};
|
package/package.json
CHANGED