@atlaskit/tmp-editor-statsig 12.6.0 → 12.8.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 +16 -0
- package/dist/cjs/experiments-config.js +18 -0
- package/dist/es2019/experiments-config.js +18 -0
- package/dist/esm/experiments-config.js +18 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c0113eeccb2df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0113eeccb2df) -
|
|
8
|
+
[ux] ED-29120 add a new config option for default editor preset
|
|
9
|
+
(`toolbar.enableNewToolbarExperience`) which allows the new toolbar to be disabled. This is needed
|
|
10
|
+
for editors that can't be excluded at the experiment level.
|
|
11
|
+
|
|
12
|
+
## 12.7.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [`0812ff5bd7bd1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0812ff5bd7bd1) -
|
|
17
|
+
Dont render menu sections in live view
|
|
18
|
+
|
|
3
19
|
## 12.6.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -617,6 +617,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
617
617
|
param: 'isEnabled',
|
|
618
618
|
defaultValue: false
|
|
619
619
|
}),
|
|
620
|
+
//Added 2025-07-16
|
|
621
|
+
platform_editor_toolbar_aifc_patch_3: (0, _experimentBuilders.createBooleanExperiment)({
|
|
622
|
+
productKeys: {
|
|
623
|
+
jira: 'platform_editor_toolbar_aifc_patch_3',
|
|
624
|
+
confluence: 'platform_editor_toolbar_aifc_patch_3'
|
|
625
|
+
},
|
|
626
|
+
param: 'isEnabled',
|
|
627
|
+
defaultValue: false
|
|
628
|
+
}),
|
|
620
629
|
//Added 2025-08-13
|
|
621
630
|
platform_editor_ai_aifc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
622
631
|
productKeys: {
|
|
@@ -788,6 +797,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
788
797
|
param: 'isEnabled',
|
|
789
798
|
defaultValue: false
|
|
790
799
|
}),
|
|
800
|
+
// Added 2025-08-29
|
|
801
|
+
platform_editor_toolbar_aifc_exp_code_toggle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
802
|
+
productKeys: {
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
805
|
+
},
|
|
806
|
+
param: 'isEnabled',
|
|
807
|
+
defaultValue: false
|
|
808
|
+
}),
|
|
791
809
|
// Added 2025-08-27
|
|
792
810
|
platform_editor_toolbar_support_custom_components: (0, _experimentBuilders.createBooleanExperiment)({
|
|
793
811
|
productKeys: {
|
|
@@ -611,6 +611,15 @@ export const editorExperimentsConfig = {
|
|
|
611
611
|
param: 'isEnabled',
|
|
612
612
|
defaultValue: false
|
|
613
613
|
}),
|
|
614
|
+
//Added 2025-07-16
|
|
615
|
+
platform_editor_toolbar_aifc_patch_3: createBooleanExperiment({
|
|
616
|
+
productKeys: {
|
|
617
|
+
jira: 'platform_editor_toolbar_aifc_patch_3',
|
|
618
|
+
confluence: 'platform_editor_toolbar_aifc_patch_3'
|
|
619
|
+
},
|
|
620
|
+
param: 'isEnabled',
|
|
621
|
+
defaultValue: false
|
|
622
|
+
}),
|
|
614
623
|
//Added 2025-08-13
|
|
615
624
|
platform_editor_ai_aifc: createBooleanExperiment({
|
|
616
625
|
productKeys: {
|
|
@@ -782,6 +791,15 @@ export const editorExperimentsConfig = {
|
|
|
782
791
|
param: 'isEnabled',
|
|
783
792
|
defaultValue: false
|
|
784
793
|
}),
|
|
794
|
+
// Added 2025-08-29
|
|
795
|
+
platform_editor_toolbar_aifc_exp_code_toggle: createBooleanExperiment({
|
|
796
|
+
productKeys: {
|
|
797
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
798
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
799
|
+
},
|
|
800
|
+
param: 'isEnabled',
|
|
801
|
+
defaultValue: false
|
|
802
|
+
}),
|
|
785
803
|
// Added 2025-08-27
|
|
786
804
|
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
787
805
|
productKeys: {
|
|
@@ -611,6 +611,15 @@ export var editorExperimentsConfig = {
|
|
|
611
611
|
param: 'isEnabled',
|
|
612
612
|
defaultValue: false
|
|
613
613
|
}),
|
|
614
|
+
//Added 2025-07-16
|
|
615
|
+
platform_editor_toolbar_aifc_patch_3: createBooleanExperiment({
|
|
616
|
+
productKeys: {
|
|
617
|
+
jira: 'platform_editor_toolbar_aifc_patch_3',
|
|
618
|
+
confluence: 'platform_editor_toolbar_aifc_patch_3'
|
|
619
|
+
},
|
|
620
|
+
param: 'isEnabled',
|
|
621
|
+
defaultValue: false
|
|
622
|
+
}),
|
|
614
623
|
//Added 2025-08-13
|
|
615
624
|
platform_editor_ai_aifc: createBooleanExperiment({
|
|
616
625
|
productKeys: {
|
|
@@ -782,6 +791,15 @@ export var editorExperimentsConfig = {
|
|
|
782
791
|
param: 'isEnabled',
|
|
783
792
|
defaultValue: false
|
|
784
793
|
}),
|
|
794
|
+
// Added 2025-08-29
|
|
795
|
+
platform_editor_toolbar_aifc_exp_code_toggle: createBooleanExperiment({
|
|
796
|
+
productKeys: {
|
|
797
|
+
confluence: 'platform_editor_toolbar_aifc_exp_code_toggle',
|
|
798
|
+
jira: 'platform_editor_toolbar_aifc_exp_code_toggle'
|
|
799
|
+
},
|
|
800
|
+
param: 'isEnabled',
|
|
801
|
+
defaultValue: false
|
|
802
|
+
}),
|
|
785
803
|
// Added 2025-08-27
|
|
786
804
|
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
787
805
|
productKeys: {
|
|
@@ -456,6 +456,12 @@ export declare const editorExperimentsConfig: {
|
|
|
456
456
|
param: string;
|
|
457
457
|
productKeys?: import("./types").ProductKeys;
|
|
458
458
|
};
|
|
459
|
+
platform_editor_toolbar_aifc_patch_3: {
|
|
460
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
461
|
+
defaultValue: boolean;
|
|
462
|
+
param: string;
|
|
463
|
+
productKeys?: import("./types").ProductKeys;
|
|
464
|
+
};
|
|
459
465
|
platform_editor_ai_aifc: {
|
|
460
466
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
461
467
|
defaultValue: boolean;
|
|
@@ -582,6 +588,12 @@ export declare const editorExperimentsConfig: {
|
|
|
582
588
|
param: string;
|
|
583
589
|
productKeys?: import("./types").ProductKeys;
|
|
584
590
|
};
|
|
591
|
+
platform_editor_toolbar_aifc_exp_code_toggle: {
|
|
592
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
|
+
defaultValue: boolean;
|
|
594
|
+
param: string;
|
|
595
|
+
productKeys?: import("./types").ProductKeys;
|
|
596
|
+
};
|
|
585
597
|
platform_editor_toolbar_support_custom_components: {
|
|
586
598
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
587
599
|
defaultValue: boolean;
|
|
@@ -456,6 +456,12 @@ export declare const editorExperimentsConfig: {
|
|
|
456
456
|
param: string;
|
|
457
457
|
productKeys?: import("./types").ProductKeys;
|
|
458
458
|
};
|
|
459
|
+
platform_editor_toolbar_aifc_patch_3: {
|
|
460
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
461
|
+
defaultValue: boolean;
|
|
462
|
+
param: string;
|
|
463
|
+
productKeys?: import("./types").ProductKeys;
|
|
464
|
+
};
|
|
459
465
|
platform_editor_ai_aifc: {
|
|
460
466
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
461
467
|
defaultValue: boolean;
|
|
@@ -582,6 +588,12 @@ export declare const editorExperimentsConfig: {
|
|
|
582
588
|
param: string;
|
|
583
589
|
productKeys?: import("./types").ProductKeys;
|
|
584
590
|
};
|
|
591
|
+
platform_editor_toolbar_aifc_exp_code_toggle: {
|
|
592
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
593
|
+
defaultValue: boolean;
|
|
594
|
+
param: string;
|
|
595
|
+
productKeys?: import("./types").ProductKeys;
|
|
596
|
+
};
|
|
585
597
|
platform_editor_toolbar_support_custom_components: {
|
|
586
598
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
587
599
|
defaultValue: boolean;
|
package/package.json
CHANGED