@atlaskit/tmp-editor-statsig 11.6.0 → 11.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
|
+
## 11.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c29118e6ca79d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c29118e6ca79d) -
|
|
8
|
+
ED-28986 create initial version of synced blocks
|
|
9
|
+
|
|
3
10
|
## 11.6.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -729,6 +729,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
729
729
|
param: 'isEnabled',
|
|
730
730
|
defaultValue: false
|
|
731
731
|
}),
|
|
732
|
+
// Added 2025-08-10
|
|
733
|
+
platform_synced_block: (0, _experimentBuilders.createBooleanExperiment)({
|
|
734
|
+
productKeys: {
|
|
735
|
+
confluence: 'platform_synced_block'
|
|
736
|
+
},
|
|
737
|
+
param: 'isEnabled',
|
|
738
|
+
defaultValue: false
|
|
739
|
+
}),
|
|
732
740
|
// Added 2025-08-06
|
|
733
741
|
cc_improve_writing_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
|
|
734
742
|
productKeys: {
|
|
@@ -723,6 +723,14 @@ export const editorExperimentsConfig = {
|
|
|
723
723
|
param: 'isEnabled',
|
|
724
724
|
defaultValue: false
|
|
725
725
|
}),
|
|
726
|
+
// Added 2025-08-10
|
|
727
|
+
platform_synced_block: createBooleanExperiment({
|
|
728
|
+
productKeys: {
|
|
729
|
+
confluence: 'platform_synced_block'
|
|
730
|
+
},
|
|
731
|
+
param: 'isEnabled',
|
|
732
|
+
defaultValue: false
|
|
733
|
+
}),
|
|
726
734
|
// Added 2025-08-06
|
|
727
735
|
cc_improve_writing_on_paste: createBooleanExperiment({
|
|
728
736
|
productKeys: {
|
|
@@ -723,6 +723,14 @@ export var editorExperimentsConfig = {
|
|
|
723
723
|
param: 'isEnabled',
|
|
724
724
|
defaultValue: false
|
|
725
725
|
}),
|
|
726
|
+
// Added 2025-08-10
|
|
727
|
+
platform_synced_block: createBooleanExperiment({
|
|
728
|
+
productKeys: {
|
|
729
|
+
confluence: 'platform_synced_block'
|
|
730
|
+
},
|
|
731
|
+
param: 'isEnabled',
|
|
732
|
+
defaultValue: false
|
|
733
|
+
}),
|
|
726
734
|
// Added 2025-08-06
|
|
727
735
|
cc_improve_writing_on_paste: createBooleanExperiment({
|
|
728
736
|
productKeys: {
|
|
@@ -539,6 +539,12 @@ export declare const editorExperimentsConfig: {
|
|
|
539
539
|
param: string;
|
|
540
540
|
productKeys?: import("./types").ProductKeys;
|
|
541
541
|
};
|
|
542
|
+
platform_synced_block: {
|
|
543
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
544
|
+
defaultValue: boolean;
|
|
545
|
+
param: string;
|
|
546
|
+
productKeys?: import("./types").ProductKeys;
|
|
547
|
+
};
|
|
542
548
|
cc_improve_writing_on_paste: {
|
|
543
549
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
544
550
|
defaultValue: boolean;
|
|
@@ -539,6 +539,12 @@ export declare const editorExperimentsConfig: {
|
|
|
539
539
|
param: string;
|
|
540
540
|
productKeys?: import("./types").ProductKeys;
|
|
541
541
|
};
|
|
542
|
+
platform_synced_block: {
|
|
543
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
544
|
+
defaultValue: boolean;
|
|
545
|
+
param: string;
|
|
546
|
+
productKeys?: import("./types").ProductKeys;
|
|
547
|
+
};
|
|
542
548
|
cc_improve_writing_on_paste: {
|
|
543
549
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
544
550
|
defaultValue: boolean;
|
package/package.json
CHANGED