@atlaskit/tmp-editor-statsig 11.8.0 → 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 +21 -0
- package/dist/cjs/experiments-config.js +26 -0
- package/dist/es2019/experiments-config.js +26 -0
- package/dist/esm/experiments-config.js +26 -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 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
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
|
+
|
|
17
|
+
## 11.8.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [`1eba43a7b680d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1eba43a7b680d) -
|
|
22
|
+
ED-29000 - Add platform_editor_toolbar_aifc_patch_1 experiment
|
|
23
|
+
|
|
3
24
|
## 11.8.0
|
|
4
25
|
|
|
5
26
|
### Minor 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: {
|
|
@@ -785,5 +793,23 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
785
793
|
},
|
|
786
794
|
param: 'isEnabled',
|
|
787
795
|
defaultValue: false
|
|
796
|
+
}),
|
|
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
|
|
807
|
+
platform_editor_toolbar_aifc_patch_1: (0, _experimentBuilders.createBooleanExperiment)({
|
|
808
|
+
productKeys: {
|
|
809
|
+
confluence: 'platform_editor_toolbar_aifc_patch_1',
|
|
810
|
+
jira: 'platform_editor_toolbar_aifc_patch_1'
|
|
811
|
+
},
|
|
812
|
+
param: 'isEnabled',
|
|
813
|
+
defaultValue: false
|
|
788
814
|
})
|
|
789
815
|
};
|
|
@@ -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: {
|
|
@@ -779,5 +787,23 @@ export const editorExperimentsConfig = {
|
|
|
779
787
|
},
|
|
780
788
|
param: 'isEnabled',
|
|
781
789
|
defaultValue: false
|
|
790
|
+
}),
|
|
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
|
|
801
|
+
platform_editor_toolbar_aifc_patch_1: createBooleanExperiment({
|
|
802
|
+
productKeys: {
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_patch_1',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_patch_1'
|
|
805
|
+
},
|
|
806
|
+
param: 'isEnabled',
|
|
807
|
+
defaultValue: false
|
|
782
808
|
})
|
|
783
809
|
};
|
|
@@ -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: {
|
|
@@ -779,5 +787,23 @@ export var editorExperimentsConfig = {
|
|
|
779
787
|
},
|
|
780
788
|
param: 'isEnabled',
|
|
781
789
|
defaultValue: false
|
|
790
|
+
}),
|
|
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
|
|
801
|
+
platform_editor_toolbar_aifc_patch_1: createBooleanExperiment({
|
|
802
|
+
productKeys: {
|
|
803
|
+
confluence: 'platform_editor_toolbar_aifc_patch_1',
|
|
804
|
+
jira: 'platform_editor_toolbar_aifc_patch_1'
|
|
805
|
+
},
|
|
806
|
+
param: 'isEnabled',
|
|
807
|
+
defaultValue: false
|
|
782
808
|
})
|
|
783
809
|
};
|
|
@@ -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,4 +587,16 @@ 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
|
+
};
|
|
596
|
+
platform_editor_toolbar_aifc_patch_1: {
|
|
597
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
598
|
+
defaultValue: boolean;
|
|
599
|
+
param: string;
|
|
600
|
+
productKeys?: import("./types").ProductKeys;
|
|
601
|
+
};
|
|
584
602
|
};
|
|
@@ -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,4 +587,16 @@ 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
|
+
};
|
|
596
|
+
platform_editor_toolbar_aifc_patch_1: {
|
|
597
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
598
|
+
defaultValue: boolean;
|
|
599
|
+
param: string;
|
|
600
|
+
productKeys?: import("./types").ProductKeys;
|
|
601
|
+
};
|
|
584
602
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.9.0",
|
|
4
4
|
"description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,15 +31,6 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"atlaskit:src": "src/index.ts",
|
|
34
|
-
"af:exports": {
|
|
35
|
-
"./setup": "./src/setup.ts",
|
|
36
|
-
"./experiments": "./src/experiments.ts",
|
|
37
|
-
"./experiments-config": "./src/experiments-config.ts",
|
|
38
|
-
"./editor-experiments-test-utils": "./src/editor-experiments-test-utils.ts",
|
|
39
|
-
"./expVal": "./src/expVal.ts",
|
|
40
|
-
"./exp-val-equals": "./src/exp-val-equals.ts",
|
|
41
|
-
"./exp-val-equals-no-exposure": "./src/exp-val-equals-no-exposure.ts"
|
|
42
|
-
},
|
|
43
34
|
"dependencies": {
|
|
44
35
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
45
36
|
"@babel/runtime": "^7.0.0"
|