@atlaskit/tmp-editor-statsig 25.4.0 → 25.6.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 +19 -0
- package/dist/cjs/experiments-config.js +25 -8
- package/dist/es2019/experiments-config.js +25 -8
- package/dist/esm/experiments-config.js +25 -8
- package/dist/types/experiments-config.d.ts +18 -6
- package/dist/types-ts4.5/experiments-config.d.ts +18 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 25.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`60cf5a2b53f7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/60cf5a2b53f7b) -
|
|
8
|
+
fix sync block delete modal appearing when streaming sync block
|
|
9
|
+
- [`7ef3027df8198`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ef3027df8198) -
|
|
10
|
+
remove platform_editor_lovability_user_intent experiment
|
|
11
|
+
- [`0dc0791c6e745`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0dc0791c6e745) -
|
|
12
|
+
Fix additional CRLF issues with advanced codeblocks. Behind
|
|
13
|
+
platform_editor_fix_advanced_codeblocks_crlf_patch gate.
|
|
14
|
+
|
|
15
|
+
## 25.5.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`aac76ca1cde5b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aac76ca1cde5b) -
|
|
20
|
+
Fix hydration error with dates in task lists
|
|
21
|
+
|
|
3
22
|
## 25.4.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
|
@@ -491,6 +491,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
491
491
|
param: 'isEnabled',
|
|
492
492
|
defaultValue: false
|
|
493
493
|
}),
|
|
494
|
+
// Added 2026-02-17
|
|
495
|
+
platform_editor_aifc_sync_block_stream_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
496
|
+
productKeys: {
|
|
497
|
+
confluence: 'platform_editor_aifc_sync_block_stream_fix'
|
|
498
|
+
},
|
|
499
|
+
param: 'isEnabled',
|
|
500
|
+
defaultValue: false
|
|
501
|
+
}),
|
|
494
502
|
// Added 2025-05-07
|
|
495
503
|
platform_editor_ai_quickstart_command: (0, _experimentBuilders.createBooleanExperiment)({
|
|
496
504
|
productKeys: {
|
|
@@ -867,14 +875,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
867
875
|
param: 'isEnabled',
|
|
868
876
|
defaultValue: false
|
|
869
877
|
}),
|
|
870
|
-
// Added 2025-10-24
|
|
871
|
-
platform_editor_lovability_user_intent: (0, _experimentBuilders.createBooleanExperiment)({
|
|
872
|
-
productKeys: {
|
|
873
|
-
confluence: 'platform_editor_lovability_user_intent'
|
|
874
|
-
},
|
|
875
|
-
param: 'isEnabled',
|
|
876
|
-
defaultValue: false
|
|
877
|
-
}),
|
|
878
878
|
// Added 2025-09-23
|
|
879
879
|
cc_editor_ttvc_release_bundle_one: (0, _experimentBuilders.createBooleanExperiment)({
|
|
880
880
|
productKeys: {
|
|
@@ -1404,5 +1404,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1404
1404
|
},
|
|
1405
1405
|
param: 'isEnabled',
|
|
1406
1406
|
defaultValue: false
|
|
1407
|
+
}),
|
|
1408
|
+
// Added 2026-02-17
|
|
1409
|
+
confluence_frontend_fix_date_hydration_error: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1410
|
+
productKeys: {
|
|
1411
|
+
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1412
|
+
},
|
|
1413
|
+
param: 'isEnabled',
|
|
1414
|
+
defaultValue: false
|
|
1415
|
+
}),
|
|
1416
|
+
// Added 2026-02-18
|
|
1417
|
+
platform_editor_fix_advanced_codeblocks_crlf_patch: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1418
|
+
productKeys: {
|
|
1419
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
1420
|
+
jira: 'platform_editor_fix_advanced_codeblocks_crlf_patch'
|
|
1421
|
+
},
|
|
1422
|
+
param: 'isEnabled',
|
|
1423
|
+
defaultValue: false
|
|
1407
1424
|
})
|
|
1408
1425
|
};
|
|
@@ -485,6 +485,14 @@ export const editorExperimentsConfig = {
|
|
|
485
485
|
param: 'isEnabled',
|
|
486
486
|
defaultValue: false
|
|
487
487
|
}),
|
|
488
|
+
// Added 2026-02-17
|
|
489
|
+
platform_editor_aifc_sync_block_stream_fix: createBooleanExperiment({
|
|
490
|
+
productKeys: {
|
|
491
|
+
confluence: 'platform_editor_aifc_sync_block_stream_fix'
|
|
492
|
+
},
|
|
493
|
+
param: 'isEnabled',
|
|
494
|
+
defaultValue: false
|
|
495
|
+
}),
|
|
488
496
|
// Added 2025-05-07
|
|
489
497
|
platform_editor_ai_quickstart_command: createBooleanExperiment({
|
|
490
498
|
productKeys: {
|
|
@@ -861,14 +869,6 @@ export const editorExperimentsConfig = {
|
|
|
861
869
|
param: 'isEnabled',
|
|
862
870
|
defaultValue: false
|
|
863
871
|
}),
|
|
864
|
-
// Added 2025-10-24
|
|
865
|
-
platform_editor_lovability_user_intent: createBooleanExperiment({
|
|
866
|
-
productKeys: {
|
|
867
|
-
confluence: 'platform_editor_lovability_user_intent'
|
|
868
|
-
},
|
|
869
|
-
param: 'isEnabled',
|
|
870
|
-
defaultValue: false
|
|
871
|
-
}),
|
|
872
872
|
// Added 2025-09-23
|
|
873
873
|
cc_editor_ttvc_release_bundle_one: createBooleanExperiment({
|
|
874
874
|
productKeys: {
|
|
@@ -1398,5 +1398,22 @@ export const editorExperimentsConfig = {
|
|
|
1398
1398
|
},
|
|
1399
1399
|
param: 'isEnabled',
|
|
1400
1400
|
defaultValue: false
|
|
1401
|
+
}),
|
|
1402
|
+
// Added 2026-02-17
|
|
1403
|
+
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1404
|
+
productKeys: {
|
|
1405
|
+
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1406
|
+
},
|
|
1407
|
+
param: 'isEnabled',
|
|
1408
|
+
defaultValue: false
|
|
1409
|
+
}),
|
|
1410
|
+
// Added 2026-02-18
|
|
1411
|
+
platform_editor_fix_advanced_codeblocks_crlf_patch: createBooleanExperiment({
|
|
1412
|
+
productKeys: {
|
|
1413
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
1414
|
+
jira: 'platform_editor_fix_advanced_codeblocks_crlf_patch'
|
|
1415
|
+
},
|
|
1416
|
+
param: 'isEnabled',
|
|
1417
|
+
defaultValue: false
|
|
1401
1418
|
})
|
|
1402
1419
|
};
|
|
@@ -485,6 +485,14 @@ export var editorExperimentsConfig = {
|
|
|
485
485
|
param: 'isEnabled',
|
|
486
486
|
defaultValue: false
|
|
487
487
|
}),
|
|
488
|
+
// Added 2026-02-17
|
|
489
|
+
platform_editor_aifc_sync_block_stream_fix: createBooleanExperiment({
|
|
490
|
+
productKeys: {
|
|
491
|
+
confluence: 'platform_editor_aifc_sync_block_stream_fix'
|
|
492
|
+
},
|
|
493
|
+
param: 'isEnabled',
|
|
494
|
+
defaultValue: false
|
|
495
|
+
}),
|
|
488
496
|
// Added 2025-05-07
|
|
489
497
|
platform_editor_ai_quickstart_command: createBooleanExperiment({
|
|
490
498
|
productKeys: {
|
|
@@ -861,14 +869,6 @@ export var editorExperimentsConfig = {
|
|
|
861
869
|
param: 'isEnabled',
|
|
862
870
|
defaultValue: false
|
|
863
871
|
}),
|
|
864
|
-
// Added 2025-10-24
|
|
865
|
-
platform_editor_lovability_user_intent: createBooleanExperiment({
|
|
866
|
-
productKeys: {
|
|
867
|
-
confluence: 'platform_editor_lovability_user_intent'
|
|
868
|
-
},
|
|
869
|
-
param: 'isEnabled',
|
|
870
|
-
defaultValue: false
|
|
871
|
-
}),
|
|
872
872
|
// Added 2025-09-23
|
|
873
873
|
cc_editor_ttvc_release_bundle_one: createBooleanExperiment({
|
|
874
874
|
productKeys: {
|
|
@@ -1398,5 +1398,22 @@ export var editorExperimentsConfig = {
|
|
|
1398
1398
|
},
|
|
1399
1399
|
param: 'isEnabled',
|
|
1400
1400
|
defaultValue: false
|
|
1401
|
+
}),
|
|
1402
|
+
// Added 2026-02-17
|
|
1403
|
+
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1404
|
+
productKeys: {
|
|
1405
|
+
confluence: 'confluence_frontend_fix_date_hydration_error'
|
|
1406
|
+
},
|
|
1407
|
+
param: 'isEnabled',
|
|
1408
|
+
defaultValue: false
|
|
1409
|
+
}),
|
|
1410
|
+
// Added 2026-02-18
|
|
1411
|
+
platform_editor_fix_advanced_codeblocks_crlf_patch: createBooleanExperiment({
|
|
1412
|
+
productKeys: {
|
|
1413
|
+
confluence: 'platform_editor_fix_advanced_codeblocks_crlf_patch',
|
|
1414
|
+
jira: 'platform_editor_fix_advanced_codeblocks_crlf_patch'
|
|
1415
|
+
},
|
|
1416
|
+
param: 'isEnabled',
|
|
1417
|
+
defaultValue: false
|
|
1401
1418
|
})
|
|
1402
1419
|
};
|
|
@@ -463,12 +463,6 @@ export declare const editorExperimentsConfig: {
|
|
|
463
463
|
productKeys?: ProductKeys;
|
|
464
464
|
typeGuard: IsBooleanType;
|
|
465
465
|
};
|
|
466
|
-
platform_editor_lovability_user_intent: {
|
|
467
|
-
defaultValue: boolean;
|
|
468
|
-
param: string;
|
|
469
|
-
productKeys?: ProductKeys;
|
|
470
|
-
typeGuard: IsBooleanType;
|
|
471
|
-
};
|
|
472
466
|
platform_editor_media_error_analytics: {
|
|
473
467
|
defaultValue: boolean;
|
|
474
468
|
param: string;
|
|
@@ -803,6 +797,12 @@ export declare const editorExperimentsConfig: {
|
|
|
803
797
|
productKeys?: ProductKeys;
|
|
804
798
|
typeGuard: IsBooleanType;
|
|
805
799
|
};
|
|
800
|
+
platform_editor_aifc_sync_block_stream_fix: {
|
|
801
|
+
defaultValue: boolean;
|
|
802
|
+
param: string;
|
|
803
|
+
productKeys?: ProductKeys;
|
|
804
|
+
typeGuard: IsBooleanType;
|
|
805
|
+
};
|
|
806
806
|
platform_editor_localid_ime_composition_fix: {
|
|
807
807
|
defaultValue: boolean;
|
|
808
808
|
param: string;
|
|
@@ -1039,5 +1039,17 @@ export declare const editorExperimentsConfig: {
|
|
|
1039
1039
|
productKeys?: ProductKeys;
|
|
1040
1040
|
typeGuard: IsBooleanType;
|
|
1041
1041
|
};
|
|
1042
|
+
confluence_frontend_fix_date_hydration_error: {
|
|
1043
|
+
defaultValue: boolean;
|
|
1044
|
+
param: string;
|
|
1045
|
+
productKeys?: ProductKeys;
|
|
1046
|
+
typeGuard: IsBooleanType;
|
|
1047
|
+
};
|
|
1048
|
+
platform_editor_fix_advanced_codeblocks_crlf_patch: {
|
|
1049
|
+
defaultValue: boolean;
|
|
1050
|
+
param: string;
|
|
1051
|
+
productKeys?: ProductKeys;
|
|
1052
|
+
typeGuard: IsBooleanType;
|
|
1053
|
+
};
|
|
1042
1054
|
};
|
|
1043
1055
|
export {};
|
|
@@ -463,12 +463,6 @@ export declare const editorExperimentsConfig: {
|
|
|
463
463
|
productKeys?: ProductKeys;
|
|
464
464
|
typeGuard: IsBooleanType;
|
|
465
465
|
};
|
|
466
|
-
platform_editor_lovability_user_intent: {
|
|
467
|
-
defaultValue: boolean;
|
|
468
|
-
param: string;
|
|
469
|
-
productKeys?: ProductKeys;
|
|
470
|
-
typeGuard: IsBooleanType;
|
|
471
|
-
};
|
|
472
466
|
platform_editor_media_error_analytics: {
|
|
473
467
|
defaultValue: boolean;
|
|
474
468
|
param: string;
|
|
@@ -803,6 +797,12 @@ export declare const editorExperimentsConfig: {
|
|
|
803
797
|
productKeys?: ProductKeys;
|
|
804
798
|
typeGuard: IsBooleanType;
|
|
805
799
|
};
|
|
800
|
+
platform_editor_aifc_sync_block_stream_fix: {
|
|
801
|
+
defaultValue: boolean;
|
|
802
|
+
param: string;
|
|
803
|
+
productKeys?: ProductKeys;
|
|
804
|
+
typeGuard: IsBooleanType;
|
|
805
|
+
};
|
|
806
806
|
platform_editor_localid_ime_composition_fix: {
|
|
807
807
|
defaultValue: boolean;
|
|
808
808
|
param: string;
|
|
@@ -1039,5 +1039,17 @@ export declare const editorExperimentsConfig: {
|
|
|
1039
1039
|
productKeys?: ProductKeys;
|
|
1040
1040
|
typeGuard: IsBooleanType;
|
|
1041
1041
|
};
|
|
1042
|
+
confluence_frontend_fix_date_hydration_error: {
|
|
1043
|
+
defaultValue: boolean;
|
|
1044
|
+
param: string;
|
|
1045
|
+
productKeys?: ProductKeys;
|
|
1046
|
+
typeGuard: IsBooleanType;
|
|
1047
|
+
};
|
|
1048
|
+
platform_editor_fix_advanced_codeblocks_crlf_patch: {
|
|
1049
|
+
defaultValue: boolean;
|
|
1050
|
+
param: string;
|
|
1051
|
+
productKeys?: ProductKeys;
|
|
1052
|
+
typeGuard: IsBooleanType;
|
|
1053
|
+
};
|
|
1042
1054
|
};
|
|
1043
1055
|
export {};
|
package/package.json
CHANGED