@atlaskit/tmp-editor-statsig 13.29.0 → 13.30.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.30.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`236d9310035ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/236d9310035ae) -
|
|
8
|
+
[https://product-fabric.atlassian.net/browse/ED-29205](ED-29205) - use native DOM element for
|
|
9
|
+
editor expand icon
|
|
10
|
+
|
|
3
11
|
## 13.29.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -768,6 +768,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
768
768
|
param: 'isEnabled',
|
|
769
769
|
defaultValue: false
|
|
770
770
|
}),
|
|
771
|
+
platform_editor_native_expand_button: (0, _experimentBuilders.createBooleanExperiment)({
|
|
772
|
+
productKeys: {
|
|
773
|
+
confluence: 'platform_editor_native_expand_button'
|
|
774
|
+
},
|
|
775
|
+
param: 'isEnabled',
|
|
776
|
+
defaultValue: false
|
|
777
|
+
}),
|
|
771
778
|
// Added 2025-08-28
|
|
772
779
|
editor_enable_image_alignment_in_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
773
780
|
productKeys: {
|
|
@@ -762,6 +762,13 @@ export const editorExperimentsConfig = {
|
|
|
762
762
|
param: 'isEnabled',
|
|
763
763
|
defaultValue: false
|
|
764
764
|
}),
|
|
765
|
+
platform_editor_native_expand_button: createBooleanExperiment({
|
|
766
|
+
productKeys: {
|
|
767
|
+
confluence: 'platform_editor_native_expand_button'
|
|
768
|
+
},
|
|
769
|
+
param: 'isEnabled',
|
|
770
|
+
defaultValue: false
|
|
771
|
+
}),
|
|
765
772
|
// Added 2025-08-28
|
|
766
773
|
editor_enable_image_alignment_in_expand: createBooleanExperiment({
|
|
767
774
|
productKeys: {
|
|
@@ -762,6 +762,13 @@ export var editorExperimentsConfig = {
|
|
|
762
762
|
param: 'isEnabled',
|
|
763
763
|
defaultValue: false
|
|
764
764
|
}),
|
|
765
|
+
platform_editor_native_expand_button: createBooleanExperiment({
|
|
766
|
+
productKeys: {
|
|
767
|
+
confluence: 'platform_editor_native_expand_button'
|
|
768
|
+
},
|
|
769
|
+
param: 'isEnabled',
|
|
770
|
+
defaultValue: false
|
|
771
|
+
}),
|
|
765
772
|
// Added 2025-08-28
|
|
766
773
|
editor_enable_image_alignment_in_expand: createBooleanExperiment({
|
|
767
774
|
productKeys: {
|
|
@@ -561,6 +561,12 @@ export declare const editorExperimentsConfig: {
|
|
|
561
561
|
param: string;
|
|
562
562
|
productKeys?: import("./types").ProductKeys;
|
|
563
563
|
};
|
|
564
|
+
platform_editor_native_expand_button: {
|
|
565
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
566
|
+
defaultValue: boolean;
|
|
567
|
+
param: string;
|
|
568
|
+
productKeys?: import("./types").ProductKeys;
|
|
569
|
+
};
|
|
564
570
|
editor_enable_image_alignment_in_expand: {
|
|
565
571
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
566
572
|
defaultValue: boolean;
|
|
@@ -561,6 +561,12 @@ export declare const editorExperimentsConfig: {
|
|
|
561
561
|
param: string;
|
|
562
562
|
productKeys?: import("./types").ProductKeys;
|
|
563
563
|
};
|
|
564
|
+
platform_editor_native_expand_button: {
|
|
565
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
566
|
+
defaultValue: boolean;
|
|
567
|
+
param: string;
|
|
568
|
+
productKeys?: import("./types").ProductKeys;
|
|
569
|
+
};
|
|
564
570
|
editor_enable_image_alignment_in_expand: {
|
|
565
571
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
566
572
|
defaultValue: boolean;
|
package/package.json
CHANGED