@atlaskit/tmp-editor-statsig 62.4.0 → 62.5.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 +3 -2
- package/dist/cjs/experiments-config.js +22 -0
- package/dist/es2019/exp-test-overrides.js +3 -2
- package/dist/es2019/experiments-config.js +22 -0
- package/dist/esm/exp-test-overrides.js +3 -2
- package/dist/esm/experiments-config.js +22 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 62.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ddaaad8a1e1c9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ddaaad8a1e1c9) -
|
|
8
|
+
Add toolbar component to jira remix integration
|
|
9
|
+
|
|
10
|
+
## 62.4.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`eb34f250499a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/eb34f250499a5) -
|
|
15
|
+
[EDITOR-6274] remove experiment override from tests
|
|
16
|
+
|
|
3
17
|
## 62.4.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -37,7 +37,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
37
37
|
single_column_layouts: false,
|
|
38
38
|
platform_editor_ai_unsplash_page_header: false,
|
|
39
39
|
platform_editor_blockquote_in_text_formatting_menu: false,
|
|
40
|
-
platform_editor_element_drag_and_drop_multiselect: false,
|
|
41
40
|
platform_editor_ai_edit_response_in_preview: false,
|
|
42
41
|
platform_editor_offline_editing_web: false,
|
|
43
42
|
platform_editor_tables_drag_and_drop: false,
|
|
@@ -56,5 +55,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
56
55
|
platform_editor_paste_actions_menu: false,
|
|
57
56
|
platform_editor_diff_plugin_extended: false,
|
|
58
57
|
platform_editor_preserve_node_identity: false,
|
|
59
|
-
platform_editor_ai_rename_add_polish: false
|
|
58
|
+
platform_editor_ai_rename_add_polish: false,
|
|
59
|
+
platform_editor_table_fit_to_content_on_demand: false,
|
|
60
|
+
platform_editor_table_fit_to_content_auto_convert: false
|
|
60
61
|
};
|
|
@@ -1415,6 +1415,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1415
1415
|
param: 'isEnabled',
|
|
1416
1416
|
defaultValue: false
|
|
1417
1417
|
}),
|
|
1418
|
+
// Added 2026-04-15
|
|
1419
|
+
jira_maui_remix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1420
|
+
productKeys: {
|
|
1421
|
+
jira: 'jira_maui_remix'
|
|
1422
|
+
},
|
|
1423
|
+
param: 'isEnabled',
|
|
1424
|
+
defaultValue: false
|
|
1425
|
+
}),
|
|
1418
1426
|
// Added 2026-03-05
|
|
1419
1427
|
'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1420
1428
|
productKeys: {
|
|
@@ -1742,6 +1750,20 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1742
1750
|
param: 'isEnabled',
|
|
1743
1751
|
defaultValue: false
|
|
1744
1752
|
}),
|
|
1753
|
+
platform_editor_table_fit_to_content_auto_convert: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1754
|
+
productKeys: {
|
|
1755
|
+
confluence: 'platform_editor_table_fit_to_content_auto_convert'
|
|
1756
|
+
},
|
|
1757
|
+
param: 'isEnabled',
|
|
1758
|
+
defaultValue: false
|
|
1759
|
+
}),
|
|
1760
|
+
platform_editor_table_fit_to_content_on_demand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1761
|
+
productKeys: {
|
|
1762
|
+
confluence: 'platform_editor_table_fit_to_content_on_demand'
|
|
1763
|
+
},
|
|
1764
|
+
param: 'isEnabled',
|
|
1765
|
+
defaultValue: false
|
|
1766
|
+
}),
|
|
1745
1767
|
// Added 2026-03-11
|
|
1746
1768
|
platform_editor_disable_last_node_para: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1747
1769
|
productKeys: {
|
|
@@ -31,7 +31,6 @@ export const testBooleanOverrides = {
|
|
|
31
31
|
single_column_layouts: false,
|
|
32
32
|
platform_editor_ai_unsplash_page_header: false,
|
|
33
33
|
platform_editor_blockquote_in_text_formatting_menu: false,
|
|
34
|
-
platform_editor_element_drag_and_drop_multiselect: false,
|
|
35
34
|
platform_editor_ai_edit_response_in_preview: false,
|
|
36
35
|
platform_editor_offline_editing_web: false,
|
|
37
36
|
platform_editor_tables_drag_and_drop: false,
|
|
@@ -50,5 +49,7 @@ export const testBooleanOverrides = {
|
|
|
50
49
|
platform_editor_paste_actions_menu: false,
|
|
51
50
|
platform_editor_diff_plugin_extended: false,
|
|
52
51
|
platform_editor_preserve_node_identity: false,
|
|
53
|
-
platform_editor_ai_rename_add_polish: false
|
|
52
|
+
platform_editor_ai_rename_add_polish: false,
|
|
53
|
+
platform_editor_table_fit_to_content_on_demand: false,
|
|
54
|
+
platform_editor_table_fit_to_content_auto_convert: false
|
|
54
55
|
};
|
|
@@ -1409,6 +1409,14 @@ export const editorExperimentsConfig = {
|
|
|
1409
1409
|
param: 'isEnabled',
|
|
1410
1410
|
defaultValue: false
|
|
1411
1411
|
}),
|
|
1412
|
+
// Added 2026-04-15
|
|
1413
|
+
jira_maui_remix: createBooleanExperiment({
|
|
1414
|
+
productKeys: {
|
|
1415
|
+
jira: 'jira_maui_remix'
|
|
1416
|
+
},
|
|
1417
|
+
param: 'isEnabled',
|
|
1418
|
+
defaultValue: false
|
|
1419
|
+
}),
|
|
1412
1420
|
// Added 2026-03-05
|
|
1413
1421
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1414
1422
|
productKeys: {
|
|
@@ -1736,6 +1744,20 @@ export const editorExperimentsConfig = {
|
|
|
1736
1744
|
param: 'isEnabled',
|
|
1737
1745
|
defaultValue: false
|
|
1738
1746
|
}),
|
|
1747
|
+
platform_editor_table_fit_to_content_auto_convert: createBooleanExperiment({
|
|
1748
|
+
productKeys: {
|
|
1749
|
+
confluence: 'platform_editor_table_fit_to_content_auto_convert'
|
|
1750
|
+
},
|
|
1751
|
+
param: 'isEnabled',
|
|
1752
|
+
defaultValue: false
|
|
1753
|
+
}),
|
|
1754
|
+
platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
|
|
1755
|
+
productKeys: {
|
|
1756
|
+
confluence: 'platform_editor_table_fit_to_content_on_demand'
|
|
1757
|
+
},
|
|
1758
|
+
param: 'isEnabled',
|
|
1759
|
+
defaultValue: false
|
|
1760
|
+
}),
|
|
1739
1761
|
// Added 2026-03-11
|
|
1740
1762
|
platform_editor_disable_last_node_para: createBooleanExperiment({
|
|
1741
1763
|
productKeys: {
|
|
@@ -31,7 +31,6 @@ export var testBooleanOverrides = {
|
|
|
31
31
|
single_column_layouts: false,
|
|
32
32
|
platform_editor_ai_unsplash_page_header: false,
|
|
33
33
|
platform_editor_blockquote_in_text_formatting_menu: false,
|
|
34
|
-
platform_editor_element_drag_and_drop_multiselect: false,
|
|
35
34
|
platform_editor_ai_edit_response_in_preview: false,
|
|
36
35
|
platform_editor_offline_editing_web: false,
|
|
37
36
|
platform_editor_tables_drag_and_drop: false,
|
|
@@ -50,5 +49,7 @@ export var testBooleanOverrides = {
|
|
|
50
49
|
platform_editor_paste_actions_menu: false,
|
|
51
50
|
platform_editor_diff_plugin_extended: false,
|
|
52
51
|
platform_editor_preserve_node_identity: false,
|
|
53
|
-
platform_editor_ai_rename_add_polish: false
|
|
52
|
+
platform_editor_ai_rename_add_polish: false,
|
|
53
|
+
platform_editor_table_fit_to_content_on_demand: false,
|
|
54
|
+
platform_editor_table_fit_to_content_auto_convert: false
|
|
54
55
|
};
|
|
@@ -1409,6 +1409,14 @@ export var editorExperimentsConfig = {
|
|
|
1409
1409
|
param: 'isEnabled',
|
|
1410
1410
|
defaultValue: false
|
|
1411
1411
|
}),
|
|
1412
|
+
// Added 2026-04-15
|
|
1413
|
+
jira_maui_remix: createBooleanExperiment({
|
|
1414
|
+
productKeys: {
|
|
1415
|
+
jira: 'jira_maui_remix'
|
|
1416
|
+
},
|
|
1417
|
+
param: 'isEnabled',
|
|
1418
|
+
defaultValue: false
|
|
1419
|
+
}),
|
|
1412
1420
|
// Added 2026-03-05
|
|
1413
1421
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1414
1422
|
productKeys: {
|
|
@@ -1736,6 +1744,20 @@ export var editorExperimentsConfig = {
|
|
|
1736
1744
|
param: 'isEnabled',
|
|
1737
1745
|
defaultValue: false
|
|
1738
1746
|
}),
|
|
1747
|
+
platform_editor_table_fit_to_content_auto_convert: createBooleanExperiment({
|
|
1748
|
+
productKeys: {
|
|
1749
|
+
confluence: 'platform_editor_table_fit_to_content_auto_convert'
|
|
1750
|
+
},
|
|
1751
|
+
param: 'isEnabled',
|
|
1752
|
+
defaultValue: false
|
|
1753
|
+
}),
|
|
1754
|
+
platform_editor_table_fit_to_content_on_demand: createBooleanExperiment({
|
|
1755
|
+
productKeys: {
|
|
1756
|
+
confluence: 'platform_editor_table_fit_to_content_on_demand'
|
|
1757
|
+
},
|
|
1758
|
+
param: 'isEnabled',
|
|
1759
|
+
defaultValue: false
|
|
1760
|
+
}),
|
|
1739
1761
|
// Added 2026-03-11
|
|
1740
1762
|
platform_editor_disable_last_node_para: createBooleanExperiment({
|
|
1741
1763
|
productKeys: {
|
|
@@ -1352,6 +1352,18 @@ export declare const editorExperimentsConfig: {
|
|
|
1352
1352
|
productKeys?: ProductKeys;
|
|
1353
1353
|
typeGuard: IsBooleanType;
|
|
1354
1354
|
};
|
|
1355
|
+
platform_editor_table_fit_to_content_auto_convert: {
|
|
1356
|
+
defaultValue: boolean;
|
|
1357
|
+
param: string;
|
|
1358
|
+
productKeys?: ProductKeys;
|
|
1359
|
+
typeGuard: IsBooleanType;
|
|
1360
|
+
};
|
|
1361
|
+
platform_editor_table_fit_to_content_on_demand: {
|
|
1362
|
+
defaultValue: boolean;
|
|
1363
|
+
param: string;
|
|
1364
|
+
productKeys?: ProductKeys;
|
|
1365
|
+
typeGuard: IsBooleanType;
|
|
1366
|
+
};
|
|
1355
1367
|
platform_editor_disable_last_node_para: {
|
|
1356
1368
|
defaultValue: boolean;
|
|
1357
1369
|
param: string;
|
|
@@ -1454,6 +1466,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1454
1466
|
productKeys?: ProductKeys;
|
|
1455
1467
|
typeGuard: IsBooleanType;
|
|
1456
1468
|
};
|
|
1469
|
+
jira_maui_remix: {
|
|
1470
|
+
defaultValue: boolean;
|
|
1471
|
+
param: string;
|
|
1472
|
+
productKeys?: ProductKeys;
|
|
1473
|
+
typeGuard: IsBooleanType;
|
|
1474
|
+
};
|
|
1457
1475
|
platform_editor_drag_handle_keyboard_a11y: {
|
|
1458
1476
|
defaultValue: boolean;
|
|
1459
1477
|
param: string;
|
|
@@ -1352,6 +1352,18 @@ export declare const editorExperimentsConfig: {
|
|
|
1352
1352
|
productKeys?: ProductKeys;
|
|
1353
1353
|
typeGuard: IsBooleanType;
|
|
1354
1354
|
};
|
|
1355
|
+
platform_editor_table_fit_to_content_auto_convert: {
|
|
1356
|
+
defaultValue: boolean;
|
|
1357
|
+
param: string;
|
|
1358
|
+
productKeys?: ProductKeys;
|
|
1359
|
+
typeGuard: IsBooleanType;
|
|
1360
|
+
};
|
|
1361
|
+
platform_editor_table_fit_to_content_on_demand: {
|
|
1362
|
+
defaultValue: boolean;
|
|
1363
|
+
param: string;
|
|
1364
|
+
productKeys?: ProductKeys;
|
|
1365
|
+
typeGuard: IsBooleanType;
|
|
1366
|
+
};
|
|
1355
1367
|
platform_editor_disable_last_node_para: {
|
|
1356
1368
|
defaultValue: boolean;
|
|
1357
1369
|
param: string;
|
|
@@ -1454,6 +1466,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1454
1466
|
productKeys?: ProductKeys;
|
|
1455
1467
|
typeGuard: IsBooleanType;
|
|
1456
1468
|
};
|
|
1469
|
+
jira_maui_remix: {
|
|
1470
|
+
defaultValue: boolean;
|
|
1471
|
+
param: string;
|
|
1472
|
+
productKeys?: ProductKeys;
|
|
1473
|
+
typeGuard: IsBooleanType;
|
|
1474
|
+
};
|
|
1457
1475
|
platform_editor_drag_handle_keyboard_a11y: {
|
|
1458
1476
|
defaultValue: boolean;
|
|
1459
1477
|
param: string;
|
package/package.json
CHANGED