@atlaskit/tmp-editor-statsig 15.15.0 → 15.16.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
|
+
## 15.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`722f272e8b78f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/722f272e8b78f) -
|
|
8
|
+
Editor-2778 add editor_fix_embed_width_expand experiment to fix embed width issue in expand
|
|
9
|
+
|
|
3
10
|
## 15.15.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -461,6 +461,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
461
461
|
param: 'isEnabled',
|
|
462
462
|
defaultValue: false
|
|
463
463
|
}),
|
|
464
|
+
// Added 2025-12-17
|
|
465
|
+
editor_fix_embed_width_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
466
|
+
productKeys: {
|
|
467
|
+
confluence: 'editor_fix_embed_width_expand'
|
|
468
|
+
},
|
|
469
|
+
param: 'isEnabled',
|
|
470
|
+
defaultValue: false
|
|
471
|
+
}),
|
|
464
472
|
// Added 2025-05-07
|
|
465
473
|
platform_editor_ai_quickstart_command: (0, _experimentBuilders.createBooleanExperiment)({
|
|
466
474
|
productKeys: {
|
|
@@ -455,6 +455,14 @@ export const editorExperimentsConfig = {
|
|
|
455
455
|
param: 'isEnabled',
|
|
456
456
|
defaultValue: false
|
|
457
457
|
}),
|
|
458
|
+
// Added 2025-12-17
|
|
459
|
+
editor_fix_embed_width_expand: createBooleanExperiment({
|
|
460
|
+
productKeys: {
|
|
461
|
+
confluence: 'editor_fix_embed_width_expand'
|
|
462
|
+
},
|
|
463
|
+
param: 'isEnabled',
|
|
464
|
+
defaultValue: false
|
|
465
|
+
}),
|
|
458
466
|
// Added 2025-05-07
|
|
459
467
|
platform_editor_ai_quickstart_command: createBooleanExperiment({
|
|
460
468
|
productKeys: {
|
|
@@ -455,6 +455,14 @@ export var editorExperimentsConfig = {
|
|
|
455
455
|
param: 'isEnabled',
|
|
456
456
|
defaultValue: false
|
|
457
457
|
}),
|
|
458
|
+
// Added 2025-12-17
|
|
459
|
+
editor_fix_embed_width_expand: createBooleanExperiment({
|
|
460
|
+
productKeys: {
|
|
461
|
+
confluence: 'editor_fix_embed_width_expand'
|
|
462
|
+
},
|
|
463
|
+
param: 'isEnabled',
|
|
464
|
+
defaultValue: false
|
|
465
|
+
}),
|
|
458
466
|
// Added 2025-05-07
|
|
459
467
|
platform_editor_ai_quickstart_command: createBooleanExperiment({
|
|
460
468
|
productKeys: {
|
|
@@ -633,6 +633,12 @@ export declare const editorExperimentsConfig: {
|
|
|
633
633
|
productKeys?: ProductKeys;
|
|
634
634
|
typeGuard: IsBooleanType;
|
|
635
635
|
};
|
|
636
|
+
editor_fix_embed_width_expand: {
|
|
637
|
+
defaultValue: boolean;
|
|
638
|
+
param: string;
|
|
639
|
+
productKeys?: ProductKeys;
|
|
640
|
+
typeGuard: IsBooleanType;
|
|
641
|
+
};
|
|
636
642
|
platform_editor_ssr_renderer: {
|
|
637
643
|
defaultValue: boolean;
|
|
638
644
|
param: string;
|
|
@@ -633,6 +633,12 @@ export declare const editorExperimentsConfig: {
|
|
|
633
633
|
productKeys?: ProductKeys;
|
|
634
634
|
typeGuard: IsBooleanType;
|
|
635
635
|
};
|
|
636
|
+
editor_fix_embed_width_expand: {
|
|
637
|
+
defaultValue: boolean;
|
|
638
|
+
param: string;
|
|
639
|
+
productKeys?: ProductKeys;
|
|
640
|
+
typeGuard: IsBooleanType;
|
|
641
|
+
};
|
|
636
642
|
platform_editor_ssr_renderer: {
|
|
637
643
|
defaultValue: boolean;
|
|
638
644
|
param: string;
|
package/package.json
CHANGED