@atlaskit/tmp-editor-statsig 11.8.1 → 11.9.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/experiments-config.js +19 -1
- package/dist/es2019/experiments-config.js +19 -1
- package/dist/esm/experiments-config.js +19 -1
- 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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 11.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`55a7e20e3fd4c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/55a7e20e3fd4c) -
|
|
8
|
+
[ux] ED-29050 add support for rendering custom primary toolbar components to new toolbar
|
|
9
|
+
- [`4ef462fecb522`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4ef462fecb522) -
|
|
10
|
+
[ux] [ED-29003] Register loom component as a dropdown menu item in overflow menu
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`bf3ab0c552ba7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bf3ab0c552ba7) -
|
|
15
|
+
[ux] ED-29000 Add keyboard navigation to colour palette and minor UI fixes
|
|
16
|
+
|
|
3
17
|
## 11.8.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -769,6 +769,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
769
769
|
param: 'isEnabled',
|
|
770
770
|
defaultValue: false
|
|
771
771
|
}),
|
|
772
|
+
// Added 2025-08-27
|
|
773
|
+
platform_editor_toolbar_support_custom_components: (0, _experimentBuilders.createBooleanExperiment)({
|
|
774
|
+
productKeys: {
|
|
775
|
+
confluence: 'platform_editor_toolbar_support_custom_components'
|
|
776
|
+
},
|
|
777
|
+
param: 'isEnabled',
|
|
778
|
+
defaultValue: false
|
|
779
|
+
}),
|
|
772
780
|
// Added 2025-08-21
|
|
773
781
|
platform_editor_paste_rich_text_bugfix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
774
782
|
productKeys: {
|
|
@@ -787,9 +795,19 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
787
795
|
defaultValue: false
|
|
788
796
|
}),
|
|
789
797
|
// Added 2025-08-26
|
|
798
|
+
platform_editor_toolbar_migrate_loom: (0, _experimentBuilders.createBooleanExperiment)({
|
|
799
|
+
productKeys: {
|
|
800
|
+
confluence: 'platform_editor_toolbar_migrate_loom',
|
|
801
|
+
jira: 'platform_editor_toolbar_migrate_loom'
|
|
802
|
+
},
|
|
803
|
+
param: 'isEnabled',
|
|
804
|
+
defaultValue: false
|
|
805
|
+
}),
|
|
806
|
+
// Added 2025-08-26
|
|
790
807
|
platform_editor_toolbar_aifc_patch_1: (0, _experimentBuilders.createBooleanExperiment)({
|
|
791
808
|
productKeys: {
|
|
792
|
-
confluence: 'platform_editor_toolbar_aifc_patch_1'
|
|
809
|
+
confluence: 'platform_editor_toolbar_aifc_patch_1',
|
|
810
|
+
jira: 'platform_editor_toolbar_aifc_patch_1'
|
|
793
811
|
},
|
|
794
812
|
param: 'isEnabled',
|
|
795
813
|
defaultValue: false
|
|
@@ -763,6 +763,14 @@ export const editorExperimentsConfig = {
|
|
|
763
763
|
param: 'isEnabled',
|
|
764
764
|
defaultValue: false
|
|
765
765
|
}),
|
|
766
|
+
// Added 2025-08-27
|
|
767
|
+
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
768
|
+
productKeys: {
|
|
769
|
+
confluence: 'platform_editor_toolbar_support_custom_components'
|
|
770
|
+
},
|
|
771
|
+
param: 'isEnabled',
|
|
772
|
+
defaultValue: false
|
|
773
|
+
}),
|
|
766
774
|
// Added 2025-08-21
|
|
767
775
|
platform_editor_paste_rich_text_bugfix: createBooleanExperiment({
|
|
768
776
|
productKeys: {
|
|
@@ -781,9 +789,19 @@ export const editorExperimentsConfig = {
|
|
|
781
789
|
defaultValue: false
|
|
782
790
|
}),
|
|
783
791
|
// Added 2025-08-26
|
|
792
|
+
platform_editor_toolbar_migrate_loom: createBooleanExperiment({
|
|
793
|
+
productKeys: {
|
|
794
|
+
confluence: 'platform_editor_toolbar_migrate_loom',
|
|
795
|
+
jira: 'platform_editor_toolbar_migrate_loom'
|
|
796
|
+
},
|
|
797
|
+
param: 'isEnabled',
|
|
798
|
+
defaultValue: false
|
|
799
|
+
}),
|
|
800
|
+
// Added 2025-08-26
|
|
784
801
|
platform_editor_toolbar_aifc_patch_1: createBooleanExperiment({
|
|
785
802
|
productKeys: {
|
|
786
|
-
confluence: 'platform_editor_toolbar_aifc_patch_1'
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_patch_1',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_patch_1'
|
|
787
805
|
},
|
|
788
806
|
param: 'isEnabled',
|
|
789
807
|
defaultValue: false
|
|
@@ -763,6 +763,14 @@ export var editorExperimentsConfig = {
|
|
|
763
763
|
param: 'isEnabled',
|
|
764
764
|
defaultValue: false
|
|
765
765
|
}),
|
|
766
|
+
// Added 2025-08-27
|
|
767
|
+
platform_editor_toolbar_support_custom_components: createBooleanExperiment({
|
|
768
|
+
productKeys: {
|
|
769
|
+
confluence: 'platform_editor_toolbar_support_custom_components'
|
|
770
|
+
},
|
|
771
|
+
param: 'isEnabled',
|
|
772
|
+
defaultValue: false
|
|
773
|
+
}),
|
|
766
774
|
// Added 2025-08-21
|
|
767
775
|
platform_editor_paste_rich_text_bugfix: createBooleanExperiment({
|
|
768
776
|
productKeys: {
|
|
@@ -781,9 +789,19 @@ export var editorExperimentsConfig = {
|
|
|
781
789
|
defaultValue: false
|
|
782
790
|
}),
|
|
783
791
|
// Added 2025-08-26
|
|
792
|
+
platform_editor_toolbar_migrate_loom: createBooleanExperiment({
|
|
793
|
+
productKeys: {
|
|
794
|
+
confluence: 'platform_editor_toolbar_migrate_loom',
|
|
795
|
+
jira: 'platform_editor_toolbar_migrate_loom'
|
|
796
|
+
},
|
|
797
|
+
param: 'isEnabled',
|
|
798
|
+
defaultValue: false
|
|
799
|
+
}),
|
|
800
|
+
// Added 2025-08-26
|
|
784
801
|
platform_editor_toolbar_aifc_patch_1: createBooleanExperiment({
|
|
785
802
|
productKeys: {
|
|
786
|
-
confluence: 'platform_editor_toolbar_aifc_patch_1'
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_patch_1',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_patch_1'
|
|
787
805
|
},
|
|
788
806
|
param: 'isEnabled',
|
|
789
807
|
defaultValue: false
|
|
@@ -569,6 +569,12 @@ export declare const editorExperimentsConfig: {
|
|
|
569
569
|
param: string;
|
|
570
570
|
productKeys?: import("./types").ProductKeys;
|
|
571
571
|
};
|
|
572
|
+
platform_editor_toolbar_support_custom_components: {
|
|
573
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
574
|
+
defaultValue: boolean;
|
|
575
|
+
param: string;
|
|
576
|
+
productKeys?: import("./types").ProductKeys;
|
|
577
|
+
};
|
|
572
578
|
platform_editor_paste_rich_text_bugfix: {
|
|
573
579
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
574
580
|
defaultValue: boolean;
|
|
@@ -581,6 +587,12 @@ export declare const editorExperimentsConfig: {
|
|
|
581
587
|
param: string;
|
|
582
588
|
productKeys?: import("./types").ProductKeys;
|
|
583
589
|
};
|
|
590
|
+
platform_editor_toolbar_migrate_loom: {
|
|
591
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
592
|
+
defaultValue: boolean;
|
|
593
|
+
param: string;
|
|
594
|
+
productKeys?: import("./types").ProductKeys;
|
|
595
|
+
};
|
|
584
596
|
platform_editor_toolbar_aifc_patch_1: {
|
|
585
597
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
586
598
|
defaultValue: boolean;
|
|
@@ -569,6 +569,12 @@ export declare const editorExperimentsConfig: {
|
|
|
569
569
|
param: string;
|
|
570
570
|
productKeys?: import("./types").ProductKeys;
|
|
571
571
|
};
|
|
572
|
+
platform_editor_toolbar_support_custom_components: {
|
|
573
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
574
|
+
defaultValue: boolean;
|
|
575
|
+
param: string;
|
|
576
|
+
productKeys?: import("./types").ProductKeys;
|
|
577
|
+
};
|
|
572
578
|
platform_editor_paste_rich_text_bugfix: {
|
|
573
579
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
574
580
|
defaultValue: boolean;
|
|
@@ -581,6 +587,12 @@ export declare const editorExperimentsConfig: {
|
|
|
581
587
|
param: string;
|
|
582
588
|
productKeys?: import("./types").ProductKeys;
|
|
583
589
|
};
|
|
590
|
+
platform_editor_toolbar_migrate_loom: {
|
|
591
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
592
|
+
defaultValue: boolean;
|
|
593
|
+
param: string;
|
|
594
|
+
productKeys?: import("./types").ProductKeys;
|
|
595
|
+
};
|
|
584
596
|
platform_editor_toolbar_aifc_patch_1: {
|
|
585
597
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
586
598
|
defaultValue: boolean;
|
package/package.json
CHANGED