@atlaskit/tmp-editor-statsig 13.6.1 → 13.7.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
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a4db0a2351f7d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4db0a2351f7d) -
|
|
8
|
+
[ux] ED-29502 Add plain text quick insert option to codeBlockPlugin
|
|
9
|
+
|
|
3
10
|
## 13.6.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1009,6 +1009,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1009
1009
|
param: 'isEnabled',
|
|
1010
1010
|
defaultValue: false
|
|
1011
1011
|
}),
|
|
1012
|
+
// Added 2025-10-07
|
|
1013
|
+
platform_editor_plain_text_support: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1014
|
+
productKeys: {
|
|
1015
|
+
jira: 'platform_editor_plain_text_support',
|
|
1016
|
+
confluence: 'platform_editor_plain_text_support'
|
|
1017
|
+
},
|
|
1018
|
+
param: 'isEnabled',
|
|
1019
|
+
defaultValue: false
|
|
1020
|
+
}),
|
|
1012
1021
|
// Added 2025-09-26
|
|
1013
1022
|
platform_editor_toolbar_aifc_patch_6: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1014
1023
|
productKeys: {
|
|
@@ -1003,6 +1003,15 @@ export const editorExperimentsConfig = {
|
|
|
1003
1003
|
param: 'isEnabled',
|
|
1004
1004
|
defaultValue: false
|
|
1005
1005
|
}),
|
|
1006
|
+
// Added 2025-10-07
|
|
1007
|
+
platform_editor_plain_text_support: createBooleanExperiment({
|
|
1008
|
+
productKeys: {
|
|
1009
|
+
jira: 'platform_editor_plain_text_support',
|
|
1010
|
+
confluence: 'platform_editor_plain_text_support'
|
|
1011
|
+
},
|
|
1012
|
+
param: 'isEnabled',
|
|
1013
|
+
defaultValue: false
|
|
1014
|
+
}),
|
|
1006
1015
|
// Added 2025-09-26
|
|
1007
1016
|
platform_editor_toolbar_aifc_patch_6: createBooleanExperiment({
|
|
1008
1017
|
productKeys: {
|
|
@@ -1003,6 +1003,15 @@ export var editorExperimentsConfig = {
|
|
|
1003
1003
|
param: 'isEnabled',
|
|
1004
1004
|
defaultValue: false
|
|
1005
1005
|
}),
|
|
1006
|
+
// Added 2025-10-07
|
|
1007
|
+
platform_editor_plain_text_support: createBooleanExperiment({
|
|
1008
|
+
productKeys: {
|
|
1009
|
+
jira: 'platform_editor_plain_text_support',
|
|
1010
|
+
confluence: 'platform_editor_plain_text_support'
|
|
1011
|
+
},
|
|
1012
|
+
param: 'isEnabled',
|
|
1013
|
+
defaultValue: false
|
|
1014
|
+
}),
|
|
1006
1015
|
// Added 2025-09-26
|
|
1007
1016
|
platform_editor_toolbar_aifc_patch_6: createBooleanExperiment({
|
|
1008
1017
|
productKeys: {
|
|
@@ -740,6 +740,12 @@ export declare const editorExperimentsConfig: {
|
|
|
740
740
|
param: string;
|
|
741
741
|
productKeys?: import("./types").ProductKeys;
|
|
742
742
|
};
|
|
743
|
+
platform_editor_plain_text_support: {
|
|
744
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
745
|
+
defaultValue: boolean;
|
|
746
|
+
param: string;
|
|
747
|
+
productKeys?: import("./types").ProductKeys;
|
|
748
|
+
};
|
|
743
749
|
platform_editor_toolbar_aifc_patch_6: {
|
|
744
750
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
745
751
|
defaultValue: boolean;
|
|
@@ -740,6 +740,12 @@ export declare const editorExperimentsConfig: {
|
|
|
740
740
|
param: string;
|
|
741
741
|
productKeys?: import("./types").ProductKeys;
|
|
742
742
|
};
|
|
743
|
+
platform_editor_plain_text_support: {
|
|
744
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
745
|
+
defaultValue: boolean;
|
|
746
|
+
param: string;
|
|
747
|
+
productKeys?: import("./types").ProductKeys;
|
|
748
|
+
};
|
|
743
749
|
platform_editor_toolbar_aifc_patch_6: {
|
|
744
750
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
745
751
|
defaultValue: boolean;
|
package/package.json
CHANGED