@atlaskit/tmp-editor-statsig 108.4.0 → 109.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 +32 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/exp-val-equals-internal.js +1 -1
- package/dist/cjs/experiments-config.js +28 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/exp-val-equals-internal.js +1 -1
- package/dist/es2019/experiments-config.js +28 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/exp-val-equals-internal.js +1 -1
- package/dist/esm/experiments-config.js +28 -8
- package/dist/types/experiments-config.d.ts +18 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 109.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`7754772ebfa47`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7754772ebfa47) -
|
|
8
|
+
Add remix_iw_block_menu_table_calc_fix experiment
|
|
9
|
+
- [`9a7ca4cefe634`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9a7ca4cefe634) -
|
|
10
|
+
Use the platform_use_unicode_emojis experiment for native Unicode emoji rendering.
|
|
11
|
+
- [`e850980f5a66f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e850980f5a66f) -
|
|
12
|
+
[EDITOR-6790] Block-controls drag-handle wrapper's background is removed and instead set
|
|
13
|
+
on`::before` on `.pm-table-container.pm-table-sticky` to keep masking the row insert dots when
|
|
14
|
+
legacy sticky header is activated while also not overlapping the column insert button.
|
|
15
|
+
|
|
16
|
+
## 109.0.0
|
|
17
|
+
|
|
18
|
+
### Major Changes
|
|
19
|
+
|
|
20
|
+
- [`49f682f5edc7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/49f682f5edc7b) -
|
|
21
|
+
Clean up experiment `cc_editor_ttvc_media_hold_fix`
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [`c3f49a97737db`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c3f49a97737db) -
|
|
26
|
+
Generate localIds for nodes inserted when a template replaces the whole document (e.g. applying a
|
|
27
|
+
template to a blank page), gated behind the experiment `platform_editor_ai_template_localids`.
|
|
28
|
+
|
|
29
|
+
Such replacements are delivered by NCS as a remote `OverrideDocumentStep`, which has no `slice`
|
|
30
|
+
and so was skipped by the localId plugin's slice-based scan. When the experiment is enabled,
|
|
31
|
+
remote transactions containing an `OverrideDocumentStep` are now processed so the freshly inserted
|
|
32
|
+
template nodes receive localIds. Ordinary remote collaborator edits remain skipped, and nodes that
|
|
33
|
+
already have a localId are never overwritten.
|
|
34
|
+
|
|
3
35
|
## 108.4.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|
|
@@ -71,5 +71,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
71
71
|
// `platform_editor_ai_replace_doc: false` override has been removed since
|
|
72
72
|
// it does not gate this feature.
|
|
73
73
|
platform_editor_ai_new_aifc_editor_experience: false,
|
|
74
|
-
cc_page_experiences_editor_image_generation: false
|
|
74
|
+
cc_page_experiences_editor_image_generation: false,
|
|
75
|
+
platform_use_unicode_emojis: false
|
|
75
76
|
};
|
|
@@ -12,7 +12,7 @@ var _setup = require("./setup");
|
|
|
12
12
|
// This internal representation doesn't currently support productKeys
|
|
13
13
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
14
14
|
// we determine our preferred approach forward
|
|
15
|
-
var allowsProductKeys = ['cc-maui-experiment'];
|
|
15
|
+
var allowsProductKeys = ['cc-maui-experiment', 'platform_use_unicode_emojis'];
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Check the value if an editor experiment.
|
|
@@ -236,7 +236,8 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
236
236
|
// Added 2026-06-16
|
|
237
237
|
platform_editor_table_col_insert: (0, _experimentBuilders.createBooleanExperiment)({
|
|
238
238
|
productKeys: {
|
|
239
|
-
confluence: 'platform_editor_table_col_insert'
|
|
239
|
+
confluence: 'platform_editor_table_col_insert',
|
|
240
|
+
jira: 'platform_editor_table_col_insert'
|
|
240
241
|
},
|
|
241
242
|
param: 'isEnabled',
|
|
242
243
|
defaultValue: false
|
|
@@ -1479,6 +1480,16 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1479
1480
|
param: 'isEnabled',
|
|
1480
1481
|
defaultValue: false
|
|
1481
1482
|
}),
|
|
1483
|
+
// Added 2026-06-16
|
|
1484
|
+
platform_use_unicode_emojis: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1485
|
+
productKeys: {
|
|
1486
|
+
confluence: 'platform_use_unicode_emojis_confluence',
|
|
1487
|
+
jira: 'platform_use_unicode_emojis_jira',
|
|
1488
|
+
bitbucket: 'platform_use_unicode_emojis_bitbucket'
|
|
1489
|
+
},
|
|
1490
|
+
param: 'isEnabled',
|
|
1491
|
+
defaultValue: false
|
|
1492
|
+
}),
|
|
1482
1493
|
// Added 2026-02-26
|
|
1483
1494
|
platform_editor_toolbar_update_jira_config: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1484
1495
|
productKeys: {
|
|
@@ -1528,6 +1539,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1528
1539
|
param: 'isEnabled',
|
|
1529
1540
|
defaultValue: false
|
|
1530
1541
|
}),
|
|
1542
|
+
// Added 2026-06-19 — fix table text length calculation for Remix/Improve Writing hero prompts
|
|
1543
|
+
remix_iw_block_menu_table_calc_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1544
|
+
productKeys: {
|
|
1545
|
+
confluence: 'remix_iw_block_menu_table_calc_fix'
|
|
1546
|
+
},
|
|
1547
|
+
param: 'isEnabled',
|
|
1548
|
+
defaultValue: false
|
|
1549
|
+
}),
|
|
1531
1550
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1532
1551
|
platform_editor_ai_aifc_space_shortcut_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1533
1552
|
productKeys: {
|
|
@@ -1600,13 +1619,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1600
1619
|
param: 'isEnabled',
|
|
1601
1620
|
defaultValue: false
|
|
1602
1621
|
}),
|
|
1603
|
-
cc_editor_ttvc_media_hold_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1604
|
-
productKeys: {
|
|
1605
|
-
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
1606
|
-
},
|
|
1607
|
-
param: 'isEnabled',
|
|
1608
|
-
defaultValue: false
|
|
1609
|
-
}),
|
|
1610
1622
|
// Added 2026-03-06
|
|
1611
1623
|
platform_editor_single_player_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1612
1624
|
productKeys: {
|
|
@@ -2052,6 +2064,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2052
2064
|
param: 'isEnabled',
|
|
2053
2065
|
defaultValue: false
|
|
2054
2066
|
}),
|
|
2067
|
+
// Added 2026-06-17
|
|
2068
|
+
platform_editor_ai_template_localids: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2069
|
+
productKeys: {
|
|
2070
|
+
confluence: 'platform_editor_ai_template_localids'
|
|
2071
|
+
},
|
|
2072
|
+
param: 'isEnabled',
|
|
2073
|
+
defaultValue: false
|
|
2074
|
+
}),
|
|
2055
2075
|
// Added 2026-05-20
|
|
2056
2076
|
platform_editor_ai_tablecell_localids: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2057
2077
|
productKeys: {
|
|
@@ -65,5 +65,6 @@ export const testBooleanOverrides = {
|
|
|
65
65
|
// `platform_editor_ai_replace_doc: false` override has been removed since
|
|
66
66
|
// it does not gate this feature.
|
|
67
67
|
platform_editor_ai_new_aifc_editor_experience: false,
|
|
68
|
-
cc_page_experiences_editor_image_generation: false
|
|
68
|
+
cc_page_experiences_editor_image_generation: false,
|
|
69
|
+
platform_use_unicode_emojis: false
|
|
69
70
|
};
|
|
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
|
|
|
6
6
|
// This internal representation doesn't currently support productKeys
|
|
7
7
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
8
8
|
// we determine our preferred approach forward
|
|
9
|
-
const allowsProductKeys = ['cc-maui-experiment'];
|
|
9
|
+
const allowsProductKeys = ['cc-maui-experiment', 'platform_use_unicode_emojis'];
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Check the value if an editor experiment.
|
|
@@ -230,7 +230,8 @@ export const editorExperimentsConfig = {
|
|
|
230
230
|
// Added 2026-06-16
|
|
231
231
|
platform_editor_table_col_insert: createBooleanExperiment({
|
|
232
232
|
productKeys: {
|
|
233
|
-
confluence: 'platform_editor_table_col_insert'
|
|
233
|
+
confluence: 'platform_editor_table_col_insert',
|
|
234
|
+
jira: 'platform_editor_table_col_insert'
|
|
234
235
|
},
|
|
235
236
|
param: 'isEnabled',
|
|
236
237
|
defaultValue: false
|
|
@@ -1473,6 +1474,16 @@ export const editorExperimentsConfig = {
|
|
|
1473
1474
|
param: 'isEnabled',
|
|
1474
1475
|
defaultValue: false
|
|
1475
1476
|
}),
|
|
1477
|
+
// Added 2026-06-16
|
|
1478
|
+
platform_use_unicode_emojis: createBooleanExperiment({
|
|
1479
|
+
productKeys: {
|
|
1480
|
+
confluence: 'platform_use_unicode_emojis_confluence',
|
|
1481
|
+
jira: 'platform_use_unicode_emojis_jira',
|
|
1482
|
+
bitbucket: 'platform_use_unicode_emojis_bitbucket'
|
|
1483
|
+
},
|
|
1484
|
+
param: 'isEnabled',
|
|
1485
|
+
defaultValue: false
|
|
1486
|
+
}),
|
|
1476
1487
|
// Added 2026-02-26
|
|
1477
1488
|
platform_editor_toolbar_update_jira_config: createBooleanExperiment({
|
|
1478
1489
|
productKeys: {
|
|
@@ -1522,6 +1533,14 @@ export const editorExperimentsConfig = {
|
|
|
1522
1533
|
param: 'isEnabled',
|
|
1523
1534
|
defaultValue: false
|
|
1524
1535
|
}),
|
|
1536
|
+
// Added 2026-06-19 — fix table text length calculation for Remix/Improve Writing hero prompts
|
|
1537
|
+
remix_iw_block_menu_table_calc_fix: createBooleanExperiment({
|
|
1538
|
+
productKeys: {
|
|
1539
|
+
confluence: 'remix_iw_block_menu_table_calc_fix'
|
|
1540
|
+
},
|
|
1541
|
+
param: 'isEnabled',
|
|
1542
|
+
defaultValue: false
|
|
1543
|
+
}),
|
|
1525
1544
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1526
1545
|
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1527
1546
|
productKeys: {
|
|
@@ -1594,13 +1613,6 @@ export const editorExperimentsConfig = {
|
|
|
1594
1613
|
param: 'isEnabled',
|
|
1595
1614
|
defaultValue: false
|
|
1596
1615
|
}),
|
|
1597
|
-
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1598
|
-
productKeys: {
|
|
1599
|
-
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
1600
|
-
},
|
|
1601
|
-
param: 'isEnabled',
|
|
1602
|
-
defaultValue: false
|
|
1603
|
-
}),
|
|
1604
1616
|
// Added 2026-03-06
|
|
1605
1617
|
platform_editor_single_player_expand: createBooleanExperiment({
|
|
1606
1618
|
productKeys: {
|
|
@@ -2046,6 +2058,14 @@ export const editorExperimentsConfig = {
|
|
|
2046
2058
|
param: 'isEnabled',
|
|
2047
2059
|
defaultValue: false
|
|
2048
2060
|
}),
|
|
2061
|
+
// Added 2026-06-17
|
|
2062
|
+
platform_editor_ai_template_localids: createBooleanExperiment({
|
|
2063
|
+
productKeys: {
|
|
2064
|
+
confluence: 'platform_editor_ai_template_localids'
|
|
2065
|
+
},
|
|
2066
|
+
param: 'isEnabled',
|
|
2067
|
+
defaultValue: false
|
|
2068
|
+
}),
|
|
2049
2069
|
// Added 2026-05-20
|
|
2050
2070
|
platform_editor_ai_tablecell_localids: createBooleanExperiment({
|
|
2051
2071
|
productKeys: {
|
|
@@ -65,5 +65,6 @@ export var testBooleanOverrides = {
|
|
|
65
65
|
// `platform_editor_ai_replace_doc: false` override has been removed since
|
|
66
66
|
// it does not gate this feature.
|
|
67
67
|
platform_editor_ai_new_aifc_editor_experience: false,
|
|
68
|
-
cc_page_experiences_editor_image_generation: false
|
|
68
|
+
cc_page_experiences_editor_image_generation: false,
|
|
69
|
+
platform_use_unicode_emojis: false
|
|
69
70
|
};
|
|
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
|
|
|
6
6
|
// This internal representation doesn't currently support productKeys
|
|
7
7
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
8
8
|
// we determine our preferred approach forward
|
|
9
|
-
var allowsProductKeys = ['cc-maui-experiment'];
|
|
9
|
+
var allowsProductKeys = ['cc-maui-experiment', 'platform_use_unicode_emojis'];
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Check the value if an editor experiment.
|
|
@@ -230,7 +230,8 @@ export var editorExperimentsConfig = {
|
|
|
230
230
|
// Added 2026-06-16
|
|
231
231
|
platform_editor_table_col_insert: createBooleanExperiment({
|
|
232
232
|
productKeys: {
|
|
233
|
-
confluence: 'platform_editor_table_col_insert'
|
|
233
|
+
confluence: 'platform_editor_table_col_insert',
|
|
234
|
+
jira: 'platform_editor_table_col_insert'
|
|
234
235
|
},
|
|
235
236
|
param: 'isEnabled',
|
|
236
237
|
defaultValue: false
|
|
@@ -1473,6 +1474,16 @@ export var editorExperimentsConfig = {
|
|
|
1473
1474
|
param: 'isEnabled',
|
|
1474
1475
|
defaultValue: false
|
|
1475
1476
|
}),
|
|
1477
|
+
// Added 2026-06-16
|
|
1478
|
+
platform_use_unicode_emojis: createBooleanExperiment({
|
|
1479
|
+
productKeys: {
|
|
1480
|
+
confluence: 'platform_use_unicode_emojis_confluence',
|
|
1481
|
+
jira: 'platform_use_unicode_emojis_jira',
|
|
1482
|
+
bitbucket: 'platform_use_unicode_emojis_bitbucket'
|
|
1483
|
+
},
|
|
1484
|
+
param: 'isEnabled',
|
|
1485
|
+
defaultValue: false
|
|
1486
|
+
}),
|
|
1476
1487
|
// Added 2026-02-26
|
|
1477
1488
|
platform_editor_toolbar_update_jira_config: createBooleanExperiment({
|
|
1478
1489
|
productKeys: {
|
|
@@ -1522,6 +1533,14 @@ export var editorExperimentsConfig = {
|
|
|
1522
1533
|
param: 'isEnabled',
|
|
1523
1534
|
defaultValue: false
|
|
1524
1535
|
}),
|
|
1536
|
+
// Added 2026-06-19 — fix table text length calculation for Remix/Improve Writing hero prompts
|
|
1537
|
+
remix_iw_block_menu_table_calc_fix: createBooleanExperiment({
|
|
1538
|
+
productKeys: {
|
|
1539
|
+
confluence: 'remix_iw_block_menu_table_calc_fix'
|
|
1540
|
+
},
|
|
1541
|
+
param: 'isEnabled',
|
|
1542
|
+
defaultValue: false
|
|
1543
|
+
}),
|
|
1525
1544
|
// Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
|
|
1526
1545
|
platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
|
|
1527
1546
|
productKeys: {
|
|
@@ -1594,13 +1613,6 @@ export var editorExperimentsConfig = {
|
|
|
1594
1613
|
param: 'isEnabled',
|
|
1595
1614
|
defaultValue: false
|
|
1596
1615
|
}),
|
|
1597
|
-
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1598
|
-
productKeys: {
|
|
1599
|
-
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
1600
|
-
},
|
|
1601
|
-
param: 'isEnabled',
|
|
1602
|
-
defaultValue: false
|
|
1603
|
-
}),
|
|
1604
1616
|
// Added 2026-03-06
|
|
1605
1617
|
platform_editor_single_player_expand: createBooleanExperiment({
|
|
1606
1618
|
productKeys: {
|
|
@@ -2046,6 +2058,14 @@ export var editorExperimentsConfig = {
|
|
|
2046
2058
|
param: 'isEnabled',
|
|
2047
2059
|
defaultValue: false
|
|
2048
2060
|
}),
|
|
2061
|
+
// Added 2026-06-17
|
|
2062
|
+
platform_editor_ai_template_localids: createBooleanExperiment({
|
|
2063
|
+
productKeys: {
|
|
2064
|
+
confluence: 'platform_editor_ai_template_localids'
|
|
2065
|
+
},
|
|
2066
|
+
param: 'isEnabled',
|
|
2067
|
+
defaultValue: false
|
|
2068
|
+
}),
|
|
2049
2069
|
// Added 2026-05-20
|
|
2050
2070
|
platform_editor_ai_tablecell_localids: createBooleanExperiment({
|
|
2051
2071
|
productKeys: {
|
|
@@ -1136,6 +1136,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1136
1136
|
productKeys?: ProductKeys;
|
|
1137
1137
|
typeGuard: IsBooleanType;
|
|
1138
1138
|
};
|
|
1139
|
+
platform_use_unicode_emojis: {
|
|
1140
|
+
defaultValue: boolean;
|
|
1141
|
+
param: string;
|
|
1142
|
+
productKeys?: ProductKeys;
|
|
1143
|
+
typeGuard: IsBooleanType;
|
|
1144
|
+
};
|
|
1139
1145
|
platform_editor_toolbar_update_jira_config: {
|
|
1140
1146
|
defaultValue: boolean;
|
|
1141
1147
|
param: string;
|
|
@@ -1166,6 +1172,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1166
1172
|
productKeys?: ProductKeys;
|
|
1167
1173
|
typeGuard: IsBooleanType;
|
|
1168
1174
|
};
|
|
1175
|
+
remix_iw_block_menu_table_calc_fix: {
|
|
1176
|
+
defaultValue: boolean;
|
|
1177
|
+
param: string;
|
|
1178
|
+
productKeys?: ProductKeys;
|
|
1179
|
+
typeGuard: IsBooleanType;
|
|
1180
|
+
};
|
|
1169
1181
|
platform_editor_ai_aifc_space_shortcut_patch: {
|
|
1170
1182
|
defaultValue: boolean;
|
|
1171
1183
|
param: string;
|
|
@@ -1238,12 +1250,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1238
1250
|
productKeys?: ProductKeys;
|
|
1239
1251
|
typeGuard: IsBooleanType;
|
|
1240
1252
|
};
|
|
1241
|
-
cc_editor_ttvc_media_hold_fix: {
|
|
1242
|
-
defaultValue: boolean;
|
|
1243
|
-
param: string;
|
|
1244
|
-
productKeys?: ProductKeys;
|
|
1245
|
-
typeGuard: IsBooleanType;
|
|
1246
|
-
};
|
|
1247
1253
|
platform_editor_single_player_expand: {
|
|
1248
1254
|
defaultValue: boolean;
|
|
1249
1255
|
param: string;
|
|
@@ -1484,6 +1490,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1484
1490
|
productKeys?: ProductKeys;
|
|
1485
1491
|
typeGuard: IsBooleanType;
|
|
1486
1492
|
};
|
|
1493
|
+
platform_editor_ai_template_localids: {
|
|
1494
|
+
defaultValue: boolean;
|
|
1495
|
+
param: string;
|
|
1496
|
+
productKeys?: ProductKeys;
|
|
1497
|
+
typeGuard: IsBooleanType;
|
|
1498
|
+
};
|
|
1487
1499
|
platform_editor_ai_tablecell_localids: {
|
|
1488
1500
|
defaultValue: boolean;
|
|
1489
1501
|
param: string;
|
package/package.json
CHANGED