@atlaskit/tmp-editor-statsig 40.6.0 → 41.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 +20 -0
- package/dist/cjs/experiments-config.js +15 -8
- package/dist/es2019/experiments-config.js +15 -8
- package/dist/esm/experiments-config.js +15 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 41.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`ba5257de9a045`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ba5257de9a045) -
|
|
8
|
+
Removed feature flag platform_editor_paste_before_first_block_node for solved editor paste bug
|
|
9
|
+
before certain block nodes.
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`ea21f2748d986`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ea21f2748d986) -
|
|
14
|
+
feat: set display-mode in table toDOM from node attributes
|
|
15
|
+
|
|
16
|
+
## 40.7.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [`1f132a3204f7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1f132a3204f7b) -
|
|
21
|
+
Fix Safari cursor jumping to start when hovering over typeahead menu items
|
|
22
|
+
|
|
3
23
|
## 40.6.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -478,6 +478,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
478
478
|
param: 'isEnabled',
|
|
479
479
|
defaultValue: false
|
|
480
480
|
}),
|
|
481
|
+
platform_editor_table_display_mode_in_to_dom: (0, _experimentBuilders.createBooleanExperiment)({
|
|
482
|
+
productKeys: {
|
|
483
|
+
confluence: 'platform_editor_table_display_mode_in_to_dom'
|
|
484
|
+
},
|
|
485
|
+
param: 'isEnabled',
|
|
486
|
+
defaultValue: false
|
|
487
|
+
}),
|
|
481
488
|
// Added 2025-04-23
|
|
482
489
|
platform_renderer_fix_analytics_memo_callback: (0, _experimentBuilders.createBooleanExperiment)({
|
|
483
490
|
productKeys: {
|
|
@@ -1414,6 +1421,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1414
1421
|
param: 'isEnabled',
|
|
1415
1422
|
defaultValue: false
|
|
1416
1423
|
}),
|
|
1424
|
+
// Added 2026-03-16
|
|
1425
|
+
platform_safari_cursor_typeahead_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1426
|
+
productKeys: {
|
|
1427
|
+
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1428
|
+
},
|
|
1429
|
+
param: 'isEnabled',
|
|
1430
|
+
defaultValue: false
|
|
1431
|
+
}),
|
|
1417
1432
|
// Added 2026-02-17
|
|
1418
1433
|
confluence_frontend_fix_date_hydration_error: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1419
1434
|
productKeys: {
|
|
@@ -1571,14 +1586,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1571
1586
|
param: 'isEnabled',
|
|
1572
1587
|
defaultValue: false
|
|
1573
1588
|
}),
|
|
1574
|
-
// Added 2026-03-12
|
|
1575
|
-
platform_editor_paste_before_first_block_node: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1576
|
-
productKeys: {
|
|
1577
|
-
confluence: 'platform_editor_paste_before_first_block_node'
|
|
1578
|
-
},
|
|
1579
|
-
param: 'isEnabled',
|
|
1580
|
-
defaultValue: false
|
|
1581
|
-
}),
|
|
1582
1589
|
// Added 2026-03-04
|
|
1583
1590
|
platform_editor_ai_blockmenu_integration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1584
1591
|
productKeys: {
|
|
@@ -472,6 +472,13 @@ export const editorExperimentsConfig = {
|
|
|
472
472
|
param: 'isEnabled',
|
|
473
473
|
defaultValue: false
|
|
474
474
|
}),
|
|
475
|
+
platform_editor_table_display_mode_in_to_dom: createBooleanExperiment({
|
|
476
|
+
productKeys: {
|
|
477
|
+
confluence: 'platform_editor_table_display_mode_in_to_dom'
|
|
478
|
+
},
|
|
479
|
+
param: 'isEnabled',
|
|
480
|
+
defaultValue: false
|
|
481
|
+
}),
|
|
475
482
|
// Added 2025-04-23
|
|
476
483
|
platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
|
|
477
484
|
productKeys: {
|
|
@@ -1408,6 +1415,14 @@ export const editorExperimentsConfig = {
|
|
|
1408
1415
|
param: 'isEnabled',
|
|
1409
1416
|
defaultValue: false
|
|
1410
1417
|
}),
|
|
1418
|
+
// Added 2026-03-16
|
|
1419
|
+
platform_safari_cursor_typeahead_fix: createBooleanExperiment({
|
|
1420
|
+
productKeys: {
|
|
1421
|
+
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1422
|
+
},
|
|
1423
|
+
param: 'isEnabled',
|
|
1424
|
+
defaultValue: false
|
|
1425
|
+
}),
|
|
1411
1426
|
// Added 2026-02-17
|
|
1412
1427
|
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1413
1428
|
productKeys: {
|
|
@@ -1565,14 +1580,6 @@ export const editorExperimentsConfig = {
|
|
|
1565
1580
|
param: 'isEnabled',
|
|
1566
1581
|
defaultValue: false
|
|
1567
1582
|
}),
|
|
1568
|
-
// Added 2026-03-12
|
|
1569
|
-
platform_editor_paste_before_first_block_node: createBooleanExperiment({
|
|
1570
|
-
productKeys: {
|
|
1571
|
-
confluence: 'platform_editor_paste_before_first_block_node'
|
|
1572
|
-
},
|
|
1573
|
-
param: 'isEnabled',
|
|
1574
|
-
defaultValue: false
|
|
1575
|
-
}),
|
|
1576
1583
|
// Added 2026-03-04
|
|
1577
1584
|
platform_editor_ai_blockmenu_integration: createBooleanExperiment({
|
|
1578
1585
|
productKeys: {
|
|
@@ -472,6 +472,13 @@ export var editorExperimentsConfig = {
|
|
|
472
472
|
param: 'isEnabled',
|
|
473
473
|
defaultValue: false
|
|
474
474
|
}),
|
|
475
|
+
platform_editor_table_display_mode_in_to_dom: createBooleanExperiment({
|
|
476
|
+
productKeys: {
|
|
477
|
+
confluence: 'platform_editor_table_display_mode_in_to_dom'
|
|
478
|
+
},
|
|
479
|
+
param: 'isEnabled',
|
|
480
|
+
defaultValue: false
|
|
481
|
+
}),
|
|
475
482
|
// Added 2025-04-23
|
|
476
483
|
platform_renderer_fix_analytics_memo_callback: createBooleanExperiment({
|
|
477
484
|
productKeys: {
|
|
@@ -1408,6 +1415,14 @@ export var editorExperimentsConfig = {
|
|
|
1408
1415
|
param: 'isEnabled',
|
|
1409
1416
|
defaultValue: false
|
|
1410
1417
|
}),
|
|
1418
|
+
// Added 2026-03-16
|
|
1419
|
+
platform_safari_cursor_typeahead_fix: createBooleanExperiment({
|
|
1420
|
+
productKeys: {
|
|
1421
|
+
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1422
|
+
},
|
|
1423
|
+
param: 'isEnabled',
|
|
1424
|
+
defaultValue: false
|
|
1425
|
+
}),
|
|
1411
1426
|
// Added 2026-02-17
|
|
1412
1427
|
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1413
1428
|
productKeys: {
|
|
@@ -1565,14 +1580,6 @@ export var editorExperimentsConfig = {
|
|
|
1565
1580
|
param: 'isEnabled',
|
|
1566
1581
|
defaultValue: false
|
|
1567
1582
|
}),
|
|
1568
|
-
// Added 2026-03-12
|
|
1569
|
-
platform_editor_paste_before_first_block_node: createBooleanExperiment({
|
|
1570
|
-
productKeys: {
|
|
1571
|
-
confluence: 'platform_editor_paste_before_first_block_node'
|
|
1572
|
-
},
|
|
1573
|
-
param: 'isEnabled',
|
|
1574
|
-
defaultValue: false
|
|
1575
|
-
}),
|
|
1576
1583
|
// Added 2026-03-04
|
|
1577
1584
|
platform_editor_ai_blockmenu_integration: createBooleanExperiment({
|
|
1578
1585
|
productKeys: {
|
|
@@ -680,6 +680,12 @@ export declare const editorExperimentsConfig: {
|
|
|
680
680
|
productKeys?: ProductKeys;
|
|
681
681
|
typeGuard: IsBooleanType;
|
|
682
682
|
};
|
|
683
|
+
platform_editor_table_display_mode_in_to_dom: {
|
|
684
|
+
defaultValue: boolean;
|
|
685
|
+
param: string;
|
|
686
|
+
productKeys?: ProductKeys;
|
|
687
|
+
typeGuard: IsBooleanType;
|
|
688
|
+
};
|
|
683
689
|
platform_editor_table_update_table_ref: {
|
|
684
690
|
defaultValue: boolean;
|
|
685
691
|
param: string;
|
|
@@ -827,12 +833,6 @@ export declare const editorExperimentsConfig: {
|
|
|
827
833
|
productKeys?: ProductKeys;
|
|
828
834
|
typeGuard: IsBooleanType;
|
|
829
835
|
};
|
|
830
|
-
platform_editor_paste_before_first_block_node: {
|
|
831
|
-
defaultValue: boolean;
|
|
832
|
-
param: string;
|
|
833
|
-
productKeys?: ProductKeys;
|
|
834
|
-
typeGuard: IsBooleanType;
|
|
835
|
-
};
|
|
836
836
|
platform_editor_ai_disable_bridge_without_ai: {
|
|
837
837
|
defaultValue: boolean;
|
|
838
838
|
param: string;
|
|
@@ -1038,6 +1038,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1038
1038
|
productKeys?: ProductKeys;
|
|
1039
1039
|
typeGuard: IsBooleanType;
|
|
1040
1040
|
};
|
|
1041
|
+
platform_safari_cursor_typeahead_fix: {
|
|
1042
|
+
defaultValue: boolean;
|
|
1043
|
+
param: string;
|
|
1044
|
+
productKeys?: ProductKeys;
|
|
1045
|
+
typeGuard: IsBooleanType;
|
|
1046
|
+
};
|
|
1041
1047
|
platform_editor_comment_editor_border_radius: {
|
|
1042
1048
|
defaultValue: boolean;
|
|
1043
1049
|
param: string;
|
|
@@ -680,6 +680,12 @@ export declare const editorExperimentsConfig: {
|
|
|
680
680
|
productKeys?: ProductKeys;
|
|
681
681
|
typeGuard: IsBooleanType;
|
|
682
682
|
};
|
|
683
|
+
platform_editor_table_display_mode_in_to_dom: {
|
|
684
|
+
defaultValue: boolean;
|
|
685
|
+
param: string;
|
|
686
|
+
productKeys?: ProductKeys;
|
|
687
|
+
typeGuard: IsBooleanType;
|
|
688
|
+
};
|
|
683
689
|
platform_editor_table_update_table_ref: {
|
|
684
690
|
defaultValue: boolean;
|
|
685
691
|
param: string;
|
|
@@ -827,12 +833,6 @@ export declare const editorExperimentsConfig: {
|
|
|
827
833
|
productKeys?: ProductKeys;
|
|
828
834
|
typeGuard: IsBooleanType;
|
|
829
835
|
};
|
|
830
|
-
platform_editor_paste_before_first_block_node: {
|
|
831
|
-
defaultValue: boolean;
|
|
832
|
-
param: string;
|
|
833
|
-
productKeys?: ProductKeys;
|
|
834
|
-
typeGuard: IsBooleanType;
|
|
835
|
-
};
|
|
836
836
|
platform_editor_ai_disable_bridge_without_ai: {
|
|
837
837
|
defaultValue: boolean;
|
|
838
838
|
param: string;
|
|
@@ -1038,6 +1038,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1038
1038
|
productKeys?: ProductKeys;
|
|
1039
1039
|
typeGuard: IsBooleanType;
|
|
1040
1040
|
};
|
|
1041
|
+
platform_safari_cursor_typeahead_fix: {
|
|
1042
|
+
defaultValue: boolean;
|
|
1043
|
+
param: string;
|
|
1044
|
+
productKeys?: ProductKeys;
|
|
1045
|
+
typeGuard: IsBooleanType;
|
|
1046
|
+
};
|
|
1041
1047
|
platform_editor_comment_editor_border_radius: {
|
|
1042
1048
|
defaultValue: boolean;
|
|
1043
1049
|
param: string;
|
package/package.json
CHANGED