@atlaskit/tmp-editor-statsig 109.0.0 → 109.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 +20 -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 +20 -1
- 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 +20 -1
- 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 +20 -1
- package/dist/types/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 109.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`05b9f7b19ddba`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/05b9f7b19ddba) -
|
|
8
|
+
Use the platform_use_unicode_emojis experiment for native Unicode emoji rendering.
|
|
9
|
+
|
|
10
|
+
## 109.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`7754772ebfa47`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7754772ebfa47) -
|
|
15
|
+
Add remix_iw_block_menu_table_calc_fix experiment
|
|
16
|
+
- [`9a7ca4cefe634`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9a7ca4cefe634) -
|
|
17
|
+
Use the platform_use_unicode_emojis experiment for native Unicode emoji rendering.
|
|
18
|
+
- [`e850980f5a66f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e850980f5a66f) -
|
|
19
|
+
[EDITOR-6790] Block-controls drag-handle wrapper's background is removed and instead set
|
|
20
|
+
on`::before` on `.pm-table-container.pm-table-sticky` to keep masking the row insert dots when
|
|
21
|
+
legacy sticky header is activated while also not overlapping the column insert button.
|
|
22
|
+
|
|
3
23
|
## 109.0.0
|
|
4
24
|
|
|
5
25
|
### Major 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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
package/package.json
CHANGED