@atlaskit/tmp-editor-statsig 14.1.2 → 14.1.3
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
|
+
## 14.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5d8ba7e59f96f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d8ba7e59f96f) -
|
|
8
|
+
simplify the media single resizer classnames
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 14.1.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -96,6 +96,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
96
96
|
values: ['control', 'variant1', 'variant2', 'variant3'],
|
|
97
97
|
defaultValue: 'control'
|
|
98
98
|
}),
|
|
99
|
+
// Added 2025-11-26
|
|
100
|
+
platform_editor_resizer_styles_cleanup: (0, _experimentBuilders.createBooleanExperiment)({
|
|
101
|
+
productKeys: {
|
|
102
|
+
confluence: 'platform_editor_resizer_styles_cleanup'
|
|
103
|
+
},
|
|
104
|
+
param: 'isEnabled',
|
|
105
|
+
defaultValue: false
|
|
106
|
+
}),
|
|
99
107
|
// Added 2025-11-12
|
|
100
108
|
platform_editor_media_vc_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
101
109
|
productKeys: {
|
|
@@ -90,6 +90,14 @@ export const editorExperimentsConfig = {
|
|
|
90
90
|
values: ['control', 'variant1', 'variant2', 'variant3'],
|
|
91
91
|
defaultValue: 'control'
|
|
92
92
|
}),
|
|
93
|
+
// Added 2025-11-26
|
|
94
|
+
platform_editor_resizer_styles_cleanup: createBooleanExperiment({
|
|
95
|
+
productKeys: {
|
|
96
|
+
confluence: 'platform_editor_resizer_styles_cleanup'
|
|
97
|
+
},
|
|
98
|
+
param: 'isEnabled',
|
|
99
|
+
defaultValue: false
|
|
100
|
+
}),
|
|
93
101
|
// Added 2025-11-12
|
|
94
102
|
platform_editor_media_vc_fixes: createBooleanExperiment({
|
|
95
103
|
productKeys: {
|
|
@@ -90,6 +90,14 @@ export var editorExperimentsConfig = {
|
|
|
90
90
|
values: ['control', 'variant1', 'variant2', 'variant3'],
|
|
91
91
|
defaultValue: 'control'
|
|
92
92
|
}),
|
|
93
|
+
// Added 2025-11-26
|
|
94
|
+
platform_editor_resizer_styles_cleanup: createBooleanExperiment({
|
|
95
|
+
productKeys: {
|
|
96
|
+
confluence: 'platform_editor_resizer_styles_cleanup'
|
|
97
|
+
},
|
|
98
|
+
param: 'isEnabled',
|
|
99
|
+
defaultValue: false
|
|
100
|
+
}),
|
|
93
101
|
// Added 2025-11-12
|
|
94
102
|
platform_editor_media_vc_fixes: createBooleanExperiment({
|
|
95
103
|
productKeys: {
|
|
@@ -648,6 +648,12 @@ export declare const editorExperimentsConfig: {
|
|
|
648
648
|
productKeys?: ProductKeys;
|
|
649
649
|
typeGuard: IsBooleanType;
|
|
650
650
|
};
|
|
651
|
+
platform_editor_resizer_styles_cleanup: {
|
|
652
|
+
defaultValue: boolean;
|
|
653
|
+
param: string;
|
|
654
|
+
productKeys?: ProductKeys;
|
|
655
|
+
typeGuard: IsBooleanType;
|
|
656
|
+
};
|
|
651
657
|
platform_editor_smart_card_otp: {
|
|
652
658
|
defaultValue: boolean;
|
|
653
659
|
param: string;
|
|
@@ -648,6 +648,12 @@ export declare const editorExperimentsConfig: {
|
|
|
648
648
|
productKeys?: ProductKeys;
|
|
649
649
|
typeGuard: IsBooleanType;
|
|
650
650
|
};
|
|
651
|
+
platform_editor_resizer_styles_cleanup: {
|
|
652
|
+
defaultValue: boolean;
|
|
653
|
+
param: string;
|
|
654
|
+
productKeys?: ProductKeys;
|
|
655
|
+
typeGuard: IsBooleanType;
|
|
656
|
+
};
|
|
651
657
|
platform_editor_smart_card_otp: {
|
|
652
658
|
defaultValue: boolean;
|
|
653
659
|
param: string;
|
package/package.json
CHANGED